diff --git a/BACKLOG.md b/BACKLOG.md index 215ffbd..7c2c0bf 100644 --- a/BACKLOG.md +++ b/BACKLOG.md @@ -80,9 +80,9 @@ declare `"skillfinder": true` in package.json / pyproject.toml). ### Add CI cleanup steps on workflow failure **Priority: low** *(review issue 14)* -Staging directories (`/tmp/prev-index`, `data/.new/`) are not pruned when a CI -phase fails mid-run. On a retry, stale cached files can cause confusing behavior. -Add a cleanup step with `if: always()`. +`/tmp/prev-index` (the downloaded previous index) is not pruned when a CI phase +fails mid-run. On a retry, stale cached files can cause confusing behavior. Add a +cleanup step with `if: always()`. **File:** `.github/workflows/update-index.yml`. @@ -139,75 +139,36 @@ After removing curated-source bypass from `passes_quality_filter()`, ## Performance — Crawl rate-limit efficiency -See `docs/crawler-rate-limit-strategy.md` for the full analysis (where the -5,000/hr budget goes, the constraint table, and impact/effort per option). The -current crawl cannot fetch the full corpus within GitHub's limits, which is why -CI is incremental-only and full builds are local (PRD-005 amendment). Items -below are ordered by impact ÷ effort. +Full analysis: `docs/crawler-rate-limit-strategy.md`. CI is incremental-only and +full builds are local (PRD-005 amendment). -### ① Fetch SKILL.md via raw.githubusercontent.com (free, not rate-limited) -**Priority: high** -`fetch_skill_md` (`crawlers/base.py:903`) pulls each file through the Contents -API and tries up to 3 branches — 1–3 quota-charged calls per skill, the dominant -cost. `raw.githubusercontent.com/{repo}/{branch}/{path}` is a CDN that does not -consume the REST quota. Move the happy path to raw; keep the Contents API only as -a fallback for symlinks/private repos. +**Shipped (#63, #64):** ① raw.githubusercontent content fetch, ② ETag metadata +cache, ③ blob-SHA content cache, ⑤ GraphQL metadata batch, ⑥/⑥b recursive-tree +cache. Eval harness: `crawlers/eval_cost.py`. ① applies to every crawler (shared +`fetch_skill_md`); ②③⑤⑥b are wired into `topic_crawler` only so far. -**Files:** `crawlers/base.py` (`fetch_skill_md`). - ---- - -### ② Persist ETags + pushed_at across runs (304 = zero quota) -**Priority: high** -`fetch_repo_metadata_with_etag` and `github_get(..., etag=)` already support -`If-None-Match`, but ETags are never persisted and the bulk path uses the -non-ETag fetch. Persist `{repo_url: (etag, pushed_at)}` (committed or via -`actions/cache`); skip unchanged repos by `pushed_at`, else send the ETag for a -free 304. Makes weekly incrementals near-zero-quota — likely enough to let CI -crawl incrementally again. - -**Files:** `crawlers/base.py` (`fetch_repo_metadata*`, `github_get`), crawler call sites. - ---- - -### ③ Dedup before fetch + shared positive cache -**Priority: high** -Five crawlers independently re-fetch overlapping repos; `normalize.py` only -dedups *after* fetching. Collect candidate repo URLs from all sources → dedup by -canonical URL → fetch each once, backed by a per-run cache keyed by canonical -repo URL (a positive counterpart to the existing filter cache). - -**Files:** crawler discovery, `crawlers/base.py`, `pipeline/normalize.py`. - ---- - -### ⑥ Monorepos: one recursive tree fetch instead of N Contents calls +### Wire the ②③⑤⑥b caches into the other four crawlers **Priority: medium** -`git/trees/{sha}?recursive=1` (1 call) enumerates every SKILL.md path in a -monorepo; fetch each via raw (free, per ①). Replaces 1 Contents call per file. +skillsmp/clawhub/skillhub/marketplace still call the non-cached base functions +(`fetch_repo_metadata`, `find_skill_md_paths`, `fetch_skill_md`), so they only get +① (free content). Route them through `fetch_repo_metadata_batch` / +`fetch_repo_metadata_cached` / `find_skill_md_paths_cached` / `fetch_skill_md_cached` +the way `topic_crawler` does, to get the metadata/tree/content cache savings. -**Files:** `crawlers/base.py`. +**Files:** `crawlers/{skillsmp,clawhub,skillhub,marketplace}_crawler.py`. --- -### ⑤ Batch repo metadata via GraphQL (≤100 repos/call) — DONE -**Done.** `fetch_repo_metadata_batch` in `crawlers/base.py` fetches -stars/pushedAt/defaultBranch/topics for ≤100 repos per GraphQL POST (separate -5,000-point/hr pool); wired into the topic crawler with a per-repo REST fallback. - ---- - -### ④ Reduce search/code reliance (the 10/min stall) — REVERTED, needs redesign -**Status: attempted and reverted.** The date-filter approach -(`topic:X pushed:>last-run`) is **unsound for topic discovery**: a repo that -*adds a skill topic without a new commit* keeps its old `pushed_at`, so it is -filtered out and the advancing watermark makes it permanently undiscoverable — -and GitHub search has no "topic-added-since" qualifier. A correct incremental -discovery needs a different mechanism (e.g. enumerate the full topic result set -each run and diff against a persisted repo-list, never a `pushed_at` watermark), -or accept that discovery search is cheap enough (repo-search is 30/min, never the -bottleneck) and leave it full. For code-search-heavy crawlers (skillsmp shards), -the separate lever is to lean on repo-search over code-search where possible. +### ④ Incremental topic discovery — needs a sound design (date-filter reverted) +**Status: attempted and reverted (#64).** `topic:X pushed:>last-run` is **unsound +for topic discovery**: a repo that *adds a skill topic without a new commit* keeps +its old `pushed_at`, so it is filtered out and the advancing watermark makes it +permanently undiscoverable — and GitHub search has no "topic-added-since" +qualifier. A correct incremental discovery must enumerate the full topic result +set each run and diff against a persisted repo-list (never a `pushed_at` +watermark). Topic discovery is currently left full (repo-search at 30/min was +never the bottleneck). For code-search-heavy crawlers (skillsmp shards), the +separate lever is preferring repo-search over code-search. **Files:** `crawlers/skillsmp_crawler.py`, `crawlers/marketplace_crawler.py`. @@ -217,14 +178,6 @@ the separate lever is to lean on repo-search over code-search where possible. **Priority: low** REST is 5,000/hr per token; rotating N tokens ≈ N× headroom, a GitHub App installation gets 15,000/hr (search stays per-user). Brute force with ops -overhead — only if ①–⑥ are insufficient. +overhead — only if the caches above are insufficient. **Files:** `crawlers/base.py` (session/token rotation). - -### ⑥b Cache find_skill_md_paths — DONE -**Done.** `find_skill_md_paths_cached` in `crawlers/base.py` skips the recursive -Trees call when a repo's `(pushed_at, default_branch)` is unchanged, reusing the -cached `{path: blob_sha}` map (keyed on default branch because a branch change -re-resolves `HEAD` to a different tree without bumping `pushed_at`; empty/failed -lookups are never cached). Wired into the topic crawler. Makes a warm run -approach zero metered cost *per unchanged repo*. diff --git a/README.md b/README.md index 4aa4e0c..b497f01 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ -SkillFinder searches 37,500+ curated agent skills from all major registries using natural language. Everything runs locally: no API calls, no latency, no cost per query. Works with any agent that supports **SKILL.md** — Claude Code, OpenClaw, Codex, and more. +SkillFinder searches 42,000+ curated agent skills from all major registries using natural language. Everything runs locally: no API calls, no latency, no cost per query. Works with any agent that supports **SKILL.md** — Claude Code, OpenClaw, Codex, and more. ``` You: /skill-finder deploy kubernetes clusters with rollback @@ -300,12 +300,12 @@ pytest tests/quality/ -v -m quality | Registry | Crawler | Skills in index | |----------|---------|----------------:| -| SkillsMP (GitHub code search) | `skillsmp_crawler.py` | 387 | -| ClawHub / OpenClaw | `clawhub_crawler.py` | 4,610 | -| SkillHub | `skillhub_crawler.py` | 7,615 | -| Anthropic official marketplace | `marketplace_crawler.py` | 28,240 | -| GitHub topics | `topic_crawler.py` | 15,351 | -| **Total (after dedup)** | | **37,962** | +| SkillsMP (GitHub code search) | `skillsmp_crawler.py` | 435 | +| ClawHub / OpenClaw | `clawhub_crawler.py` | 4,614 | +| SkillHub | `skillhub_crawler.py` | 12,448 | +| Anthropic official marketplace | `marketplace_crawler.py` | 28,253 | +| GitHub topics | `topic_crawler.py` | 15,397 | +| **Total (after dedup)** | | **42,068** | ## Star Distribution @@ -313,13 +313,13 @@ pytest tests/quality/ -v -m quality | Stars | Skills | Distribution | |-------|-------:|:-------------| -| 10–49 | 4,135 | ██░░░░░░░░░░░░░░░░░░ 11% | -| 50–99 | 1,847 | █░░░░░░░░░░░░░░░░░░░ 5% | -| 100–499 | 16,231 | █████████░░░░░░░░░░░ 43% | -| 500–999 | 1,144 | █░░░░░░░░░░░░░░░░░░░ 3% | -| 1k–5k | 9,169 | █████░░░░░░░░░░░░░░░ 24% | -| 5k+ | 5,436 | ███░░░░░░░░░░░░░░░░░ 14% | -| **Total** | **37,962** | | +| 10–49 | 5,811 | ███░░░░░░░░░░░░░░░░░ 14% | +| 50–99 | 2,413 | █░░░░░░░░░░░░░░░░░░░ 6% | +| 100–499 | 17,137 | ████████░░░░░░░░░░░░ 41% | +| 500–999 | 1,537 | █░░░░░░░░░░░░░░░░░░░ 4% | +| 1k–5k | 9,475 | █████░░░░░░░░░░░░░░░ 23% | +| 5k+ | 5,695 | ███░░░░░░░░░░░░░░░░░ 14% | +| **Total** | **42,068** | | > **Not shown:** skills with 0–9 stars are dropped from the index regardless of which registry they come from. A non-empty description is also required. diff --git a/SKILL.md b/SKILL.md index b6b250c..273e208 100644 --- a/SKILL.md +++ b/SKILL.md @@ -23,7 +23,7 @@ metadata: # skill-finder -Search 37,500+ curated agent skills by describing what you want to do. +Search 42,000+ curated agent skills by describing what you want to do. Results are ranked by semantic similarity and include install commands. ## Usage diff --git a/data/index.faiss b/data/index.faiss index a8deb6c..b0660b4 100644 Binary files a/data/index.faiss and b/data/index.faiss differ diff --git a/data/metadata.jsonl b/data/metadata.jsonl index 37b2f3e..e885e5e 100644 --- a/data/metadata.jsonl +++ b/data/metadata.jsonl @@ -17,14 +17,14 @@ {"id": "05b4ef73f75cdc09e345eb3b51a2ecfd95bb0ef2c780bd50354b907eaf0fd49b", "repo_url": "https://github.com/luofengmacheng/algorithms", "name": "algorithms", "description": "\u7b97\u6cd5\u5b66\u4e60\u4e4b\u8def", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/luofengmacheng/algorithms/blob/master/skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install algorithms"}, "quality": {"stars": 68, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2018-09-25T10:12:33Z"}, "embedding_text": "algorithms. \u7b97\u6cd5\u5b66\u4e60\u4e4b\u8def Platforms: claude_code."} {"id": "840bb907ac038c648e4e20a9b55de1ac4301ac95ccd47bb5c60ebc3432a0a7b1", "repo_url": "https://github.com/mrchantey/beet", "name": "beet", "description": "A personal application framework", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mrchantey/beet/blob/main/skills/release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install beet"}, "quality": {"stars": 100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T05:06:00Z"}, "embedding_text": "beet. A personal application framework Platforms: claude_code."} {"id": "19e22367ea6e01242034bad40f09c2383816faaae502e3ac49fc70c355955c02", "repo_url": "https://github.com/malkamius/crimsonstainedlands", "name": "CrimsonStainedLands", "description": "A MUD Server in C# Based on ROM", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malkamius/CrimsonStainedLands/blob/main/NEW_SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install CrimsonStainedLands"}, "quality": {"stars": 28, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-13T18:35:55Z"}, "embedding_text": "CrimsonStainedLands. A MUD Server in C# Based on ROM Platforms: claude_code."} -{"id": "1e9acba396e4fb592b7e60a4d676ad27a939704f999d34549d3e743bbac99097", "repo_url": "https://github.com/dicklesworthstone/jeffreysprompts.com", "name": "idea-wizard", "description": "Generate 30 improvement ideas, rigorously evaluate each, distill to the very best 5", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Dicklesworthstone/jeffreysprompts.com/blob/main/idea-wizard-SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install idea-wizard"}, "quality": {"stars": 87, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T20:50:09Z"}, "embedding_text": "idea-wizard. Generate 30 improvement ideas, rigorously evaluate each, distill to the very best 5 Platforms: claude_code."} +{"id": "1e9acba396e4fb592b7e60a4d676ad27a939704f999d34549d3e743bbac99097", "repo_url": "https://github.com/dicklesworthstone/jeffreysprompts.com", "name": "idea-wizard", "description": "Generate 30 improvement ideas, rigorously evaluate each, distill to the very best 5", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Dicklesworthstone/jeffreysprompts.com/blob/main/idea-wizard-SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install idea-wizard"}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-04T05:19:32Z"}, "embedding_text": "idea-wizard. Generate 30 improvement ideas, rigorously evaluate each, distill to the very best 5 Platforms: claude_code."} {"id": "73d859be8f71e1c1c7f77121d2d63a675ef5473fbddbe842d5b699ce022438be", "repo_url": "https://github.com/coderivan/note", "name": "note", "description": "my note", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/CoderIvan/note/blob/master/Orther/git-skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install note"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2022-12-30T19:19:56Z"}, "embedding_text": "note. my note Platforms: claude_code."} {"id": "b2e3389e0cb56dfc5c3412690f343ca4d5580965fc8b4b1107ab2f10bf259ef2", "repo_url": "https://github.com/ziwenhahaha/qqsg_struct", "name": "qqsg_struct", "description": "QQ\u4e09\u56fd\u7684\u7ed3\u6784\u4f53\u548c\u5e38\u89c1\u7684\u6570\u636e\u504f\u79fb\u91cf", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ziwenhahaha/qqsg_struct/blob/main/Skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install qqsg_struct"}, "quality": {"stars": 30, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2022-12-14T16:29:41Z"}, "embedding_text": "qqsg_struct. QQ\u4e09\u56fd\u7684\u7ed3\u6784\u4f53\u548c\u5e38\u89c1\u7684\u6570\u636e\u504f\u79fb\u91cf Platforms: claude_code."} {"id": "661f746a51cfb445ff1dc64f5c6c894f5cb9d11bd4470a08173e4fe945e115a8", "repo_url": "https://github.com/joelreymont/banjo", "name": "banjo", "description": "Zig implementation of Claude Code ACP adapter for Zed", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joelreymont/banjo/blob/master/assets/dot-skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install banjo"}, "quality": {"stars": 41, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-19T14:40:44Z"}, "embedding_text": "banjo. Zig implementation of Claude Code ACP adapter for Zed Platforms: claude_code."} {"id": "1bf331cfbdb8b52ada526fadbfdf3f991d783339e9c2a12cff076c597c5a480c", "repo_url": "https://github.com/mint-system/odoo-wiki", "name": "Odoo-Wiki", "description": "\u00dcbersicht der Mitarbeiterf\u00e4higkeiten.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Mint-System/Odoo-Wiki/blob/main/HR Employee Skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Odoo-Wiki"}, "quality": {"stars": 20, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T13:39:16Z"}, "embedding_text": "Odoo-Wiki. \u00dcbersicht der Mitarbeiterf\u00e4higkeiten. Platforms: claude_code."} {"id": "b65188d1855aca19e26f754ac90c1887f3bff1a394164b2ca32b5d3704829d9b", "repo_url": "https://github.com/dreamsxin/example", "name": "example", "description": "\u5404\u79cd\u4ee3\u7801\u5b9e\u4f8b", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dreamsxin/example/blob/master/postgresql/skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install example"}, "quality": {"stars": 193, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T11:32:37Z"}, "embedding_text": "example. \u5404\u79cd\u4ee3\u7801\u5b9e\u4f8b Platforms: claude_code."} {"id": "c941bb2d7e88eb6787dab5bbb30845b2fc61bba281cdfd6d30577c9b639d6d62", "repo_url": "https://github.com/entice/entice", "name": "entice", "description": "Docs for the entice project", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/entice/entice/blob/master/topic_skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install entice"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2016-05-08T21:03:07Z"}, "embedding_text": "entice. Docs for the entice project Platforms: claude_code."} -{"id": "826018720915ce61da80fe5cb95dc2700c79da7cfe530cf73eeadfca9bc0e2b4", "repo_url": "https://github.com/nova-hunting/nova-tracer", "name": "nova-tracer", "description": "NOVA - Claude Code Protection System against prompt injection attacks", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Nova-Hunting/nova-tracer/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nova-tracer"}, "quality": {"stars": 84, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-07T06:52:06Z"}, "embedding_text": "nova-tracer. NOVA - Claude Code Protection System against prompt injection attacks Platforms: claude_code."} +{"id": "826018720915ce61da80fe5cb95dc2700c79da7cfe530cf73eeadfca9bc0e2b4", "repo_url": "https://github.com/nova-hunting/nova-tracer", "name": "nova-tracer", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Nova-Hunting/nova-tracer/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nova-tracer"}, "quality": {"stars": 94, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-07T06:52:06Z"}, "embedding_text": "nova-tracer. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} {"id": "7a2e079d31c1057e196f06423f6de7e501b738ca52558e29e81c17e0a1502397", "repo_url": "https://github.com/doongz/notes", "name": "notes", "description": "\u7b97\u6cd5\uff5c\u6280\u80fd\uff5c\u77e5\u8bc6\uff5c\u6570\u5b66", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doongz/notes/blob/main/catalogue-skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notes"}, "quality": {"stars": 108, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T10:46:28Z"}, "embedding_text": "notes. \u7b97\u6cd5\uff5c\u6280\u80fd\uff5c\u77e5\u8bc6\uff5c\u6570\u5b66 Platforms: claude_code."} {"id": "a7bdbbd54419cdd6e12deee7aa90905ca47ecf939faf42956011d0d43ac9010f", "repo_url": "https://github.com/cutereimu/themessage", "name": "TheMessage", "description": "\u300a\u98ce\u58f0\u5178\u85cf\u7248\u300b\u684c\u6e38\u7684\u670d\u52a1\u7aef\u4ee3\u7801\u3002\u5ba2\u6237\u7aef\u4ee3\u7801\u89c1\uff1ahttps://github.com/Death-alter/TheMessage", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/CuteReimu/TheMessage/blob/kotlin/doc/Skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install TheMessage"}, "quality": {"stars": 21, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-16T12:02:06Z"}, "embedding_text": "TheMessage. \u300a\u98ce\u58f0\u5178\u85cf\u7248\u300b\u684c\u6e38\u7684\u670d\u52a1\u7aef\u4ee3\u7801\u3002\u5ba2\u6237\u7aef\u4ee3\u7801\u89c1\uff1ahttps://github.com/Death-alter/TheMessage Platforms: claude_code."} {"id": "f12e8c9a569da41fc9e3fdaa6a8cabfc702fabebff16f62122893b09a8ff380e", "repo_url": "https://github.com/myysophia/codex-config", "name": "codex-config", "description": "codex best practice", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/myysophia/codex-config/blob/main/readme_skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codex-config"}, "quality": {"stars": 175, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-19T14:58:05Z"}, "embedding_text": "codex-config. codex best practice Platforms: claude_code."} @@ -153,7 +153,7 @@ {"id": "a0aa2dfdd64962c7a189f94ec144b931ab613af925720353012dba877728abbe", "repo_url": "https://github.com/ledgerhq/ledger-live", "name": "create-changeset", "description": "Create changesets for the ledger-live monorepo using @changesets/cli. Use when the user asks to add a changeset, prepare a release, or document package changes for a PR.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/LedgerHQ/ledger-live/blob/develop/.cursor/skills/create-changeset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-changeset"}, "quality": {"stars": 568, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:07:03Z"}, "embedding_text": "create-changeset. Create changesets for the ledger-live monorepo using @changesets/cli. Use when the user asks to add a changeset, prepare a release, or document package changes for a PR. Platforms: claude_code."} {"id": "a2c6568b3c5de0045e433311a0b907fcb71e0531383200ed33de266d32a28497", "repo_url": "https://github.com/mihai-dinculescu/tapo", "name": "tapo", "description": "Unofficial Tapo API Client. Works with TP-Link Tapo smart devices. Tested with light bulbs (L510, L520, L530, L535, L610, L630), light strips (L900, L920, L930), plugs (P100, P105, P110, P110M, P115), power strips (P300, P304M, P316M), hubs (H100), switches (S200B, S200D) and sensors (KE100, T100, T110, T300, T310, T315).", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mihai-dinculescu/tapo/blob/main/.claude/skills/release-libs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tapo"}, "quality": {"stars": 730, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:41:29Z"}, "embedding_text": "tapo. Unofficial Tapo API Client. Works with TP-Link Tapo smart devices. Tested with light bulbs (L510, L520, L530, L535, L610, L630), light strips (L900, L920, L930), plugs (P100, P105, P110, P110M, P115), power strips (P300, P304M, P316M), hubs (H100), switches (S200B, S200D) and sensors (KE100, T100, T110, T300, T310, T315). Platforms: claude_code."} {"id": "3350dfe20587326fb7ca79db94dd07ed4d2495fc50a81204cf1691ce176e6445", "repo_url": "https://github.com/freedomintelligence/openclaw-medical-skills", "name": "seq-wrangler", "description": "Sequence QC, alignment, and BAM processing. Wraps FastQC, BWA/Bowtie2, SAMtools for automated read-to-BAM pipelines.", "source": ["skillsmp", "clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/blob/main/skills/seq-wrangler/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seq-wrangler", "openclaw": "clawhub install seq-wrangler"}, "quality": {"stars": 1296, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T00:07:23Z"}, "embedding_text": "seq-wrangler. Sequence QC, alignment, and BAM processing. Wraps FastQC, BWA/Bowtie2, SAMtools for automated read-to-BAM pipelines. Platforms: claude_code, openclaw."} -{"id": "bc6a3211f180741f079da652cf6386ea6abe91e062faddf8ea19e64a9c09183a", "repo_url": "https://github.com/llmsresearch/paperbanana", "name": "paperbanana", "description": "Open source implementation and extension of Google Research\u2019s PaperBanana for automated academic figures, diagrams, and research visuals, expanded to new domains like slide generation.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/llmsresearch/paperbanana/blob/main/.claude/skills/generate-diagram/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install paperbanana"}, "quality": {"stars": 1160, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T00:37:23Z"}, "embedding_text": "paperbanana. Open source implementation and extension of Google Research\u2019s PaperBanana for automated academic figures, diagrams, and research visuals, expanded to new domains like slide generation. Platforms: claude_code."} +{"id": "bc6a3211f180741f079da652cf6386ea6abe91e062faddf8ea19e64a9c09183a", "repo_url": "https://github.com/llmsresearch/paperbanana", "name": "paperbanana", "description": "Open source implementation and extension of Google Research\u2019s PaperBanana for automated academic figures, diagrams, and research visuals, expanded to new domains like slide generation.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/llmsresearch/paperbanana/blob/main/.claude/skills/generate-diagram/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install paperbanana"}, "quality": {"stars": 2017, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:33:07Z"}, "embedding_text": "paperbanana. Open source implementation and extension of Google Research\u2019s PaperBanana for automated academic figures, diagrams, and research visuals, expanded to new domains like slide generation. Platforms: claude_code."} {"id": "ba649a9b3af4cd5777cf7321084a01c345c2b2b3cae610e2754b7e10700a31c9", "repo_url": "https://github.com/theorcdev/8bitcn-ui", "name": "rerender-memo", "description": "Extract expensive work into memoized components with React.memo. Apply when components perform expensive computations that can be skipped when props haven't changed.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/TheOrcDev/8bitcn-ui/blob/main/.claude/skills/rerender-memo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rerender-memo"}, "quality": {"stars": 1726, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-01T21:29:30Z"}, "embedding_text": "rerender-memo. Extract expensive work into memoized components with React.memo. Apply when components perform expensive computations that can be skipped when props haven't changed. Platforms: claude_code."} {"id": "e619d70150660ff044c57e02f65c1f1aa135bf2737ef889d9e6276dab5d50a6f", "repo_url": "https://github.com/microclaw/microclaw", "name": "find-skills", "description": "Find reusable skills from the vercel-labs/skills registry (especially by task keywords), evaluate fit, and suggest how to install/adapt them for MicroClaw.", "source": ["skillsmp", "clawhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/microclaw/microclaw/blob/main/skills/built-in/find-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install find-skills", "openclaw": "clawhub install find-skills"}, "quality": {"stars": 558, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:30:01Z"}, "embedding_text": "find-skills. Find reusable skills from the vercel-labs/skills registry (especially by task keywords), evaluate fit, and suggest how to install/adapt them for MicroClaw. Platforms: claude_code, openclaw."} {"id": "4a4c949902f0d0f5c8b06e25e37eb59d6fae84d6095135c5555928cc2866d5b8", "repo_url": "https://github.com/jeremylongshore/claude-code-plugins-plus-skills", "name": "cloud-function-generator", "description": "Cloud Function Generator - Auto-activating skill for GCP Skills.\nTriggers on: cloud function generator, cloud function generator\nPart of the GCP Skills skill category.\n", "source": ["skillsmp", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeremylongshore/claude-code-plugins-plus-skills/blob/main/planned-skills/generated/14-gcp-skills/cloud-function-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cloud-function-generator"}, "quality": {"stars": 1632, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T03:32:44Z"}, "embedding_text": "cloud-function-generator. Cloud Function Generator - Auto-activating skill for GCP Skills.\nTriggers on: cloud function generator, cloud function generator\nPart of the GCP Skills skill category.\n Platforms: claude_code."} @@ -161,22 +161,22 @@ {"id": "5680ef5fa115e2542fcde4f886470d5e7fae4fca52ac11fcb1cacdd95eea12e7", "repo_url": "https://github.com/eat-pray-ai/yutu", "name": "youtube-super-chat-event", "description": "Manage YouTube Super Chat events. Use this skill to list Super Chat events for a channel. Useful when working with YouTube super chat event \u2014 provides commands to list super chat event via the yutu CLI. Includes setup and installation instructions for first-time users. Triggers: list super chat events, list super chat event, list my super chat event", "source": ["skillsmp", "clawhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/eat-pray-ai/yutu/blob/main/skills/youtube-super-chat-event/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-super-chat-event", "openclaw": "clawhub install youtube-super-chat-event"}, "quality": {"stars": 405, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T14:55:46Z"}, "embedding_text": "youtube-super-chat-event. Manage YouTube Super Chat events. Use this skill to list Super Chat events for a channel. Useful when working with YouTube super chat event \u2014 provides commands to list super chat event via the yutu CLI. Includes setup and installation instructions for first-time users. Triggers: list super chat events, list super chat event, list my super chat event Platforms: claude_code, openclaw."} {"id": "5dbddc5eb6c9fd4a2d4b440fc937b089668b5ff21b3012ba4ac3a293ed9754a5", "repo_url": "https://github.com/liza-mas/liza", "name": "liza-logs", "description": "Analyze Liza agents logs", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liza-mas/liza/blob/main/skills/liza-logs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install liza-logs"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T01:54:25Z"}, "embedding_text": "liza-logs. Analyze Liza agents logs Platforms: claude_code."} {"id": "c3a47c6f59c02d94654b632914e4e4b3535c955abbac9e865f14beb40689cada", "repo_url": "https://github.com/dokhacgiakhoa/antigravity-ide", "name": "behavioral-modes", "description": "AI operational modes (brainstorm, implement, debug, review, teach, ship, orchestrate).", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Dokhacgiakhoa/antigravity-ide/blob/main/.agent/skills/behavioral-modes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install behavioral-modes"}, "quality": {"stars": 383, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-16T22:40:59Z"}, "embedding_text": "behavioral-modes. AI operational modes (brainstorm, implement, debug, review, teach, ship, orchestrate). Platforms: claude_code."} -{"id": "c7a4adeb353fc39e7672a97d9b72c336fb6d627d489999916987bf522548d67e", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "diagnose", "description": "Analyze Claude Code session bloat \u2014 shows token count, context usage %, and bloat breakdown. Use when the user asks about session size, context usage, or when you notice the context window is getting full.", "source": ["skillsmp", "marketplace", "topic"], "categories": ["agent-teams", "claude-code", "claude-skills", "cli", "context", "context-management", "jsonl", "llm-tools", "pruning", "python", "session-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Ruya-AI/cozempic/blob/main/plugin/skills/diagnose/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install diagnose"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:38:45Z"}, "embedding_text": "diagnose. Analyze Claude Code session bloat \u2014 shows token count, context usage %, and bloat breakdown. Use when the user asks about session size, context usage, or when you notice the context window is getting full. Categories: agent-teams, claude-code, claude-skills, cli, context, context-management, jsonl, llm-tools, pruning, python, session-management. Platforms: claude_code."} -{"id": "bcc408b3e1a077b1105d8fbfbcc0a1cdd4554d3a0a84d070bcecec4580eb2295", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "metrics", "description": "View LLM token usage, API call timing, and runtime metrics. Use when the user asks about token consumption, API costs, or performance statistics.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ZimoLiao/scholaraio/blob/main/.claude/skills/metrics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install metrics"}, "quality": {"stars": 140, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T08:22:41Z"}, "embedding_text": "metrics. View LLM token usage, API call timing, and runtime metrics. Use when the user asks about token consumption, API costs, or performance statistics. Platforms: claude_code."} +{"id": "c7a4adeb353fc39e7672a97d9b72c336fb6d627d489999916987bf522548d67e", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "diagnose", "description": "Analyze Claude Code session bloat \u2014 shows token count, context usage %, and bloat breakdown. Use when the user asks about session size, context usage, or when you notice the context window is getting full.", "source": ["skillsmp", "skillhub", "marketplace", "topic"], "categories": ["agent-teams", "claude-code", "claude-skills", "cli", "context", "context-management", "jsonl", "llm-tools", "pruning", "python", "session-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Ruya-AI/cozempic/blob/main/plugin/skills/diagnose/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install diagnose"}, "quality": {"stars": 340, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:12:08Z"}, "embedding_text": "diagnose. Analyze Claude Code session bloat \u2014 shows token count, context usage %, and bloat breakdown. Use when the user asks about session size, context usage, or when you notice the context window is getting full. Categories: agent-teams, claude-code, claude-skills, cli, context, context-management, jsonl, llm-tools, pruning, python, session-management. Platforms: claude_code."} +{"id": "bcc408b3e1a077b1105d8fbfbcc0a1cdd4554d3a0a84d070bcecec4580eb2295", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "metrics", "description": "View LLM token usage, API call timing, and runtime metrics. Use when the user asks about token consumption, API costs, or performance statistics.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ZimoLiao/scholaraio/blob/main/.claude/skills/metrics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install metrics"}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "metrics. View LLM token usage, API call timing, and runtime metrics. Use when the user asks about token consumption, API costs, or performance statistics. Platforms: claude_code."} {"id": "bd61f6d69486f91b9f8a7756153ea20d32597cfb81b36c8c43a7d5cda77bab41", "repo_url": "https://github.com/cwinvestments/memstack", "name": "memstack-seo-keyword-research", "description": "Use this skill when the user says 'keyword research', 'find keywords', 'keyword strategy', 'search terms', 'keyword opportunities', or needs to identify target keywords with search volume, difficulty, and content mapping. Do NOT use for full site audits or ad keyword groups.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cwinvestments/memstack/blob/master/skills/seo-geo/keyword-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install memstack-seo-keyword-research"}, "quality": {"stars": 43, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T14:23:59Z"}, "embedding_text": "memstack-seo-keyword-research. Use this skill when the user says 'keyword research', 'find keywords', 'keyword strategy', 'search terms', 'keyword opportunities', or needs to identify target keywords with search volume, difficulty, and content mapping. Do NOT use for full site audits or ad keyword groups. Platforms: claude_code."} {"id": "ef59a2925c045632269a10e59ea4ebbd9fc907907e9707eb570d1b1f775933d4", "repo_url": "https://github.com/hivellm/rulebook", "name": "Cline", "description": "Tool: VS Code extension with autonomous mode", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hivellm/rulebook/blob/main/templates/skills/cli/cline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Cline"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T08:09:21Z"}, "embedding_text": "Cline. Tool: VS Code extension with autonomous mode Platforms: claude_code."} {"id": "e0336dac12863e56c450827e0b362331854cad15edc5d07af892cf5ba7fd66bb", "repo_url": "https://github.com/flonat/claude-research", "name": "python-env", "description": "Python environment management with uv. ALWAYS use uv for package management, never pip directly. Triggers: 'install package', 'create venv', 'set up Python'. Not for running scripts \u2014 just use `uv run python`.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/flonat/claude-research/blob/main/skills/python-env/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-env"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-10T20:09:28Z"}, "embedding_text": "python-env. Python environment management with uv. ALWAYS use uv for package management, never pip directly. Triggers: 'install package', 'create venv', 'set up Python'. Not for running scripts \u2014 just use `uv run python`. Platforms: claude_code."} {"id": "d73708832e3db14555962e8253744ddef6e1c704dddc7547d3484a30df41496c", "repo_url": "https://github.com/cooldaemon/dotfiles", "name": "web-research", "description": "Guidelines for using web search and documentation lookup tools (WebSearch, WebFetch, context7 MCP). Use when agents need to verify technical claims, check library APIs, or research current tool capabilities.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cooldaemon/dotfiles/blob/master/.claude/skills/web-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install web-research"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T05:05:42Z"}, "embedding_text": "web-research. Guidelines for using web search and documentation lookup tools (WebSearch, WebFetch, context7 MCP). Use when agents need to verify technical claims, check library APIs, or research current tool capabilities. Platforms: claude_code."} -{"id": "4e5ff5e01b40b3ea7d6b1a768b38a7da7dd5d1d9b02bd9a15bea244cda63533e", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "update-docs", "description": "Update all project documentation after code changes.", "source": ["skillsmp", "topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/update-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install update-docs"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "update-docs. Update all project documentation after code changes. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} +{"id": "4e5ff5e01b40b3ea7d6b1a768b38a7da7dd5d1d9b02bd9a15bea244cda63533e", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "update-docs", "description": "Update all project documentation after code changes.", "source": ["skillsmp", "skillhub", "topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/update-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install update-docs"}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "update-docs. Update all project documentation after code changes. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} {"id": "e28994ee3fa3e03a3d1b12fafc6e16f5858df2c156b5fe8da575323de1db9a06", "repo_url": "https://github.com/tiendil/donna", "name": "donna-do", "description": "Use Donna as a work orchestration tool and execute a workflow suitable for the developer request. Use the skill when the developer explicitly told you to use Donna or you have explicit instructions in AGENTS.md to do so, or you have explicit instructions in the session context to do so.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Tiendil/donna/blob/main/.agents/skills/donna-do/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install donna-do"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T20:18:42Z"}, "embedding_text": "donna-do. Use Donna as a work orchestration tool and execute a workflow suitable for the developer request. Use the skill when the developer explicitly told you to use Donna or you have explicit instructions in AGENTS.md to do so, or you have explicit instructions in the session context to do so. Platforms: claude_code."} {"id": "0948feaf4df7bbf72242e6e0aae6006a30ef16ae6809d42a856b23dd97414fd5", "repo_url": "https://github.com/mte90/dotfiles", "name": "Testing", "description": "Standards for unit testing, table-driven tests, and mocking in Golang.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Mte90/dotfiles/blob/master/.config/opencode/skills/golang/testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Testing"}, "quality": {"stars": 45, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T10:19:44Z"}, "embedding_text": "Testing. Standards for unit testing, table-driven tests, and mocking in Golang. Platforms: claude_code."} {"id": "779f6cb35ecc39fa723175a9eb239fbf114c8de7cf21217624a453f945d6f6c3", "repo_url": "https://github.com/ozerohax/assistagents", "name": "project-standart-arch", "description": "Architecture design for PRD/use cases in the standard flow", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OzeroHAX/AssistAgents/blob/main/templates/skills/project/standart/arch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install project-standart-arch"}, "quality": {"stars": 29, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-17T21:42:00Z"}, "embedding_text": "project-standart-arch. Architecture design for PRD/use cases in the standard flow Platforms: claude_code."} {"id": "74c4ec4a4e2c08bda08e9d239ff8e26d23cd9342b047bfe0c9a466ed7f883f9d", "repo_url": "https://github.com/malue-ai/dazee-small", "name": "writing-assistant", "description": "Writing assistant for polishing, rewriting, expanding, and structuring text. Handles articles, emails, reports, and social media posts.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malue-ai/dazee-small/blob/main/instances/xiaodazi/skills/writing-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-assistant"}, "quality": {"stars": 30, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T02:24:15Z"}, "embedding_text": "writing-assistant. Writing assistant for polishing, rewriting, expanding, and structuring text. Handles articles, emails, reports, and social media posts. Platforms: claude_code."} {"id": "81778e9c050544e4e3dd103bf5bd80e2336f142cb9b9120c916de733f587317a", "repo_url": "https://github.com/renkunzhao/motion_viewer", "name": "commit", "description": "Summarize current session changes using git status/diff, then propose 3 Conventional Commit messages with scope limited to model|motion|ui. Only run git commands that read state; never commit/push without approval.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Renkunzhao/motion_viewer/blob/master/.agents/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T04:01:58Z"}, "embedding_text": "commit. Summarize current session changes using git status/diff, then propose 3 Conventional Commit messages with scope limited to model|motion|ui. Only run git commands that read state; never commit/push without approval. Platforms: claude_code."} {"id": "e28cd8d544559c09d0bf1f832cfcfcec425f2be006c22973c99daed2114cced0", "repo_url": "https://github.com/norsizu/comfyui-zimage-skill", "name": "comfyui-zimage", "description": "Z-Image Manga/Illustration Generation. Local scripts, no ToolSearch needed.\nTrigger words: Hojo, Satoshi, manga, generate image, portrait.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/norsizu/comfyui-zimage-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install comfyui-zimage"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-13T16:01:00Z"}, "embedding_text": "comfyui-zimage. Z-Image Manga/Illustration Generation. Local scripts, no ToolSearch needed.\nTrigger words: Hojo, Satoshi, manga, generate image, portrait. Platforms: claude_code."} -{"id": "792fbada88a62168f864159be868bebdf4f084495eb0719752ea245c7c2431a1", "repo_url": "https://github.com/simonw/skills", "name": "uv-tdd", "description": "A development process for Python applications that uses TDD to iterate on a new project based around uv. Use when Claude needs to create a new Python project, write Python code with tests, or work on Python development using test-driven development practices with the uv package manager.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/simonw/skills/blob/main/uv-tdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install uv-tdd"}, "quality": {"stars": 40, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-24T00:51:36Z"}, "embedding_text": "uv-tdd. A development process for Python applications that uses TDD to iterate on a new project based around uv. Use when Claude needs to create a new Python project, write Python code with tests, or work on Python development using test-driven development practices with the uv package manager. Platforms: claude_code."} +{"id": "792fbada88a62168f864159be868bebdf4f084495eb0719752ea245c7c2431a1", "repo_url": "https://github.com/simonw/skills", "name": "uv-tdd", "description": "A development process for Python applications that uses TDD to iterate on a new project based around uv. Use when Claude needs to create a new Python project, write Python code with tests, or work on Python development using test-driven development practices with the uv package manager.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/simonw/skills/blob/main/uv-tdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install uv-tdd"}, "quality": {"stars": 43, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T00:51:36Z"}, "embedding_text": "uv-tdd. A development process for Python applications that uses TDD to iterate on a new project based around uv. Use when Claude needs to create a new Python project, write Python code with tests, or work on Python development using test-driven development practices with the uv package manager. Platforms: claude_code."} {"id": "36b7bc07ba24432734ca1be3d59fc88c2bd12dc6ec2f2d7c6c98fcb640eac75d", "repo_url": "https://github.com/regenrek/agent-skills", "name": "shadcn-vite-iconify-landing-page", "description": "Build, critique, and iterate high-converting marketing or product landing pages using React + Vite + TypeScript + Tailwind and shadcn/ui components, with all icons sourced from Iconify. Use when the user asks for a landing page, sales page, signup page, CRO improvements, above-the-fold vs below-the-fold structure, hero + CTA copy, section order, or wants production-ready shadcn + Vite code.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/regenrek/agent-skills/blob/main/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install shadcn-vite-iconify-landing-page"}, "quality": {"stars": 33, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T20:38:41Z"}, "embedding_text": "shadcn-vite-iconify-landing-page. Build, critique, and iterate high-converting marketing or product landing pages using React + Vite + TypeScript + Tailwind and shadcn/ui components, with all icons sourced from Iconify. Use when the user asks for a landing page, sales page, signup page, CRO improvements, above-the-fold vs below-the-fold structure, hero + CTA copy, section order, or wants production-ready shadcn + Vite code. Platforms: claude_code."} -{"id": "6f77305a2be569c043eb77a4cb4ac2119bf57a5ef2e3e52d5d696e2d1d6efa0f", "repo_url": "https://github.com/zoubingwu/memory-skill", "name": "memory", "description": "Long-term memory across sessions. Always use memory_search at the start of any user request (unless the user explicitly says not to), especially for questions about the user (profile/personal info/preferences), prior constraints or decisions, and resuming ongoing work; use memory_write only when the user explicitly asks to store memory.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zoubingwu/memory-skill/blob/master/memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install memory"}, "quality": {"stars": 22, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-28T13:44:04Z"}, "embedding_text": "memory. Long-term memory across sessions. Always use memory_search at the start of any user request (unless the user explicitly says not to), especially for questions about the user (profile/personal info/preferences), prior constraints or decisions, and resuming ongoing work; use memory_write only when the user explicitly asks to store memory. Platforms: claude_code."} +{"id": "6f77305a2be569c043eb77a4cb4ac2119bf57a5ef2e3e52d5d696e2d1d6efa0f", "repo_url": "https://github.com/zoubingwu/memory-skill", "name": "memory", "description": "Long-term memory across sessions. Always use memory_search at the start of any user request (unless the user explicitly says not to), especially for questions about the user (profile/personal info/preferences), prior constraints or decisions, and resuming ongoing work; use memory_write only when the user explicitly asks to store memory.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zoubingwu/memory-skill/blob/master/memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install memory"}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-28T13:44:04Z"}, "embedding_text": "memory. Long-term memory across sessions. Always use memory_search at the start of any user request (unless the user explicitly says not to), especially for questions about the user (profile/personal info/preferences), prior constraints or decisions, and resuming ongoing work; use memory_write only when the user explicitly asks to store memory. Platforms: claude_code."} {"id": "801703ef2d4f34d50df3220c021c8c2c9137b91c582db491e4781fd045b6bd11", "repo_url": "https://github.com/hanxiao/mls", "name": "mls", "description": "MLX Local Serving (MLS) - Unified ASR, TTS, and Translation on Apple Silicon", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hanxiao/mls/blob/main/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mls"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-14T00:29:18Z"}, "embedding_text": "mls. MLX Local Serving (MLS) - Unified ASR, TTS, and Translation on Apple Silicon Platforms: claude_code."} {"id": "43ed7af0b5de7e0dd2cf37252750b7a1afc7bb90e434627af4b3c6ac8e326177", "repo_url": "https://github.com/zscole/matrix-agents", "name": "matrix-agents", "description": "Self-hosted multi-agent coordination using Matrix", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zscole/matrix-agents/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matrix-agents"}, "quality": {"stars": 17, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-05T06:28:54Z"}, "embedding_text": "matrix-agents. Self-hosted multi-agent coordination using Matrix Platforms: claude_code."} {"id": "b9a4dce9b79057a3c0ca6dc7dce68f9f6819c96b62774a0a2b8b0a62800c0f40", "repo_url": "https://github.com/mahlernim/aptner-bulk-reserver", "name": "aptner-visitor-reservation", "description": "Register visitor vehicle parking reservations on Aptner (\uc544\ud30c\ud2b8\ub108) apartment management system.\nUse this skill when: user wants to register visitor cars, create recurring parking reservations,\ncheck existing reservations, or delete parking reservations for their apartment.\nRequires: APTNER_ID and APTNER_PW credentials (in .env file or provided by user).", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mahlernim/aptner-bulk-reserver/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aptner-visitor-reservation"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-04T03:19:32Z"}, "embedding_text": "aptner-visitor-reservation. Register visitor vehicle parking reservations on Aptner (\uc544\ud30c\ud2b8\ub108) apartment management system.\nUse this skill when: user wants to register visitor cars, create recurring parking reservations,\ncheck existing reservations, or delete parking reservations for their apartment.\nRequires: APTNER_ID and APTNER_PW credentials (in .env file or provided by user). Platforms: claude_code."} @@ -195,7 +195,7 @@ {"id": "94c1a43714d7a100d01f742a7692baa5409bf06748aecda1e80414677eb474fa", "repo_url": "https://github.com/cxuu/golang-skills", "name": "go-functional-options", "description": "The functional options pattern for Go constructors and public APIs. Use when designing APIs with optional configuration, especially with 3+ parameters.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cxuu/golang-skills/blob/main/skills/go-functional-options/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install go-functional-options"}, "quality": {"stars": 45, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-27T23:58:21Z"}, "embedding_text": "go-functional-options. The functional options pattern for Go constructors and public APIs. Use when designing APIs with optional configuration, especially with 3+ parameters. Platforms: claude_code."} {"id": "3929114bfe93b957d88828d24e73489c47f049276487a81ce9b9b3b67b709d1d", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-in-app-messaging", "description": "Integrates Firebase In-App Messaging into Flutter apps. Use when setting up in-app messaging, triggering or suppressing messages, managing user privacy and opt-in data collection, or testing campaigns.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-in-app-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install firebase-in-app-messaging"}, "quality": {"stars": 482, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T06:59:14Z"}, "embedding_text": "firebase-in-app-messaging. Integrates Firebase In-App Messaging into Flutter apps. Use when setting up in-app messaging, triggering or suppressing messages, managing user privacy and opt-in data collection, or testing campaigns. Platforms: claude_code."} {"id": "e28f66879cca88eaff85889a426927868d3017e90040b9db3f487f1b2cf30db7", "repo_url": "https://github.com/automateyournetwork/netclaw", "name": "fortimanager-ops", "description": "FortiManager operations \u2014 ADOM inventory, policy package review, object search, install preview, and compliance workflows", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automateyournetwork/netclaw/blob/main/workspace/skills/fortimanager-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install fortimanager-ops"}, "quality": {"stars": 264, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T16:33:43Z"}, "embedding_text": "fortimanager-ops. FortiManager operations \u2014 ADOM inventory, policy package review, object search, install preview, and compliance workflows Platforms: claude_code."} -{"id": "9aaf1370d78a3c4e9034c18b8e20d4d684384a00096f8c3a5f5b80d8a7a6dfce", "repo_url": "https://github.com/astronomer/agents", "name": "debugging-dags", "description": "Comprehensive DAG failure diagnosis and root cause analysis. Use for complex debugging requests requiring deep investigation like \"diagnose and fix the pipeline\", \"full root cause analysis\", \"why is this failing and how to prevent it\". For simple debugging (\"why did dag fail\", \"show logs\"), the airflow entrypoint skill handles it directly. This skill provides structured investigation and prevention recommendations.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astronomer/agents/blob/main/skills/debugging-dags/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debugging-dags"}, "quality": {"stars": 280, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-10T22:03:49Z"}, "embedding_text": "debugging-dags. Comprehensive DAG failure diagnosis and root cause analysis. Use for complex debugging requests requiring deep investigation like \"diagnose and fix the pipeline\", \"full root cause analysis\", \"why is this failing and how to prevent it\". For simple debugging (\"why did dag fail\", \"show logs\"), the airflow entrypoint skill handles it directly. This skill provides structured investigation and prevention recommendations. Platforms: claude_code."} +{"id": "9aaf1370d78a3c4e9034c18b8e20d4d684384a00096f8c3a5f5b80d8a7a6dfce", "repo_url": "https://github.com/astronomer/agents", "name": "debugging-dags", "description": "Comprehensive DAG failure diagnosis and root cause analysis. Use for complex debugging requests requiring deep investigation like \"diagnose and fix the pipeline\", \"full root cause analysis\", \"why is this failing and how to prevent it\". For simple debugging (\"why did dag fail\", \"show logs\"), the airflow entrypoint skill handles it directly. This skill provides structured investigation and prevention recommendations.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astronomer/agents/blob/main/skills/debugging-dags/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debugging-dags"}, "quality": {"stars": 391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:24:02Z"}, "embedding_text": "debugging-dags. Comprehensive DAG failure diagnosis and root cause analysis. Use for complex debugging requests requiring deep investigation like \"diagnose and fix the pipeline\", \"full root cause analysis\", \"why is this failing and how to prevent it\". For simple debugging (\"why did dag fail\", \"show logs\"), the airflow entrypoint skill handles it directly. This skill provides structured investigation and prevention recommendations. Platforms: claude_code."} {"id": "b97a9686a268771b72cc0fbcc2e8546ec15ff3da294a37cdedf53a2ac8828e18", "repo_url": "https://github.com/dadbodgeoff/drift", "name": "deduplication", "description": "Event deduplication with canonical selection, reputation scoring, and hash-based grouping for multi-source data aggregation. Handles both ID-based and content-based deduplication.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dadbodgeoff/drift/blob/main/drift v1 depreciated/skills/deduplication/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deduplication"}, "quality": {"stars": 760, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-13T12:18:43Z"}, "embedding_text": "deduplication. Event deduplication with canonical selection, reputation scoring, and hash-based grouping for multi-source data aggregation. Handles both ID-based and content-based deduplication. Platforms: claude_code."} {"id": "1b83b2a9df2ca91279e79739451f7d98306efd44f9a2d656b94405724681f6c9", "repo_url": "https://github.com/termix-official/cryptoclaw", "name": "bird", "description": "X/Twitter CLI for reading, searching, posting, and engagement via cookies.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/TermiX-official/cryptoclaw/blob/main/skills/bird/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bird"}, "quality": {"stars": 289, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T09:19:18Z"}, "embedding_text": "bird. X/Twitter CLI for reading, searching, posting, and engagement via cookies. Platforms: claude_code."} {"id": "b76b0b0b5af7ac2a12ccb3934cb6b7e55491776ab98c3628982abda9ad0bbb4f", "repo_url": "https://github.com/mergesort/recap", "name": "recap-integration", "description": "Integrates the Recap Swift package into SwiftUI apps, authors Recap-compatible releases markdown, and configures RecapDisplayPolicy and RecapScreen customization. Use when adding Recap into an app, updating Releases.md, or customizing the behavior of a Recap screen.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mergesort/Recap/blob/main/.agents/skills/recap-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recap-integration"}, "quality": {"stars": 259, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-10T16:26:50Z"}, "embedding_text": "recap-integration. Integrates the Recap Swift package into SwiftUI apps, authors Recap-compatible releases markdown, and configures RecapDisplayPolicy and RecapScreen customization. Use when adding Recap into an app, updating Releases.md, or customizing the behavior of a Recap screen. Platforms: claude_code."} @@ -225,7 +225,7 @@ {"id": "803a4b02c1ae748639a9e1d7b9f60b8125dfb1cb447e7831f23c99e9ad56b6e2", "repo_url": "https://github.com/awakecoding/openspecs", "name": "windows-protocols", "description": "Local Microsoft Open Specifications corpus navigator for Windows protocols. Use this skill when the user asks protocol-level questions, needs message/structure details, wants section-by-section summaries, or needs cross-references across related specifications.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awakecoding/openspecs/blob/master/skills/windows-protocols/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install windows-protocols"}, "quality": {"stars": 26, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-18T19:11:35Z"}, "embedding_text": "windows-protocols. Local Microsoft Open Specifications corpus navigator for Windows protocols. Use this skill when the user asks protocol-level questions, needs message/structure details, wants section-by-section summaries, or needs cross-references across related specifications. Platforms: claude_code."} {"id": "9af52f33cedd78fdf773504da422743aff91d830fe22b806ec4a4999c59d9135", "repo_url": "https://github.com/nookprotocol/nookplot", "name": "nookplot", "description": "Decentralized coordination infrastructure for AI agents \u2014 identity, reputation, communication, and economic settlement on Base (Ethereum L2)", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nookprotocol/nookplot/blob/main/sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nookplot"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T14:36:22Z"}, "embedding_text": "nookplot. Decentralized coordination infrastructure for AI agents \u2014 identity, reputation, communication, and economic settlement on Base (Ethereum L2) Platforms: claude_code."} {"id": "6b5b6c4fb9013ee4e0c7132fb758b15f78271514f52651335d3018c7dabd7e34", "repo_url": "https://github.com/unamentis/pocket-tts-ios", "name": "research", "description": "Deep research and fresh perspective on current blockers. Use when stuck, for methodology validation, or auto-triggered during long optimization runs.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/UnaMentis/pocket-tts-ios/blob/main/.claude/skills/research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install research"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T02:48:57Z"}, "embedding_text": "research. Deep research and fresh perspective on current blockers. Use when stuck, for methodology validation, or auto-triggered during long optimization runs. Platforms: claude_code."} -{"id": "a4a88fa99f3ae439c673178728e16af7b9958c67c584229a577ff7ea501e0c26", "repo_url": "https://github.com/abhinav/home", "name": "pull-request", "description": "Use when asked to create or update pull requests, or to push changes for review. Overrides all other instructions for creating pull requests.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/abhinav/home/blob/master/.agents/skills/pull-request/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pull-request"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T19:01:40Z"}, "embedding_text": "pull-request. Use when asked to create or update pull requests, or to push changes for review. Overrides all other instructions for creating pull requests. Platforms: claude_code."} +{"id": "a4a88fa99f3ae439c673178728e16af7b9958c67c584229a577ff7ea501e0c26", "repo_url": "https://github.com/abhinav/home", "name": "pull-request", "description": "Use when asked to create or update pull requests, or to push changes for review. Overrides all other instructions for creating pull requests.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/abhinav/home/blob/master/.agents/skills/pull-request/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pull-request"}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:06:20Z"}, "embedding_text": "pull-request. Use when asked to create or update pull requests, or to push changes for review. Overrides all other instructions for creating pull requests. Platforms: claude_code."} {"id": "a2f238132a0c75132ca839cfddfc56e8a42e14a0eb13a351e011feb22238117a", "repo_url": "https://github.com/cofficlab/cisum", "name": "i18n-translate", "description": "\u7ba1\u7406 iOS/macOS \u5e94\u7528\u7684 *.xcstrings \u672c\u5730\u5316\u7ffb\u8bd1\u6587\u4ef6\u3002\u81ea\u52a8\u6e05\u7406\u8fc7\u671f\u6761\u76ee\u3001\u68c0\u6d4b\u7f3a\u5931\u7ffb\u8bd1\u3001\u6dfb\u52a0\u7b80\u7e41\u4f53\u4e2d\u6587\u7ffb\u8bd1\u3002\u5f53\u7528\u6237\u9700\u8981\u5904\u7406\u7ffb\u8bd1\u3001\u8865\u5145\u7f3a\u5931\u7684 zh-Hans/zh-HK \u7ffb\u8bd1\u3001\u6216\u6e05\u7406 *.xcstrings \u6587\u4ef6\u65f6\u4f7f\u7528\u6b64 skill\u3002", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/CofficLab/Cisum/blob/main/.claude/skills/i18n-translate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install i18n-translate"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-13T03:05:54Z"}, "embedding_text": "i18n-translate. \u7ba1\u7406 iOS/macOS \u5e94\u7528\u7684 *.xcstrings \u672c\u5730\u5316\u7ffb\u8bd1\u6587\u4ef6\u3002\u81ea\u52a8\u6e05\u7406\u8fc7\u671f\u6761\u76ee\u3001\u68c0\u6d4b\u7f3a\u5931\u7ffb\u8bd1\u3001\u6dfb\u52a0\u7b80\u7e41\u4f53\u4e2d\u6587\u7ffb\u8bd1\u3002\u5f53\u7528\u6237\u9700\u8981\u5904\u7406\u7ffb\u8bd1\u3001\u8865\u5145\u7f3a\u5931\u7684 zh-Hans/zh-HK \u7ffb\u8bd1\u3001\u6216\u6e05\u7406 *.xcstrings \u6587\u4ef6\u65f6\u4f7f\u7528\u6b64 skill\u3002 Platforms: claude_code."} {"id": "35fd1b2b6a58faf5795ba7df55d48cf52db13be72bea1c5dc7886c29bdefbd0c", "repo_url": "https://github.com/secondsky/claude-skills", "name": "vulnerability-scanning", "description": "Automated security scanning for dependencies, code, containers with Trivy, Snyk, npm audit. Use for CI/CD security gates, pre-deployment audits, compliance requirements, or encountering CVE detection, outdated packages, license compliance, SBOM generation errors.", "source": ["skillsmp", "skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/vulnerability-scanning/skills/vulnerability-scanning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vulnerability-scanning"}, "quality": {"stars": 83, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "vulnerability-scanning. Automated security scanning for dependencies, code, containers with Trivy, Snyk, npm audit. Use for CI/CD security gates, pre-deployment audits, compliance requirements, or encountering CVE detection, outdated packages, license compliance, SBOM generation errors. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} {"id": "932810ce62366a216950dd374497829e94db17c3f58620c29c2bd029d2536a13", "repo_url": "https://github.com/rohunj/claude-build-workflow", "name": "ralph", "description": "Convert PRDs to prd.json format for the Ralph autonomous agent system. Use when you have an existing PRD and need to convert it to Ralph's JSON format. Triggers on: convert this prd, turn this into ralph format, create prd.json from this, ralph json.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohunj/claude-build-workflow/blob/main/skills/ralph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ralph"}, "quality": {"stars": 231, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-18T22:21:49Z"}, "embedding_text": "ralph. Convert PRDs to prd.json format for the Ralph autonomous agent system. Use when you have an existing PRD and need to convert it to Ralph's JSON format. Triggers on: convert this prd, turn this into ralph format, create prd.json from this, ralph json. Platforms: claude_code."} @@ -234,7 +234,7 @@ {"id": "10396825829099148a501334d91b30627f625dc1eb76b4fa572627439bc4e1ce", "repo_url": "https://github.com/lunartech-x/superpowers", "name": "ip2location-io-automation", "description": "Automate Ip2location IO tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/LUNARTECH-X/superpowers/blob/main/skills/document-editorial/composio-skills/ip2location-io-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ip2location-io-automation"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T18:24:19Z"}, "embedding_text": "ip2location-io-automation. Automate Ip2location IO tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} {"id": "8a8e2d92d934dea986aeda3a2b9ebd6d720c5dadb51c50dc5c7729161ebfee0d", "repo_url": "https://github.com/pr-pm/prpm", "name": "thoroughness", "description": "Use when implementing complex multi-step tasks, fixing critical bugs, or when quality and completeness matter more than speed - ensures comprehensive implementation without shortcuts through systematic analysis, implementation, and verification phases", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pr-pm/prpm/blob/main/.claude/skills/thoroughness/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install thoroughness"}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T09:40:09Z"}, "embedding_text": "thoroughness. Use when implementing complex multi-step tasks, fixing critical bugs, or when quality and completeness matter more than speed - ensures comprehensive implementation without shortcuts through systematic analysis, implementation, and verification phases Platforms: claude_code."} {"id": "d214f1a4c884d6b2a1e8e26bd66df406aeb6baa18d9432b3345778fadd2df405", "repo_url": "https://github.com/smartfrog/opencode-froggy", "name": "ask-questions-if-underspecified", "description": "Clarify requirements before implementing. Use when serious doubts arise.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smartfrog/opencode-froggy/blob/main/skill/ask-questions-if-underspecified/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ask-questions-if-underspecified"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:53:00Z"}, "embedding_text": "ask-questions-if-underspecified. Clarify requirements before implementing. Use when serious doubts arise. Platforms: claude_code."} -{"id": "ce80d347d557360205552a23dc323b4b2710c8360ea45f85803cc52e93a4f35e", "repo_url": "https://github.com/nicepkg/vsync", "name": "resource-scout", "description": "Search and discover Claude Code skills and MCP servers from marketplaces, GitHub repositories, and registries. Use when (1) user asks to find skills for a specific task, (2) looking for MCP servers to connect external tools, (3) user mentions \"find skill\", \"search MCP\", \"discover tools\", or \"what skills exist for X\", (4) before creating a custom skill to check if one already exists.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nicepkg/vsync/blob/main/.claude/skills/resource-scout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install resource-scout"}, "quality": {"stars": 28, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-27T03:27:42Z"}, "embedding_text": "resource-scout. Search and discover Claude Code skills and MCP servers from marketplaces, GitHub repositories, and registries. Use when (1) user asks to find skills for a specific task, (2) looking for MCP servers to connect external tools, (3) user mentions \"find skill\", \"search MCP\", \"discover tools\", or \"what skills exist for X\", (4) before creating a custom skill to check if one already exists. Platforms: claude_code."} +{"id": "ce80d347d557360205552a23dc323b4b2710c8360ea45f85803cc52e93a4f35e", "repo_url": "https://github.com/nicepkg/vsync", "name": "resource-scout", "description": "Search and discover Claude Code skills and MCP servers from marketplaces, GitHub repositories, and registries. Use when (1) user asks to find skills for a specific task, (2) looking for MCP servers to connect external tools, (3) user mentions \"find skill\", \"search MCP\", \"discover tools\", or \"what skills exist for X\", (4) before creating a custom skill to check if one already exists.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nicepkg/vsync/blob/main/.claude/skills/resource-scout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install resource-scout"}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T03:27:42Z"}, "embedding_text": "resource-scout. Search and discover Claude Code skills and MCP servers from marketplaces, GitHub repositories, and registries. Use when (1) user asks to find skills for a specific task, (2) looking for MCP servers to connect external tools, (3) user mentions \"find skill\", \"search MCP\", \"discover tools\", or \"what skills exist for X\", (4) before creating a custom skill to check if one already exists. Platforms: claude_code."} {"id": "ba8f0f7723c45fa53c068a1a06c1f6ae918671ac12474fc1e018b2bbc79b3017", "repo_url": "https://github.com/nicepkg/ai-workflow", "name": "resource-scout", "description": "Search and discover Claude Code skills and MCP servers from marketplaces, GitHub repositories, and registries. Use when (1) user asks to find skills for a specific task, (2) looking for MCP servers to connect external tools, (3) user mentions \"find skill\", \"search MCP\", \"discover tools\", or \"what skills exist for X\", (4) before creating a custom skill to check if one already exists.", "source": ["skillsmp", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nicepkg/ai-workflow/blob/main/.claude/skills/resource-scout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install resource-scout"}, "quality": {"stars": 135, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-20T08:50:30Z"}, "embedding_text": "resource-scout. Search and discover Claude Code skills and MCP servers from marketplaces, GitHub repositories, and registries. Use when (1) user asks to find skills for a specific task, (2) looking for MCP servers to connect external tools, (3) user mentions \"find skill\", \"search MCP\", \"discover tools\", or \"what skills exist for X\", (4) before creating a custom skill to check if one already exists. Platforms: claude_code."} {"id": "de47cfbef1197a04efb0bcbb280a4ef04da12a6c3eabb2c411d37adc40b84c2d", "repo_url": "https://github.com/jaem1n207/synchronize-tab-scrolling", "name": "code-reviewer", "description": "Perform thorough code reviews with actionable, prioritized feedback. Use when a user asks to review code, check code quality, find bugs, review a pull request, audit code for issues, or get feedback on implementation. Covers correctness, security, performance, readability, and best practices across languages.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jaem1n207/synchronize-tab-scrolling/blob/main/.agents/skills/code-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-reviewer"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T10:28:03Z"}, "embedding_text": "code-reviewer. Perform thorough code reviews with actionable, prioritized feedback. Use when a user asks to review code, check code quality, find bugs, review a pull request, audit code for issues, or get feedback on implementation. Covers correctness, security, performance, readability, and best practices across languages. Platforms: claude_code."} {"id": "88add46ceb91d1a456c83b0f12437f7269919d2cd57806384b5d6a1bcb1a5e24", "repo_url": "https://github.com/danielmiessler/personal_ai_infrastructure", "name": "Prompting", "description": "Meta-prompting system for dynamic prompt generation using templates, standards, and patterns. USE WHEN meta-prompting, template generation, prompt optimization, or programmatic prompt composition.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/danielmiessler/Personal_AI_Infrastructure/blob/main/Releases/v2.5/.claude/skills/Prompting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Prompting"}, "quality": {"stars": 9920, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:44:36Z"}, "embedding_text": "Prompting. Meta-prompting system for dynamic prompt generation using templates, standards, and patterns. USE WHEN meta-prompting, template generation, prompt optimization, or programmatic prompt composition. Platforms: claude_code."} @@ -249,7 +249,7 @@ {"id": "08967cc209d952e7a032277620b75f4db5d344c3d76ce7e005d68fd07c6585b0", "repo_url": "https://github.com/joshmanders/dotfiles", "name": "github", "description": "GitHub CLI patterns for issues, projects, and PRs. Invoke when: creating issues, linking PRs to issues, updating project status, or any GitHub project operations.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joshmanders/dotfiles/blob/master/claude/skills/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github"}, "quality": {"stars": 25, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T05:39:09Z"}, "embedding_text": "github. GitHub CLI patterns for issues, projects, and PRs. Invoke when: creating issues, linking PRs to issues, updating project status, or any GitHub project operations. Platforms: claude_code."} {"id": "024f4996955fd5b99f3ebc5f9eeda85873336b0bfa0d5eb9e989c20a50df5a25", "repo_url": "https://github.com/yonatangross/orchestkit", "name": "issue-progress-tracking", "description": "Auto-updates GitHub issues with commit progress. Use when starting work on an issue, tracking progress during implementation, or completing work with a PR.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yonatangross/orchestkit/blob/main/src/skills/issue-progress-tracking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install issue-progress-tracking"}, "quality": {"stars": 116, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T22:24:22Z"}, "embedding_text": "issue-progress-tracking. Auto-updates GitHub issues with commit progress. Use when starting work on an issue, tracking progress during implementation, or completing work with a PR. Platforms: claude_code."} {"id": "472231773614ca140361a54eb3ae3ff6888f6799a29bcae79350a0e07cf62a13", "repo_url": "https://github.com/omer-metin/skills-for-antigravity", "name": "websocket-realtime", "description": "Expert guidance on real-time communication patterns including WebSockets, Server-Sent Events (SSE), Socket.IO, and WebRTC. Covers connection management, reconnection strategies, scaling, and real-time data synchronization. Use when \"implement websocket, real-time updates, live chat, socket.io, server-sent events, live notifications, collaborative editing, presence indicators, Working with ws, Socket.IO, Pusher, Ably, websocket, realtime, socket.io, sse, live, streaming, push, collaboration\" mentioned.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omer-metin/skills-for-antigravity/blob/main/skills/websocket-realtime/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install websocket-realtime"}, "quality": {"stars": 35, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-22T14:24:32Z"}, "embedding_text": "websocket-realtime. Expert guidance on real-time communication patterns including WebSockets, Server-Sent Events (SSE), Socket.IO, and WebRTC. Covers connection management, reconnection strategies, scaling, and real-time data synchronization. Use when \"implement websocket, real-time updates, live chat, socket.io, server-sent events, live notifications, collaborative editing, presence indicators, Working with ws, Socket.IO, Pusher, Ably, websocket, realtime, socket.io, sse, live, streaming, push, collaboration\" mentioned. Platforms: claude_code."} -{"id": "9a89c8865002c3fb25e4410b9c5d96cf490c2540de1d6245c728c16c6c041766", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "property-based-testing", "description": "Use when writing tests for serialization, validation, normalization, or pure functions - provides property catalog, pattern detection, and library reference for property-based testing", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-house-style/skills/property-based-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install property-based-testing"}, "quality": {"stars": 142, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T23:08:42Z"}, "embedding_text": "property-based-testing. Use when writing tests for serialization, validation, normalization, or pure functions - provides property catalog, pattern detection, and library reference for property-based testing Platforms: claude_code."} +{"id": "9a89c8865002c3fb25e4410b9c5d96cf490c2540de1d6245c728c16c6c041766", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "property-based-testing", "description": "Use when writing tests for serialization, validation, normalization, or pure functions - provides property catalog, pattern detection, and library reference for property-based testing", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-house-style/skills/property-based-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install property-based-testing"}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "property-based-testing. Use when writing tests for serialization, validation, normalization, or pure functions - provides property catalog, pattern detection, and library reference for property-based testing Platforms: claude_code."} {"id": "4129382b83cfaaabdffac40446ec223472402904909e93481d0a021f7190e3b0", "repo_url": "https://github.com/pramoddutta/qaskills", "name": "Secret Detection & Prevention", "description": "Automated detection and prevention of leaked secrets, API keys, passwords, and tokens in code using tools like gitleaks, trufflehog, and pre-commit hooks.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/PramodDutta/qaskills/blob/main/seed-skills/secret-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Secret Detection & Prevention"}, "quality": {"stars": 80, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-27T12:57:05Z"}, "embedding_text": "Secret Detection & Prevention. Automated detection and prevention of leaked secrets, API keys, passwords, and tokens in code using tools like gitleaks, trufflehog, and pre-commit hooks. Platforms: claude_code."} {"id": "d69d0779a53dfd41bb7c83c6cf8dfade637652460b9672e58548a001ec0388da", "repo_url": "https://github.com/buiducnhat/agent-skills", "name": "bootstrap", "description": "Initialize and scaffold a new project with structured requirements gathering. Use when starting a project from scratch, after running a framework initializer (npm init, create-next-app, etc.), or when an existing minimal project needs proper structure, documentation, and conventions. Triggers on: 'bootstrap project', 'start new project', 'scaffold project', 'initialize project', 'setup new project', or when the user wants to go from zero to a well-structured project foundation.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buiducnhat/agent-skills/blob/main/skills/bootstrap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bootstrap"}, "quality": {"stars": 29, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T10:50:26Z"}, "embedding_text": "bootstrap. Initialize and scaffold a new project with structured requirements gathering. Use when starting a project from scratch, after running a framework initializer (npm init, create-next-app, etc.), or when an existing minimal project needs proper structure, documentation, and conventions. Triggers on: 'bootstrap project', 'start new project', 'scaffold project', 'initialize project', 'setup new project', or when the user wants to go from zero to a well-structured project foundation. Platforms: claude_code."} {"id": "22fbbb60951111263cfef1d767b23856dc0fac5b56f7284ae2a07cc81b22f221", "repo_url": "https://github.com/arcadia-1/gmoverid-skill", "name": "transistor-models", "description": "Complete PTM (Predictive Technology Model) MOSFET model library from mec.umn.edu/ptm, covering all nodes: bulk conventional 180/130/90/65nm, bulk HP/LP 45/32/22nm (BSIM4), and PTM-MG multi-gate FinFET 7/10/14/16/20nm (BSIM-CMG, HP + LSTP). No manual downloads required after installing this skill. Independent of the gmoverid skill \u2014 can be used directly in any ngspice/HSPICE project.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Arcadia-1/gmoverid-skill/blob/main/transistor-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install transistor-models"}, "quality": {"stars": 27, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T09:40:57Z"}, "embedding_text": "transistor-models. Complete PTM (Predictive Technology Model) MOSFET model library from mec.umn.edu/ptm, covering all nodes: bulk conventional 180/130/90/65nm, bulk HP/LP 45/32/22nm (BSIM4), and PTM-MG multi-gate FinFET 7/10/14/16/20nm (BSIM-CMG, HP + LSTP). No manual downloads required after installing this skill. Independent of the gmoverid skill \u2014 can be used directly in any ngspice/HSPICE project. Platforms: claude_code."} @@ -258,7 +258,7 @@ {"id": "100b63b065df64f889a55f52732053205bcb848704e99b8b52e2cfbd2a7f4463", "repo_url": "https://github.com/shibayu36/config-file", "name": "clarify-message", "description": "\u4f1d\u3048\u305f\u3044\u3053\u3068\u3092\u660e\u78ba\u306b\u3057\u3001\u69cb\u6210\u6848\u3092\u4e00\u7dd2\u306b\u4f5c\u308a\u4e0a\u3052\u308b\u30d5\u30a1\u30b7\u30ea\u30c6\u30fc\u30bf\u30fc\u3002\u8a18\u4e8b\u3001\u30d7\u30ec\u30bc\u30f3\u3001\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306a\u3069\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u7a2e\u985e\u3092\u554f\u308f\u305a\u6c4e\u7528\u7684\u306b\u4f7f\u3048\u308b\u3002\u30e6\u30fc\u30b6\u30fc\u304c\u300c\u4f1d\u3048\u305f\u3044\u3053\u3068\u3092\u6574\u7406\u3057\u305f\u3044\u300d\u300c\u69cb\u6210\u3092\u8003\u3048\u305f\u3044\u300d\u300c\u30a2\u30a6\u30c8\u30e9\u30a4\u30f3\u3092\u4f5c\u308a\u305f\u3044\u300d\u300c\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u660e\u78ba\u306b\u3057\u305f\u3044\u300d\u3068\u8a00\u3063\u305f\u6642\u306b\u4f7f\u3046\u3002\u5b9f\u969b\u306e\u57f7\u7b46\u30fb\u30c9\u30e9\u30d5\u30c8\u4f5c\u6210\u306f\u884c\u308f\u305a\u3001\u69cb\u6210\u6848\u306e\u78ba\u5b9a\u307e\u3067\u3092\u62c5\u5f53\u3059\u308b\u3002", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shibayu36/config-file/blob/master/.claude/skills/clarify-message/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install clarify-message"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T12:14:38Z"}, "embedding_text": "clarify-message. \u4f1d\u3048\u305f\u3044\u3053\u3068\u3092\u660e\u78ba\u306b\u3057\u3001\u69cb\u6210\u6848\u3092\u4e00\u7dd2\u306b\u4f5c\u308a\u4e0a\u3052\u308b\u30d5\u30a1\u30b7\u30ea\u30c6\u30fc\u30bf\u30fc\u3002\u8a18\u4e8b\u3001\u30d7\u30ec\u30bc\u30f3\u3001\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306a\u3069\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u7a2e\u985e\u3092\u554f\u308f\u305a\u6c4e\u7528\u7684\u306b\u4f7f\u3048\u308b\u3002\u30e6\u30fc\u30b6\u30fc\u304c\u300c\u4f1d\u3048\u305f\u3044\u3053\u3068\u3092\u6574\u7406\u3057\u305f\u3044\u300d\u300c\u69cb\u6210\u3092\u8003\u3048\u305f\u3044\u300d\u300c\u30a2\u30a6\u30c8\u30e9\u30a4\u30f3\u3092\u4f5c\u308a\u305f\u3044\u300d\u300c\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u660e\u78ba\u306b\u3057\u305f\u3044\u300d\u3068\u8a00\u3063\u305f\u6642\u306b\u4f7f\u3046\u3002\u5b9f\u969b\u306e\u57f7\u7b46\u30fb\u30c9\u30e9\u30d5\u30c8\u4f5c\u6210\u306f\u884c\u308f\u305a\u3001\u69cb\u6210\u6848\u306e\u78ba\u5b9a\u307e\u3067\u3092\u62c5\u5f53\u3059\u308b\u3002 Platforms: claude_code."} {"id": "7e3e5269139d0a7050da38a18d0f99d5f47525881946c48485dd82f5c931aa13", "repo_url": "https://github.com/unclebob/crap4clj", "name": "crap4clj", "description": "Use when the user asks for a CRAP report, cyclomatic complexity analysis, or code quality metrics on a Clojure project", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/unclebob/crap4clj/blob/master/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install crap4clj"}, "quality": {"stars": 23, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T18:08:15Z"}, "embedding_text": "crap4clj. Use when the user asks for a CRAP report, cyclomatic complexity analysis, or code quality metrics on a Clojure project Platforms: claude_code."} {"id": "d5a833602d5e530d4e7051ddf75ab5649c6455fe50c42df80859436fac0d9094", "repo_url": "https://github.com/vkehfdl1/slides-grab", "name": "pptx-skill", "description": "Convert HTML slides to PowerPoint (PPTX) files. Use when PPTX generation, editing, or thumbnail creation is needed.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vkehfdl1/slides-grab/blob/main/.claude/skills/pptx-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pptx-skill"}, "quality": {"stars": 126, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T12:48:24Z"}, "embedding_text": "pptx-skill. Convert HTML slides to PowerPoint (PPTX) files. Use when PPTX generation, editing, or thumbnail creation is needed. Platforms: claude_code."} -{"id": "887722c2865bf2b3d059bb743ff7aab35d74b5a72a611823d722f1e31dccfa13", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "clickhouse-io", "description": "ClickHouse \u6570\u636e\u5e93\u6a21\u5f0f\u3001\u67e5\u8be2\u4f18\u5316\u3001\u5206\u6790\u4ee5\u53ca\u9ad8\u6027\u80fd\u5206\u6790\u5de5\u4f5c\u8d1f\u8f7d\u7684\u6570\u636e\u5de5\u7a0b\u6700\u4f73\u5b9e\u8df5\u3002", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/clickhouse-io/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install clickhouse-io"}, "quality": {"stars": 115, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "clickhouse-io. ClickHouse \u6570\u636e\u5e93\u6a21\u5f0f\u3001\u67e5\u8be2\u4f18\u5316\u3001\u5206\u6790\u4ee5\u53ca\u9ad8\u6027\u80fd\u5206\u6790\u5de5\u4f5c\u8d1f\u8f7d\u7684\u6570\u636e\u5de5\u7a0b\u6700\u4f73\u5b9e\u8df5\u3002 Platforms: claude_code."} +{"id": "887722c2865bf2b3d059bb743ff7aab35d74b5a72a611823d722f1e31dccfa13", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "clickhouse-io", "description": "ClickHouse \u6570\u636e\u5e93\u6a21\u5f0f\u3001\u67e5\u8be2\u4f18\u5316\u3001\u5206\u6790\u4ee5\u53ca\u9488\u5bf9\u9ad8\u6027\u80fd\u5206\u6790\u5de5\u4f5c\u8d1f\u8f7d\u7684\u6570\u636e\u5de5\u7a0b\u6700\u4f73\u5b9e\u8df5\u3002", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/clickhouse-io/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install clickhouse-io"}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "clickhouse-io. ClickHouse \u6570\u636e\u5e93\u6a21\u5f0f\u3001\u67e5\u8be2\u4f18\u5316\u3001\u5206\u6790\u4ee5\u53ca\u9488\u5bf9\u9ad8\u6027\u80fd\u5206\u6790\u5de5\u4f5c\u8d1f\u8f7d\u7684\u6570\u636e\u5de5\u7a0b\u6700\u4f73\u5b9e\u8df5\u3002 Platforms: claude_code."} {"id": "5e4c07aee38472a969d06f4aef9e6d3f1d475227a1748397185825023c318e09", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "Writing Hookify Rules", "description": "This skill should be used when the user asks to \"create a hookify rule\", \"write a hook rule\", \"configure hookify\", \"add a hookify rule\", or needs guidance on hookify rule syntax and patterns.", "source": ["skillsmp", "marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Microck/ordinary-claude-skills/blob/main/skills_categorized/mobile/rule-identifier/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Writing Hookify Rules"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "Writing Hookify Rules. This skill should be used when the user asks to \"create a hookify rule\", \"write a hook rule\", \"configure hookify\", \"add a hookify rule\", or needs guidance on hookify rule syntax and patterns. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "944477b15711293d5a2948ecdd287f02518b1d4abca86b8b1fe40a9925f0e3d3", "repo_url": "https://github.com/sleepyvani/tablemax", "name": "qt-qml", "description": "QML and Qt Quick \u2014 declarative UI language for modern Qt applications. Use when building a QML-based UI, embedding QML in a Python/C++ app, exposing Python/C++ objects to QML, creating QML components, or choosing between QML and widgets.\nTrigger phrases: \"QML\", \"Qt Quick\", \"declarative UI\", \"QQmlApplicationEngine\", \"expose to QML\", \"QML component\", \"QML signal\", \"pyqtProperty\", \"QML vs widgets\", \"QtQuick.Controls\", \"Item\", \"Rectangle\"\n", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sleepyvani/tablemax/blob/main/.agent/skills/qt-qml/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install qt-qml"}, "quality": {"stars": 26, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T06:31:39Z"}, "embedding_text": "qt-qml. QML and Qt Quick \u2014 declarative UI language for modern Qt applications. Use when building a QML-based UI, embedding QML in a Python/C++ app, exposing Python/C++ objects to QML, creating QML components, or choosing between QML and widgets.\nTrigger phrases: \"QML\", \"Qt Quick\", \"declarative UI\", \"QQmlApplicationEngine\", \"expose to QML\", \"QML component\", \"QML signal\", \"pyqtProperty\", \"QML vs widgets\", \"QtQuick.Controls\", \"Item\", \"Rectangle\"\n Platforms: claude_code."} {"id": "f3ad22ca7bd22b4560203c56b67e6273ac8815fdde2f5ceab48fdcfd3e6dbc6d", "repo_url": "https://github.com/tae0y/python-project-template", "name": "openapi-to-application-code", "description": "Generate a complete, production-ready application from an OpenAPI specification. Use when creating controllers, services, models, and configurations from an OpenAPI/Swagger spec.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tae0y/python-project-template/blob/main/.claude/skills.nouse/openapi-to-application-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openapi-to-application-code"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T12:12:03Z"}, "embedding_text": "openapi-to-application-code. Generate a complete, production-ready application from an OpenAPI specification. Use when creating controllers, services, models, and configurations from an OpenAPI/Swagger spec. Platforms: claude_code."} @@ -333,7 +333,7 @@ {"id": "4407c84ff152d9886f35f004fbd47b7ea0b9bf3530eb84d5180bc24f9e8c81cd", "repo_url": "https://github.com/shynlee04/hivemind-plugin", "name": "hivemind-architect-strategist", "description": "Core skill for the hiveminder agent. Provides scanning, analysis, and synthesis capabilities for architecture review and strategic planning. Research-fronted and evidence-oriented approaches for high-quality decision making.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shynlee04/hivemind-plugin/blob/master/skills/hivemind-architect-strategist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hivemind-architect-strategist"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T05:56:53Z"}, "embedding_text": "hivemind-architect-strategist. Core skill for the hiveminder agent. Provides scanning, analysis, and synthesis capabilities for architecture review and strategic planning. Research-fronted and evidence-oriented approaches for high-quality decision making. Platforms: claude_code."} {"id": "7c5a02ec19054c0a9268a1a3145d425341bd355b0da4923f824c00d7f05cc555", "repo_url": "https://github.com/lablup/backend.ai-webui", "name": "create-relay-nodes-component", "description": "Generate Relay-based Nodes components with BAITable integration following\nestablished patterns (BAIUserNodes, SessionNodes, BAISchedulingHistoryNodes, BAIRouteNodes).\nAutomatically creates component file with GraphQL fragment, type definitions,\ncolumn configurations, and customization patterns. Minimal user input required -\njust provide GraphQL type name and the skill generates a complete starting template.\n", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lablup/backend.ai-webui/blob/main/.claude/skills/create-relay-nodes-component/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-relay-nodes-component"}, "quality": {"stars": 125, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:22:19Z"}, "embedding_text": "create-relay-nodes-component. Generate Relay-based Nodes components with BAITable integration following\nestablished patterns (BAIUserNodes, SessionNodes, BAISchedulingHistoryNodes, BAIRouteNodes).\nAutomatically creates component file with GraphQL fragment, type definitions,\ncolumn configurations, and customization patterns. Minimal user input required -\njust provide GraphQL type name and the skill generates a complete starting template.\n Platforms: claude_code."} {"id": "e5e8ad88cf83d6a2dad6e17c991e282bad62df4d79ae3280b13ebddea3893ac9", "repo_url": "https://github.com/octavehq/lfgtm", "name": "train", "description": "Practice selling with role-play simulations, knowledge quizzes, and guided learning on your GTM library. Use when user says \"role-play a call\", \"quiz me\", \"practice objections\", \"sales training\", \"test my knowledge\", or asks for interactive learning.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/octavehq/lfgtm/blob/main/skills/train/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install train"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:50:18Z"}, "embedding_text": "train. Practice selling with role-play simulations, knowledge quizzes, and guided learning on your GTM library. Use when user says \"role-play a call\", \"quiz me\", \"practice objections\", \"sales training\", \"test my knowledge\", or asks for interactive learning. Platforms: claude_code."} -{"id": "2c1f7c632f920a4988a0766d51215dc74146e0770018400f706be715606ab036", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "surrealdb-expert", "description": "Expert SurrealDB developer specializing in multi-model database design, graph relations, document storage, SurrealQL queries, row-level security, and real-time subscriptions. Use when building SurrealDB applications, designing graph schemas, implementing secure data access patterns, or optimizing query performance.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/surrealdb-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install surrealdb-expert"}, "quality": {"stars": 28, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "surrealdb-expert. Expert SurrealDB developer specializing in multi-model database design, graph relations, document storage, SurrealQL queries, row-level security, and real-time subscriptions. Use when building SurrealDB applications, designing graph schemas, implementing secure data access patterns, or optimizing query performance. Platforms: claude_code."} +{"id": "2c1f7c632f920a4988a0766d51215dc74146e0770018400f706be715606ab036", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "surrealdb-expert", "description": "Expert SurrealDB developer specializing in multi-model database design, graph relations, document storage, SurrealQL queries, row-level security, and real-time subscriptions. Use when building SurrealDB applications, designing graph schemas, implementing secure data access patterns, or optimizing query performance.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/surrealdb-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install surrealdb-expert"}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "surrealdb-expert. Expert SurrealDB developer specializing in multi-model database design, graph relations, document storage, SurrealQL queries, row-level security, and real-time subscriptions. Use when building SurrealDB applications, designing graph schemas, implementing secure data access patterns, or optimizing query performance. Platforms: claude_code."} {"id": "2d68f27090743d40365697decc40ad37150c501b02e8a59f5ddc34455bedcfeb", "repo_url": "https://github.com/digitarald/product-brain", "name": "frontend-slides", "description": "Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/digitarald/product-brain/blob/main/.agents/skills/frontend-slides/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-slides"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-05T18:06:25Z"}, "embedding_text": "frontend-slides. Create stunning, animation-rich HTML presentations from scratch or by converting PowerPoint files. Use when the user wants to build a presentation, convert a PPT/PPTX to web, or create slides for a talk/pitch. Helps non-designers discover their aesthetic through visual exploration rather than abstract choices. Platforms: claude_code."} {"id": "d78b46be14edc484ade69cb63687d07141e909276f2bf0077b8afd0e03790a9e", "repo_url": "https://github.com/rzx007/nanobot-ts", "name": "agent-browser", "description": "Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rzx007/nanobot-ts/blob/master/.claude/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-browser"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T07:18:00Z"}, "embedding_text": "agent-browser. Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Platforms: claude_code."} {"id": "291e1316ed9389aeea0699d9e270dad25e6054b28162e9d0560ab6400ffcb2f2", "repo_url": "https://github.com/kxiandaoyan/memoh-v2", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Kxiandaoyan/Memoh-v2/blob/main/internal/skills/defaults/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx"}, "quality": {"stars": 330, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T08:12:43Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks Platforms: claude_code."} @@ -385,6 +385,54 @@ {"id": "c3b839dc7642c7c93944178fb89ef3fa1bac752c779e1a5cd8655ce130e8bbfa", "repo_url": "https://github.com/re-cinq/wave", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/re-cinq/wave/blob/main/.claude/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:31:08Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} {"id": "e8d6c7f7d454dcbc2923755e2a2b2a91dcc8392e38435247e48f4dd5d905d7f4", "repo_url": "https://github.com/mfts/papermark", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mfts/papermark/blob/main/.agents/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 8121, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:32:28Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} {"id": "f753f4bbcd86a63b80de0b1469a5dee4f9fbafff265d3e0e624b40a07da55c91", "repo_url": "https://github.com/john-lin/dotfiles", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/John-Lin/dotfiles/blob/master/claude/.claude/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 14, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T13:40:29Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "6a8c20e31a1f26fb528fa3a8ba00837093a273b539d182e5898e36604d3e1b62", "repo_url": "https://github.com/javimosch/supercli", "name": "earl", "description": "Use this skill when the user wants to securely call APIs from AI agents, manage secrets in OS keychain, or set up MCP tools for Claude Code/Cursor.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/javimosch/supercli/blob/master/plugins/earl/skills/quickstart/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install earl"}, "quality": {"stars": 39, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T21:11:36Z"}, "embedding_text": "earl. Use this skill when the user wants to securely call APIs from AI agents, manage secrets in OS keychain, or set up MCP tools for Claude Code/Cursor. Platforms: claude_code."} +{"id": "737fbe180590435e11db98868dee863e63c3d5651533c4031e2d53a24db8dea1", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "github", "description": "Interact with GitHub repositories using the GitHub API", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/development/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "github. Interact with GitHub repositories using the GitHub API Platforms: claude_code."} +{"id": "8c078bf75c6d23f616f7b6faedfac54582da3c33d2ec63e3875fbbfc9d996298", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "github-search", "description": "Search GitHub for repos, code, and usage examples using gh CLI. Capabilities: repo discovery, code search, finding library usage patterns, issue/PR search. Actions: search, find, discover repos/code/examples. Keywords: gh, github, search repos, search code, find examples, how to use library, stars, language filter. Use when: finding repositories, searching code patterns, discovering how libraries are used, exploring open source.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/github-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-search"}, "quality": {"stars": 432, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "github-search. Search GitHub for repos, code, and usage examples using gh CLI. Capabilities: repo discovery, code search, finding library usage patterns, issue/PR search. Actions: search, find, discover repos/code/examples. Keywords: gh, github, search repos, search code, find examples, how to use library, stars, language filter. Use when: finding repositories, searching code patterns, discovering how libraries are used, exploring open source. Platforms: claude_code."} +{"id": "8b0b756d141d2856f0f26a92d311ea291319f13e01b3cee87244c6371a9c656b", "repo_url": "https://github.com/vibeeval/vibecosystem", "name": "github-mcp", "description": "GitHub MCP Server ile GitHub API erisimi. Repo, issue, PR, code search, release yonetimi.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vibeeval/vibecosystem/blob/main/skills/github-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-mcp"}, "quality": {"stars": 506, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-17T11:25:40Z"}, "embedding_text": "github-mcp. GitHub MCP Server ile GitHub API erisimi. Repo, issue, PR, code search, release yonetimi. Platforms: claude_code."} +{"id": "d9c56250a49ce7b0c9342fff6ffc4e513049480fe1b993912f39ca77be8c0704", "repo_url": "https://github.com/aaronjmars/aeon", "name": "GitHub Trending", "description": "Curated trending GitHub repos \u2014 clustered, filtered, and labeled by momentum", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronjmars/aeon/blob/main/skills/github-trending/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install GitHub Trending"}, "quality": {"stars": 541, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T22:10:40Z"}, "embedding_text": "GitHub Trending. Curated trending GitHub repos \u2014 clustered, filtered, and labeled by momentum Platforms: claude_code."} +{"id": "3aee16fe8f5fe361f62f2e7d32a4b6b6b94e2ab4499a7d508f435ddd9a950213", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "github-search", "description": "Search GitHub for repos, code, and usage examples using gh CLI. Capabilities: repo discovery, code search, finding library usage patterns, issue/PR search. Actions: search, find, discover repos/code/examples. Keywords: gh, github, search repos, search code, find examples, how to use library, stars, language filter. Use when: finding repositories, searching code patterns, discovering how libraries are used, exploring open source.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/tools/github-search-majiayu000/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-search"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "github-search. Search GitHub for repos, code, and usage examples using gh CLI. Capabilities: repo discovery, code search, finding library usage patterns, issue/PR search. Actions: search, find, discover repos/code/examples. Keywords: gh, github, search repos, search code, find examples, how to use library, stars, language filter. Use when: finding repositories, searching code patterns, discovering how libraries are used, exploring open source. Platforms: claude_code."} +{"id": "6d179a94473b64ed180d6ee19e1646989769c37fd2bd95b16f64c24c5089c1d7", "repo_url": "https://github.com/stoaaadev/stoa", "name": "trend-analysis", "description": "Identifies emerging trends across crypto, tech, and DeFi by analyzing multiple data signals", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/stoaaadev/stoa/blob/main/skills/trend-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install trend-analysis"}, "quality": {"stars": 28, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-05-20T22:03:50Z"}, "embedding_text": "trend-analysis. Identifies emerging trends across crypto, tech, and DeFi by analyzing multiple data signals Platforms: claude_code."} +{"id": "ad15d85c480157b9898f7b407233251f389df13530ed26be98a50f30123aec54", "repo_url": "https://github.com/majiayu000/claude-skill-registry-data", "name": "gh-search", "description": "Use when searching GitHub via CLI for issues, PRs, repos, code, or commits - provides correct syntax for exclusions, qualifiers, quoting, and platform-specific handling to avoid command failures", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry-data/blob/main/development/gh-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-search"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T04:55:53Z"}, "embedding_text": "gh-search. Use when searching GitHub via CLI for issues, PRs, repos, code, or commits - provides correct syntax for exclusions, qualifiers, quoting, and platform-specific handling to avoid command failures Platforms: claude_code."} +{"id": "cdf8d8843baedda8a47d4a715e60ae7a087ebb9d4674ee6fad9fb12d6957dfb4", "repo_url": "https://github.com/atrislabs/atris", "name": "research-search", "description": "Fast research sweep \u2014 arxiv, semantic scholar, github, web. Finds papers, scores relevance, extracts actionable insights, stores to wiki. Triggers on: research search, find papers, latest research, arxiv, what's new in, sweep papers, research sweep.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/atrislabs/atris/blob/master/atris/skills/research-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install research-search"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-18T11:09:24Z"}, "embedding_text": "research-search. Fast research sweep \u2014 arxiv, semantic scholar, github, web. Finds papers, scores relevance, extracts actionable insights, stores to wiki. Triggers on: research search, find papers, latest research, arxiv, what's new in, sweep papers, research sweep. Platforms: claude_code."} +{"id": "d0443b333bf182cafcb49d81554e380372ff8f09f5b579faaa9365223ec74523", "repo_url": "https://github.com/sundial-org/awesome-openclaw-skills", "name": "github-kb", "description": "Manage a local GitHub knowledge base and provide GitHub search capabilities via gh CLI. Use when users ask about repos, PRs, issues, request to clone GitHub repositories, explore codebases, or need information about GitHub projects. Supports searching GitHub via gh CLI and managing local KB with GITHUB_KB.md catalog. Configure via GITHUB_TOKEN and GITHUB_KB_PATH environment variables.", "source": ["skillsmp", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/awesome-openclaw-skills/blob/main/skills/github-kb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-kb"}, "quality": {"stars": 621, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T06:57:19Z"}, "embedding_text": "github-kb. Manage a local GitHub knowledge base and provide GitHub search capabilities via gh CLI. Use when users ask about repos, PRs, issues, request to clone GitHub repositories, explore codebases, or need information about GitHub projects. Supports searching GitHub via gh CLI and managing local KB with GITHUB_KB.md catalog. Configure via GITHUB_TOKEN and GITHUB_KB_PATH environment variables. Platforms: claude_code."} +{"id": "9d4345b828b2e7e96194aad2a52a9b9e12c23784acd7c2e265b51c19e789d288", "repo_url": "https://github.com/malue-ai/dazee-small", "name": "trend-spotter", "description": "Discover emerging trends and hot topics from news, social media, and search data. Generate trend analysis reports.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malue-ai/dazee-small/blob/main/instances/xiaodazi/skills/trend-spotter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install trend-spotter"}, "quality": {"stars": 34, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-18T03:38:09Z"}, "embedding_text": "trend-spotter. Discover emerging trends and hot topics from news, social media, and search data. Generate trend analysis reports. Platforms: claude_code."} +{"id": "94428f4caba3dbdcfeb7317cae58e73e3ae38aa8d461b003ecb850fae6493d78", "repo_url": "https://github.com/aaronjmars/miroshark-aeon", "name": "GitHub Trending", "description": "Curated trending GitHub repos \u2014 clustered, filtered, and labeled by momentum", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronjmars/miroshark-aeon/blob/main/skills/github-trending/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install GitHub Trending"}, "quality": {"stars": 16, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T19:38:09Z"}, "embedding_text": "GitHub Trending. Curated trending GitHub repos \u2014 clustered, filtered, and labeled by momentum Platforms: claude_code."} +{"id": "075f7400328bde8311db82e10c8d1a16a40dde9f8736adeb5db2db1abe1aae2e", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "gh-cli", "description": "The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks-extra/gh-repo-analytics/environment/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 1377, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "gh-cli. The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill. Platforms: claude_code."} +{"id": "821fcb75472628b716a0ac43962b26a8630d9b17bce3deb95f2128ab08757aae", "repo_url": "https://github.com/el3tar-cmd/devhive-cli", "name": "github-solution-finder", "description": "Search GitHub for battle-tested open-source libraries and solutions", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/El3tar-cmd/DevHive-Cli/blob/master/agents/github-solution-finder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-solution-finder"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-04-03T21:37:48Z"}, "embedding_text": "github-solution-finder. Search GitHub for battle-tested open-source libraries and solutions Platforms: claude_code."} +{"id": "b60414e6f8c0b30c9e60bdf518e3affc466a8c39222ab65f32a4ef4a91403cbd", "repo_url": "https://github.com/cxcscmu/skilllearnbench", "name": "gh-cli", "description": "The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cxcscmu/SkillLearnBench/blob/main/skills/human_authored/github-repo-analytics/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-12T03:57:33Z"}, "embedding_text": "gh-cli. The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill. Platforms: claude_code."} +{"id": "eeb83210233f7701556bdb62636597bdc9057c3aca45843cf2676b9ffc35951d", "repo_url": "https://github.com/giteehubby/clawevalkit", "name": "gh-cli", "description": "The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/giteehubby/ClawEvalkit/blob/main/benchmarks/skillsbench/tasks/gh-repo-analytics/environment/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-05-29T11:01:17Z"}, "embedding_text": "gh-cli. The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill. Platforms: claude_code."} +{"id": "e2b96ee2a686097d2d3d31563c32880c66c999b613af65709a4485729bcc1a52", "repo_url": "https://github.com/jackjin1997/clawforge", "name": "github-trending-analyzer", "description": "Fetch, categorize, and summarize GitHub Trending projects across daily, weekly, and monthly spans. Use when a user asks for \"trending projects\", \"latest hot repos\", or a \"summary of GitHub trends\" to provide a structured, categorised report with full hyperlinking. Supports Markdown, HTML (Pinterest design), or both output formats, with optional Obsidian vault storage.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackjin1997/ClawForge/blob/main/skills/github-trending-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-trending-analyzer"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-16T07:38:35Z"}, "embedding_text": "github-trending-analyzer. Fetch, categorize, and summarize GitHub Trending projects across daily, weekly, and monthly spans. Use when a user asks for \"trending projects\", \"latest hot repos\", or a \"summary of GitHub trends\" to provide a structured, categorised report with full hyperlinking. Supports Markdown, HTML (Pinterest design), or both output formats, with optional Obsidian vault storage. Platforms: claude_code."} +{"id": "c556b5c705543c8cdc24eed17185dbc471e1a7b3d8836816047cd1084c49e8bb", "repo_url": "https://github.com/ucsb-nlp-chang/skill-usage", "name": "gh-cli", "description": "The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/UCSB-NLP-Chang/Skill-Usage/blob/main/tasks/gh-repo-analytics/environment/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-04-08T03:53:08Z"}, "embedding_text": "gh-cli. The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill. Platforms: claude_code."} +{"id": "99275995e21b3911ed3fd65471f93a89a40c88e66987b2835fad416ba995609b", "repo_url": "https://github.com/aaronjmars/aeon-agent", "name": "GitHub Trending", "description": "Curated trending GitHub repos \u2014 clustered, filtered, and labeled by momentum", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronjmars/aeon-agent/blob/main/skills/github-trending/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install GitHub Trending"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T19:38:06Z"}, "embedding_text": "GitHub Trending. Curated trending GitHub repos \u2014 clustered, filtered, and labeled by momentum Platforms: claude_code."} +{"id": "14e067a08b8dbca8fd621450f791b885242207001e2b6356df82e9b65bd54613", "repo_url": "https://github.com/elizaos/eliza", "name": "gh-cli", "description": "The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/elizaOS/eliza/blob/develop/packages/benchmarks/skillsbench/tasks/gh-repo-analytics/environment/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 18612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-22T04:01:17Z"}, "embedding_text": "gh-cli. The gh CLI is GitHub's official command line tool for interacting with GitHub repositories, issues, pull requests, and more. When needs to interact with GitHub repositories, issues, pull requests, and more, use this skill. Platforms: claude_code."} +{"id": "edccdcb0f707fba913af49fdc1146bf2c9f5633ab05d2ce388925086eaff81f4", "repo_url": "https://github.com/lispking/ferris-search", "name": "ferris-search-tools", "description": "CRITICAL: Use for ferris-search MCP tool usage. Triggers on:\nweb_search, fetch_web_content, fetch_github_readme, fetch_csdn_article,\nfetch_juejin_article, fetch_zhihu_article, fetch_linuxdo_article,\nferris-search tool, MCP search tool, multi-engine search,\ngithub search, github_code search, GitHub repository search, GitHub code search,\n\u641c\u7d22\u5f15\u64ce\u5de5\u5177, \u7f51\u9875\u6293\u53d6, \u6587\u7ae0\u83b7\u53d6, MCP\u641c\u7d22, \u591a\u5f15\u64ce\u641c\u7d22, GitHub\u641c\u7d22", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lispking/ferris-search/blob/main/skills/ferris-search-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ferris-search-tools"}, "quality": {"stars": 58, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-04-06T22:51:05Z"}, "embedding_text": "ferris-search-tools. CRITICAL: Use for ferris-search MCP tool usage. Triggers on:\nweb_search, fetch_web_content, fetch_github_readme, fetch_csdn_article,\nfetch_juejin_article, fetch_zhihu_article, fetch_linuxdo_article,\nferris-search tool, MCP search tool, multi-engine search,\ngithub search, github_code search, GitHub repository search, GitHub code search,\n\u641c\u7d22\u5f15\u64ce\u5de5\u5177, \u7f51\u9875\u6293\u53d6, \u6587\u7ae0\u83b7\u53d6, MCP\u641c\u7d22, \u591a\u5f15\u64ce\u641c\u7d22, GitHub\u641c\u7d22 Platforms: claude_code."} +{"id": "bd0580b61490aa5c4dc8c953cda03b3e8d667f8d8822c6d95a5353a8dd9db3e9", "repo_url": "https://github.com/neuron-core/neuron-ai", "name": "neuron-tool-creator", "description": "Create custom tools, toolkits, and MCP integrations for Neuron AI agents. Use this skill when the user mentions creating tools, building toolkits, extending Tool class, defining tool properties, implementing tool execution, MCP server integration, Model Context Protocol, connecting external tools, or tool guidelines. Also trigger for any task involving ToolProperty, ArrayProperty, ObjectProperty, AbstractToolkit, McpConnector, or StdioTransport/SseHttpTransport/StreamableHttpTransport.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neuron-core/neuron-ai/blob/3.x/skills/neuron-tool-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install neuron-tool-creator"}, "quality": {"stars": 1975, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T16:54:03Z"}, "embedding_text": "neuron-tool-creator. Create custom tools, toolkits, and MCP integrations for Neuron AI agents. Use this skill when the user mentions creating tools, building toolkits, extending Tool class, defining tool properties, implementing tool execution, MCP server integration, Model Context Protocol, connecting external tools, or tool guidelines. Also trigger for any task involving ToolProperty, ArrayProperty, ObjectProperty, AbstractToolkit, McpConnector, or StdioTransport/SseHttpTransport/StreamableHttpTransport. Platforms: claude_code."} +{"id": "43f656bfb8d055aa92cc0c1214157e10aaddb1ac31be7f67110b0f9148eafab4", "repo_url": "https://github.com/myriad-dreamin/tinymist", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Myriad-Dreamin/tinymist/blob/main/.codex/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 3339, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T18:39:43Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "554e7c285f3a239260b033244e1c69cdd9c79b1d6250c8b845df5e8912ae01e5", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "gh-search-repos", "description": "Use when searching for repositories across GitHub - provides syntax for filtering by stars, forks, language, topics, license, archived status, and all repository attributes", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/gh-search-repos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-search-repos"}, "quality": {"stars": 432, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "gh-search-repos. Use when searching for repositories across GitHub - provides syntax for filtering by stars, forks, language, topics, license, archived status, and all repository attributes Platforms: claude_code."} +{"id": "d10fd696fd3c5a519e31540f92651a40b1354870643f6a47c9f0e657e283f3d7", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "search-operations", "description": "Search GitHub - find code, issues, users, and repositories across GitHub using gh CLI", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/cli-automation/search-operations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install search-operations"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "search-operations. Search GitHub - find code, issues, users, and repositories across GitHub using gh CLI Platforms: claude_code."} +{"id": "e0ef6e403c953573a79421f091651832173fb940c17631395c48f6f8734f99f3", "repo_url": "https://github.com/dvcrn/openclaw-skills-marketplace", "name": "mission-control", "description": "Build a personal dashboard for OpenClaw with task management, memory browser, calendar, team tracking, and GitHub trends. Use when the user wants to create a web-based mission control dashboard for their OpenClaw instance, track tasks, view memories, manage calendar events, or build a custom dashboard interface.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dvcrn/openclaw-skills-marketplace/blob/main/plugins/shukiclaw--mission-control-builder/skills/mission-control/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mission-control"}, "quality": {"stars": 17, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-12T21:33:13Z"}, "embedding_text": "mission-control. Build a personal dashboard for OpenClaw with task management, memory browser, calendar, team tracking, and GitHub trends. Use when the user wants to create a web-based mission control dashboard for their OpenClaw instance, track tasks, view memories, manage calendar events, or build a custom dashboard interface. Platforms: claude_code."} +{"id": "5218f926406923ccf695f01f2f87881a3d38fa4878e3f12e7f8178c76db06305", "repo_url": "https://github.com/raystyle/skills", "name": "github", "description": "GitHub CLI + Nushell \u7ed3\u6784\u5316\u641c\u7d22 + \u53ea\u8bfb\u5206\u6790\u3002TRIGGER when: gh search\uff08repos/issues/code/pr/releases\uff09\u3001GitHub \u6570\u636e\u8fc7\u6ee4/\u6392\u5e8f/\u805a\u5408\u3001gh --json \u7ed3\u6784\u5316\u8f93\u51fa\u5904\u7406\u3001GitHub API \u6570\u636e\u5206\u6790\u3001commit diff \u67e5\u770b\u3001branch/tag \u5217\u8868\u3002BLOCKING: \u6267\u884c gh search \u547d\u4ee4\u524d\u5fc5\u987b\u5148\u8c03\u7528\u6b64 skill\u3002SKIP: \u7eaf git \u64cd\u4f5c\u3001\u4e0d\u6d89\u53ca gh \u547d\u4ee4\u6216 GitHub \u6570\u636e\u7684\u64cd\u4f5c\u3002", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/raystyle/skills/blob/main/skills/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github"}, "quality": {"stars": 35, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-09T07:39:20Z"}, "embedding_text": "github. GitHub CLI + Nushell \u7ed3\u6784\u5316\u641c\u7d22 + \u53ea\u8bfb\u5206\u6790\u3002TRIGGER when: gh search\uff08repos/issues/code/pr/releases\uff09\u3001GitHub \u6570\u636e\u8fc7\u6ee4/\u6392\u5e8f/\u805a\u5408\u3001gh --json \u7ed3\u6784\u5316\u8f93\u51fa\u5904\u7406\u3001GitHub API \u6570\u636e\u5206\u6790\u3001commit diff \u67e5\u770b\u3001branch/tag \u5217\u8868\u3002BLOCKING: \u6267\u884c gh search \u547d\u4ee4\u524d\u5fc5\u987b\u5148\u8c03\u7528\u6b64 skill\u3002SKIP: \u7eaf git \u64cd\u4f5c\u3001\u4e0d\u6d89\u53ca gh \u547d\u4ee4\u6216 GitHub \u6570\u636e\u7684\u64cd\u4f5c\u3002 Platforms: claude_code."} +{"id": "929cbae458fb6b9949c2784d189f0f55e8b788e2e5dc34a84afb0438d03fc5fe", "repo_url": "https://github.com/unacms/una", "name": "neuron-tool-creator", "description": "Create custom tools, toolkits, and MCP integrations for Neuron AI agents. Use this skill when the user mentions creating tools, building toolkits, extending Tool class, defining tool properties, implementing tool execution, MCP server integration, Model Context Protocol, connecting external tools, or tool guidelines. Also trigger for any task involving ToolProperty, ArrayProperty, ObjectProperty, AbstractToolkit, McpConnector, or StdioTransport/SseHttpTransport/StreamableHttpTransport.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/unacms/UNA/blob/master/upgrade/files/15.0.0.B1-15.0.0.B2/files/plugins/neuron-core/neuron-ai/skills/neuron-tool-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install neuron-tool-creator"}, "quality": {"stars": 314, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-18T13:55:07Z"}, "embedding_text": "neuron-tool-creator. Create custom tools, toolkits, and MCP integrations for Neuron AI agents. Use this skill when the user mentions creating tools, building toolkits, extending Tool class, defining tool properties, implementing tool execution, MCP server integration, Model Context Protocol, connecting external tools, or tool guidelines. Also trigger for any task involving ToolProperty, ArrayProperty, ObjectProperty, AbstractToolkit, McpConnector, or StdioTransport/SseHttpTransport/StreamableHttpTransport. Platforms: claude_code."} +{"id": "699b446c9695c7212b822085408cda255a5e515088559004034966ee7cd01bc5", "repo_url": "https://github.com/devantler-tech/platform", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/devantler-tech/platform/blob/main/.agents/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-22T01:54:58Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "ef28bd06115b5234265cb20f605872ca917814f0fe335738a15af9f28bcd066e", "repo_url": "https://github.com/majiayu000/claude-skill-registry-data", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry-data/blob/main/integration/gh-cli-github-awesome-copilot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T04:55:53Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "b4107684fb9780904722a6b44b5d29208119e1f7987657415458b0b54a397523", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/github/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 368, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "bdc8b33a08d341aa5272a913aa6f8baebfa2da37cd9409f5de57c12544e3db75", "repo_url": "https://github.com/comeonoliver/skillshub", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ComeOnOliver/skillshub/blob/main/skills/github/awesome-copilot/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 52, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-22T03:41:55Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "772d813d8730d6de7f129b5cbd8dcdf2f23478422da2e0f0cf9d46b0db9b04c1", "repo_url": "https://github.com/hyecompany/ararat-web", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hyecompany/ararat-web/blob/yerek/.cursor/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 26, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-05-18T05:12:44Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "e3b2f28dd654f0fd3b8ebd2e42b96138b0b988c631000e0d557441fffdeb2e65", "repo_url": "https://github.com/aiagenta2z/onekey-gateway", "name": "github", "description": "Auto-generated skill for github tools via OneKey Gateway.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiagenta2z/onekey-gateway/blob/main/skills/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-04-10T09:03:22Z"}, "embedding_text": "github. Auto-generated skill for github tools via OneKey Gateway. Platforms: claude_code."} +{"id": "712ff779505292c7327169d261c4b3da379a2f866daf6e582e45d74b8152e9d3", "repo_url": "https://github.com/grota/dotfiles", "name": "gh", "description": "How to use the GitHub CLI (gh) to work with GitHub issues, pull requests, Actions workflows, releases, and repositories. Use this skill whenever the user provides a URL containing \"github.com\" in the hostname, mentions pull requests, GitHub issues, GitHub Actions, or wants to interact with a GitHub remote. Also use this skill when the user mentions \"gh\", \"PR\", \"pull request\", or when you detect the git remote points to a GitHub instance (look for \"github\" in the remote URL). This skill is the GitHub equivalent of using `glab` for GitLab -- if the project is on GitHub, use this skill instead.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/grota/dotfiles/blob/master/dot_agents/skills/gh/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-05-23T21:43:15Z"}, "embedding_text": "gh. How to use the GitHub CLI (gh) to work with GitHub issues, pull requests, Actions workflows, releases, and repositories. Use this skill whenever the user provides a URL containing \"github.com\" in the hostname, mentions pull requests, GitHub issues, GitHub Actions, or wants to interact with a GitHub remote. Also use this skill when the user mentions \"gh\", \"PR\", \"pull request\", or when you detect the git remote points to a GitHub instance (look for \"github\" in the remote URL). This skill is the GitHub equivalent of using `glab` for GitLab -- if the project is on GitHub, use this skill instead. Platforms: claude_code."} +{"id": "b747d9c4fbd6d0a5cea6329d08fe5f65d42f92ae8ef8ae7a673d2b7cdcd558de", "repo_url": "https://github.com/lxyeternal/malskillbench", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lxyeternal/MalSkillBench/blob/main/Dataset/Skills/malware/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 23, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-10T06:43:36Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "0d1f82e82ace7bc8fc43fe8ae338e134a3f836e5b263d59206dfc7da36573f48", "repo_url": "https://github.com/bighardperson/computer-science-skills-collection", "name": "github", "description": "GitHub API integration with managed OAuth. Access repositories, issues, pull requests, commits, branches, and users.\nUse this skill when users want to interact with GitHub repositories, manage issues and PRs, search code, or automate workflows.\nFor other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).\n", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bighardperson/computer-science-skills-collection/blob/main/skills/github-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-04-26T07:07:06Z"}, "embedding_text": "github. GitHub API integration with managed OAuth. Access repositories, issues, pull requests, commits, branches, and users.\nUse this skill when users want to interact with GitHub repositories, manage issues and PRs, search code, or automate workflows.\nFor other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).\n Platforms: claude_code."} +{"id": "3efd0144fb902b6c97f63186021f758557631f572640bb9fff15cb05c41d1675", "repo_url": "https://github.com/boshi-xixixi/traeskill", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/boshi-xixixi/TraeSkill/blob/main/.trae/Skills/.agents/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 231, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-05-12T14:25:45Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "22bc4d4cd4fb40ad96dcee68556c69236054f542002c8988cc84b422aab41e9d", "repo_url": "https://github.com/christophacham/agent-skills-library", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/christophacham/agent-skills-library/blob/main/skills/tooling/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 60, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T14:59:53Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "f542808cde8851ba8c7fc86db253303f286ab21a44dc792986bc5256ff528a63", "repo_url": "https://github.com/vercel-labs/just-bash", "name": "just-bash-executor", "description": "Convert a GraphQL endpoint, OpenAPI spec, or MCP server into bash CLI commands and a `tools.*` JS API runnable inside `just-bash`'s `js-exec` sandbox. Use when the user wants to expose a remote API to a sandboxed bash agent, build a tool-calling agent on top of just-bash, or generate CLI commands from an existing API spec.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vercel-labs/just-bash/blob/main/packages/just-bash-executor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install just-bash-executor"}, "quality": {"stars": 3794, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T07:57:45Z"}, "embedding_text": "just-bash-executor. Convert a GraphQL endpoint, OpenAPI spec, or MCP server into bash CLI commands and a `tools.*` JS API runnable inside `just-bash`'s `js-exec` sandbox. Use when the user wants to expose a remote API to a sandboxed bash agent, build a tool-calling agent on top of just-bash, or generate CLI commands from an existing API spec. Platforms: claude_code."} +{"id": "80159895e4f2d623a52ca4e423a0f63eda4be357bf6998070f3a5feec1fb600b", "repo_url": "https://github.com/neuron-core/neuron-laravel", "name": "neuron-tool-creator", "description": "Create custom tools, toolkits, and MCP integrations for Neuron AI agents. Use this skill when the user mentions creating tools, building toolkits, extending Tool class, defining tool properties, implementing tool execution, MCP server integration, Model Context Protocol, connecting external tools, or tool guidelines. Also trigger for any task involving ToolProperty, ArrayProperty, ObjectProperty, AbstractToolkit, McpConnector, or StdioTransport/SseHttpTransport/StreamableHttpTransport.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neuron-core/neuron-laravel/blob/1.x/resources/boost/skills/neuron-tool-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install neuron-tool-creator"}, "quality": {"stars": 111, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-05-14T16:41:04Z"}, "embedding_text": "neuron-tool-creator. Create custom tools, toolkits, and MCP integrations for Neuron AI agents. Use this skill when the user mentions creating tools, building toolkits, extending Tool class, defining tool properties, implementing tool execution, MCP server integration, Model Context Protocol, connecting external tools, or tool guidelines. Also trigger for any task involving ToolProperty, ArrayProperty, ObjectProperty, AbstractToolkit, McpConnector, or StdioTransport/SseHttpTransport/StreamableHttpTransport. Platforms: claude_code."} +{"id": "1d7114a41027e85f65b33e9f344d6b980e2391d9349e1e79d1a8c6bc4b876581", "repo_url": "https://github.com/samhvw8/dotfiles", "name": "deep-gather", "description": "Deep internet gathering \u2014 the search-fetch loop, query templates, multi-source/GitHub patterns, and retrieval tools. ONE job: collect raw sources and data from the internet on an assigned topic/language. Run standalone to deep-gather a topic, or as the GATHER-DATA step of lead-researcher's research loop. Does NOT reason, steer, or synthesize \u2014 that is lead-researcher's brain. Triggers: 'deep gather', 'gather sources/data on X', 'collect everything about Y'.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samhvw8/dotfiles/blob/master/dot_ccp/hub/skills/deep-gather/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deep-gather"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-18T15:59:44Z"}, "embedding_text": "deep-gather. Deep internet gathering \u2014 the search-fetch loop, query templates, multi-source/GitHub patterns, and retrieval tools. ONE job: collect raw sources and data from the internet on an assigned topic/language. Run standalone to deep-gather a topic, or as the GATHER-DATA step of lead-researcher's research loop. Does NOT reason, steer, or synthesize \u2014 that is lead-researcher's brain. Triggers: 'deep gather', 'gather sources/data on X', 'collect everything about Y'. Platforms: claude_code."} +{"id": "73e857f612da1d6faac5ca11943a007c532bc98a15a707053ee20b7f332f7e3d", "repo_url": "https://github.com/christopherekfeldt/mcp-bitbucket-dc", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/christopherekfeldt/mcp-bitbucket-dc/blob/main/.agents/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-19T15:24:24Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "655b5aa63d8a335db0205a213920970c52e3b7495002edf72b5dd972c0188e6e", "repo_url": "https://github.com/ronnycoding/.claude", "name": "secure-web-search", "description": "Guide for performing secure web searches with privacy protection, source verification, and information validation. Use when the user wants to search the web securely, verify sources, fact-check information, or mentions secure search, privacy, source validation, or web research.", "source": ["skillsmp", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ronnycoding/.claude/blob/main/skills/secure-web-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install secure-web-search"}, "quality": {"stars": 18, "skillhub_rank": "A", "skillhub_score": 7.9, "last_updated": "2026-06-17T14:17:18Z"}, "embedding_text": "secure-web-search. Guide for performing secure web searches with privacy protection, source verification, and information validation. Use when the user wants to search the web securely, verify sources, fact-check information, or mentions secure search, privacy, source validation, or web research. Platforms: claude_code."} +{"id": "2514f5eb20c5c264818cf640d05eb3d99d7caf86203486ddf359892233b56e70", "repo_url": "https://github.com/papermark/papermark", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/papermark/papermark/blob/main/.agents/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 8604, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T20:54:12Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "1887f86535598dc2316729d3ce122ca4b5bdfd369cf53e74cfcc1dc21723d5f6", "repo_url": "https://github.com/bramp/ffmpeg-cli-wrapper", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bramp/ffmpeg-cli-wrapper/blob/main/.agents/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 1906, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-21T14:55:50Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "a45e91a4c4902b88f3d9ec19d357b583d0f11760ffdaed9702aa9c156f50f27f", "repo_url": "https://github.com/dallen4/deadrop", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dallen4/deadrop/blob/main/.agents/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-06-22T00:36:34Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} +{"id": "ac9fa6fdd6b5e13e0a09b8b6e0d33b334593e1d5382d53fa0b1e7af5ab942554", "repo_url": "https://github.com/huxleymc/steam-spotify", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["skillsmp"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/HuxleyMc/Steam-Spotify/blob/main/.agents/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-05-24T12:50:35Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Platforms: claude_code."} {"id": "8467c85c354189a835c9aff8fddf861ead186385493909abff9906445e456b51", "repo_url": "https://github.com/openclaw/skills", "name": "agent-commons", "description": "Consult, commit, extend, and challenge reasoning chains.", "source": ["clawhub"], "categories": ["Table of Contents"], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/skills/blob/main/skills/zanblayde/agent-commons/SKILL.md/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install agent-commons"}, "quality": {"stars": 2868, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T09:07:32Z"}, "embedding_text": "agent-commons. Consult, commit, extend, and challenge reasoning chains. Categories: Table of Contents. Platforms: openclaw."} {"id": "01785141a5a18adfc20c47a5785f4fadaaa8f52461a02a7bf7481cb8bee08af2", "repo_url": "https://github.com/openclaw/skills", "name": "agent-team-orchestration", "description": "Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows.", "source": ["clawhub"], "categories": ["Table of Contents"], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/skills/blob/main/skills/arminnaimi/agent-team-orchestration/SKILL.md/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install agent-team-orchestration"}, "quality": {"stars": 2868, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T09:07:32Z"}, "embedding_text": "agent-team-orchestration. Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Categories: Table of Contents. Platforms: openclaw."} {"id": "606936ad16f8e3b35cf4eede53a757177c842db5cd65887ef762634d3906730f", "repo_url": "https://github.com/openclaw/skills", "name": "agentdo", "description": "Post tasks for other AI agents to do, or pick up work from the AgentDo task queue (agentdo.dev)", "source": ["clawhub"], "categories": ["Table of Contents"], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/skills/blob/main/skills/wrannaman/agentdo/SKILL.md/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install agentdo"}, "quality": {"stars": 2868, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T09:07:32Z"}, "embedding_text": "agentdo. Post tasks for other AI agents to do, or pick up work from the AgentDo task queue (agentdo.dev) Categories: Table of Contents. Platforms: openclaw."} @@ -1537,10 +1585,10 @@ {"id": "e1ae9409d8c791b0fc694d3fff0987c338b29d7a882296910dee6b360f270213", "repo_url": "https://github.com/neolabhq/context-engineering-kit", "name": "subagent-driven-development", "description": "A sophisticated skill for orchestrating AI subagents to execute development plans with quality gates, enabling parallel or sequential task execution with systematic code review between stages.", "source": ["clawhub", "skillhub"], "categories": ["Skills"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/neolabhq/context-engineering-kit/blob/master/plugins/sadd/skills/subagent-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install subagent-driven-development"}, "quality": {"stars": 645, "skillhub_rank": "A", "skillhub_score": 8.3, "last_updated": "2026-03-13T10:24:15Z"}, "embedding_text": "subagent-driven-development. A sophisticated skill for orchestrating AI subagents to execute development plans with quality gates, enabling parallel or sequential task execution with systematic code review between stages. Categories: Skills. Platforms: claude_code, openclaw."} {"id": "79deed0f64007466c94c31c1ca2950086ab065e96d130c074decc29531304b7b", "repo_url": "https://github.com/obra/superpowers", "name": "test-driven-development", "description": "Use when implementing any feature or bugfix, before writing implementation code.", "source": ["clawhub", "skillhub"], "categories": ["Skills"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/obra/superpowers/blob/main/skills/test-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install test-driven-development"}, "quality": {"stars": 87143, "skillhub_rank": "A", "skillhub_score": 8.5, "last_updated": "2026-03-16T00:35:58Z"}, "embedding_text": "test-driven-development. Use when implementing any feature or bugfix, before writing implementation code. Categories: Skills. Platforms: claude_code, openclaw."} {"id": "6e74e72d65dc50504d92257cab4a8dfa9a7493e5327c03e3974184d908c632c1", "repo_url": "https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill", "name": "CSV Data Summarizer", "description": "Automatically analyzes CSV files and generates comprehensive insights with visualizations without requiring user prompts. *By [@coffeefuelbump](https://github.com/coffeefuelbump)*", "source": ["clawhub", "marketplace", "topic"], "categories": ["Skills", "claude-skills"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/coffeefuelbump/csv-data-summarizer-claude-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install CSV Data Summarizer", "claude_code": "/plugin install CSV Data Summarizer"}, "quality": {"stars": 296, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-16T20:20:06Z"}, "embedding_text": "CSV Data Summarizer. Automatically analyzes CSV files and generates comprehensive insights with visualizations without requiring user prompts. *By [@coffeefuelbump](https://github.com/coffeefuelbump)* Categories: Skills, claude-skills. Platforms: claude_code, openclaw."} -{"id": "018563a9782a5649cc26d33130bff036c783c3f49bc71d2d3a47e58179b5949d", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "deep-research", "description": "Execute autonomous multi-step research using Google Gemini Deep Research Agent. Use for: market analysis, competitive landscaping, literature reviews, technical research, due diligence. Takes 2-10 minutes but produces detailed, cited reports. Costs $2-5 per task.", "source": ["clawhub", "marketplace", "topic"], "categories": ["Skills", "agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/deep-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install deep-research", "claude_code": "/plugin install deep-research"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "deep-research. Execute autonomous multi-step research using Google Gemini Deep Research Agent. Use for: market analysis, competitive landscaping, literature reviews, technical research, due diligence. Takes 2-10 minutes but produces detailed, cited reports. Costs $2-5 per task. Categories: Skills, agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code, openclaw."} -{"id": "04aab8223a631259609aec775cd8b198c5ed75aab0a379593c66a373f26e2896", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "postgres", "description": "Execute read-only SQL queries against multiple PostgreSQL databases. Use when: (1) querying PostgreSQL databases, (2) exploring database schemas/tables, (3) running SELECT queries for data analysis, (4) checking database contents. Supports multiple database connections with descriptions for intelligent auto-selection. Blocks all write operations (INSERT, UPDATE, DELETE, DROP, etc.) for safety.", "source": ["clawhub", "marketplace", "topic"], "categories": ["Skills", "agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/postgres/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install postgres", "claude_code": "/plugin install postgres"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "postgres. Execute read-only SQL queries against multiple PostgreSQL databases. Use when: (1) querying PostgreSQL databases, (2) exploring database schemas/tables, (3) running SELECT queries for data analysis, (4) checking database contents. Supports multiple database connections with descriptions for intelligent auto-selection. Blocks all write operations (INSERT, UPDATE, DELETE, DROP, etc.) for safety. Categories: Skills, agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code, openclaw."} +{"id": "018563a9782a5649cc26d33130bff036c783c3f49bc71d2d3a47e58179b5949d", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "deep-research", "description": "Execute autonomous multi-step research using Google Gemini Deep Research Agent. Use for: market analysis, competitive landscaping, literature reviews, technical research, due diligence. Takes 2-10 minutes but produces detailed, cited reports. Costs $2-5 per task.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["Skills", "agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/deep-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install deep-research", "claude_code": "/plugin install deep-research"}, "quality": {"stars": 326, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-07T15:54:46Z"}, "embedding_text": "deep-research. Execute autonomous multi-step research using Google Gemini Deep Research Agent. Use for: market analysis, competitive landscaping, literature reviews, technical research, due diligence. Takes 2-10 minutes but produces detailed, cited reports. Costs $2-5 per task. Categories: Skills, agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code, openclaw."} +{"id": "04aab8223a631259609aec775cd8b198c5ed75aab0a379593c66a373f26e2896", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "postgres", "description": "Execute read-only SQL queries against multiple PostgreSQL databases. Use when: (1) querying PostgreSQL databases, (2) exploring database schemas/tables, (3) running SELECT queries for data analysis, (4) checking database contents. Supports multiple database connections with descriptions for intelligent auto-selection. Blocks all write operations (INSERT, UPDATE, DELETE, DROP, etc.) for safety.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["Skills", "agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/postgres/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install postgres", "claude_code": "/plugin install postgres"}, "quality": {"stars": 326, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-07T15:54:46Z"}, "embedding_text": "postgres. Execute read-only SQL queries against multiple PostgreSQL databases. Use when: (1) querying PostgreSQL databases, (2) exploring database schemas/tables, (3) running SELECT queries for data analysis, (4) checking database contents. Supports multiple database connections with descriptions for intelligent auto-selection. Blocks all write operations (INSERT, UPDATE, DELETE, DROP, etc.) for safety. Categories: Skills, agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code, openclaw."} {"id": "ff62fcce808740347291216c42a8bc71c92283da35e3747837f0aefaa0d2a135", "repo_url": "https://github.com/obra/superpowers", "name": "root-cause-tracing", "description": "Use when errors occur deep in execution and you need to trace back to find the original trigger.", "source": ["clawhub"], "categories": ["Skills"], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/obra/superpowers/blob/main/skills/root-cause-tracing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install root-cause-tracing"}, "quality": {"stars": 87143, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T00:35:58Z"}, "embedding_text": "root-cause-tracing. Use when errors occur deep in execution and you need to trace back to find the original trigger. Categories: Skills. Platforms: openclaw."} -{"id": "2b58421bdd48c098dd5860bbda246df2175ea28f17dd0685e0a8e2b79ff223c0", "repo_url": "https://github.com/michalparkola/tapestry-skills-for-claude-code", "name": "article-extractor", "description": "Extract full article text and metadata from web pages.", "source": ["clawhub"], "categories": ["Skills"], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/michalparkola/tapestry-skills-for-claude-code/blob/main/article-extractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install article-extractor"}, "quality": {"stars": 284, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T22:36:51Z"}, "embedding_text": "article-extractor. Extract full article text and metadata from web pages. Categories: Skills. Platforms: openclaw."} +{"id": "2b58421bdd48c098dd5860bbda246df2175ea28f17dd0685e0a8e2b79ff223c0", "repo_url": "https://github.com/michalparkola/tapestry-skills-for-claude-code", "name": "article-extractor", "description": "Unified content extraction and action planning. Use when user says \"tapestry \", \"weave \", \"help me plan \", \"extract and plan \", \"make this actionable \", or similar phrases ind", "source": ["clawhub", "skillhub"], "categories": ["Skills"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/michalparkola/tapestry-skills-for-claude-code/blob/main/article-extractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install article-extractor"}, "quality": {"stars": 442, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-11T22:36:51Z"}, "embedding_text": "article-extractor. Unified content extraction and action planning. Use when user says \"tapestry \", \"weave \", \"help me plan \", \"extract and plan \", \"make this actionable \", or similar phrases ind Categories: Skills. Platforms: claude_code, openclaw."} {"id": "c32d2ecd6be680e74e93b9d965f987cef04dec33e3b8614643ea8a701b3f3314", "repo_url": "https://github.com/obra/superpowers", "name": "brainstorming", "description": "A structured conversational assistant that guides developers from initial ideas to concrete software designs. It asks focused questions, proposes multiple approaches, and documents validated plans bef", "source": ["clawhub", "skillhub"], "categories": ["Skills"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/obra/superpowers/blob/main/skills/brainstorming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install brainstorming"}, "quality": {"stars": 87143, "skillhub_rank": "A", "skillhub_score": 8.2, "last_updated": "2026-03-16T00:35:58Z"}, "embedding_text": "brainstorming. A structured conversational assistant that guides developers from initial ideas to concrete software designs. It asks focused questions, proposes multiple approaches, and documents validated plans bef Categories: Skills. Platforms: claude_code, openclaw."} {"id": "425e338db2783425bbbedaf04ace1a4fec44fc8261ccb1170ede95d537a9e298", "repo_url": "https://github.com/emaynard/claude-family-history-research-skill", "name": "family-history-research", "description": "Provides assistance with planning family history and genealogy research projects.", "source": ["clawhub"], "categories": ["Skills"], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/emaynard/claude-family-history-research-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install family-history-research"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-07T16:10:20Z"}, "embedding_text": "family-history-research. Provides assistance with planning family history and genealogy research projects. Categories: Skills. Platforms: openclaw."} {"id": "e72fdb40b86b476e72e9a0138fff00e6ccc79669d97d60a689a231de03bf519e", "repo_url": "https://github.com/pleaseprompto/notebooklm-skill", "name": "NotebookLM Integration", "description": "Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Dr", "source": ["clawhub", "skillhub"], "categories": ["Skills"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/pleaseprompto/notebooklm-skill/blob/master/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install NotebookLM Integration"}, "quality": {"stars": 4567, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-21T17:42:12Z"}, "embedding_text": "NotebookLM Integration. Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Dr Categories: Skills. Platforms: claude_code, openclaw."} @@ -1563,10 +1611,10 @@ {"id": "d536d8480aa189ca9e8ed4bc5c2a7572894d82cfcdee54d58fa565c3cb65dbc7", "repo_url": "https://github.com/gapmiss/obsidian-plugin-skill", "name": "gapmiss/obsidian-plugin-skill", "description": "Comprehensive guidelines for Obsidian.md plugin development including all 27 ESLint rules from eslint-plugin-obsidianmd v0.1.9, TypeScript best practices, memory management, API usage (requestUrl vs fetch), UI/UX standards, locale file sentence-case enforcement, and submission requirements. Use when working with Obsidian plugins, main.ts files, manifest.json, Plugin class, MarkdownView, TFile, vault operations, or any Obsidian API development.", "source": ["clawhub", "marketplace", "topic"], "categories": ["Phase 3: Build and Integrate", "claude", "claude-code", "claude-skills", "obsidian", "obsidian-md", "obsidian-plugin"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/gapmiss/obsidian-plugin-skill/blob/main/.claude/skills/obsidian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install gapmiss/obsidian-plugin-skill", "claude_code": "/plugin install gapmiss/obsidian-plugin-skill"}, "quality": {"stars": 96, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T03:43:02Z"}, "embedding_text": "gapmiss/obsidian-plugin-skill. Comprehensive guidelines for Obsidian.md plugin development including all 27 ESLint rules from eslint-plugin-obsidianmd v0.1.9, TypeScript best practices, memory management, API usage (requestUrl vs fetch), UI/UX standards, locale file sentence-case enforcement, and submission requirements. Use when working with Obsidian plugins, main.ts files, manifest.json, Plugin class, MarkdownView, TFile, vault operations, or any Obsidian API development. Categories: Phase 3: Build and Integrate, claude, claude-code, claude-skills, obsidian, obsidian-md, obsidian-plugin. Platforms: claude_code, openclaw."} {"id": "ba6ab59a5463e77d01f541e2fb6de9fb4b2696cda4c56e33ca5e5bb7a427c80d", "repo_url": "https://github.com/remotion-dev/remotion", "name": "remotion-dev/remotion", "description": "Skill package that define best practices for working in Remotion projects.", "source": ["clawhub"], "categories": ["Phase 3: Build and Integrate"], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/remotion-dev/remotion/blob/main/packages/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install remotion-dev/remotion"}, "quality": {"stars": 39606, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:13:16Z"}, "embedding_text": "remotion-dev/remotion. Skill package that define best practices for working in Remotion projects. Categories: Phase 3: Build and Integrate. Platforms: openclaw."} {"id": "5b6f5b99a4ffcacc318ad784c1497e03aca4f0107fa3385f3b4d5f1d624ee475", "repo_url": "https://github.com/sawyerhood/dev-browser", "name": "SawyerHood/dev-browser", "description": "Browser capability for agents.", "source": ["clawhub"], "categories": ["Phase 3: Build and Integrate"], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/sawyerhood/dev-browser/blob/main/skills/dev-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install SawyerHood/dev-browser"}, "quality": {"stars": 3862, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-05T22:53:11Z"}, "embedding_text": "SawyerHood/dev-browser. Browser capability for agents. Categories: Phase 3: Build and Integrate. Platforms: openclaw."} -{"id": "aa111899cc2366a1b83e84d9d16acff404446586d91d76ee282027e22c8bcda6", "repo_url": "https://github.com/gmickel/sheets-cli", "name": "gmickel/sheets-cli", "description": "Google Sheets automation via CLI.", "source": ["clawhub"], "categories": ["Phase 3: Build and Integrate"], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/gmickel/sheets-cli/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install gmickel/sheets-cli"}, "quality": {"stars": 50, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T11:07:49Z"}, "embedding_text": "gmickel/sheets-cli. Google Sheets automation via CLI. Categories: Phase 3: Build and Integrate. Platforms: openclaw."} +{"id": "aa111899cc2366a1b83e84d9d16acff404446586d91d76ee282027e22c8bcda6", "repo_url": "https://github.com/gmickel/sheets-cli", "name": "gmickel/sheets-cli", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["clawhub", "skillhub"], "categories": ["Phase 3: Build and Integrate"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/gmickel/sheets-cli/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install gmickel/sheets-cli"}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-11T11:07:49Z"}, "embedding_text": "gmickel/sheets-cli. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: Phase 3: Build and Integrate. Platforms: claude_code, openclaw."} {"id": "6d6b6602a6cbb468afcdef6d9f9344f17ccd7ca34e317155951e5297499f876d", "repo_url": "https://github.com/yzfly/mind-cloning-engineering", "name": "yzfly/Mind-Cloning-Engineering", "description": "Activate a Cognitive Digital Twin. Can simulate a custom subject (via core/ directory) OR load pre-installed celebrity/expert personas (from personas/ directory).", "source": ["clawhub", "topic"], "categories": ["Phase 4: Benchmarks and Research", "agent-skills", "claude-skills", "mce", "mind", "mind-clone", "mind-cloning-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/yzfly/mind-cloning-engineering/blob/main/skills/mind-clone/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install yzfly/Mind-Cloning-Engineering", "claude_code": "/plugin install yzfly/Mind-Cloning-Engineering"}, "quality": {"stars": 38, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-21T13:26:18Z"}, "embedding_text": "yzfly/Mind-Cloning-Engineering. Activate a Cognitive Digital Twin. Can simulate a custom subject (via core/ directory) OR load pre-installed celebrity/expert personas (from personas/ directory). Categories: Phase 4: Benchmarks and Research, agent-skills, claude-skills, mce, mind, mind-clone, mind-cloning-engineering. Platforms: claude_code, openclaw."} {"id": "03aaccf468ec09875ac33b5d91b9646986117723f285b3ca225db8cb703940c4", "repo_url": "https://github.com/openclaw/openclaw", "name": "parallels-discord-roundtrip", "description": "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", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/.agents/skills/parallels-discord-roundtrip/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install parallels-discord-roundtrip"}, "quality": {"stars": 316748, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T14:12:15Z"}, "embedding_text": "parallels-discord-roundtrip. 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 Platforms: claude_code, openclaw."} -{"id": "819a6c0dffc5b4a71198f907c5e4742f2a204e049442f298caf331da98e732cc", "repo_url": "https://github.com/openclaw/openclaw", "name": "acp-router", "description": "Route plain-language requests for Pi, Claude Code, Codex, OpenCode, Gemini CLI, or ACP harness work into either OpenClaw ACP runtime sessions or direct acpx-driven sessions (\"telephone game\" flow). For coding-agent thread requests, read this skill first, then use only `sessions_spawn` for thread creation.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/extensions/acpx/skills/acp-router/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install acp-router"}, "quality": {"stars": 316190, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:10:14Z"}, "embedding_text": "acp-router. Route plain-language requests for Pi, Claude Code, Codex, OpenCode, Gemini CLI, or ACP harness work into either OpenClaw ACP runtime sessions or direct acpx-driven sessions (\"telephone game\" flow). For coding-agent thread requests, read this skill first, then use only `sessions_spawn` for thread creation. Platforms: openclaw."} +{"id": "819a6c0dffc5b4a71198f907c5e4742f2a204e049442f298caf331da98e732cc", "repo_url": "https://github.com/openclaw/openclaw", "name": "acp-router", "description": "Route plain-language requests for Pi, Claude Code, Codex, OpenCode, Gemini CLI, or ACP harness work into either OpenClaw ACP runtime sessions or direct acpx-driven sessions (\"telephone game\" flow). For coding-agent thread requests, read this skill first, then use only `sessions_spawn` for thread creation.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/extensions/acpx/skills/acp-router/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install acp-router"}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:08:25Z"}, "embedding_text": "acp-router. Route plain-language requests for Pi, Claude Code, Codex, OpenCode, Gemini CLI, or ACP harness work into either OpenClaw ACP runtime sessions or direct acpx-driven sessions (\"telephone game\" flow). For coding-agent thread requests, read this skill first, then use only `sessions_spawn` for thread creation. Platforms: claude_code, openclaw."} {"id": "9d992e3dd64a29838d00d03371bf6ae7effbc29caffc7c2d2cb5f9073e96189e", "repo_url": "https://github.com/openclaw/openclaw", "name": "diffs", "description": "Use the diffs tool to produce real, shareable diffs (viewer URL, file artifact, or both) instead of manual edit summaries.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/extensions/diffs/skills/diffs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install diffs"}, "quality": {"stars": 316190, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T09:10:14Z"}, "embedding_text": "diffs. Use the diffs tool to produce real, shareable diffs (viewer URL, file artifact, or both) instead of manual edit summaries. Platforms: claude_code, openclaw."} {"id": "85c4bccf98bd66f9d8faa27410a6f62f52dfe5a2d5bf7b4cb7d9f8eb7a394a9c", "repo_url": "https://github.com/openclaw/openclaw", "name": "feishu-doc", "description": "Feishu document read/write operations. Activate when user mentions Feishu docs, cloud docs, or docx links.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/extensions/feishu/skills/feishu-doc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install feishu-doc"}, "quality": {"stars": 316190, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T09:10:14Z"}, "embedding_text": "feishu-doc. Feishu document read/write operations. Activate when user mentions Feishu docs, cloud docs, or docx links. Platforms: claude_code, openclaw."} {"id": "5f94e4fa102afe7e4ff5ca0d215984b678987d76f233c0c2efa5cc47e023b1ab", "repo_url": "https://github.com/openclaw/openclaw", "name": "feishu-drive", "description": "Feishu cloud storage file management. Activate when user mentions cloud space, folders, drive.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/extensions/feishu/skills/feishu-drive/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install feishu-drive"}, "quality": {"stars": 316190, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T09:10:14Z"}, "embedding_text": "feishu-drive. Feishu cloud storage file management. Activate when user mentions cloud space, folders, drive. Platforms: claude_code, openclaw."} @@ -1635,7 +1683,7 @@ {"id": "fc0243dc283932b4347acd8e5cbf83d19d358cc34a22a0e35a011a135edec084", "repo_url": "https://github.com/openclaw/clawdinators", "name": "landpr", "description": "Land an OpenClaw PR end-to-end using the repo landpr checklist. Use when someone requests \u201c/landpr\u201d or asks to merge/land a PR.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/clawdinators/blob/main/clawdinator/workspace/skills/landpr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install landpr"}, "quality": {"stars": 143, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T16:20:45Z"}, "embedding_text": "landpr. Land an OpenClaw PR end-to-end using the repo landpr checklist. Use when someone requests \u201c/landpr\u201d or asks to merge/land a PR. Platforms: openclaw."} {"id": "a6b829cf320d7acc9fdf6206d870161a4ab05be92f80778928917ff02ce74da1", "repo_url": "https://github.com/openclaw/clawdinators", "name": "lurk", "description": "Monitor Discord channel activity and persist notable items to memory. Run from main session during heartbeat.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/clawdinators/blob/main/clawdinator/workspace/skills/lurk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install lurk"}, "quality": {"stars": 143, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T16:20:45Z"}, "embedding_text": "lurk. Monitor Discord channel activity and persist notable items to memory. Run from main session during heartbeat. Platforms: openclaw."} {"id": "8cd5b0f487677c41e8f08aecf8e0738ac34329d30c92a84bbd7927972618ff0f", "repo_url": "https://github.com/openclaw/clawdinators", "name": "triage", "description": "Analyze GitHub and Discord signals to prioritize maintainer attention. Use when asked about priorities, what's hot, what needs attention, or project status.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/clawdinators/blob/main/clawdinator/workspace/skills/triage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install triage"}, "quality": {"stars": 143, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T16:20:45Z"}, "embedding_text": "triage. Analyze GitHub and Discord signals to prioritize maintainer attention. Use when asked about priorities, what's hot, what needs attention, or project status. Platforms: openclaw."} -{"id": "3a53ce8003325203084c4a7d68215bfc1c52d672579099ab790d894b9202b5a5", "repo_url": "https://github.com/openclaw/casa", "name": "casa", "description": "Control HomeKit devices via the local Casa app and API (localhost-only).", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/casa/blob/main/skills/casa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install casa"}, "quality": {"stars": 29, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-07T19:56:11Z"}, "embedding_text": "casa. Control HomeKit devices via the local Casa app and API (localhost-only). Platforms: openclaw."} +{"id": "3a53ce8003325203084c4a7d68215bfc1c52d672579099ab790d894b9202b5a5", "repo_url": "https://github.com/openclaw/casa", "name": "casa", "description": "Control HomeKit devices via the local Casa app and API (localhost-only).", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openclaw/casa/blob/main/skills/casa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install casa"}, "quality": {"stars": 38, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T19:12:28Z"}, "embedding_text": "casa. Control HomeKit devices via the local Casa app and API (localhost-only). Platforms: claude_code, openclaw."} {"id": "d01396f691761760e74dbca36789d299fa9c1a47bffa0f3b8e56fa3893464100", "repo_url": "https://github.com/openclaw/nix-steipete-tools", "name": "bird", "description": "X/Twitter CLI for reading, searching, posting, and engagement via cookies.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/nix-steipete-tools/blob/main/tools/bird/skills/bird/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install bird"}, "quality": {"stars": 28, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T07:59:41Z"}, "embedding_text": "bird. X/Twitter CLI for reading, searching, posting, and engagement via cookies. Platforms: openclaw."} {"id": "71f9b26762d6dfd4f3b1642d1d8a57d51bfe5f8641000383fc3c7d66b08dc6c8", "repo_url": "https://github.com/openclaw/nix-steipete-tools", "name": "camsnap", "description": "Capture frames or clips from RTSP/ONVIF cameras.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/nix-steipete-tools/blob/main/tools/camsnap/skills/camsnap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install camsnap"}, "quality": {"stars": 28, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T07:59:41Z"}, "embedding_text": "camsnap. Capture frames or clips from RTSP/ONVIF cameras. Platforms: openclaw."} {"id": "4c34aff13e0a7fc3526af0bb77dd971aea725767545edd30cdb093b6607fb7a7", "repo_url": "https://github.com/openclaw/nix-steipete-tools", "name": "gog", "description": "Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openclaw/nix-steipete-tools/blob/main/tools/gogcli/skills/gog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install gog"}, "quality": {"stars": 28, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T07:59:41Z"}, "embedding_text": "gog. Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs. Platforms: openclaw."} @@ -1681,7 +1729,7 @@ {"id": "e2e5f60cb2070f8e5202c57b1c113773f3a9596fc41f5f37b905e37a62d5cf72", "repo_url": "https://github.com/qwibitai/nanoclaw", "name": "update-skills", "description": "Check for and apply updates to installed skill branches from upstream.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["ai-agents", "ai-assistant", "claude-code", "claude-skills", "openclaw"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/qwibitai/nanoclaw/blob/main/.claude/skills/update-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install update-skills", "claude_code": "/plugin install update-skills"}, "quality": {"stars": 23652, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:37:38Z"}, "embedding_text": "update-skills. Check for and apply updates to installed skill branches from upstream. Categories: ai-agents, ai-assistant, claude-code, claude-skills, openclaw. Platforms: claude_code, openclaw."} {"id": "06149944b5c8bf5d6e8667004d53131b75b234776b7d85f23039d65187bd3cf0", "repo_url": "https://github.com/qwibitai/nanoclaw", "name": "use-local-whisper", "description": "Use when the user wants local voice transcription instead of OpenAI Whisper API. Switches to whisper.cpp running on Apple Silicon. WhatsApp only for now. Requires voice-transcription skill to be applied first.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["ai-agents", "ai-assistant", "claude-code", "claude-skills", "openclaw"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/qwibitai/nanoclaw/blob/main/.claude/skills/use-local-whisper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install use-local-whisper", "claude_code": "/plugin install use-local-whisper"}, "quality": {"stars": 23652, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:37:38Z"}, "embedding_text": "use-local-whisper. Use when the user wants local voice transcription instead of OpenAI Whisper API. Switches to whisper.cpp running on Apple Silicon. WhatsApp only for now. Requires voice-transcription skill to be applied first. Categories: ai-agents, ai-assistant, claude-code, claude-skills, openclaw. Platforms: claude_code, openclaw."} {"id": "b55d5943505716aabc1f7a7bffa26d011d0bae43cab4a1a3deb4337d06264614", "repo_url": "https://github.com/qwibitai/nanoclaw", "name": "x-integration", "description": "X (Twitter) integration for NanoClaw. Post tweets, like, reply, retweet, and quote. Use for setup, testing, or troubleshooting X functionality. Triggers on \"setup x\", \"x integration\", \"twitter\", \"post tweet\", \"tweet\".", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["ai-agents", "ai-assistant", "claude-code", "claude-skills", "openclaw"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/qwibitai/nanoclaw/blob/main/.claude/skills/x-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install x-integration", "claude_code": "/plugin install x-integration"}, "quality": {"stars": 23653, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:37:38Z"}, "embedding_text": "x-integration. X (Twitter) integration for NanoClaw. Post tweets, like, reply, retweet, and quote. Use for setup, testing, or troubleshooting X functionality. Triggers on \"setup x\", \"x integration\", \"twitter\", \"post tweet\", \"tweet\". Categories: ai-agents, ai-assistant, claude-code, claude-skills, openclaw. Platforms: claude_code, openclaw."} -{"id": "cbc194fe7014fe8c3e9b6dd74f0a83e630522c6d3bfe48fcca762a82d95fb723", "repo_url": "https://github.com/qwibitai/nanoclaw", "name": "agent-browser", "description": "Browse the web for any task \u2014 research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks.", "source": ["clawhub", "marketplace", "topic"], "categories": ["ai-agents", "ai-assistant", "claude-code", "claude-skills", "openclaw"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/qwibitai/nanoclaw/blob/main/container/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install agent-browser", "claude_code": "/plugin install agent-browser"}, "quality": {"stars": 23432, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T15:24:28Z"}, "embedding_text": "agent-browser. Browse the web for any task \u2014 research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks. Categories: ai-agents, ai-assistant, claude-code, claude-skills, openclaw. Platforms: claude_code, openclaw."} +{"id": "cbc194fe7014fe8c3e9b6dd74f0a83e630522c6d3bfe48fcca762a82d95fb723", "repo_url": "https://github.com/qwibitai/nanoclaw", "name": "agent-browser", "description": "Browse the web for any task \u2014 research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["ai-agents", "ai-assistant", "claude-code", "claude-skills", "openclaw"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/qwibitai/nanoclaw/blob/main/container/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install agent-browser", "claude_code": "/plugin install agent-browser"}, "quality": {"stars": 29945, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:09:15Z"}, "embedding_text": "agent-browser. Browse the web for any task \u2014 research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks. Categories: ai-agents, ai-assistant, claude-code, claude-skills, openclaw. Platforms: claude_code, openclaw."} {"id": "327cd1009ea2e3cd942f3f9c1d72331fa18215bbf57c412c80cf8e18e89597c4", "repo_url": "https://github.com/iofficeai/aionui", "name": "i18n", "description": "Internationalization (i18n) workflow and standards for managing translations.\nUse when: (1) Adding new user-facing text, (2) Creating new components with text, (3) Reviewing code for i18n compliance.\nFeatures: Key naming conventions, sync checking, hardcoded string detection, translation workflow.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/iOfficeAI/AionUi/blob/main/.claude/skills/i18n/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install i18n"}, "quality": {"stars": 18940, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:08:56Z"}, "embedding_text": "i18n. Internationalization (i18n) workflow and standards for managing translations.\nUse when: (1) Adding new user-facing text, (2) Creating new components with text, (3) Reviewing code for i18n compliance.\nFeatures: Key naming conventions, sync checking, hardcoded string detection, translation workflow. Platforms: claude_code, openclaw."} {"id": "99d82dd6200b754169115b5236abda417f36f2210a253ae8ab7acb8dc125ceb7", "repo_url": "https://github.com/iofficeai/aionui", "name": "cron", "description": "Scheduled task management - create, query, delete scheduled tasks to automatically execute operations at specified times.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/iOfficeAI/AionUi/blob/main/skills/_builtin/cron/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cron"}, "quality": {"stars": 18940, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:08:56Z"}, "embedding_text": "cron. Scheduled task management - create, query, delete scheduled tasks to automatically execute operations at specified times. Platforms: claude_code, openclaw."} {"id": "f596536aa17eac4b0ed6f7718b6868da8c6592e92d194c4766918d36d8cc3d11", "repo_url": "https://github.com/iofficeai/aionui", "name": "aionui-webui-setup", "description": "AionUi WebUI configuration expert: Helps users configure AionUi WebUI mode for remote access through the settings interface. Supports LAN connection, Tailscale VPN, and server deployment. Use when users need to set up AionUi WebUI, configure remote access, troubleshoot WebUI issues, or deploy AionUi on servers.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/iOfficeAI/AionUi/blob/main/skills/aionui-webui-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install aionui-webui-setup"}, "quality": {"stars": 18904, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:20:23Z"}, "embedding_text": "aionui-webui-setup. AionUi WebUI configuration expert: Helps users configure AionUi WebUI mode for remote access through the settings interface. Supports LAN connection, Tailscale VPN, and server deployment. Use when users need to set up AionUi WebUI, configure remote access, troubleshoot WebUI issues, or deploy AionUi on servers. Platforms: openclaw."} @@ -1700,15 +1748,15 @@ {"id": "f35ef005c3478a848b532e9f56c32e01c6880658929b8fda8a6427d07b756b6a", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "browser-automation", "description": "Playwright-based browser automation patterns for autonomous web interaction", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-hands/bundled/browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install browser-automation"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "browser-automation. Playwright-based browser automation patterns for autonomous web interaction Platforms: claude_code, openclaw."} {"id": "afa997ff64e6d10e4b9fbcc4bc9cf1f330d9a908898a7d7536b8a8562e7ca6c7", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "clip-hand-skill", "description": "Expert knowledge for AI video clipping \u2014 yt-dlp downloading, whisper transcription, SRT generation, and ffmpeg processing", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-hands/bundled/clip/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install clip-hand-skill"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "clip-hand-skill. Expert knowledge for AI video clipping \u2014 yt-dlp downloading, whisper transcription, SRT generation, and ffmpeg processing Platforms: claude_code, openclaw."} {"id": "fdea350cb4c47dc9cf4195608c7a996cd21473ef4d8603c90c2f6670b88f504e", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "collector-hand-skill", "description": "Expert knowledge for AI intelligence collection \u2014 OSINT methodology, entity extraction, knowledge graphs, change detection, and sentiment analysis", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-hands/bundled/collector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install collector-hand-skill"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "collector-hand-skill. Expert knowledge for AI intelligence collection \u2014 OSINT methodology, entity extraction, knowledge graphs, change detection, and sentiment analysis Platforms: claude_code, openclaw."} -{"id": "df954ef03b1387687db848f0ac99d038bc0b51da09e3fd868930165362776f4f", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "lead-hand-skill", "description": "Expert knowledge for AI lead generation \u2014 web research, enrichment, scoring, deduplication, and report generation", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-hands/bundled/lead/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install lead-hand-skill"}, "quality": {"stars": 14575, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "lead-hand-skill. Expert knowledge for AI lead generation \u2014 web research, enrichment, scoring, deduplication, and report generation Platforms: openclaw."} +{"id": "df954ef03b1387687db848f0ac99d038bc0b51da09e3fd868930165362776f4f", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "lead-hand-skill", "description": "Expert knowledge for AI lead generation \u2014 web research, enrichment, scoring, deduplication, and report generation", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-hands/bundled/lead/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install lead-hand-skill"}, "quality": {"stars": 17875, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T08:28:37Z"}, "embedding_text": "lead-hand-skill. Expert knowledge for AI lead generation \u2014 web research, enrichment, scoring, deduplication, and report generation Platforms: claude_code, openclaw."} {"id": "e8df15dc55c24266c55126aa2ed747d7a633514f4de252e9f232f87df501981a", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "predictor-hand-skill", "description": "Expert knowledge for AI forecasting \u2014 superforecasting principles, signal taxonomy, confidence calibration, reasoning chains, and accuracy tracking", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-hands/bundled/predictor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install predictor-hand-skill"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "predictor-hand-skill. Expert knowledge for AI forecasting \u2014 superforecasting principles, signal taxonomy, confidence calibration, reasoning chains, and accuracy tracking Platforms: claude_code, openclaw."} {"id": "707fc7189bae708f669ffb33abfb59785b64f8c3637972b050b23c291a6e7440", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "researcher-hand-skill", "description": "Expert knowledge for AI deep research \u2014 methodology, source evaluation, search optimization, cross-referencing, synthesis, and citation formats", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-hands/bundled/researcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install researcher-hand-skill"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "researcher-hand-skill. Expert knowledge for AI deep research \u2014 methodology, source evaluation, search optimization, cross-referencing, synthesis, and citation formats Platforms: claude_code, openclaw."} {"id": "da05fff5f6f47b8aa9b7e026952bf67bd24509661302c17f4ec828d4cf9ca10c", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "trader-hand-skill", "description": "Expert knowledge for autonomous market intelligence and trading \u2014 technical analysis, risk management, Alpaca API, financial data sources", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-hands/bundled/trader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install trader-hand-skill"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "trader-hand-skill. Expert knowledge for autonomous market intelligence and trading \u2014 technical analysis, risk management, Alpaca API, financial data sources Platforms: claude_code, openclaw."} {"id": "db52e2353dfecd45cde033b3498ad1422e42e6b00ff6bd26e64f47b7c2e57964", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "twitter-hand-skill", "description": "Expert knowledge for AI Twitter/X management \u2014 API v2 reference, content strategy, engagement playbook, safety, and performance tracking", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-hands/bundled/twitter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install twitter-hand-skill"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "twitter-hand-skill. Expert knowledge for AI Twitter/X management \u2014 API v2 reference, content strategy, engagement playbook, safety, and performance tracking Platforms: claude_code, openclaw."} -{"id": "ef2de41afa2c2eef3d196752fe6ea4fc219a16ea1888aef93588b8acb5d41ec1", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "ansible", "description": "Ansible automation expert for playbooks, roles, inventories, and infrastructure management", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/ansible/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ansible"}, "quality": {"stars": 14575, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "ansible. Ansible automation expert for playbooks, roles, inventories, and infrastructure management Platforms: openclaw."} +{"id": "ef2de41afa2c2eef3d196752fe6ea4fc219a16ea1888aef93588b8acb5d41ec1", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "ansible", "description": "Ansible automation expert for playbooks, roles, inventories, and infrastructure management", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/ansible/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ansible"}, "quality": {"stars": 17875, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T08:28:37Z"}, "embedding_text": "ansible. Ansible automation expert for playbooks, roles, inventories, and infrastructure management Platforms: claude_code, openclaw."} {"id": "d50181dbbc36775522bd59b8e65f4abee5a8dfe20bd144b60ba0004a1b23d369", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "api-tester", "description": "API testing expert for curl, REST, GraphQL, authentication, and debugging", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/api-tester/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install api-tester"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "api-tester. API testing expert for curl, REST, GraphQL, authentication, and debugging Platforms: claude_code, openclaw."} {"id": "bda5f433fc082406538977c34c3218b64ecfba96926b4e18eaa846c975377c60", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "aws", "description": "AWS cloud services expert for EC2, S3, Lambda, IAM, and AWS CLI", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/aws/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install aws"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "aws. AWS cloud services expert for EC2, S3, Lambda, IAM, and AWS CLI Platforms: claude_code, openclaw."} -{"id": "87ddd7b140d061b94ed4292cd4c5513dd7bec521d5687a0a78bf063d2de01635", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "azure", "description": "Microsoft Azure expert for az CLI, AKS, App Service, and cloud infrastructure", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/azure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install azure"}, "quality": {"stars": 14575, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "azure. Microsoft Azure expert for az CLI, AKS, App Service, and cloud infrastructure Platforms: openclaw."} +{"id": "87ddd7b140d061b94ed4292cd4c5513dd7bec521d5687a0a78bf063d2de01635", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "azure", "description": "Microsoft Azure expert for az CLI, AKS, App Service, and cloud infrastructure", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/azure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install azure"}, "quality": {"stars": 17875, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T08:28:37Z"}, "embedding_text": "azure. Microsoft Azure expert for az CLI, AKS, App Service, and cloud infrastructure Platforms: claude_code, openclaw."} {"id": "916f4067781d8a22febe82c1bad451262a3bf87d1de19c23a487aeb3533e74cb", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "ci-cd", "description": "CI/CD pipeline expert for GitHub Actions, GitLab CI, Jenkins, and deployment automation", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/ci-cd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ci-cd"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "ci-cd. CI/CD pipeline expert for GitHub Actions, GitLab CI, Jenkins, and deployment automation Platforms: claude_code, openclaw."} {"id": "829851c63dbb5f22e832fadb6e619aa23613b55563634ae0e092dc8bbeedd3ff", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "code-reviewer", "description": "Code review specialist focused on patterns, bugs, security, and performance", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/code-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install code-reviewer"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "code-reviewer. Code review specialist focused on patterns, bugs, security, and performance Platforms: claude_code, openclaw."} {"id": "187a557c2a322b25b6f1e5ae8839403e22c21f5515370292563be49f77198520", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "compliance", "description": "Compliance expert for SOC 2, GDPR, HIPAA, PCI-DSS, and security frameworks", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/compliance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install compliance"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "compliance. Compliance expert for SOC 2, GDPR, HIPAA, PCI-DSS, and security frameworks Platforms: claude_code, openclaw."} @@ -1718,13 +1766,13 @@ {"id": "d6d16577e32098007379d522bb13717e8b0e295c961105bc67e621e21c8f8c27", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "data-analyst", "description": "Data analysis expert for statistics, visualization, pandas, and exploration", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/data-analyst/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install data-analyst"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "data-analyst. Data analysis expert for statistics, visualization, pandas, and exploration Platforms: claude_code, openclaw."} {"id": "6b524523afc7604fa5493cab10c78917f3a7c030a4e281a3ea36a0f72f3cb6d3", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "data-pipeline", "description": "Data pipeline expert for ETL, Apache Spark, Airflow, dbt, and data quality", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/data-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install data-pipeline"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "data-pipeline. Data pipeline expert for ETL, Apache Spark, Airflow, dbt, and data quality Platforms: claude_code, openclaw."} {"id": "a2ccbbbef8546823923fd43c102c9a216b706873c39e5e5496f80bab113c4676", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "docker", "description": "Docker expert for containers, Compose, Dockerfiles, and debugging", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/docker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install docker"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "docker. Docker expert for containers, Compose, Dockerfiles, and debugging Platforms: claude_code, openclaw."} -{"id": "c37cb74496af0ad882c83b81df0924cb2f5fc7938073ddf4ce9a1ed0d85fd607", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "elasticsearch", "description": "Elasticsearch expert for queries, mappings, aggregations, index management, and cluster operations", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/elasticsearch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install elasticsearch"}, "quality": {"stars": 14575, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "elasticsearch. Elasticsearch expert for queries, mappings, aggregations, index management, and cluster operations Platforms: openclaw."} +{"id": "c37cb74496af0ad882c83b81df0924cb2f5fc7938073ddf4ce9a1ed0d85fd607", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "elasticsearch", "description": "Elasticsearch expert for queries, mappings, aggregations, index management, and cluster operations", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/elasticsearch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install elasticsearch"}, "quality": {"stars": 17875, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T08:28:37Z"}, "embedding_text": "elasticsearch. Elasticsearch expert for queries, mappings, aggregations, index management, and cluster operations Platforms: claude_code, openclaw."} {"id": "1e1cc2a8338b23c79fd99280f2d5e562655901b0ccda8450fa90764137a9b801", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "email-writer", "description": "Professional email writing expert for tone, structure, clarity, and business communication", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/email-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install email-writer"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "email-writer. Professional email writing expert for tone, structure, clarity, and business communication Platforms: claude_code, openclaw."} {"id": "561165fa538b8c7ce41a7cbcbd2422cb27cef7b4aea8f269019951f81ded21f0", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "figma-expert", "description": "Figma design expert for components, auto-layout, design systems, and developer handoff", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/figma-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install figma-expert"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "figma-expert. Figma design expert for components, auto-layout, design systems, and developer handoff Platforms: claude_code, openclaw."} {"id": "80c438308bc96925fcde4b756a89ee975b0473866a9b4a65f851620baa32b2b0", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "gcp", "description": "Google Cloud Platform expert for gcloud CLI, GKE, Cloud Run, and managed services", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/gcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install gcp"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "gcp. Google Cloud Platform expert for gcloud CLI, GKE, Cloud Run, and managed services Platforms: claude_code, openclaw."} {"id": "3a5af22f19b715e5a921fef597909fdf5fd3657ef768af63d8539040187bdd5b", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "git-expert", "description": "Git operations expert for branching, rebasing, conflicts, and workflows", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/git-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install git-expert"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "git-expert. Git operations expert for branching, rebasing, conflicts, and workflows Platforms: claude_code, openclaw."} -{"id": "9993556d69de9d0c83bfd7bcdd8af2e8f08e12fefbfdc71b3c6c08ae860449eb", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "github", "description": "GitHub operations expert for PRs, issues, code review, Actions, and gh CLI", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install github"}, "quality": {"stars": 14575, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "github. GitHub operations expert for PRs, issues, code review, Actions, and gh CLI Platforms: openclaw."} -{"id": "d84c71d625f591f372d484b878250932933139bec775db36b302c1d87fbd7e3c", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "golang-expert", "description": "Go programming expert for goroutines, channels, interfaces, modules, and concurrency patterns", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/golang-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install golang-expert"}, "quality": {"stars": 14575, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "golang-expert. Go programming expert for goroutines, channels, interfaces, modules, and concurrency patterns Platforms: openclaw."} +{"id": "9993556d69de9d0c83bfd7bcdd8af2e8f08e12fefbfdc71b3c6c08ae860449eb", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "github", "description": "GitHub operations expert for PRs, issues, code review, Actions, and gh CLI", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install github"}, "quality": {"stars": 17875, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T08:28:37Z"}, "embedding_text": "github. GitHub operations expert for PRs, issues, code review, Actions, and gh CLI Platforms: claude_code, openclaw."} +{"id": "d84c71d625f591f372d484b878250932933139bec775db36b302c1d87fbd7e3c", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "golang-expert", "description": "Go programming expert for goroutines, channels, interfaces, modules, and concurrency patterns", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/golang-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install golang-expert"}, "quality": {"stars": 17875, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T08:28:37Z"}, "embedding_text": "golang-expert. Go programming expert for goroutines, channels, interfaces, modules, and concurrency patterns Platforms: claude_code, openclaw."} {"id": "567f4f779c33dfd7eec8432976d7cec8a532facdcfbd8057f02cf84f67af573c", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "graphql-expert", "description": "GraphQL expert for schema design, resolvers, subscriptions, and performance optimization", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/graphql-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install graphql-expert"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "graphql-expert. GraphQL expert for schema design, resolvers, subscriptions, and performance optimization Platforms: claude_code, openclaw."} {"id": "034e0e4dadefe3e30307588c23137fb720a2e044daa855c938f5b64c6f3e8bde", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "helm", "description": "Helm chart expert for Kubernetes package management, templating, and dependency management", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/helm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install helm"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "helm. Helm chart expert for Kubernetes package management, templating, and dependency management Platforms: claude_code, openclaw."} {"id": "40956314c1d1b22aabc0fa2c9d5747d110b74d491fe4d6cde42539d1eb91dfbf", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "interview-prep", "description": "Technical interview preparation expert for algorithms, system design, and behavioral questions", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/interview-prep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install interview-prep"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "interview-prep. Technical interview preparation expert for algorithms, system design, and behavioral questions Platforms: claude_code, openclaw."} @@ -1734,7 +1782,7 @@ {"id": "022bf1063d381664c64b42985b6465bb3f0ad4e68ba91844419e6cc70a300fa2", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "linux-networking", "description": "Linux networking expert for iptables, nftables, routing, DNS, and network troubleshooting", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/linux-networking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install linux-networking"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "linux-networking. Linux networking expert for iptables, nftables, routing, DNS, and network troubleshooting Platforms: claude_code, openclaw."} {"id": "ae4dcf9326e57cdc4d3951df0e519a8e4b8e626fb1516e9b825cbca9b36a45ac", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "llm-finetuning", "description": "LLM fine-tuning expert for LoRA, QLoRA, dataset preparation, and training optimization", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/llm-finetuning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install llm-finetuning"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "llm-finetuning. LLM fine-tuning expert for LoRA, QLoRA, dataset preparation, and training optimization Platforms: claude_code, openclaw."} {"id": "851ff02512110bf5a6de020cb5dad739a2a53979e4ad0216d7e116f4cd85b749", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "ml-engineer", "description": "Machine learning engineer expert for PyTorch, scikit-learn, model evaluation, and MLOps", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/ml-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ml-engineer"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "ml-engineer. Machine learning engineer expert for PyTorch, scikit-learn, model evaluation, and MLOps Platforms: claude_code, openclaw."} -{"id": "a22552bcb5eaa8e256047794e2cc2b7654f04801399896d5166ece7017be589c", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "mongodb", "description": "MongoDB operations expert for queries, aggregation pipelines, indexes, and schema design", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/mongodb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install mongodb"}, "quality": {"stars": 14575, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "mongodb. MongoDB operations expert for queries, aggregation pipelines, indexes, and schema design Platforms: openclaw."} +{"id": "a22552bcb5eaa8e256047794e2cc2b7654f04801399896d5166ece7017be589c", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "mongodb", "description": "MongoDB operations expert for queries, aggregation pipelines, indexes, and schema design", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/mongodb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install mongodb"}, "quality": {"stars": 17875, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T08:28:37Z"}, "embedding_text": "mongodb. MongoDB operations expert for queries, aggregation pipelines, indexes, and schema design Platforms: claude_code, openclaw."} {"id": "42c2692d097367677de673fd9bbc887d406163684d349f18d5d54033efbf8e7e", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "nextjs-expert", "description": "Next.js expert for App Router, SSR/SSG, API routes, middleware, and deployment", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/nextjs-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install nextjs-expert"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "nextjs-expert. Next.js expert for App Router, SSR/SSG, API routes, middleware, and deployment Platforms: claude_code, openclaw."} {"id": "a7b9d79885d12156cf045c880201352145cb3a5b1c068d04db36cd0202f5ea08", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "nginx", "description": "Nginx configuration expert for reverse proxy, load balancing, TLS, and performance tuning", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/nginx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install nginx"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "nginx. Nginx configuration expert for reverse proxy, load balancing, TLS, and performance tuning Platforms: claude_code, openclaw."} {"id": "1fb57876c3b94c28e45b1e69cbac5125087b6d089c37b7c33fa6e10eb1473b02", "repo_url": "https://github.com/rightnow-ai/openfang", "name": "notion", "description": "Notion workspace management and content creation specialist", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/RightNow-AI/openfang/blob/main/crates/openfang-skills/bundled/notion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install notion"}, "quality": {"stars": 14711, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T17:23:32Z"}, "embedding_text": "notion. Notion workspace management and content creation specialist Platforms: claude_code, openclaw."} @@ -1787,27 +1835,27 @@ {"id": "ac2cc2ee679d7b3599479c284b7fd7348ef4cee105fc0a52c13e8270ded2529b", "repo_url": "https://github.com/mcp-use/mcp-use", "name": "mcp-apps-builder", "description": "**MANDATORY for ALL MCP server work** - mcp-use framework best practices and patterns.\n\n**READ THIS FIRST** before any MCP server work, including:\n- Creating new MCP servers\n- Modifying existing MCP servers (adding/updating tools, resources, prompts, widgets)\n- Debugging MCP server issues or errors\n- Reviewing MCP server code for quality, security, or performance\n- Answering questions about MCP development or mcp-use patterns\n- Making ANY changes to server.tool(), server.resource(), server.prompt(), or widgets\n\nThis skill contains critical architecture decisions, security patterns, and common pitfalls.\nAlways consult the relevant reference files BEFORE implementing MCP features.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/mcp-use/mcp-use/blob/main/skills/mcp-apps-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install mcp-apps-builder"}, "quality": {"stars": 9445, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T21:06:02Z"}, "embedding_text": "mcp-apps-builder. **MANDATORY for ALL MCP server work** - mcp-use framework best practices and patterns.\n\n**READ THIS FIRST** before any MCP server work, including:\n- Creating new MCP servers\n- Modifying existing MCP servers (adding/updating tools, resources, prompts, widgets)\n- Debugging MCP server issues or errors\n- Reviewing MCP server code for quality, security, or performance\n- Answering questions about MCP development or mcp-use patterns\n- Making ANY changes to server.tool(), server.resource(), server.prompt(), or widgets\n\nThis skill contains critical architecture decisions, security patterns, and common pitfalls.\nAlways consult the relevant reference files BEFORE implementing MCP features. Platforms: claude_code, openclaw."} {"id": "81a096553c0d373ee431e4c9185ef323db314ee8d33b71683bfa8dd2de21dd6b", "repo_url": "https://github.com/mcp-use/mcp-use", "name": "mcp-builder", "description": "DEPRECATED: This skill has been replaced by `mcp-app-builder`.\nCheck if `mcp-app-builder` is available in the skills folder. If not, install it:\n`npx skills install mcp-use/mcp-use --skill mcp-app-builder`\nUse `mcp-app-builder` instead of this skill.\n\nBuild Model Context Protocol (MCP) servers with mcp-use framework.\nUse when creating MCP servers, defining tools/resources/prompts, working with mcp-use,\nbootstrapping MCP projects, or when user mentions MCP development, tools, resources, or prompts.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/mcp-use/mcp-use/blob/main/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install mcp-builder"}, "quality": {"stars": 9445, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T21:06:02Z"}, "embedding_text": "mcp-builder. DEPRECATED: This skill has been replaced by `mcp-app-builder`.\nCheck if `mcp-app-builder` is available in the skills folder. If not, install it:\n`npx skills install mcp-use/mcp-use --skill mcp-app-builder`\nUse `mcp-app-builder` instead of this skill.\n\nBuild Model Context Protocol (MCP) servers with mcp-use framework.\nUse when creating MCP servers, defining tools/resources/prompts, working with mcp-use,\nbootstrapping MCP projects, or when user mentions MCP development, tools, resources, or prompts. Platforms: claude_code, openclaw."} {"id": "0e990fe1bcdbc0d66adce4080cfa211e1693ea9f62351d74cff0d3069f2acdad", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "blackbox", "description": "Delegate coding tasks to Blackbox AI CLI agent. Multi-model agent with built-in judge that runs tasks through multiple LLMs and picks the best result. Requires the blackbox CLI and a Blackbox AI API key.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/autonomous-ai-agents/blackbox/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install blackbox"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "blackbox. Delegate coding tasks to Blackbox AI CLI agent. Multi-model agent with built-in judge that runs tasks through multiple LLMs and picks the best result. Requires the blackbox CLI and a Blackbox AI API key. Platforms: claude_code, openclaw."} -{"id": "d727c8675c2806bb13615a26fb72dff9cbe416b0376769ed94d00c4f3f91ea80", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "solana", "description": "Query Solana blockchain data with USD pricing \u2014 wallet balances, token portfolios with values, transaction details, NFTs, whale detection, and live network stats. Uses Solana RPC + CoinGecko. No API key required.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/blockchain/solana/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install solana"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "solana. Query Solana blockchain data with USD pricing \u2014 wallet balances, token portfolios with values, transaction details, NFTs, whale detection, and live network stats. Uses Solana RPC + CoinGecko. No API key required. Platforms: openclaw."} +{"id": "d727c8675c2806bb13615a26fb72dff9cbe416b0376769ed94d00c4f3f91ea80", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "solana", "description": "Query Solana blockchain data with USD pricing \u2014 wallet balances, token portfolios with values, transaction details, NFTs, whale detection, and live network stats. Uses Solana RPC + CoinGecko. No API key required.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw", "windows"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/blockchain/solana/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install solana"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "solana. Query Solana blockchain data with USD pricing \u2014 wallet balances, token portfolios with values, transaction details, NFTs, whale detection, and live network stats. Uses Solana RPC + CoinGecko. No API key required. Platforms: linux, macos, openclaw, windows."} {"id": "1304f37dbb644bc3ee6c8960cff7caa7b80b463d5217939a7102677b588f01d0", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "agentmail", "description": "Give the agent its own dedicated email inbox via AgentMail. Send, receive, and manage email autonomously using agent-owned email addresses (e.g. hermes-agent@agentmail.to).", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/email/agentmail/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install agentmail"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "agentmail. Give the agent its own dedicated email inbox via AgentMail. Send, receive, and manage email autonomously using agent-owned email addresses (e.g. hermes-agent@agentmail.to). Platforms: openclaw."} -{"id": "9af8495322020c0b118751796320ec357d5f525045368b0dbfc09d089bcf6a6e", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "neuroskill-bci", "description": "Connect to a running NeuroSkill instance and incorporate the user's real-time cognitive and emotional state (focus, relaxation, mood, cognitive load, drowsiness, heart rate, HRV, sleep staging, and 40+ derived EXG scores) into responses. Requires a BCI wearable (Muse 2/S or OpenBCI) and the NeuroSkill desktop app running locally.\n", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/health/neuroskill-bci/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install neuroskill-bci"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "neuroskill-bci. Connect to a running NeuroSkill instance and incorporate the user's real-time cognitive and emotional state (focus, relaxation, mood, cognitive load, drowsiness, heart rate, HRV, sleep staging, and 40+ derived EXG scores) into responses. Requires a BCI wearable (Muse 2/S or OpenBCI) and the NeuroSkill desktop app running locally.\n Platforms: openclaw."} +{"id": "9af8495322020c0b118751796320ec357d5f525045368b0dbfc09d089bcf6a6e", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "neuroskill-bci", "description": "Connect to a running NeuroSkill instance and incorporate the user's real-time cognitive and emotional state (focus, relaxation, mood, cognitive load, drowsiness, heart rate, HRV, sleep staging, and 40+ derived EXG scores) into responses. Requires a BCI wearable (Muse 2/S or OpenBCI) and the NeuroSkill desktop app running locally.\n", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw", "windows"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/health/neuroskill-bci/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install neuroskill-bci"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "neuroskill-bci. Connect to a running NeuroSkill instance and incorporate the user's real-time cognitive and emotional state (focus, relaxation, mood, cognitive load, drowsiness, heart rate, HRV, sleep staging, and 40+ derived EXG scores) into responses. Requires a BCI wearable (Muse 2/S or OpenBCI) and the NeuroSkill desktop app running locally.\n Platforms: linux, macos, openclaw, windows."} {"id": "60b4278812001cb22057f5568c897c061c033e2128a075df71d7403c02f8f435", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "openclaw-migration", "description": "Migrate a user's OpenClaw customization footprint into Hermes Agent. Imports Hermes-compatible memories, SOUL.md, command allowlists, user skills, and selected workspace assets from ~/.openclaw, then reports exactly what could not be migrated and why.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/migration/openclaw-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openclaw-migration"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "openclaw-migration. Migrate a user's OpenClaw customization footprint into Hermes Agent. Imports Hermes-compatible memories, SOUL.md, command allowlists, user skills, and selected workspace assets from ~/.openclaw, then reports exactly what could not be migrated and why. Platforms: openclaw."} -{"id": "447158f3375d8e08144b579b5b0d880c7b4674d55c32a727fed24a0546f47961", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "telephony", "description": "Give Hermes phone capabilities without core tool changes. Provision and persist a Twilio number, send and receive SMS/MMS, make direct calls, and place AI-driven outbound calls through Bland.ai or Vapi.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/productivity/telephony/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install telephony"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "telephony. Give Hermes phone capabilities without core tool changes. Provision and persist a Twilio number, send and receive SMS/MMS, make direct calls, and place AI-driven outbound calls through Bland.ai or Vapi. Platforms: openclaw."} -{"id": "8e3d43bae7d0bb4aa5b407a062a15b998aea433cb7082c988982672bf1fd237b", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "qmd", "description": "Search personal knowledge bases, notes, docs, and meeting transcripts locally using qmd \u2014 a hybrid retrieval engine with BM25, vector search, and LLM reranking. Supports CLI and MCP integration.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/research/qmd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install qmd"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "qmd. Search personal knowledge bases, notes, docs, and meeting transcripts locally using qmd \u2014 a hybrid retrieval engine with BM25, vector search, and LLM reranking. Supports CLI and MCP integration. Platforms: linux, macos."} +{"id": "447158f3375d8e08144b579b5b0d880c7b4674d55c32a727fed24a0546f47961", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "telephony", "description": "Give Hermes phone capabilities without core tool changes. Provision and persist a Twilio number, send and receive SMS/MMS, make direct calls, and place AI-driven outbound calls through Bland.ai or Vapi.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw", "windows"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/productivity/telephony/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install telephony"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "telephony. Give Hermes phone capabilities without core tool changes. Provision and persist a Twilio number, send and receive SMS/MMS, make direct calls, and place AI-driven outbound calls through Bland.ai or Vapi. Platforms: linux, macos, openclaw, windows."} +{"id": "8e3d43bae7d0bb4aa5b407a062a15b998aea433cb7082c988982672bf1fd237b", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "qmd", "description": "Search personal knowledge bases, notes, docs, and meeting transcripts locally using qmd \u2014 a hybrid retrieval engine with BM25, vector search, and LLM reranking. Supports CLI and MCP integration.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/research/qmd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install qmd"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "qmd. Search personal knowledge bases, notes, docs, and meeting transcripts locally using qmd \u2014 a hybrid retrieval engine with BM25, vector search, and LLM reranking. Supports CLI and MCP integration. Platforms: linux, macos."} {"id": "d1dd17df3ff549128101a01b6a2954ed1e9393af2756b2989c4e11bfc26a587c", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "1password", "description": "Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in, and reading/injecting secrets for commands.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/security/1password/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install 1password"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "1password. Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in, and reading/injecting secrets for commands. Platforms: openclaw."} {"id": "8166faf385324d5c69008943e2cc2489a871c260d06efee30704f4998340a5a1", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "oss-forensics", "description": "Supply chain investigation, evidence recovery, and forensic analysis for GitHub repositories.\nCovers deleted commit recovery, force-push detection, IOC extraction, multi-source evidence\ncollection, hypothesis formation/validation, and structured forensic reporting.\nInspired by RAPTOR's 1800+ line OSS Forensics system.\n", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/optional-skills/security/oss-forensics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install oss-forensics"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "oss-forensics. Supply chain investigation, evidence recovery, and forensic analysis for GitHub repositories.\nCovers deleted commit recovery, force-push detection, IOC extraction, multi-source evidence\ncollection, hypothesis formation/validation, and structured forensic reporting.\nInspired by RAPTOR's 1800+ line OSS Forensics system.\n Platforms: openclaw."} {"id": "31a8df0a9816f1826814f981aef0fb83865d35a20d006c1713c560b2d3a8a70a", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "apple-notes", "description": "Manage Apple Notes via the memo CLI on macOS (create, view, search, edit).", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/apple/apple-notes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install apple-notes"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "apple-notes. Manage Apple Notes via the memo CLI on macOS (create, view, search, edit). Platforms: macos."} -{"id": "06829dbd1961727c964c6d2faf565b2319e3107a71912dd164f3254fa325f63e", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "apple-reminders", "description": "Manage Apple Reminders via remindctl CLI (list, add, complete, delete).", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/apple/apple-reminders/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install apple-reminders"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "apple-reminders. Manage Apple Reminders via remindctl CLI (list, add, complete, delete). Platforms: macos."} -{"id": "73df45c5c91beee7f375dd2adf599fa63dfb2e1a0dc20f47d0faa1dde7d5e7b2", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "findmy", "description": "Track Apple devices and AirTags via FindMy.app on macOS using AppleScript and screen capture.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/apple/findmy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install findmy"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "findmy. Track Apple devices and AirTags via FindMy.app on macOS using AppleScript and screen capture. Platforms: macos."} -{"id": "579aa5c099ff6a15b715d8ef6bb3d5fa7315b17103f37366205ce3a9dfb4f24b", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "imessage", "description": "Send and receive iMessages/SMS via the imsg CLI on macOS.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/apple/imessage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install imessage"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "imessage. Send and receive iMessages/SMS via the imsg CLI on macOS. Platforms: macos."} +{"id": "06829dbd1961727c964c6d2faf565b2319e3107a71912dd164f3254fa325f63e", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "apple-reminders", "description": "Manage Apple Reminders via remindctl CLI (list, add, complete, delete).", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/apple/apple-reminders/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install apple-reminders"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "apple-reminders. Manage Apple Reminders via remindctl CLI (list, add, complete, delete). Platforms: macos."} +{"id": "73df45c5c91beee7f375dd2adf599fa63dfb2e1a0dc20f47d0faa1dde7d5e7b2", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "findmy", "description": "Track Apple devices and AirTags via FindMy.app on macOS using AppleScript and screen capture.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/apple/findmy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install findmy"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "findmy. Track Apple devices and AirTags via FindMy.app on macOS using AppleScript and screen capture. Platforms: macos."} +{"id": "579aa5c099ff6a15b715d8ef6bb3d5fa7315b17103f37366205ce3a9dfb4f24b", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "imessage", "description": "Send and receive iMessages/SMS via the imsg CLI on macOS.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/apple/imessage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install imessage"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "imessage. Send and receive iMessages/SMS via the imsg CLI on macOS. Platforms: macos."} {"id": "90538dc079f3bd8d25f4d9cc7a612ee72e8dcfa8ab28f1ebe188aa267f68a598", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "claude-code", "description": "Delegate coding tasks to Claude Code (Anthropic's CLI agent). Use for building features, refactoring, PR reviews, and iterative coding. Requires the claude CLI installed.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/autonomous-ai-agents/claude-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install claude-code"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "claude-code. Delegate coding tasks to Claude Code (Anthropic's CLI agent). Use for building features, refactoring, PR reviews, and iterative coding. Requires the claude CLI installed. Platforms: claude_code, openclaw."} {"id": "d02e05c6836b27b337d8759b818ddca6922ce76bcb0e1da441d579629bc92ba4", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "codex", "description": "Delegate coding tasks to OpenAI Codex CLI agent. Use for building features, refactoring, PR reviews, and batch issue fixing. Requires the codex CLI and a git repository.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/autonomous-ai-agents/codex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install codex"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "codex. Delegate coding tasks to OpenAI Codex CLI agent. Use for building features, refactoring, PR reviews, and batch issue fixing. Requires the codex CLI and a git repository. Platforms: claude_code, openclaw."} {"id": "3a78e692c46921f7f375af9951d7edac942de200751ae2e2bc1d5416ad0138c9", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "hermes-agent-spawning", "description": "Spawn additional Hermes Agent instances as autonomous subprocesses for independent long-running tasks. Supports non-interactive one-shot mode (-q) and interactive PTY mode for multi-turn collaboration. Different from delegate_task \u2014 this runs a full separate hermes process.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/autonomous-ai-agents/hermes-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install hermes-agent-spawning"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "hermes-agent-spawning. Spawn additional Hermes Agent instances as autonomous subprocesses for independent long-running tasks. Supports non-interactive one-shot mode (-q) and interactive PTY mode for multi-turn collaboration. Different from delegate_task \u2014 this runs a full separate hermes process. Platforms: claude_code, openclaw."} -{"id": "a2d2d2f65f5d8ab327609f339dbae1da2ab9d773388052980ffda25185824cfa", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "opencode", "description": "Delegate coding tasks to OpenCode CLI agent for feature implementation, refactoring, PR review, and long-running autonomous sessions. Requires the opencode CLI installed and authenticated.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/autonomous-ai-agents/opencode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install opencode"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "opencode. Delegate coding tasks to OpenCode CLI agent for feature implementation, refactoring, PR review, and long-running autonomous sessions. Requires the opencode CLI installed and authenticated. Platforms: openclaw."} -{"id": "d071fc75b438b52989783f261a180b73d37b0fa1e64f930136a9975843c11e80", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "ascii-art", "description": "Generate ASCII art using pyfiglet (571 fonts), cowsay, boxes, toilet, image-to-ascii, remote APIs (asciified, ascii.co.uk), and LLM fallback. No API keys required.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/creative/ascii-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ascii-art"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "ascii-art. Generate ASCII art using pyfiglet (571 fonts), cowsay, boxes, toilet, image-to-ascii, remote APIs (asciified, ascii.co.uk), and LLM fallback. No API keys required. Platforms: openclaw."} +{"id": "a2d2d2f65f5d8ab327609f339dbae1da2ab9d773388052980ffda25185824cfa", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "opencode", "description": "Delegate coding tasks to OpenCode CLI agent for feature implementation, refactoring, PR review, and long-running autonomous sessions. Requires the opencode CLI installed and authenticated.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw", "windows"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/autonomous-ai-agents/opencode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install opencode"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "opencode. Delegate coding tasks to OpenCode CLI agent for feature implementation, refactoring, PR review, and long-running autonomous sessions. Requires the opencode CLI installed and authenticated. Platforms: linux, macos, openclaw, windows."} +{"id": "d071fc75b438b52989783f261a180b73d37b0fa1e64f930136a9975843c11e80", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "ascii-art", "description": "Generate ASCII art using pyfiglet (571 fonts), cowsay, boxes, toilet, image-to-ascii, remote APIs (asciified, ascii.co.uk), and LLM fallback. No API keys required.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw", "windows"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/creative/ascii-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ascii-art"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "ascii-art. Generate ASCII art using pyfiglet (571 fonts), cowsay, boxes, toilet, image-to-ascii, remote APIs (asciified, ascii.co.uk), and LLM fallback. No API keys required. Platforms: linux, macos, openclaw, windows."} {"id": "adb3358189e74ffc02ea0abdc87aa0a81ba8c752c0ec4149b745fc4ffe6bd581", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "ascii-video", "description": "Production pipeline for ASCII art video \u2014 any format. Converts video/audio/images/generative input into colored ASCII character video output (MP4, GIF, image sequence). Covers: video-to-ASCII conversion, audio-reactive music visualizers, generative ASCII art animations, hybrid video+audio reactive, text/lyrics overlays, real-time terminal rendering. Use when users request: ASCII video, text art video, terminal-style video, character art animation, retro text visualization, audio visualizer in ASCII, converting video to ASCII art, matrix-style effects, or any animated ASCII output.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/creative/ascii-video/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ascii-video"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "ascii-video. Production pipeline for ASCII art video \u2014 any format. Converts video/audio/images/generative input into colored ASCII character video output (MP4, GIF, image sequence). Covers: video-to-ASCII conversion, audio-reactive music visualizers, generative ASCII art animations, hybrid video+audio reactive, text/lyrics overlays, real-time terminal rendering. Use when users request: ASCII video, text art video, terminal-style video, character art animation, retro text visualization, audio visualizer in ASCII, converting video to ASCII art, matrix-style effects, or any animated ASCII output. Platforms: openclaw."} {"id": "87d766082d47e08fb5b31f58f7237ff8d4f8d5ae3d6532c2e97b498c9d434506", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "excalidraw", "description": "Create hand-drawn style diagrams using Excalidraw JSON format. Generate .excalidraw files for architecture diagrams, flowcharts, sequence diagrams, concept maps, and more. Files can be opened at excalidraw.com or uploaded for shareable links.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/creative/excalidraw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install excalidraw"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "excalidraw. Create hand-drawn style diagrams using Excalidraw JSON format. Generate .excalidraw files for architecture diagrams, flowcharts, sequence diagrams, concept maps, and more. Files can be opened at excalidraw.com or uploaded for shareable links. Platforms: claude_code, openclaw."} -{"id": "c6988be13c219cdf72e9916cb23d7191d91b62706c2ed7b8a17dab0171b25d05", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "jupyter-live-kernel", "description": "Use a live Jupyter kernel for stateful, iterative Python execution via hamelnb. Load this skill when the task involves exploration, iteration, or inspecting intermediate results \u2014 data science, ML experimentation, API exploration, or building up complex code step-by-step. Uses terminal to run CLI commands against a live Jupyter kernel. No new tools required.\n", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/data-science/jupyter-live-kernel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install jupyter-live-kernel"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "jupyter-live-kernel. Use a live Jupyter kernel for stateful, iterative Python execution via hamelnb. Load this skill when the task involves exploration, iteration, or inspecting intermediate results \u2014 data science, ML experimentation, API exploration, or building up complex code step-by-step. Uses terminal to run CLI commands against a live Jupyter kernel. No new tools required.\n Platforms: openclaw."} -{"id": "265fa35ebedc76d4960a51f366e43d5d372eb605a23ec059f98d473bc69c50e3", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "dogfood", "description": "Systematic exploratory QA testing of web applications \u2014 find bugs, capture evidence, and generate structured reports", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/dogfood/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install dogfood"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "dogfood. Systematic exploratory QA testing of web applications \u2014 find bugs, capture evidence, and generate structured reports Platforms: openclaw."} +{"id": "c6988be13c219cdf72e9916cb23d7191d91b62706c2ed7b8a17dab0171b25d05", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "jupyter-live-kernel", "description": "Use a live Jupyter kernel for stateful, iterative Python execution via hamelnb. Load this skill when the task involves exploration, iteration, or inspecting intermediate results \u2014 data science, ML experimentation, API exploration, or building up complex code step-by-step. Uses terminal to run CLI commands against a live Jupyter kernel. No new tools required.\n", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw", "windows"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/data-science/jupyter-live-kernel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install jupyter-live-kernel"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "jupyter-live-kernel. Use a live Jupyter kernel for stateful, iterative Python execution via hamelnb. Load this skill when the task involves exploration, iteration, or inspecting intermediate results \u2014 data science, ML experimentation, API exploration, or building up complex code step-by-step. Uses terminal to run CLI commands against a live Jupyter kernel. No new tools required.\n Platforms: linux, macos, openclaw, windows."} +{"id": "265fa35ebedc76d4960a51f366e43d5d372eb605a23ec059f98d473bc69c50e3", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "dogfood", "description": "Systematic exploratory QA testing of web applications \u2014 find bugs, capture evidence, and generate structured reports", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw", "windows"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/dogfood/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install dogfood"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "dogfood. Systematic exploratory QA testing of web applications \u2014 find bugs, capture evidence, and generate structured reports Platforms: linux, macos, openclaw, windows."} {"id": "044d202e2b9dc57be3c34ee27a8bfa3e78859d8222c3d476d2ced278205acc2d", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "himalaya", "description": "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).", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/email/himalaya/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install himalaya"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "himalaya. 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). Platforms: claude_code, openclaw."} {"id": "0534d6c7da212393dd43907bae7f3a6f3331b79288794120804d1bb5ba01f15a", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "minecraft-modpack-server", "description": "Set up a modded Minecraft server from a CurseForge/Modrinth server pack zip. Covers NeoForge/Forge install, Java version, JVM tuning, firewall, LAN config, backups, and launch scripts.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/gaming/minecraft-modpack-server/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install minecraft-modpack-server"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "minecraft-modpack-server. Set up a modded Minecraft server from a CurseForge/Modrinth server pack zip. Covers NeoForge/Forge install, Java version, JVM tuning, firewall, LAN config, backups, and launch scripts. Platforms: claude_code, openclaw."} {"id": "056581fa9d45a2e73e7f6da06a8c4d51ca34269bd50b1e072bad8351780ba939", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "pokemon-player", "description": "Play Pokemon games autonomously via headless emulation. Starts a game server, reads structured game state from RAM, makes strategic decisions, and sends button inputs \u2014 all from the terminal.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/gaming/pokemon-player/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pokemon-player"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "pokemon-player. Play Pokemon games autonomously via headless emulation. Starts a game server, reads structured game state from RAM, makes strategic decisions, and sends button inputs \u2014 all from the terminal. Platforms: openclaw."} @@ -1839,7 +1887,7 @@ {"id": "396f0516ce8765cb9c7d69b8972357a4d2d6dc92397ab2d7ae003983fec5ce9b", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "outlines", "description": "Guarantee valid JSON/XML/code structure during generation, use Pydantic models for type-safe outputs, support local models (Transformers, vLLM), and maximize inference speed with Outlines - dottxt.ai's structured generation library", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/mlops/inference/outlines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install outlines"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "outlines. Guarantee valid JSON/XML/code structure during generation, use Pydantic models for type-safe outputs, support local models (Transformers, vLLM), and maximize inference speed with Outlines - dottxt.ai's structured generation library Platforms: claude_code, openclaw."} {"id": "86ebf2a0d0f4486099d56647e9deeec7f20a3a70aa200ace8fcf5a1d71abd1d7", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "tensorrt-llm", "description": "Optimizes LLM inference with NVIDIA TensorRT for maximum throughput and lowest latency. Use for production deployment on NVIDIA GPUs (A100/H100), when you need 10-100x faster inference than PyTorch, or for serving models with quantization (FP8/INT4), in-flight batching, and multi-GPU scaling.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/mlops/inference/tensorrt-llm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install tensorrt-llm"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "tensorrt-llm. Optimizes LLM inference with NVIDIA TensorRT for maximum throughput and lowest latency. Use for production deployment on NVIDIA GPUs (A100/H100), when you need 10-100x faster inference than PyTorch, or for serving models with quantization (FP8/INT4), in-flight batching, and multi-GPU scaling. Platforms: openclaw."} {"id": "f6ef0b087cc69d194a0f8ea101db2c0194f745eaebf719fc61aa898e85007ee8", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "serving-llms-vllm", "description": "Serves LLMs with high throughput using vLLM's PagedAttention and continuous batching. Use when deploying production LLM APIs, optimizing inference latency/throughput, or serving models with limited GPU memory. Supports OpenAI-compatible endpoints, quantization (GPTQ/AWQ/FP8), and tensor parallelism.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/mlops/inference/vllm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install serving-llms-vllm"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "serving-llms-vllm. Serves LLMs with high throughput using vLLM's PagedAttention and continuous batching. Use when deploying production LLM APIs, optimizing inference latency/throughput, or serving models with limited GPU memory. Supports OpenAI-compatible endpoints, quantization (GPTQ/AWQ/FP8), and tensor parallelism. Platforms: claude_code, openclaw."} -{"id": "4e3dc4c8c4946ab2e21c8188becd7f78e7ecb73389eec76cef77720935d22eff", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "audiocraft-audio-generation", "description": "PyTorch library for audio generation including text-to-music (MusicGen) and text-to-sound (AudioGen). Use when you need to generate music from text descriptions, create sound effects, or perform melody-conditioned music generation.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/mlops/models/audiocraft/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install audiocraft-audio-generation"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "audiocraft-audio-generation. PyTorch library for audio generation including text-to-music (MusicGen) and text-to-sound (AudioGen). Use when you need to generate music from text descriptions, create sound effects, or perform melody-conditioned music generation. Platforms: openclaw."} +{"id": "4e3dc4c8c4946ab2e21c8188becd7f78e7ecb73389eec76cef77720935d22eff", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "audiocraft-audio-generation", "description": "PyTorch library for audio generation including text-to-music (MusicGen) and text-to-sound (AudioGen). Use when you need to generate music from text descriptions, create sound effects, or perform melody-conditioned music generation.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/mlops/models/audiocraft/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install audiocraft-audio-generation"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "audiocraft-audio-generation. PyTorch library for audio generation including text-to-music (MusicGen) and text-to-sound (AudioGen). Use when you need to generate music from text descriptions, create sound effects, or perform melody-conditioned music generation. Platforms: linux, macos, openclaw."} {"id": "1409a2154aefc8635903fad8e01027bab2752777a0f5975449219544588c3895", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "clip", "description": "OpenAI's model connecting vision and language. Enables zero-shot image classification, image-text matching, and cross-modal retrieval. Trained on 400M image-text pairs. Use for image search, content moderation, or vision-language tasks without fine-tuning. Best for general-purpose image understanding.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/mlops/models/clip/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install clip"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "clip. OpenAI's model connecting vision and language. Enables zero-shot image classification, image-text matching, and cross-modal retrieval. Trained on 400M image-text pairs. Use for image search, content moderation, or vision-language tasks without fine-tuning. Best for general-purpose image understanding. Platforms: claude_code, openclaw."} {"id": "979b844a58c558792f647c95fb760fd6bf240033514bccced43af52db0b80962", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "llava", "description": "Large Language and Vision Assistant. Enables visual instruction tuning and image-based conversations. Combines CLIP vision encoder with Vicuna/LLaMA language models. Supports multi-turn image chat, visual question answering, and instruction following. Use for vision-language chatbots or image understanding tasks. Best for conversational image analysis.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/mlops/models/llava/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install llava"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "llava. Large Language and Vision Assistant. Enables visual instruction tuning and image-based conversations. Combines CLIP vision encoder with Vicuna/LLaMA language models. Supports multi-turn image chat, visual question answering, and instruction following. Use for vision-language chatbots or image understanding tasks. Best for conversational image analysis. Platforms: openclaw."} {"id": "c1b5a3f4f65ba588fa4f77af14971b5a9097d79154f69aa4c377f2a1b494da63", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "segment-anything-model", "description": "Foundation model for image segmentation with zero-shot transfer. Use when you need to segment any object in images using points, boxes, or masks as prompts, or automatically generate all object masks in an image.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/mlops/models/segment-anything/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install segment-anything-model"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "segment-anything-model. Foundation model for image segmentation with zero-shot transfer. Use when you need to segment any object in images using points, boxes, or masks as prompts, or automatically generate all object masks in an image. Platforms: claude_code, openclaw."} @@ -1877,13 +1925,13 @@ {"id": "93633b69fd2ea8ab98f920165e5685e4f8b0710654499a1ef712676e4d4b49e7", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "ml-paper-writing", "description": "Write publication-ready ML/AI papers for NeurIPS, ICML, ICLR, ACL, AAAI, COLM. Use when drafting papers from research repos, structuring arguments, verifying citations, or preparing camera-ready submissions. Includes LaTeX templates, reviewer guidelines, and citation verification workflows.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/research/ml-paper-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ml-paper-writing"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "ml-paper-writing. Write publication-ready ML/AI papers for NeurIPS, ICML, ICLR, ACL, AAAI, COLM. Use when drafting papers from research repos, structuring arguments, verifying citations, or preparing camera-ready submissions. Includes LaTeX templates, reviewer guidelines, and citation verification workflows. Platforms: claude_code, openclaw."} {"id": "9bf26e4702a466acb054a0b63de18605036fe2c1e127ce6b16b84c2ba125c195", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "parallel-cli", "description": "Optional vendor skill for Parallel CLI \u2014 agent-native web search, extraction, deep research, enrichment, FindAll, and monitoring. Prefer JSON output and non-interactive flows.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/research/parallel-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install parallel-cli"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "parallel-cli. Optional vendor skill for Parallel CLI \u2014 agent-native web search, extraction, deep research, enrichment, FindAll, and monitoring. Prefer JSON output and non-interactive flows. Platforms: openclaw."} {"id": "8929cd1ae2c8504010e2dacad77205cae795c67ebda44b9e104cbe774f906071", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "polymarket", "description": "Query Polymarket prediction market data \u2014 search markets, get prices, orderbooks, and price history. Read-only via public REST APIs, no API key needed.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/research/polymarket/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install polymarket"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "polymarket. Query Polymarket prediction market data \u2014 search markets, get prices, orderbooks, and price history. Read-only via public REST APIs, no API key needed. Platforms: openclaw."} -{"id": "0ac04fe106366f00ce6ce526a4d411d9e5c2adf3f1594fb1e9f2944c68916f73", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "openhue", "description": "Control Philips Hue lights, rooms, and scenes via the OpenHue CLI. Turn lights on/off, adjust brightness, color, color temperature, and activate scenes.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/smart-home/openhue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openhue"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "openhue. Control Philips Hue lights, rooms, and scenes via the OpenHue CLI. Turn lights on/off, adjust brightness, color, color temperature, and activate scenes. Platforms: openclaw."} +{"id": "0ac04fe106366f00ce6ce526a4d411d9e5c2adf3f1594fb1e9f2944c68916f73", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "openhue", "description": "Control Philips Hue lights, rooms, and scenes via the OpenHue CLI. Turn lights on/off, adjust brightness, color, color temperature, and activate scenes.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw", "windows"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/smart-home/openhue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openhue"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "openhue. Control Philips Hue lights, rooms, and scenes via the OpenHue CLI. Turn lights on/off, adjust brightness, color, color temperature, and activate scenes. Platforms: linux, macos, openclaw, windows."} {"id": "9ebf2af9cb34d86ceba9d866ed120099c30d996caa5785467b820c034ee19b0a", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "xitter", "description": "Interact with X/Twitter via the x-cli terminal client using official X API credentials. Use for posting, reading timelines, searching tweets, liking, retweeting, bookmarks, mentions, and user lookups.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/social-media/xitter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install xitter"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "xitter. Interact with X/Twitter via the x-cli terminal client using official X API credentials. Use for posting, reading timelines, searching tweets, liking, retweeting, bookmarks, mentions, and user lookups. Platforms: linux, macos."} {"id": "864303d8752b132e106962d236eefb5ae5b3a1d5eb757e0936a749f6318fbb49", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "code-review", "description": "Use when completing tasks, implementing major features, or before merging. Validates work meets requirements through systematic review process.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/software-development/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install code-review"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "code-review. Use when completing tasks, implementing major features, or before merging. Validates work meets requirements through systematic review process. Platforms: claude_code, openclaw."} {"id": "daff3d4aa5607f1f60d0b9f908f8caf682317ab07758c165d415429ba9b11bf9", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "plan", "description": "Use when you have a spec or requirements for a multi-step task. Creates comprehensive implementation plans with bite-sized tasks, exact file paths, and complete code examples.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/software-development/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install plan"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "plan. Use when you have a spec or requirements for a multi-step task. Creates comprehensive implementation plans with bite-sized tasks, exact file paths, and complete code examples. Platforms: claude_code, openclaw."} {"id": "676433e1ce7a45cb36b4b33a6407f5662439ba3100100f98ec5b55bdceae935b", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "requesting-code-review", "description": "Use when completing tasks, implementing major features, or before merging. Validates work meets requirements through systematic review process.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/software-development/requesting-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install requesting-code-review"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "requesting-code-review. Use when completing tasks, implementing major features, or before merging. Validates work meets requirements through systematic review process. Platforms: openclaw."} {"id": "7cfa300db3ef74266b453064e904949cf72ac1ae96e810578849014269be4eca", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "subagent-driven-development", "description": "Use when executing implementation plans with independent tasks. Dispatches fresh delegate_task per task with two-stage review (spec compliance then code quality).", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/software-development/subagent-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install subagent-driven-development"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "subagent-driven-development. Use when executing implementation plans with independent tasks. Dispatches fresh delegate_task per task with two-stage review (spec compliance then code quality). Platforms: claude_code, openclaw."} -{"id": "5bb78bc4046c94588836cb7f3577ca2434bcb9e0770a53efb1d3089644e6c8d6", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "systematic-debugging", "description": "Use when encountering any bug, test failure, or unexpected behavior. 4-phase root cause investigation \u2014 NO fixes without understanding the problem first.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/software-development/systematic-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install systematic-debugging"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "systematic-debugging. Use when encountering any bug, test failure, or unexpected behavior. 4-phase root cause investigation \u2014 NO fixes without understanding the problem first. Platforms: openclaw."} +{"id": "5bb78bc4046c94588836cb7f3577ca2434bcb9e0770a53efb1d3089644e6c8d6", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "systematic-debugging", "description": "Use when encountering any bug, test failure, or unexpected behavior. 4-phase root cause investigation \u2014 NO fixes without understanding the problem first.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "openclaw", "windows"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/software-development/systematic-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install systematic-debugging"}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "systematic-debugging. Use when encountering any bug, test failure, or unexpected behavior. 4-phase root cause investigation \u2014 NO fixes without understanding the problem first. Platforms: linux, macos, openclaw, windows."} {"id": "3de98a455c642744e968b4a0089209bca69f3875dcf265da219c9b680bbe8a04", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "test-driven-development", "description": "Use when implementing any feature or bugfix, before writing implementation code. Enforces RED-GREEN-REFACTOR cycle with test-first approach.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/software-development/test-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install test-driven-development"}, "quality": {"stars": 7981, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:53:47Z"}, "embedding_text": "test-driven-development. Use when implementing any feature or bugfix, before writing implementation code. Enforces RED-GREEN-REFACTOR cycle with test-first approach. Platforms: claude_code, openclaw."} {"id": "3fb0d08fa98a220f40e9b1f653654a4ecdba7fdfd74ce4e304f866936d545b6c", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "writing-plans", "description": "Use when you have a spec or requirements for a multi-step task. Creates comprehensive implementation plans with bite-sized tasks, exact file paths, and complete code examples.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/NousResearch/hermes-agent/blob/main/skills/software-development/writing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install writing-plans"}, "quality": {"stars": 7754, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:47:27Z"}, "embedding_text": "writing-plans. Use when you have a spec or requirements for a multi-step task. Creates comprehensive implementation plans with bite-sized tasks, exact file paths, and complete code examples. Platforms: openclaw."} {"id": "3e8b5400f3dd12213711df243bb8be3ecbf543a20a48c1fbaf60a223c460ee95", "repo_url": "https://github.com/memtensor/memos", "name": "browserwing-admin", "description": "Manage and operate BrowserWing \u2014 an intelligent browser automation platform. Install dependencies, configure LLM, create/manage/execute automation scripts, use AI-driven exploration to generate scripts, browse the script marketplace, and troubleshoot issues.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/MemTensor/MemOS/blob/main/apps/memos-local-openclaw/skill/browserwing-admin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install browserwing-admin", "claude_code": "/plugin install browserwing-admin"}, "quality": {"stars": 7265, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T06:10:53Z"}, "embedding_text": "browserwing-admin. Manage and operate BrowserWing \u2014 an intelligent browser automation platform. Install dependencies, configure LLM, create/manage/execute automation scripts, use AI-driven exploration to generate scripts, browse the script marketplace, and troubleshoot issues. Platforms: claude_code, openclaw."} @@ -1910,7 +1958,7 @@ {"id": "d0fd1db056e47d9dc856337edf500bb5ee4aeacb3d5866c88a818d3eec8e92eb", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "app-store-optimization", "description": "App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklists, and tracking ranking changes.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/app-store-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install app-store-optimization", "claude_code": "/plugin install app-store-optimization"}, "quality": {"stars": 5365, "skillhub_rank": "A", "skillhub_score": 8.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "app-store-optimization. App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklists, and tracking ranking changes. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "edde7bd8ae532aea820ec33cc1b5eb7ac761eccd429d4c3f2152a8635cf8957a", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "atlassian-admin", "description": "Atlassian Administrator for managing and organizing Atlassian products (Jira, Confluence, Bitbucket, Trello), users, permissions, security, integrations, system configuration, and org-wide governance. Use when asked to add users to Jira, change Confluence permissions, configure access control, update admin settings, manage Atlassian groups, set up SSO, install marketplace apps, review security policies, or handle any org-wide Atlassian administration task.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/atlassian-admin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install atlassian-admin", "claude_code": "/plugin install atlassian-admin"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "atlassian-admin. Atlassian Administrator for managing and organizing Atlassian products (Jira, Confluence, Bitbucket, Trello), users, permissions, security, integrations, system configuration, and org-wide governance. Use when asked to add users to Jira, change Confluence permissions, configure access control, update admin settings, manage Atlassian groups, set up SSO, install marketplace apps, review security policies, or handle any org-wide Atlassian administration task. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "39ce2b2b48048d89fc4fc367733cc2aebbcfa37eb622c8da22852d2d30548776", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "atlassian-templates", "description": "Atlassian Template and Files Creator/Modifier expert for creating, modifying, and managing Jira and Confluence templates, blueprints, custom layouts, reusable components, and standardized content structures. Use when building org-wide templates, custom blueprints, page layouts, and automated content generation.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/atlassian-templates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install atlassian-templates", "claude_code": "/plugin install atlassian-templates"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "atlassian-templates. Atlassian Template and Files Creator/Modifier expert for creating, modifying, and managing Jira and Confluence templates, blueprints, custom layouts, reusable components, and standardized content structures. Use when building org-wide templates, custom blueprints, page layouts, and automated content generation. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "6ed7cd0e88adf5e99840fec4b1c1062d3160766a3b687f5a8bf89f70cf9ab449", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "autoresearch-agent", "description": "Autonomous experiment loop that optimizes any file by a measurable metric. Inspired by Karpathy's autoresearch. The agent edits a target file, runs a fixed evaluation, keeps improvements (git commit), discards failures (git reset), and loops indefinitely. Use when: user wants to optimize code speed, reduce bundle/image size, improve test pass rate, optimize prompts, improve content quality (headlines, copy, CTR), or run any measurable improvement loop. Requires: a target file, an evaluation command that outputs a metric, and a git repo.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/autoresearch-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install autoresearch-agent", "claude_code": "/plugin install autoresearch-agent"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "autoresearch-agent. Autonomous experiment loop that optimizes any file by a measurable metric. Inspired by Karpathy's autoresearch. The agent edits a target file, runs a fixed evaluation, keeps improvements (git commit), discards failures (git reset), and loops indefinitely. Use when: user wants to optimize code speed, reduce bundle/image size, improve test pass rate, optimize prompts, improve content quality (headlines, copy, CTR), or run any measurable improvement loop. Requires: a target file, an evaluation command that outputs a metric, and a git repo. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "6ed7cd0e88adf5e99840fec4b1c1062d3160766a3b687f5a8bf89f70cf9ab449", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "autoresearch-agent", "description": "Autonomous experiment loop that optimizes any file by a measurable metric. Inspired by Karpathy's autoresearch. The agent edits a target file, runs a fixed evaluation, keeps improvements (git commit), discards failures (git reset), and loops indefinitely. Use when: user wants to optimize code speed, reduce bundle/image size, improve test pass rate, optimize prompts, improve content quality (headlines, copy, CTR), or run any measurable improvement loop. Requires: a target file, an evaluation command that outputs a metric, and a git repo.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/autoresearch-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install autoresearch-agent", "claude_code": "/plugin install autoresearch-agent"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "autoresearch-agent. Autonomous experiment loop that optimizes any file by a measurable metric. Inspired by Karpathy's autoresearch. The agent edits a target file, runs a fixed evaluation, keeps improvements (git commit), discards failures (git reset), and loops indefinitely. Use when: user wants to optimize code speed, reduce bundle/image size, improve test pass rate, optimize prompts, improve content quality (headlines, copy, CTR), or run any measurable improvement loop. Requires: a target file, an evaluation command that outputs a metric, and a git repo. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "10a10f5f34f607c0e7cbb91b77aa7f60e5461f0163b62b90d03ef8beb4ea2916", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "aws-solution-architect", "description": "Design AWS architectures for startups using serverless patterns and IaC templates. Use when asked to design serverless architecture, create CloudFormation templates, optimize AWS costs, set up CI/CD pipelines, or migrate to AWS. Covers Lambda, API Gateway, DynamoDB, ECS, Aurora, and cost optimization.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/aws-solution-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install aws-solution-architect", "claude_code": "/plugin install aws-solution-architect"}, "quality": {"stars": 5360, "skillhub_rank": "A", "skillhub_score": 8.9, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "aws-solution-architect. Design AWS architectures for startups using serverless patterns and IaC templates. Use when asked to design serverless architecture, create CloudFormation templates, optimize AWS costs, set up CI/CD pipelines, or migrate to AWS. Covers Lambda, API Gateway, DynamoDB, ECS, Aurora, and cost optimization. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "4161528bca5b96d400abf18ed199621bbbcd1cabfb3a8652c4b900a26fcfb8fa", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "board-deck-builder", "description": "Assembles comprehensive board and investor update decks by pulling perspectives from all C-suite roles. Use when preparing board meetings, investor updates, quarterly business reviews, or fundraising narratives. Covers structure, narrative framework, bad news delivery, and common mistakes.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/board-deck-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install board-deck-builder", "claude_code": "/plugin install board-deck-builder"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "board-deck-builder. Assembles comprehensive board and investor update decks by pulling perspectives from all C-suite roles. Use when preparing board meetings, investor updates, quarterly business reviews, or fundraising narratives. Covers structure, narrative framework, bad news delivery, and common mistakes. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "50952c3338ec557a38a17ef6e64c81583c6ba4f9ea955eb8a497e3224c062f9a", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "board-meeting", "description": "Multi-agent board meeting protocol for strategic decisions. Runs a structured 6-phase deliberation: context loading, independent C-suite contributions (isolated, no cross-pollination), critic analysis, synthesis, founder review, and decision extraction. Use when the user invokes /cs:board, calls a board meeting, or wants structured multi-perspective executive deliberation on a strategic question.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/board-meeting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install board-meeting", "claude_code": "/plugin install board-meeting"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "board-meeting. Multi-agent board meeting protocol for strategic decisions. Runs a structured 6-phase deliberation: context loading, independent C-suite contributions (isolated, no cross-pollination), critic analysis, synthesis, founder review, and decision extraction. Use when the user invokes /cs:board, calls a board meeting, or wants structured multi-perspective executive deliberation on a strategic question. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} @@ -1929,7 +1977,7 @@ {"id": "91a11bbcee9fe493212eeb4cad536d1f1a101f17581b0efb1c10377c38115568", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "changelog-generator", "description": "Changelog Generator", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/changelog-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install changelog-generator", "claude_code": "/plugin install changelog-generator"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "changelog-generator. Changelog Generator Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "6501f466822268ea3c3b389b550645a751ef3f769195aae9bf01c699bd3d6a91", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "chief-of-staff", "description": "C-suite orchestration layer. Routes founder questions to the right advisor role(s), triggers multi-role board meetings for complex decisions, synthesizes outputs, and tracks decisions. Every C-suite interaction starts here. Loads company context automatically.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/chief-of-staff/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install chief-of-staff", "claude_code": "/plugin install chief-of-staff"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "chief-of-staff. C-suite orchestration layer. Routes founder questions to the right advisor role(s), triggers multi-role board meetings for complex decisions, synthesizes outputs, and tracks decisions. Every C-suite interaction starts here. Loads company context automatically. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "57ff6f0f146e8292de4da99e9ded783ae1503906631bbe9066317b01a6cf0030", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "chro-advisor", "description": "People leadership for scaling companies. Hiring strategy, compensation design, org structure, culture, and retention. Use when building hiring plans, designing comp frameworks, restructuring teams, managing performance, building culture, or when user mentions CHRO, HR, people strategy, talent, headcount, compensation, org design, retention, or performance management.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/chro-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install chro-advisor", "claude_code": "/plugin install chro-advisor"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "chro-advisor. People leadership for scaling companies. Hiring strategy, compensation design, org structure, culture, and retention. Use when building hiring plans, designing comp frameworks, restructuring teams, managing performance, building culture, or when user mentions CHRO, HR, people strategy, talent, headcount, compensation, org design, retention, or performance management. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "f33fe423e9bad8b74112557af4b54e7c620dc05d2b2b961ed05413d41b759ec8", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "churn-prevention", "description": "Reduce voluntary and involuntary churn through cancel flow design, save offers, exit surveys, and dunning sequences. Use when designing or optimizing a cancel flow, building save offers, setting up dunning emails, or reducing failed-payment churn. Trigger keywords: cancel flow, churn reduction, save offers, dunning, exit survey, payment recovery, win-back, involuntary churn, failed payments, cancel page. NOT for customer health scoring or expansion revenue \u2014 use customer-success-manager for that.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/churn-prevention/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install churn-prevention", "claude_code": "/plugin install churn-prevention"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "churn-prevention. Reduce voluntary and involuntary churn through cancel flow design, save offers, exit surveys, and dunning sequences. Use when designing or optimizing a cancel flow, building save offers, setting up dunning emails, or reducing failed-payment churn. Trigger keywords: cancel flow, churn reduction, save offers, dunning, exit survey, payment recovery, win-back, involuntary churn, failed payments, cancel page. NOT for customer health scoring or expansion revenue \u2014 use customer-success-manager for that. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "f33fe423e9bad8b74112557af4b54e7c620dc05d2b2b961ed05413d41b759ec8", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "churn-prevention", "description": "Reduce voluntary and involuntary churn through cancel flow design, save offers, exit surveys, and dunning sequences. Use when designing or optimizing a cancel flow, building save offers, setting up dunning emails, or reducing failed-payment churn. Trigger keywords: cancel flow, churn reduction, save offers, dunning, exit survey, payment recovery, win-back, involuntary churn, failed payments, cancel page. NOT for customer health scoring or expansion revenue \u2014 use customer-success-manager for that.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/churn-prevention/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install churn-prevention", "claude_code": "/plugin install churn-prevention"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "churn-prevention. Reduce voluntary and involuntary churn through cancel flow design, save offers, exit surveys, and dunning sequences. Use when designing or optimizing a cancel flow, building save offers, setting up dunning emails, or reducing failed-payment churn. Trigger keywords: cancel flow, churn reduction, save offers, dunning, exit survey, payment recovery, win-back, involuntary churn, failed payments, cancel page. NOT for customer health scoring or expansion revenue \u2014 use customer-success-manager for that. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "accc40118a2a4b0b75f6fc920b3bf7ca68e53c0ad57f579f469a1bd3165f14ca", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "ci-cd-pipeline-builder", "description": "CI/CD Pipeline Builder", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/ci-cd-pipeline-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ci-cd-pipeline-builder", "claude_code": "/plugin install ci-cd-pipeline-builder"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "ci-cd-pipeline-builder. CI/CD Pipeline Builder Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "955f559947e9c945c0fb8d03fbdae8fd21d79e1a6315131562052d808b0016e8", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "ciso-advisor", "description": "Security leadership for growth-stage companies. Risk quantification in dollars, compliance roadmap (SOC 2/ISO 27001/HIPAA/GDPR), security architecture strategy, incident response leadership, and board-level security reporting. Use when building security programs, justifying security budget, selecting compliance frameworks, managing incidents, assessing vendor risk, or when user mentions CISO, security strategy, compliance roadmap, zero trust, or board security reporting.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/ciso-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ciso-advisor", "claude_code": "/plugin install ciso-advisor"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "ciso-advisor. Security leadership for growth-stage companies. Risk quantification in dollars, compliance roadmap (SOC 2/ISO 27001/HIPAA/GDPR), security architecture strategy, incident response leadership, and board-level security reporting. Use when building security programs, justifying security budget, selecting compliance frameworks, managing incidents, assessing vendor risk, or when user mentions CISO, security strategy, compliance roadmap, zero trust, or board security reporting. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "43cc9653e60e9a00d833ea2167b7b4016e7d61bf909fe9b997f1efe85200dc96", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cmo-advisor", "description": "Marketing leadership for scaling companies. Brand positioning, growth model design, marketing budget allocation, and marketing org design. Use when designing brand strategy, selecting growth models (PLG vs sales-led vs community-led), allocating marketing budgets, building marketing teams, or when user mentions CMO, brand strategy, growth model, CAC, LTV, channel mix, or marketing ROI.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cmo-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cmo-advisor", "claude_code": "/plugin install cmo-advisor"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cmo-advisor. Marketing leadership for scaling companies. Brand positioning, growth model design, marketing budget allocation, and marketing org design. Use when designing brand strategy, selecting growth models (PLG vs sales-led vs community-led), allocating marketing budgets, building marketing teams, or when user mentions CMO, brand strategy, growth model, CAC, LTV, channel mix, or marketing ROI. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} @@ -1938,16 +1986,17 @@ {"id": "b6fb3e27918082345363476c3061081e3db60ecd5c628c1fa090dfe0cd4de309", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cold-email", "description": "When the user wants to write, improve, or build a sequence of B2B cold outreach emails to prospects who haven't asked to hear from them. Use when the user mentions 'cold email,' 'cold outreach,' 'prospecting emails,' 'SDR emails,' 'sales emails,' 'first touch email,' 'follow-up sequence,' or 'email prospecting.' Also use when they share an email draft that sounds too sales-y and needs to be humanized. Distinct from email-sequence (lifecycle/nurture to opted-in subscribers) \u2014 this is unsolicited outreach to new prospects. NOT for lifecycle emails, newsletters, or drip campaigns (use email-sequence).", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cold-email/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cold-email", "claude_code": "/plugin install cold-email"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cold-email. When the user wants to write, improve, or build a sequence of B2B cold outreach emails to prospects who haven't asked to hear from them. Use when the user mentions 'cold email,' 'cold outreach,' 'prospecting emails,' 'SDR emails,' 'sales emails,' 'first touch email,' 'follow-up sequence,' or 'email prospecting.' Also use when they share an email draft that sounds too sales-y and needs to be humanized. Distinct from email-sequence (lifecycle/nurture to opted-in subscribers) \u2014 this is unsolicited outreach to new prospects. NOT for lifecycle emails, newsletters, or drip campaigns (use email-sequence). Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "353e5c86196d029fec4f29882a2eb0854d41b81d93d37da076fa9d6dfcbd6e41", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "company-os", "description": "The meta-framework for how a company runs \u2014 the connective tissue between all C-suite roles. Covers operating system selection (EOS, Scaling Up, OKR-native, hybrid), accountability charts, scorecards, meeting pulse, issue resolution, and 90-day rocks. Use when setting up company operations, selecting a management framework, designing meeting rhythms, building accountability systems, implementing OKRs, or when user mentions EOS, Scaling Up, operating system, L10 meetings, rocks, scorecard, accountability chart, or quarterly planning.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/company-os/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install company-os", "claude_code": "/plugin install company-os"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "company-os. The meta-framework for how a company runs \u2014 the connective tissue between all C-suite roles. Covers operating system selection (EOS, Scaling Up, OKR-native, hybrid), accountability charts, scorecards, meeting pulse, issue resolution, and 90-day rocks. Use when setting up company operations, selecting a management framework, designing meeting rhythms, building accountability systems, implementing OKRs, or when user mentions EOS, Scaling Up, operating system, L10 meetings, rocks, scorecard, accountability chart, or quarterly planning. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "00a91db14beff16f8f228801d0108db890e451d396f842233c4c253997120379", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "competitive-intel", "description": "Systematic competitor tracking that feeds CMO positioning, CRO battlecards, and CPO roadmap decisions. Use when analyzing competitors, building sales battlecards, tracking market moves, positioning against alternatives, or when user mentions competitive intelligence, competitive analysis, competitor research, battlecards, win/loss, or market positioning.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/competitive-intel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install competitive-intel", "claude_code": "/plugin install competitive-intel"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "competitive-intel. Systematic competitor tracking that feeds CMO positioning, CRO battlecards, and CPO roadmap decisions. Use when analyzing competitors, building sales battlecards, tracking market moves, positioning against alternatives, or when user mentions competitive intelligence, competitive analysis, competitor research, battlecards, win/loss, or market positioning. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "c855d0b03045daf2ee064e770a178cffe023b4595dcb20a9f9184f34bf80ffe8", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "competitive-matrix", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/competitive-matrix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install competitive-matrix", "claude_code": "/plugin install competitive-matrix"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "competitive-matrix. null. Score: /10. Best for everyone. One-click install. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "7f053a6a76467b5b7e36f22e52099f7d22771aea5c602a6c836d1c7cb6e765b9", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "competitive-teardown", "description": "Analyzes competitor products and companies by synthesizing data from pricing pages, app store reviews, job postings, SEO signals, and social media into structured competitive intelligence. Produces feature comparison matrices scored across 12 dimensions, SWOT analyses, positioning maps, UX audits, pricing model breakdowns, action item roadmaps, and stakeholder presentation templates. Use when conducting competitor analysis, comparing products against competitors, researching the competitive landscape, building battle cards for sales, preparing for a product strategy or roadmap session, responding to a competitor's new feature or pricing change, or performing a quarterly competitive review.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/competitive-teardown/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install competitive-teardown", "claude_code": "/plugin install competitive-teardown"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "competitive-teardown. Analyzes competitor products and companies by synthesizing data from pricing pages, app store reviews, job postings, SEO signals, and social media into structured competitive intelligence. Produces feature comparison matrices scored across 12 dimensions, SWOT analyses, positioning maps, UX audits, pricing model breakdowns, action item roadmaps, and stakeholder presentation templates. Use when conducting competitor analysis, comparing products against competitors, researching the competitive landscape, building battle cards for sales, preparing for a product strategy or roadmap session, responding to a competitor's new feature or pricing change, or performing a quarterly competitive review. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "d02c8d0edfb702f3726b9ef018526cc4977ee32f94f89f855f0793184d610c4e", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "competitor-alternatives", "description": "When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'comparison page,' '[Product] vs [Product],' '[Product] alternative,' 'competitive landing pages,' 'switch from competitor,' or 'comparison content.' Covers four formats: singular alternative, plural alternatives, you vs competitor, and competitor vs competitor. Emphasizes deep research, modular content architecture, and varied section types beyond feature tables.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/competitor-alternatives/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install competitor-alternatives", "claude_code": "/plugin install competitor-alternatives"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "competitor-alternatives. When the user wants to create competitor comparison or alternative pages for SEO and sales enablement. Also use when the user mentions 'alternative page,' 'vs page,' 'competitor comparison,' 'comparison page,' '[Product] vs [Product],' '[Product] alternative,' 'competitive landing pages,' 'switch from competitor,' or 'comparison content.' Covers four formats: singular alternative, plural alternatives, you vs competitor, and competitor vs competitor. Emphasizes deep research, modular content architecture, and varied section types beyond feature tables. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "b454c31512e510a1339b36bc941a79cea8c955b1984e592b6f05eefa728f704f", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "confluence-expert", "description": "Atlassian Confluence expert for creating and managing spaces, knowledge bases, and documentation. Configures space permissions and hierarchies, creates page templates with macros, sets up documentation taxonomies, designs page layouts, and manages content governance. Use when users need to build or restructure a Confluence space, design page hierarchies with permission structures, author or standardise documentation templates, embed Jira reports in pages, run knowledge base audits, or establish documentation standards and collaborative workflows.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/confluence-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install confluence-expert", "claude_code": "/plugin install confluence-expert"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "confluence-expert. Atlassian Confluence expert for creating and managing spaces, knowledge bases, and documentation. Configures space permissions and hierarchies, creates page templates with macros, sets up documentation taxonomies, designs page layouts, and manages content governance. Use when users need to build or restructure a Confluence space, design page hierarchies with permission structures, author or standardise documentation templates, embed Jira reports in pages, run knowledge base audits, or establish documentation standards and collaborative workflows. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "05944ded6d2caa9c7ea6eacce3a3643ce6fd7e15c24682659ce0b287c3a96dac", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "content-creator", "description": "Deprecated redirect skill that routes legacy 'content creator' requests to the correct specialist. Use when a user invokes 'content creator', asks to write a blog post, article, guide, or brand voice analysis (routes to content-production), or asks to plan content, build a topic cluster, or create a content calendar (routes to content-strategy). Does not handle requests directly \u2014 identifies user intent and redirects to content-production for writing/SEO/brand-voice tasks or content-strategy for planning tasks.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/content-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install content-creator", "claude_code": "/plugin install content-creator"}, "quality": {"stars": 5360, "skillhub_rank": "A", "skillhub_score": 7.7, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "content-creator. Deprecated redirect skill that routes legacy 'content creator' requests to the correct specialist. Use when a user invokes 'content creator', asks to write a blog post, article, guide, or brand voice analysis (routes to content-production), or asks to plan content, build a topic cluster, or create a content calendar (routes to content-strategy). Does not handle requests directly \u2014 identifies user intent and redirects to content-production for writing/SEO/brand-voice tasks or content-strategy for planning tasks. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "735a62a988bc946e98f90048ea7fad1f710dbf9ef746771b84836ff28ff7b991", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "content-humanizer", "description": "Makes AI-generated content sound genuinely human \u2014 not just cleaned up, but alive. Use when content feels robotic, uses too many AI clich\u00e9s, lacks personality, or reads like it was written by committee. Triggers: 'this sounds like AI', 'make it more human', 'add personality', 'it feels generic', 'sounds robotic', 'fix AI writing', 'inject our voice'. NOT for initial content creation (use content-production). NOT for SEO optimization (use content-production Mode 3).", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/content-humanizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install content-humanizer", "claude_code": "/plugin install content-humanizer"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "content-humanizer. Makes AI-generated content sound genuinely human \u2014 not just cleaned up, but alive. Use when content feels robotic, uses too many AI clich\u00e9s, lacks personality, or reads like it was written by committee. Triggers: 'this sounds like AI', 'make it more human', 'add personality', 'it feels generic', 'sounds robotic', 'fix AI writing', 'inject our voice'. NOT for initial content creation (use content-production). NOT for SEO optimization (use content-production Mode 3). Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "735a62a988bc946e98f90048ea7fad1f710dbf9ef746771b84836ff28ff7b991", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "content-humanizer", "description": "Makes AI-generated content sound genuinely human \u2014 not just cleaned up, but alive. Use when content feels robotic, uses too many AI clich\u00e9s, lacks personality, or reads like it was written by committee. Triggers: 'this sounds like AI', 'make it more human', 'add personality', 'it feels generic', 'sounds robotic', 'fix AI writing', 'inject our voice'. NOT for initial content creation (use content-production). NOT for SEO optimization (use content-production Mode 3).", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/content-humanizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install content-humanizer", "claude_code": "/plugin install content-humanizer"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "content-humanizer. Makes AI-generated content sound genuinely human \u2014 not just cleaned up, but alive. Use when content feels robotic, uses too many AI clich\u00e9s, lacks personality, or reads like it was written by committee. Triggers: 'this sounds like AI', 'make it more human', 'add personality', 'it feels generic', 'sounds robotic', 'fix AI writing', 'inject our voice'. NOT for initial content creation (use content-production). NOT for SEO optimization (use content-production Mode 3). Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "c118fd61d84fb38a557ffdb61130284491b9a7a3467eef9fcdd8801219e93a19", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "content-production", "description": "Full content production pipeline \u2014 takes a topic from blank page to published-ready piece. Use when you need to execute content: write a blog post, article, or guide end-to-end. Triggers: 'write a post about', 'draft an article', 'create content for', 'help me write', 'I need a blog post'. NOT for content strategy or calendar planning (use content-strategy). NOT for repurposing existing content (use content-repurposing). NOT for social captions only.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/content-production/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install content-production", "claude_code": "/plugin install content-production"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "content-production. Full content production pipeline \u2014 takes a topic from blank page to published-ready piece. Use when you need to execute content: write a blog post, article, or guide end-to-end. Triggers: 'write a post about', 'draft an article', 'create content for', 'help me write', 'I need a blog post'. NOT for content strategy or calendar planning (use content-strategy). NOT for repurposing existing content (use content-repurposing). NOT for social captions only. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "6b916c1abb298983922b493a8163b54203db247c2c8889013c2afc3e9de2622f", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "content-strategy", "description": "When the user wants to plan a content strategy, decide what content to create, or figure out what topics to cover. Also use when the user mentions \"content strategy,\" \"what should I write about,\" \"content ideas,\" \"blog strategy,\" \"topic clusters,\" or \"content planning.\" For writing individual pieces, see copywriting. For SEO-specific audits, see seo-audit.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/content-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install content-strategy", "claude_code": "/plugin install content-strategy"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "content-strategy. When the user wants to plan a content strategy, decide what content to create, or figure out what topics to cover. Also use when the user mentions \"content strategy,\" \"what should I write about,\" \"content ideas,\" \"blog strategy,\" \"topic clusters,\" or \"content planning.\" For writing individual pieces, see copywriting. For SEO-specific audits, see seo-audit. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "1d8405bdaea65b2c5fd9f1055979e4b5260985075a35ea7a335eb76df4ecd0d9", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "context-engine", "description": "Loads and manages company context for all C-suite advisor skills. Reads ~/.claude/company-context.md, detects stale context (>90 days), enriches context during conversations, and enforces privacy/anonymization rules before external API calls.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/context-engine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install context-engine", "claude_code": "/plugin install context-engine"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "context-engine. Loads and manages company context for all C-suite advisor skills. Reads ~/.claude/company-context.md, detects stale context (>90 days), enriches context during conversations, and enforces privacy/anonymization rules before external API calls. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "f0359dd50cf4ecc5ca6934ecc07b3c7ced88dd47264b31c6ae7ee6499d24b1d7", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "contract-and-proposal-writer", "description": "Contract & Proposal Writer", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/contract-and-proposal-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install contract-and-proposal-writer", "claude_code": "/plugin install contract-and-proposal-writer"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "contract-and-proposal-writer. Contract & Proposal Writer Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "b5ce2d9ea9750111cd8b4d7e1f0dcad33e2bfb881044afb99bbac581a4ccca5d", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "coo-advisor", "description": "Operations leadership for scaling companies. Process design, OKR execution, operational cadence, and scaling playbooks. Use when designing operations, setting up OKRs, building processes, scaling teams, analyzing bottlenecks, planning operational cadence, or when user mentions COO, operations, process improvement, OKRs, scaling, operational efficiency, or execution.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/coo-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install coo-advisor", "claude_code": "/plugin install coo-advisor"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "coo-advisor. Operations leadership for scaling companies. Process design, OKR execution, operational cadence, and scaling playbooks. Use when designing operations, setting up OKRs, building processes, scaling teams, analyzing bottlenecks, planning operational cadence, or when user mentions COO, operations, process improvement, OKRs, scaling, operational efficiency, or execution. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "b5ce2d9ea9750111cd8b4d7e1f0dcad33e2bfb881044afb99bbac581a4ccca5d", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "coo-advisor", "description": "Operations leadership for scaling companies. Process design, OKR execution, operational cadence, and scaling playbooks. Use when designing operations, setting up OKRs, building processes, scaling teams, analyzing bottlenecks, planning operational cadence, or when user mentions COO, operations, process improvement, OKRs, scaling, operational efficiency, or execution.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/coo-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install coo-advisor", "claude_code": "/plugin install coo-advisor"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "coo-advisor. Operations leadership for scaling companies. Process design, OKR execution, operational cadence, and scaling playbooks. Use when designing operations, setting up OKRs, building processes, scaling teams, analyzing bottlenecks, planning operational cadence, or when user mentions COO, operations, process improvement, OKRs, scaling, operational efficiency, or execution. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "862b52e6bb81ad444ecc51263d9e8be10401dbe93936c1c94bf64f72c55c1fe8", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "copy-editing", "description": "When the user wants to edit, review, or improve existing marketing copy. Also use when the user mentions 'edit this copy,' 'review my copy,' 'copy feedback,' 'proofread,' 'polish this,' 'make this better,' or 'copy sweep.' This skill provides a systematic approach to editing marketing copy through multiple focused passes.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/copy-editing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install copy-editing", "claude_code": "/plugin install copy-editing"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "copy-editing. When the user wants to edit, review, or improve existing marketing copy. Also use when the user mentions 'edit this copy,' 'review my copy,' 'copy feedback,' 'proofread,' 'polish this,' 'make this better,' or 'copy sweep.' This skill provides a systematic approach to editing marketing copy through multiple focused passes. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "7dd16aa5d185cafdfcee8be4fac269403836854aa42619d929e052d1e50f1ff9", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "copywriting", "description": "When the user wants to write, rewrite, or improve marketing copy for any page \u2014 including homepage, landing pages, pricing pages, feature pages, about pages, or product pages. Also use when the user says \"write copy for,\" \"improve this copy,\" \"rewrite this page,\" \"marketing copy,\" \"headline help,\" or \"CTA copy.\" For email copy, see email-sequence. For popup copy, see popup-cro.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/copywriting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install copywriting", "claude_code": "/plugin install copywriting"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "copywriting. When the user wants to write, rewrite, or improve marketing copy for any page \u2014 including homepage, landing pages, pricing pages, feature pages, about pages, or product pages. Also use when the user says \"write copy for,\" \"improve this copy,\" \"rewrite this page,\" \"marketing copy,\" \"headline help,\" or \"CTA copy.\" For email copy, see email-sequence. For popup copy, see popup-cro. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "48e8e9458875dbae9ee52808d1058a7d0d68d00d8973d69b58440cd1220f48eb", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "coverage", "description": "Analyze test coverage gaps. Use when user says \"test coverage\", \"what's not tested\", \"coverage gaps\", \"missing tests\", \"coverage report\", or \"what needs testing\".", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/coverage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install coverage", "claude_code": "/plugin install coverage"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "coverage. Analyze test coverage gaps. Use when user says \"test coverage\", \"what's not tested\", \"coverage gaps\", \"missing tests\", \"coverage report\", or \"what needs testing\". Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} @@ -1957,17 +2006,17 @@ {"id": "d7b456085a040fd3d0fdda1c84e644e7773ccfa60fdd2078f6d0b45b0f7f2176", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-ceo-advisor", "description": "Strategic leadership advisor for CEOs covering vision, strategy, board management, investor relations, and organizational culture", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-ceo-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-ceo-advisor", "claude_code": "/plugin install cs-ceo-advisor"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-ceo-advisor. Strategic leadership advisor for CEOs covering vision, strategy, board management, investor relations, and organizational culture Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "05d856d3bb54821ec7e511e52e8deeffda8b086c9d94f2b1051dd086e62ca2c4", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-content-creator", "description": "AI-powered content creation specialist for brand voice consistency, SEO optimization, and multi-platform content strategy", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-content-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-content-creator", "claude_code": "/plugin install cs-content-creator"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-content-creator. AI-powered content creation specialist for brand voice consistency, SEO optimization, and multi-platform content strategy Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "9da42fe6abfd437fe16e2b339cdfc32b05419c007df9e256457c7fd97d45a899", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-cto-advisor", "description": "Technical leadership guidance for engineering teams, architecture decisions, and technology strategy. Includes tech debt analyzer, team scaling calculator, engineering metrics frameworks, technology e", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-cto-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-cto-advisor", "claude_code": "/plugin install cs-cto-advisor"}, "quality": {"stars": 5360, "skillhub_rank": "A", "skillhub_score": 7.8, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-cto-advisor. Technical leadership guidance for engineering teams, architecture decisions, and technology strategy. Includes tech debt analyzer, team scaling calculator, engineering metrics frameworks, technology e Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "a364252fb3e8716329516aa3c837f9769b29b31dabfce8dca56be6f19c3c5101", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-demand-gen-specialist", "description": "Demand generation and customer acquisition specialist for lead generation, conversion optimization, and multi-channel acquisition campaigns", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-demand-gen-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-demand-gen-specialist", "claude_code": "/plugin install cs-demand-gen-specialist"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-demand-gen-specialist. Demand generation and customer acquisition specialist for lead generation, conversion optimization, and multi-channel acquisition campaigns Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "6c90458e11bf6945237b4f431f0a013036990ffbcf1d7c9f16a72d5d7042b075", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-engineering-lead", "description": "Engineering Team Lead agent for coordinating QA, security, data engineering, ML, and frontend/backend teams. Orchestrates engineering-team skills for team-level technical decisions. Spawn when users need team coordination, tech stack evaluation, incident response, or cross-functional engineering work.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-engineering-lead/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-engineering-lead", "claude_code": "/plugin install cs-engineering-lead"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-engineering-lead. Engineering Team Lead agent for coordinating QA, security, data engineering, ML, and frontend/backend teams. Orchestrates engineering-team skills for team-level technical decisions. Spawn when users need team coordination, tech stack evaluation, incident response, or cross-functional engineering work. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "a364252fb3e8716329516aa3c837f9769b29b31dabfce8dca56be6f19c3c5101", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-demand-gen-specialist", "description": "Demand generation and customer acquisition specialist for lead generation, conversion optimization, and multi-channel acquisition campaigns", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-demand-gen-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-demand-gen-specialist", "claude_code": "/plugin install cs-demand-gen-specialist"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "cs-demand-gen-specialist. Demand generation and customer acquisition specialist for lead generation, conversion optimization, and multi-channel acquisition campaigns Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "6c90458e11bf6945237b4f431f0a013036990ffbcf1d7c9f16a72d5d7042b075", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-engineering-lead", "description": "Engineering Team Lead agent for coordinating QA, security, data engineering, ML, and frontend/backend teams. Orchestrates engineering-team skills for team-level technical decisions. Spawn when users need team coordination, tech stack evaluation, incident response, or cross-functional engineering work.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-engineering-lead/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-engineering-lead", "claude_code": "/plugin install cs-engineering-lead"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "cs-engineering-lead. Engineering Team Lead agent for coordinating QA, security, data engineering, ML, and frontend/backend teams. Orchestrates engineering-team skills for team-level technical decisions. Spawn when users need team coordination, tech stack evaluation, incident response, or cross-functional engineering work. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "72ed41a7fe6cc3ab7c794d7c65b53d175cc65ef0667f3898a3d486a31d2ad94f", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-financial-analyst", "description": "Financial Analyst agent for DCF valuation, financial modeling, budgeting, forecasting, and SaaS metrics (ARR, MRR, churn, CAC, LTV, NRR). Orchestrates finance skills. Spawn when users need financial analysis, valuation models, budget planning, ratio analysis, SaaS health checks, or unit economics projections.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-financial-analyst/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-financial-analyst", "claude_code": "/plugin install cs-financial-analyst"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-financial-analyst. Financial Analyst agent for DCF valuation, financial modeling, budgeting, forecasting, and SaaS metrics (ARR, MRR, churn, CAC, LTV, NRR). Orchestrates finance skills. Spawn when users need financial analysis, valuation models, budget planning, ratio analysis, SaaS health checks, or unit economics projections. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "a67c7a9bdc50592fa6553c61140036a6f8468978a6fa414f2e493af149e75866", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-growth-strategist", "description": "Growth Strategist agent for revenue operations, sales engineering, customer success, and business development. Orchestrates business-growth skills. Spawn when users need pipeline analysis, churn prevention, expansion scoring, sales demos, or proposal writing.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-growth-strategist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-growth-strategist", "claude_code": "/plugin install cs-growth-strategist"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-growth-strategist. Growth Strategist agent for revenue operations, sales engineering, customer success, and business development. Orchestrates business-growth skills. Spawn when users need pipeline analysis, churn prevention, expansion scoring, sales demos, or proposal writing. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "a67c7a9bdc50592fa6553c61140036a6f8468978a6fa414f2e493af149e75866", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-growth-strategist", "description": "Growth Strategist agent for revenue operations, sales engineering, customer success, and business development. Orchestrates business-growth skills. Spawn when users need pipeline analysis, churn prevention, expansion scoring, sales demos, or proposal writing.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-growth-strategist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-growth-strategist", "claude_code": "/plugin install cs-growth-strategist"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "cs-growth-strategist. Growth Strategist agent for revenue operations, sales engineering, customer success, and business development. Orchestrates business-growth skills. Spawn when users need pipeline analysis, churn prevention, expansion scoring, sales demos, or proposal writing. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "43f8672394f0378a69765c41f6bd885fec7fc6e97b62c3af25ddf47c42ccbc3c", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-onboard", "description": "Founder onboarding interview that captures company context across 7 dimensions. Invoke with /cs:setup for initial interview or /cs:update for quarterly refresh. Generates ~/.claude/company-context.md used by all C-suite advisor skills.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-onboard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-onboard", "claude_code": "/plugin install cs-onboard"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-onboard. Founder onboarding interview that captures company context across 7 dimensions. Invoke with /cs:setup for initial interview or /cs:update for quarterly refresh. Generates ~/.claude/company-context.md used by all C-suite advisor skills. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "ba87d198e3b4e8d89e3fa1c9f65f1ffd3f1d08feb58bfeca5b18ca7033409c4e", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-product-analyst", "description": "Product analytics agent for KPI definition, dashboard setup, experiment design, and test result interpretation.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-product-analyst/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-product-analyst", "claude_code": "/plugin install cs-product-analyst"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-product-analyst. Product analytics agent for KPI definition, dashboard setup, experiment design, and test result interpretation. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "053f95845492bb9a0542bec8983d5fb25b7df28c82597ab887e8c24ec5639549", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-product-manager", "description": "Product management agent for feature prioritization, customer discovery, PRD development, and roadmap planning using RICE framework", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-product-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-product-manager", "claude_code": "/plugin install cs-product-manager"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-product-manager. Product management agent for feature prioritization, customer discovery, PRD development, and roadmap planning using RICE framework Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "053f95845492bb9a0542bec8983d5fb25b7df28c82597ab887e8c24ec5639549", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-product-manager", "description": "Product management agent for feature prioritization, customer discovery, PRD development, and roadmap planning using RICE framework", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-product-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-product-manager", "claude_code": "/plugin install cs-product-manager"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "cs-product-manager. Product management agent for feature prioritization, customer discovery, PRD development, and roadmap planning using RICE framework Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "96b4294c3a0639703972a65254ed593e3953240326473adea8ad2cf5213ee1bf", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-product-strategist", "description": "Strategic product leadership toolkit for Head of Product including OKR cascade generation, market analysis, vision setting, and team scaling. Use for strategic planning, goal alignment, competitive an", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-product-strategist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-product-strategist", "claude_code": "/plugin install cs-product-strategist"}, "quality": {"stars": 5360, "skillhub_rank": "A", "skillhub_score": 8.1, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-product-strategist. Strategic product leadership toolkit for Head of Product including OKR cascade generation, market analysis, vision setting, and team scaling. Use for strategic planning, goal alignment, competitive an Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "1d19c3db01b92d4ea36baa1c7086429b8d0227f85738f7e46fa7d89023b5a648", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-project-manager", "description": "Project Manager agent for sprint planning, Jira/Confluence workflows, Scrum ceremonies, and stakeholder reporting. Orchestrates project-management skills.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-project-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-project-manager", "claude_code": "/plugin install cs-project-manager"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-project-manager. Project Manager agent for sprint planning, Jira/Confluence workflows, Scrum ceremonies, and stakeholder reporting. Orchestrates project-management skills. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "f46aa0830989abf67ecdb94749b05c802ad2d618a5901fd0f5b20a2467dd2668", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-quality-regulatory", "description": "Quality & Regulatory agent for ISO 13485 QMS, MDR compliance, FDA submissions, GDPR/DSGVO, and ISMS audits. Orchestrates ra-qm-team skills. Spawn when users need regulatory strategy, audit preparation, CAPA management, risk management, or compliance documentation.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-quality-regulatory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-quality-regulatory", "claude_code": "/plugin install cs-quality-regulatory"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-quality-regulatory. Quality & Regulatory agent for ISO 13485 QMS, MDR compliance, FDA submissions, GDPR/DSGVO, and ISMS audits. Orchestrates ra-qm-team skills. Spawn when users need regulatory strategy, audit preparation, CAPA management, risk management, or compliance documentation. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "19e6a73a4171b0e7e33aa61d465d7de9eaad83850b27753b124e515a8b760cc2", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-senior-engineer", "description": "Senior Engineer agent for architecture decisions, code review, DevOps, and API design. Orchestrates engineering and engineering-team skills for technical implementation work. Spawn when users need system design, code quality review, CI/CD pipeline setup, or infrastructure decisions.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-senior-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-senior-engineer", "claude_code": "/plugin install cs-senior-engineer"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-senior-engineer. Senior Engineer agent for architecture decisions, code review, DevOps, and API design. Orchestrates engineering and engineering-team skills for technical implementation work. Spawn when users need system design, code quality review, CI/CD pipeline setup, or infrastructure decisions. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "1d19c3db01b92d4ea36baa1c7086429b8d0227f85738f7e46fa7d89023b5a648", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-project-manager", "description": "Project Manager agent for sprint planning, Jira/Confluence workflows, Scrum ceremonies, and stakeholder reporting. Orchestrates project-management skills.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-project-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-project-manager", "claude_code": "/plugin install cs-project-manager"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "cs-project-manager. Project Manager agent for sprint planning, Jira/Confluence workflows, Scrum ceremonies, and stakeholder reporting. Orchestrates project-management skills. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "f46aa0830989abf67ecdb94749b05c802ad2d618a5901fd0f5b20a2467dd2668", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-quality-regulatory", "description": "Quality & Regulatory agent for ISO 13485 QMS, MDR compliance, FDA submissions, GDPR/DSGVO, and ISMS audits. Orchestrates ra-qm-team skills. Spawn when users need regulatory strategy, audit preparation, CAPA management, risk management, or compliance documentation.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-quality-regulatory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-quality-regulatory", "claude_code": "/plugin install cs-quality-regulatory"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "cs-quality-regulatory. Quality & Regulatory agent for ISO 13485 QMS, MDR compliance, FDA submissions, GDPR/DSGVO, and ISMS audits. Orchestrates ra-qm-team skills. Spawn when users need regulatory strategy, audit preparation, CAPA management, risk management, or compliance documentation. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "19e6a73a4171b0e7e33aa61d465d7de9eaad83850b27753b124e515a8b760cc2", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-senior-engineer", "description": "Senior Engineer agent for architecture decisions, code review, DevOps, and API design. Orchestrates engineering and engineering-team skills for technical implementation work. Spawn when users need system design, code quality review, CI/CD pipeline setup, or infrastructure decisions.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-senior-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-senior-engineer", "claude_code": "/plugin install cs-senior-engineer"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "cs-senior-engineer. Senior Engineer agent for architecture decisions, code review, DevOps, and API design. Orchestrates engineering and engineering-team skills for technical implementation work. Spawn when users need system design, code quality review, CI/CD pipeline setup, or infrastructure decisions. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "d6c98ba08a2caceb60da1d95562bbda1e57437c511ae7764a5f1edaefb3e85b2", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-ux-researcher", "description": "UX research agent for research planning, persona generation, journey mapping, and usability test analysis", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-ux-researcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-ux-researcher", "claude_code": "/plugin install cs-ux-researcher"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-ux-researcher. UX research agent for research planning, persona generation, journey mapping, and usability test analysis Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "d699246d964364c1424cbfa9aaaf8a30ed987144ea02239e5a8cd8aea97423a0", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cs-workspace-admin", "description": "Google Workspace administration agent using the gws CLI. Orchestrates workspace setup, Gmail/Drive/Sheets/Calendar automation, security audits, and recipe execution. Spawn when users need Google Workspace automation, gws CLI help, or workspace administration.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cs-workspace-admin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cs-workspace-admin", "claude_code": "/plugin install cs-workspace-admin"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cs-workspace-admin. Google Workspace administration agent using the gws CLI. Orchestrates workspace setup, Gmail/Drive/Sheets/Calendar automation, security audits, and recipe execution. Spawn when users need Google Workspace automation, gws CLI help, or workspace administration. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "99566adfac4f1e36326ed740f29b2c4e427354fbaea801a242d42f1f4ad5ae8e", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "cto-advisor", "description": "Technical leadership guidance for engineering teams, architecture decisions, and technology strategy. Use when assessing technical debt, scaling engineering teams, evaluating technologies, making architecture decisions, establishing engineering metrics, or when user mentions CTO, tech debt, technical debt, team scaling, architecture decisions, technology evaluation, engineering metrics, DORA metrics, or technology strategy.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cto-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cto-advisor", "claude_code": "/plugin install cto-advisor"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "cto-advisor. Technical leadership guidance for engineering teams, architecture decisions, and technology strategy. Use when assessing technical debt, scaling engineering teams, evaluating technologies, making architecture decisions, establishing engineering metrics, or when user mentions CTO, tech debt, technical debt, team scaling, architecture decisions, technology evaluation, engineering metrics, DORA metrics, or technology strategy. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} @@ -1989,6 +2038,7 @@ {"id": "9045c36e8fbb28bdee7bb5fbf86fd36854d966a4abe76e719f01b88c38c52b0a", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "fda-consultant-specialist", "description": "FDA regulatory consultant for medical device companies. Provides 510(k)/PMA/De Novo pathway guidance, QSR (21 CFR 820) compliance, HIPAA assessments, and device cybersecurity. Use when user mentions FDA submission, 510(k), PMA, De Novo, QSR, premarket, predicate device, substantial equivalence, HIPAA medical device, or FDA cybersecurity.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/fda-consultant-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install fda-consultant-specialist", "claude_code": "/plugin install fda-consultant-specialist"}, "quality": {"stars": 5365, "skillhub_rank": "A", "skillhub_score": 8.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "fda-consultant-specialist. FDA regulatory consultant for medical device companies. Provides 510(k)/PMA/De Novo pathway guidance, QSR (21 CFR 820) compliance, HIPAA assessments, and device cybersecurity. Use when user mentions FDA submission, 510(k), PMA, De Novo, QSR, premarket, predicate device, substantial equivalence, HIPAA medical device, or FDA cybersecurity. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "60add17175c62c047d3cb73ccab8359e3faa16415c3bcc1896e8aabcd64dc1e2", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "finance-skills", "description": "Production-ready financial analyst skill with ratio analysis, DCF valuation, budget variance analysis, and rolling forecast construction. 4 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/finance-bundle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install finance-skills", "claude_code": "/plugin install finance-skills"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "finance-skills. Production-ready financial analyst skill with ratio analysis, DCF valuation, budget variance analysis, and rolling forecast construction. 4 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "0aacc1adb6ee6ac9ca18cd497dfa3f997db82496a672c7bf7934f3ab4b5702d1", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "financial-analyst", "description": "Performs financial ratio analysis, DCF valuation, budget variance analysis, and rolling forecast construction for strategic decision-making. Use when analyzing financial statements, building valuation models, assessing budget variances, or constructing financial projections and forecasts. Also applicable when users mention financial modeling, cash flow analysis, company valuation, financial projections, or spreadsheet analysis.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/financial-analyst/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install financial-analyst", "claude_code": "/plugin install financial-analyst"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "financial-analyst. Performs financial ratio analysis, DCF valuation, budget variance analysis, and rolling forecast construction for strategic decision-making. Use when analyzing financial statements, building valuation models, assessing budget variances, or constructing financial projections and forecasts. Also applicable when users mention financial modeling, cash flow analysis, company valuation, financial projections, or spreadsheet analysis. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "87b0c9ecb91df1299b277740b14eaaddd87a9ccea30bd9e82fe70a29a181433d", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "financial-health", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/financial-health/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install financial-health", "claude_code": "/plugin install financial-health"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "financial-health. null. Score: /10. Best for everyone. One-click install. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "70f2164384ead668ef92ea62ddb69d8111156c54947c18a84aae284db5be7167", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "fix", "description": "Fix failing or flaky Playwright tests. Use when user says \"fix test\", \"flaky test\", \"test failing\", \"debug test\", \"test broken\", \"test passes sometimes\", or \"intermittent failure\".", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/fix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install fix", "claude_code": "/plugin install fix"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "fix. Fix failing or flaky Playwright tests. Use when user says \"fix test\", \"flaky test\", \"test failing\", \"debug test\", \"test broken\", \"test passes sometimes\", or \"intermittent failure\". Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "224ac507b04c049b101f2397038d7676dfd59473d86559cd1ed8f02cef3a2f16", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "form-cro", "description": "When the user wants to optimize any form that is NOT signup/registration \u2014 including lead capture forms, contact forms, demo request forms, application forms, survey forms, or checkout forms. Also use when the user mentions \"form optimization,\" \"lead form conversions,\" \"form friction,\" \"form fields,\" \"form completion rate,\" or \"contact form.\" For signup/registration forms, see signup-flow-cro. For popups containing forms, see popup-cro.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/form-cro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install form-cro", "claude_code": "/plugin install form-cro"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "form-cro. When the user wants to optimize any form that is NOT signup/registration \u2014 including lead capture forms, contact forms, demo request forms, application forms, survey forms, or checkout forms. Also use when the user mentions \"form optimization,\" \"lead form conversions,\" \"form friction,\" \"form fields,\" \"form completion rate,\" or \"contact form.\" For signup/registration forms, see signup-flow-cro. For popups containing forms, see popup-cro. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "79c4cf96d9a03daa5e4431326e0c71adfb9032c9ba87770b6d4f852d5ad2ef95", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "founder-coach", "description": "Personal leadership development for founders and first-time CEOs. Covers founder archetype identification, delegation frameworks, energy management, CEO calendar audits, leadership style evolution, blind spot identification, imposter syndrome, founder mental health, and succession planning. Use when a founder feels like the bottleneck, struggles to delegate, is burning out, transitioning from IC to executive, managing a board, or when user mentions founder mode, CEO growth, leadership development, delegation, burnout, or imposter syndrome.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/founder-coach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install founder-coach", "claude_code": "/plugin install founder-coach"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "founder-coach. Personal leadership development for founders and first-time CEOs. Covers founder archetype identification, delegation frameworks, energy management, CEO calendar audits, leadership style evolution, blind spot identification, imposter syndrome, founder mental health, and succession planning. Use when a founder feels like the bottleneck, struggles to delegate, is burning out, transitioning from IC to executive, managing a board, or when user mentions founder mode, CEO growth, leadership development, delegation, burnout, or imposter syndrome. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} @@ -2009,14 +2059,14 @@ {"id": "bce03dc0595a7c85e6a4031153d2d32483ff1d4b9aace4ef9ac0160c805226ac", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "jira-expert", "description": "Atlassian Jira expert for creating and managing projects, planning, product discovery, JQL queries, workflows, custom fields, automation, reporting, and all Jira features. Use for Jira project setup, configuration, advanced search, dashboard creation, workflow design, and technical Jira operations.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/jira-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install jira-expert", "claude_code": "/plugin install jira-expert"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "jira-expert. Atlassian Jira expert for creating and managing projects, planning, product discovery, JQL queries, workflows, custom fields, automation, reporting, and all Jira features. Use for Jira project setup, configuration, advanced search, dashboard creation, workflow design, and technical Jira operations. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "df248ecd66f121bb30d7e429ef51820c1b6faa80d882250e0b7c09e68dd57441", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "landing-page-generator", "description": "Generates high-converting landing pages as complete Next.js/React (TSX) components with Tailwind CSS. Creates hero sections, feature grids, pricing tables, FAQ accordions, testimonial blocks, and CTA sections using proven copy frameworks (PAS, AIDA, BAB). Outputs SEO meta tags, structured data, and performance-optimised code targeting Core Web Vitals (LCP < 1s, CLS < 0.1). Use when the user asks to create a landing page, marketing page, homepage, single-page site, lead capture page, campaign page, promo page, or conversion-optimised web page \u2014 or when they want to A/B test landing page variants or replace a static page with one designed to convert.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/landing-page-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install landing-page-generator", "claude_code": "/plugin install landing-page-generator"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "landing-page-generator. Generates high-converting landing pages as complete Next.js/React (TSX) components with Tailwind CSS. Creates hero sections, feature grids, pricing tables, FAQ accordions, testimonial blocks, and CTA sections using proven copy frameworks (PAS, AIDA, BAB). Outputs SEO meta tags, structured data, and performance-optimised code targeting Core Web Vitals (LCP < 1s, CLS < 0.1). Use when the user asks to create a landing page, marketing page, homepage, single-page site, lead capture page, campaign page, promo page, or conversion-optimised web page \u2014 or when they want to A/B test landing page variants or replace a static page with one designed to convert. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "e5bdeff0ce91b3425e9f8ccf3882f609d5110e6e99864b62eaa437fc463347b0", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "launch-strategy", "description": "When the user wants to plan a product launch, feature announcement, or release strategy. Also use when the user mentions 'launch,' 'Product Hunt,' 'feature release,' 'announcement,' 'go-to-market,' 'beta launch,' 'early access,' 'waitlist,' 'product update,' 'GTM plan,' 'launch checklist,' or 'launch momentum.' This skill covers phased launches, channel strategy, and ongoing launch momentum.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/launch-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install launch-strategy", "claude_code": "/plugin install launch-strategy"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "launch-strategy. When the user wants to plan a product launch, feature announcement, or release strategy. Also use when the user mentions 'launch,' 'Product Hunt,' 'feature release,' 'announcement,' 'go-to-market,' 'beta launch,' 'early access,' 'waitlist,' 'product update,' 'GTM plan,' 'launch checklist,' or 'launch momentum.' This skill covers phased launches, channel strategy, and ongoing launch momentum. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "a56d5b37b8f3d3e013bb914736d9bb09829b0f54c0c9a7b6660843d23dfb59e0", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "loop", "description": "Start an autonomous experiment loop with user-selected interval (10min, 1h, daily, weekly, monthly). Uses CronCreate for scheduling.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install loop", "claude_code": "/plugin install loop"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "loop. Start an autonomous experiment loop with user-selected interval (10min, 1h, daily, weekly, monthly). Uses CronCreate for scheduling. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "a56d5b37b8f3d3e013bb914736d9bb09829b0f54c0c9a7b6660843d23dfb59e0", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "loop", "description": "Start an autonomous experiment loop with user-selected interval (10min, 1h, daily, weekly, monthly). Uses CronCreate for scheduling.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install loop", "claude_code": "/plugin install loop"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "loop. Start an autonomous experiment loop with user-selected interval (10min, 1h, daily, weekly, monthly). Uses CronCreate for scheduling. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "30467828669816abd76afc2821cbda105f87c7d0cde5bacf10d8ab522bb8faa4", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "ma-playbook", "description": "M&A strategy for acquiring companies or being acquired. Due diligence, valuation, integration, and deal structure. Use when evaluating acquisitions, preparing for acquisition, M&A due diligence, integration planning, or deal negotiation.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/ma-playbook/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ma-playbook", "claude_code": "/plugin install ma-playbook"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "ma-playbook. M&A strategy for acquiring companies or being acquired. Due diligence, valuation, integration, and deal structure. Use when evaluating acquisitions, preparing for acquisition, M&A due diligence, integration planning, or deal negotiation. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "dd843abf060fec881560baea7c400dbcea5a7bb5f92b49ffda860d990c7f6a89", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-skills", "description": "42-skill marketing division for AI coding agents. 7 specialist pods covering content, SEO, CRO, channels, growth, intelligence, and sales. Foundation context system + orchestration router. 27 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-bundle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install marketing-skills", "claude_code": "/plugin install marketing-skills"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "marketing-skills. 42-skill marketing division for AI coding agents. 7 specialist pods covering content, SEO, CRO, channels, growth, intelligence, and sales. Foundation context system + orchestration router. 27 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "039944e833c1d7b2920e94178524c5c60fc3ebda44c6a587c58377e41e665efd", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-context", "description": "Create and maintain the marketing context document that all marketing skills read before starting. Use when the user mentions 'marketing context,' 'brand voice,' 'set up context,' 'target audience,' 'ICP,' 'style guide,' 'who is my customer,' 'positioning,' or wants to avoid repeating foundational information across marketing tasks. Run this at the start of any new project before using other marketing skills.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install marketing-context", "claude_code": "/plugin install marketing-context"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "marketing-context. Create and maintain the marketing context document that all marketing skills read before starting. Use when the user mentions 'marketing context,' 'brand voice,' 'set up context,' 'target audience,' 'ICP,' 'style guide,' 'who is my customer,' 'positioning,' or wants to avoid repeating foundational information across marketing tasks. Run this at the start of any new project before using other marketing skills. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "2f579ff0c2f6416cfe8f546ec3580b78856e754bd1ff46d8d9a35060391249fd", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-demand-acquisition", "description": "Creates demand generation campaigns, optimizes paid ad spend across LinkedIn, Google, and Meta, develops SEO strategies, and structures partnership programs for Series A+ startups scaling internationally. Use when planning marketing strategy, growth marketing, advertising campaigns, PPC optimization, lead generation, pipeline generation, or startup marketing budgets. Covers multi-channel acquisition (Google Ads, LinkedIn Ads, Meta Ads), CAC analysis, MQL/SQL workflows, attribution modeling, technical SEO, and co-marketing partnerships for hybrid PLG/Sales-Led motions in EU/US/Canada markets.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-demand-acquisition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install marketing-demand-acquisition", "claude_code": "/plugin install marketing-demand-acquisition"}, "quality": {"stars": 5360, "skillhub_rank": "", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "marketing-demand-acquisition. Creates demand generation campaigns, optimizes paid ad spend across LinkedIn, Google, and Meta, develops SEO strategies, and structures partnership programs for Series A+ startups scaling internationally. Use when planning marketing strategy, growth marketing, advertising campaigns, PPC optimization, lead generation, pipeline generation, or startup marketing budgets. Covers multi-channel acquisition (Google Ads, LinkedIn Ads, Meta Ads), CAC analysis, MQL/SQL workflows, attribution modeling, technical SEO, and co-marketing partnerships for hybrid PLG/Sales-Led motions in EU/US/Canada markets. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "c3c4deff3df7c98ebf242ecab7f7d73353c027ab9ee2715eb2cc7fc941c4f3d6", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-ideas", "description": "When the user needs marketing ideas, inspiration, or strategies for their SaaS or software product. Also use when the user asks for 'marketing ideas,' 'growth ideas,' 'how to market,' 'marketing strategies,' 'marketing tactics,' 'ways to promote,' or 'ideas to grow.' This skill provides 139 proven marketing approaches organized by category.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-ideas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install marketing-ideas", "claude_code": "/plugin install marketing-ideas"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "marketing-ideas. When the user needs marketing ideas, inspiration, or strategies for their SaaS or software product. Also use when the user asks for 'marketing ideas,' 'growth ideas,' 'how to market,' 'marketing strategies,' 'marketing tactics,' 'ways to promote,' or 'ideas to grow.' This skill provides 139 proven marketing approaches organized by category. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "9bad14a23f2d062662b5681d392f6e98c4bf7023dc55286f048f30a201fe5a15", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-ops", "description": "Central router for the marketing skill ecosystem. Use when unsure which marketing skill to use, when orchestrating a multi-skill campaign, or when coordinating across content, SEO, CRO, channels, and analytics. Also use when the user mentions 'marketing help,' 'campaign plan,' 'what should I do next,' 'marketing priorities,' or 'coordinate marketing.'", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install marketing-ops", "claude_code": "/plugin install marketing-ops"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "marketing-ops. Central router for the marketing skill ecosystem. Use when unsure which marketing skill to use, when orchestrating a multi-skill campaign, or when coordinating across content, SEO, CRO, channels, and analytics. Also use when the user mentions 'marketing help,' 'campaign plan,' 'what should I do next,' 'marketing priorities,' or 'coordinate marketing.' Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "830f6c0f5012ebc5ba21d6a4bc0c6691790c0e970bca821bb35ab0677741323f", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-psychology", "description": "When the user wants to apply psychological principles, mental models, or behavioral science to marketing. Also use when the user mentions 'psychology,' 'mental models,' 'cognitive bias,' 'persuasion,' 'behavioral science,' 'why people buy,' 'decision-making,' or 'consumer behavior.' This skill provides 70+ mental models organized for marketing application.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-psychology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install marketing-psychology", "claude_code": "/plugin install marketing-psychology"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "marketing-psychology. When the user wants to apply psychological principles, mental models, or behavioral science to marketing. Also use when the user mentions 'psychology,' 'mental models,' 'cognitive bias,' 'persuasion,' 'behavioral science,' 'why people buy,' 'decision-making,' or 'consumer behavior.' This skill provides 70+ mental models organized for marketing application. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "830f6c0f5012ebc5ba21d6a4bc0c6691790c0e970bca821bb35ab0677741323f", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-psychology", "description": "When the user wants to apply psychological principles, mental models, or behavioral science to marketing. Also use when the user mentions 'psychology,' 'mental models,' 'cognitive bias,' 'persuasion,' 'behavioral science,' 'why people buy,' 'decision-making,' or 'consumer behavior.' This skill provides 70+ mental models organized for marketing application.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-psychology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install marketing-psychology", "claude_code": "/plugin install marketing-psychology"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "marketing-psychology. When the user wants to apply psychological principles, mental models, or behavioral science to marketing. Also use when the user mentions 'psychology,' 'mental models,' 'cognitive bias,' 'persuasion,' 'behavioral science,' 'why people buy,' 'decision-making,' or 'consumer behavior.' This skill provides 70+ mental models organized for marketing application. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "208f3fad01ebddc30afdd093b784371c8dc2df0df0ebe08fd40ef65a9c8ebe81", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-skills", "description": "42-skill marketing division for AI coding agents. 7 specialist pods covering content, SEO, CRO, channels, growth, intelligence, and sales. Foundation context system + orchestration router. 27 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-skill-bundle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install marketing-skills", "claude_code": "/plugin install marketing-skills"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "marketing-skills. 42-skill marketing division for AI coding agents. 7 specialist pods covering content, SEO, CRO, channels, growth, intelligence, and sales. Foundation context system + orchestration router. 27 Python tools (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "c609c7ad794c660503437fa57608ec8a7b0817cfe56cd855bd7d1e80282a6aec", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-strategy-pmm", "description": "Product marketing skill for positioning, GTM strategy, competitive intelligence, and product launches. Use when the user asks about product positioning, go-to-market planning, competitive analysis, target audience definition, ICP definition, market research, launch plans, or sales enablement. Covers April Dunford positioning, ICP definition, competitive battlecards, launch playbooks, and international market entry. Produces deliverables including positioning statements, battlecard documents, launch plans, and go-to-market strategies.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-strategy-pmm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install marketing-strategy-pmm", "claude_code": "/plugin install marketing-strategy-pmm"}, "quality": {"stars": 5360, "skillhub_rank": "A", "skillhub_score": 8.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "marketing-strategy-pmm. Product marketing skill for positioning, GTM strategy, competitive intelligence, and product launches. Use when the user asks about product positioning, go-to-market planning, competitive analysis, target audience definition, ICP definition, market research, launch plans, or sales enablement. Covers April Dunford positioning, ICP definition, competitive battlecards, launch playbooks, and international market entry. Produces deliverables including positioning statements, battlecard documents, launch plans, and go-to-market strategies. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "20fa52a98d43f168f5aaca60a921758127d12d8d7401e404c7166477f6560e3b", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "mcp-server-builder", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/mcp-server-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install mcp-server-builder", "claude_code": "/plugin install mcp-server-builder"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "mcp-server-builder. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} @@ -2054,21 +2104,22 @@ {"id": "2ef41bc232a25b5b49f87be76ee41dce4932d9b4fe25fe20dab671efaf3095a9", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "ra-qm-skills", "description": "12 production-ready regulatory affairs and quality management skills for HealthTech/MedTech: ISO 13485 QMS, MDR 2017/745, FDA 510(k)/PMA, ISO 27001 ISMS, GDPR/DSGVO compliance, risk management (ISO 14971), CAPA, document control, and internal auditing. Python tools included (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/ra-qm-team-bundle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ra-qm-skills", "claude_code": "/plugin install ra-qm-skills"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "ra-qm-skills. 12 production-ready regulatory affairs and quality management skills for HealthTech/MedTech: ISO 13485 QMS, MDR 2017/745, FDA 510(k)/PMA, ISO 27001 ISMS, GDPR/DSGVO compliance, risk management (ISO 14971), CAPA, document control, and internal auditing. Python tools included (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "08911c5662175710b77006e5aac25e55f1f8426d9759f72cb3ef858281e649f3", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "ra-qm-skills", "description": "12 production-ready regulatory affairs and quality management skills for HealthTech/MedTech: ISO 13485 QMS, MDR 2017/745, FDA 510(k)/PMA, ISO 27001 ISMS, GDPR/DSGVO compliance, risk management (ISO 14971), CAPA, document control, and internal auditing. Python tools included (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/ra-qm-team-main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ra-qm-skills", "claude_code": "/plugin install ra-qm-skills"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "ra-qm-skills. 12 production-ready regulatory affairs and quality management skills for HealthTech/MedTech: ISO 13485 QMS, MDR 2017/745, FDA 510(k)/PMA, ISO 27001 ISMS, GDPR/DSGVO compliance, risk management (ISO 14971), CAPA, document control, and internal auditing. Python tools included (all stdlib-only). Works with Claude Code, Codex CLI, and OpenClaw. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "0cfc3417c59bfad1a8259ac30ec8975d3b272f99a4b9910b4aa77d79b4821938", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "rag-architect", "description": "RAG Architect - POWERFUL", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/rag-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install rag-architect", "claude_code": "/plugin install rag-architect"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "rag-architect. RAG Architect - POWERFUL Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "488f19eabb44fecb87557e0e7edb5c8afaa8aadb2ad8c3dc3e5485e347c522ca", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "referral-program", "description": "When the user wants to design, launch, or optimize a referral or affiliate program. Use when they mention 'referral program,' 'affiliate program,' 'word of mouth,' 'refer a friend,' 'incentive program,' 'customer referrals,' 'brand ambassador,' 'partner program,' 'referral link,' or 'growth through referrals.' Covers program mechanics, incentive design, and optimization \u2014 not just the idea of referrals but the actual system.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/referral-program/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install referral-program", "claude_code": "/plugin install referral-program"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "referral-program. When the user wants to design, launch, or optimize a referral or affiliate program. Use when they mention 'referral program,' 'affiliate program,' 'word of mouth,' 'refer a friend,' 'incentive program,' 'customer referrals,' 'brand ambassador,' 'partner program,' 'referral link,' or 'growth through referrals.' Covers program mechanics, incentive design, and optimization \u2014 not just the idea of referrals but the actual system. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "488f19eabb44fecb87557e0e7edb5c8afaa8aadb2ad8c3dc3e5485e347c522ca", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "referral-program", "description": "When the user wants to design, launch, or optimize a referral or affiliate program. Use when they mention 'referral program,' 'affiliate program,' 'word of mouth,' 'refer a friend,' 'incentive program,' 'customer referrals,' 'brand ambassador,' 'partner program,' 'referral link,' or 'growth through referrals.' Covers program mechanics, incentive design, and optimization \u2014 not just the idea of referrals but the actual system.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/referral-program/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install referral-program", "claude_code": "/plugin install referral-program"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "referral-program. When the user wants to design, launch, or optimize a referral or affiliate program. Use when they mention 'referral program,' 'affiliate program,' 'word of mouth,' 'refer a friend,' 'incentive program,' 'customer referrals,' 'brand ambassador,' 'partner program,' 'referral link,' or 'growth through referrals.' Covers program mechanics, incentive design, and optimization \u2014 not just the idea of referrals but the actual system. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "298788d9ea7b45ca52bde848ef797060494b1075d2659d40af9f193f6859ebe4", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "regulatory-affairs-head", "description": "Senior Regulatory Affairs Manager for HealthTech and MedTech companies. Prepares FDA 510(k), De Novo, and PMA submission packages; analyzes regulatory pathways for new medical devices; drafts responses to FDA deficiency letters and Notified Body queries; develops CE marking technical documentation under EU MDR 2017/745; coordinates multi-market approval strategies across FDA, EU, Health Canada, PMDA, and NMPA; and maintains regulatory intelligence on evolving standards. Use when users need to plan or execute FDA submissions, navigate 510(k) or PMA approval processes, achieve CE marking, prepare pre-submission meeting materials, write regulatory strategy documents, respond to agency queries, or manage compliance documentation for medical device market access.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/regulatory-affairs-head/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install regulatory-affairs-head", "claude_code": "/plugin install regulatory-affairs-head"}, "quality": {"stars": 5360, "skillhub_rank": "A", "skillhub_score": 8.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "regulatory-affairs-head. Senior Regulatory Affairs Manager for HealthTech and MedTech companies. Prepares FDA 510(k), De Novo, and PMA submission packages; analyzes regulatory pathways for new medical devices; drafts responses to FDA deficiency letters and Notified Body queries; develops CE marking technical documentation under EU MDR 2017/745; coordinates multi-market approval strategies across FDA, EU, Health Canada, PMDA, and NMPA; and maintains regulatory intelligence on evolving standards. Use when users need to plan or execute FDA submissions, navigate 510(k) or PMA approval processes, achieve CE marking, prepare pre-submission meeting materials, write regulatory strategy documents, respond to agency queries, or manage compliance documentation for medical device market access. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "68188ec80bfdf1354dc5f071301dd06529dab7865b007c1ed375ec4f1f678c18", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "release-manager", "description": "Release Manager", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/release-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install release-manager", "claude_code": "/plugin install release-manager"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "release-manager. Release Manager Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "20026942cd637adc41b53a786223af2aeec7149848effc887d72ae411dc780df", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "remember", "description": "Explicitly save important knowledge to auto-memory with timestamp and context. Use when a discovery is too important to rely on auto-capture.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/remember/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install remember", "claude_code": "/plugin install remember"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "remember. Explicitly save important knowledge to auto-memory with timestamp and context. Use when a discovery is too important to rely on auto-capture. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "e23ffe1707b0e2517f6373cf2dbb1872fb432c646601e03cd0c32926fa2ddf14", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "report", "description": "Generate test report. Use when user says \"test report\", \"results summary\", \"test status\", \"show results\", \"test dashboard\", or \"how did tests go\".", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install report", "claude_code": "/plugin install report"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "report. Generate test report. Use when user says \"test report\", \"results summary\", \"test status\", \"show results\", \"test dashboard\", or \"how did tests go\". Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "5a07565af79e3ca3093f2a77a55ad7c3ed618271e899a43a97f9ad48a00a7d0c", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "resume", "description": "Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/resume/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install resume", "claude_code": "/plugin install resume"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "resume. Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "5a07565af79e3ca3093f2a77a55ad7c3ed618271e899a43a97f9ad48a00a7d0c", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "resume", "description": "Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/resume/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install resume", "claude_code": "/plugin install resume"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "resume. Resume a paused experiment. Checkout the experiment branch, read results history, continue iterating. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "286850ed39097aab9f69b65ea794d9b01a27429119d50ba8ec2075b978d7a9e4", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "revenue-operations", "description": "Analyzes sales pipeline health, revenue forecasting accuracy, and go-to-market efficiency metrics for SaaS revenue optimization. Use when analyzing sales pipeline coverage, forecasting revenue, evaluating go-to-market performance, reviewing sales metrics, assessing pipeline analysis, tracking forecast accuracy with MAPE, calculating GTM efficiency, or measuring sales efficiency and unit economics for SaaS teams.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/revenue-operations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install revenue-operations", "claude_code": "/plugin install revenue-operations"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "revenue-operations. Analyzes sales pipeline health, revenue forecasting accuracy, and go-to-market efficiency metrics for SaaS revenue optimization. Use when analyzing sales pipeline coverage, forecasting revenue, evaluating go-to-market performance, reviewing sales metrics, assessing pipeline analysis, tracking forecast accuracy with MAPE, calculating GTM efficiency, or measuring sales efficiency and unit economics for SaaS teams. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "b5f197e2028ff4259150a2e704700d83f811966c6f851dc5f1ecc0cd0bb6999c", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "review", "description": "Analyze auto-memory for promotion candidates, stale entries, consolidation opportunities, and health metrics.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install review", "claude_code": "/plugin install review"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "review. Analyze auto-memory for promotion candidates, stale entries, consolidation opportunities, and health metrics. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "10c89d8ab61d546960bead361a74279bc558f71325cb6caf9f8c59fdb28a2cf7", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "risk-management-specialist", "description": "Medical device risk management specialist implementing ISO 14971 throughout product lifecycle. Provides risk analysis, risk evaluation, risk control, and post-production information analysis. Use when user mentions risk management, ISO 14971, risk analysis, FMEA, fault tree analysis, hazard identification, risk control, risk matrix, benefit-risk analysis, residual risk, risk acceptability, or post-market risk.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/risk-management-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install risk-management-specialist", "claude_code": "/plugin install risk-management-specialist"}, "quality": {"stars": 5360, "skillhub_rank": "A", "skillhub_score": 8.1, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "risk-management-specialist. Medical device risk management specialist implementing ISO 14971 throughout product lifecycle. Provides risk analysis, risk evaluation, risk control, and post-production information analysis. Use when user mentions risk management, ISO 14971, risk analysis, FMEA, fault tree analysis, hazard identification, risk control, risk matrix, benefit-risk analysis, residual risk, risk acceptability, or post-market risk. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "d727627b751be3412a0b3fd2a70a6c35d280edb765278a8f8df8bd3e6e19176b", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "roadmap-communicator", "description": "Use when preparing roadmap narratives, release notes, changelogs, or stakeholder updates tailored for executives, engineering teams, and customers.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/roadmap-communicator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install roadmap-communicator", "claude_code": "/plugin install roadmap-communicator"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "roadmap-communicator. Use when preparing roadmap narratives, release notes, changelogs, or stakeholder updates tailored for executives, engineering teams, and customers. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "039d1336c2893a12a3a33c744ea20121ee866e49db66d52df79f3818d0764e45", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "run", "description": "Run a single experiment iteration. Edit the target file, evaluate, keep or discard.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/run/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install run", "claude_code": "/plugin install run"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "run. Run a single experiment iteration. Edit the target file, evaluate, keep or discard. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "039d1336c2893a12a3a33c744ea20121ee866e49db66d52df79f3818d0764e45", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "run", "description": "Run a single experiment iteration. Edit the target file, evaluate, keep or discard.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/run/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install run", "claude_code": "/plugin install run"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "run. Run a single experiment iteration. Edit the target file, evaluate, keep or discard. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "706c7d1f9699498e782e05512946389f818a7adb7815442a5e241d48bc6fdce1", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "runbook-generator", "description": "Runbook Generator", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/runbook-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install runbook-generator", "claude_code": "/plugin install runbook-generator"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "runbook-generator. Runbook Generator Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "bcbee1971072431cbb3e45deecce95bf62a4192f93a5320fcf717e84b20694be", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "saas-health", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/saas-health/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install saas-health", "claude_code": "/plugin install saas-health"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "saas-health. null. Score: /10. Best for everyone. One-click install. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "34dae56ee8a1c299da79e85562a9da0c55ae52ba49e021587ae7a89b99dfd62d", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "saas-metrics-coach", "description": "SaaS financial health advisor. Use when a user shares revenue or customer numbers, or mentions ARR, MRR, churn, LTV, CAC, NRR, or asks how their SaaS business is doing.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/saas-metrics-coach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install saas-metrics-coach", "claude_code": "/plugin install saas-metrics-coach"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "saas-metrics-coach. SaaS financial health advisor. Use when a user shares revenue or customer numbers, or mentions ARR, MRR, churn, LTV, CAC, NRR, or asks how their SaaS business is doing. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "09bf7de76e1f025f73dfe3cb814aa6fe19c740b798baf7b874e0aab23b2ee190", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "saas-scaffolder", "description": "Generates complete, production-ready SaaS project boilerplate including authentication, database schemas, billing integration, API routes, and a working dashboard using Next.js 14+ App Router, TypeScript, Tailwind CSS, shadcn/ui, Drizzle ORM, and Stripe. Use when the user wants to create a new SaaS app, start a subscription-based web project, scaffold a Next.js application, or mentions terms like starter template, boilerplate, new project, or wiring up auth and payments.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/saas-scaffolder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install saas-scaffolder", "claude_code": "/plugin install saas-scaffolder"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "saas-scaffolder. Generates complete, production-ready SaaS project boilerplate including authentication, database schemas, billing integration, API routes, and a working dashboard using Next.js 14+ App Router, TypeScript, Tailwind CSS, shadcn/ui, Drizzle ORM, and Stripe. Use when the user wants to create a new SaaS app, start a subscription-based web project, scaffold a Next.js application, or mentions terms like starter template, boilerplate, new project, or wiring up auth and payments. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} -{"id": "3b82ffdd2508835e9c7454c3482b442e81ffdfa2c5f03f14ecd4ca4760c31b9d", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "sales-engineer", "description": "Analyzes RFP/RFI responses for coverage gaps, builds competitive feature comparison matrices, and plans proof-of-concept (POC) engagements for pre-sales engineering. Use when responding to RFPs, bids, or proposal requests; comparing product features against competitors; planning or scoring a customer POC or sales demo; preparing a technical proposal; or performing win/loss competitor analysis. Handles tasks described as 'RFP response', 'bid response', 'proposal response', 'competitor comparison', 'feature matrix', 'POC planning', 'sales demo prep', or 'pre-sales engineering'.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/sales-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install sales-engineer", "claude_code": "/plugin install sales-engineer"}, "quality": {"stars": 5360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "sales-engineer. Analyzes RFP/RFI responses for coverage gaps, builds competitive feature comparison matrices, and plans proof-of-concept (POC) engagements for pre-sales engineering. Use when responding to RFPs, bids, or proposal requests; comparing product features against competitors; planning or scoring a customer POC or sales demo; preparing a technical proposal; or performing win/loss competitor analysis. Handles tasks described as 'RFP response', 'bid response', 'proposal response', 'competitor comparison', 'feature matrix', 'POC planning', 'sales demo prep', or 'pre-sales engineering'. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} +{"id": "3b82ffdd2508835e9c7454c3482b442e81ffdfa2c5f03f14ecd4ca4760c31b9d", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "sales-engineer", "description": "Analyzes RFP/RFI responses for coverage gaps, builds competitive feature comparison matrices, and plans proof-of-concept (POC) engagements for pre-sales engineering. Use when responding to RFPs, bids, or proposal requests; comparing product features against competitors; planning or scoring a customer POC or sales demo; preparing a technical proposal; or performing win/loss competitor analysis. Handles tasks described as 'RFP response', 'bid response', 'proposal response', 'competitor comparison', 'feature matrix', 'POC planning', 'sales demo prep', or 'pre-sales engineering'.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/sales-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install sales-engineer", "claude_code": "/plugin install sales-engineer"}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "sales-engineer. Analyzes RFP/RFI responses for coverage gaps, builds competitive feature comparison matrices, and plans proof-of-concept (POC) engagements for pre-sales engineering. Use when responding to RFPs, bids, or proposal requests; comparing product features against competitors; planning or scoring a customer POC or sales demo; preparing a technical proposal; or performing win/loss competitor analysis. Handles tasks described as 'RFP response', 'bid response', 'proposal response', 'competitor comparison', 'feature matrix', 'POC planning', 'sales demo prep', or 'pre-sales engineering'. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "67d5032323507c198db0f48066cd682034f397d25efbc373f1e3099c9256e6b3", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "sample-skill", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/sample-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install sample-skill", "claude_code": "/plugin install sample-skill"}, "quality": {"stars": 5360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "sample-skill. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "b23430d701dc4adfac1d963d588db2bb8cfd93b20fb9e39a4ae9e8d01ce81394", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "scenario-war-room", "description": "Cross-functional what-if modeling for cascading multi-variable scenarios. Unlike single-assumption stress testing, this models compound adversity across all business functions simultaneously. Use when facing complex risk scenarios, strategic decisions with major downside, or when the user asks 'what if X AND Y both happen?'", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/scenario-war-room/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install scenario-war-room", "claude_code": "/plugin install scenario-war-room"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "scenario-war-room. Cross-functional what-if modeling for cascading multi-variable scenarios. Unlike single-assumption stress testing, this models compound adversity across all business functions simultaneously. Use when facing complex risk scenarios, strategic decisions with major downside, or when the user asks 'what if X AND Y both happen?' Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} {"id": "5440b5562185fd38db9b7b989f520f195c40324ff0bb7e8293a8d82bde84a69b", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "schema-markup", "description": "When the user wants to implement, audit, or validate structured data (schema markup) on their website. Use when the user mentions 'structured data,' 'schema.org,' 'JSON-LD,' 'rich results,' 'rich snippets,' 'schema markup,' 'FAQ schema,' 'Product schema,' 'HowTo schema,' or 'structured data errors in Search Console.' Also use when someone asks why their content isn't showing rich results or wants to improve AI search visibility. NOT for general SEO audits (use seo-audit) or technical SEO crawl issues (use site-architecture).", "source": ["clawhub", "skillhub", "marketplace", "topic"], "categories": ["agent-plugins", "agent-skills", "agentic-ai", "ai-coding-agent", "anthropic-claude", "claude-ai", "claude-code", "claude-code-plugins", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent-plugins", "cursor-skills", "developer-tools", "gemini-cli-skills", "openai-codex", "openclaw", "openclaw-plugins", "openclaw-skills", "prompt-engineering"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/schema-markup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install schema-markup", "claude_code": "/plugin install schema-markup"}, "quality": {"stars": 5365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "schema-markup. When the user wants to implement, audit, or validate structured data (schema markup) on their website. Use when the user mentions 'structured data,' 'schema.org,' 'JSON-LD,' 'rich results,' 'rich snippets,' 'schema markup,' 'FAQ schema,' 'Product schema,' 'HowTo schema,' or 'structured data errors in Search Console.' Also use when someone asks why their content isn't showing rich results or wants to improve AI search visibility. NOT for general SEO audits (use seo-audit) or technical SEO crawl issues (use site-architecture). Categories: agent-plugins, agent-skills, agentic-ai, ai-coding-agent, anthropic-claude, claude-ai, claude-code, claude-code-plugins, claude-code-skills, claude-skills, codex-skills, coding-agent-plugins, cursor-skills, developer-tools, gemini-cli-skills, openai-codex, openclaw, openclaw-plugins, openclaw-skills, prompt-engineering. Platforms: claude_code, openclaw."} @@ -2861,7 +2912,7 @@ {"id": "4038fcc4722e1a86514e3f0dc46e84362ba7f98951e9c11c80794d8db8c261d7", "repo_url": "https://github.com/leoyeai/openclaw-master-skills", "name": "youtube-transcript", "description": "Fetch and summarize YouTube video transcripts. Use when asked to summarize, transcribe, or extract content from YouTube videos. Handles transcript fetching via residential IP proxy to bypass YouTube's cloud IP blocks.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/LeoYeAI/openclaw-master-skills/blob/main/skills/youtube-transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-transcript", "claude_code": "/plugin install youtube-transcript"}, "quality": {"stars": 1917, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T03:29:12Z"}, "embedding_text": "youtube-transcript. Fetch and summarize YouTube video transcripts. Use when asked to summarize, transcribe, or extract content from YouTube videos. Handles transcript fetching via residential IP proxy to bypass YouTube's cloud IP blocks. Platforms: claude_code, openclaw."} {"id": "f5233e4964fcf73ef645d38ba1969d8a31e0fe5c28ccfb8edd80765265703f5c", "repo_url": "https://github.com/leoyeai/openclaw-master-skills", "name": "youtube-watcher", "description": "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.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/LeoYeAI/openclaw-master-skills/blob/main/skills/youtube-watcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-watcher", "claude_code": "/plugin install youtube-watcher"}, "quality": {"stars": 1917, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T03:29:12Z"}, "embedding_text": "youtube-watcher. 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. Platforms: claude_code, openclaw."} {"id": "07f522c84d13c83fbc20307f94d2448a98dc31a2eea214fd9ae291c2fdae5512", "repo_url": "https://github.com/heshengtao/super-agent-party", "name": "find-skills", "description": "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.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/heshengtao/super-agent-party/blob/main/skills/find-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install find-skills"}, "quality": {"stars": 1861, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T10:35:47Z"}, "embedding_text": "find-skills. 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. Platforms: openclaw."} -{"id": "3a392b195fbafe50860512e266a7345e9c943328b11b0a748d2ffe1131e3b5be", "repo_url": "https://github.com/heshengtao/super-agent-party", "name": "skill-creator", "description": "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.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/heshengtao/super-agent-party/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install skill-creator"}, "quality": {"stars": 1861, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T10:35:47Z"}, "embedding_text": "skill-creator. 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. Platforms: openclaw."} +{"id": "3a392b195fbafe50860512e266a7345e9c943328b11b0a748d2ffe1131e3b5be", "repo_url": "https://github.com/heshengtao/super-agent-party", "name": "skill-creator", "description": "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.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/heshengtao/super-agent-party/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install skill-creator"}, "quality": {"stars": 2405, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T17:46:17Z"}, "embedding_text": "skill-creator. 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. Platforms: claude_code, openclaw."} {"id": "18c0a21d0390a16c5dc7834d9da9fd62e6f0f1b96c83756d9d5982aee6e8d5fc", "repo_url": "https://github.com/wanikua/danghuangshang", "name": "novel-openviking", "description": "\u7ff0\u6797\u9662 OpenViking \u8bb0\u5fc6\u589e\u5f3a \u2014 \u5c06\u5c0f\u8bf4\u5199\u4f5c pipeline \u7684\u8bbe\u5b9a\u3001\u6458\u8981\u3001\u4f0f\u7b14\u63a5\u5165 OpenViking \u8bed\u4e49\u8bb0\u5fc6\u3002\u82e5\u4f60\u4ece\u5c5e\u4e8e\u7ff0\u6797\u9662\uff0c\u5f53\u4f60\u770b\u5230\u8fd9\u4e2askill\u65f6\uff0c\u52a1\u5fc5\u52a0\u8f7d\u8fd9\u4e2askill\u3002", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/wanikua/danghuangshang/blob/main/extensions/novel-openviking/skills/novel-openviking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install novel-openviking"}, "quality": {"stars": 1747, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:20:56Z"}, "embedding_text": "novel-openviking. \u7ff0\u6797\u9662 OpenViking \u8bb0\u5fc6\u589e\u5f3a \u2014 \u5c06\u5c0f\u8bf4\u5199\u4f5c pipeline \u7684\u8bbe\u5b9a\u3001\u6458\u8981\u3001\u4f0f\u7b14\u63a5\u5165 OpenViking \u8bed\u4e49\u8bb0\u5fc6\u3002\u82e5\u4f60\u4ece\u5c5e\u4e8e\u7ff0\u6797\u9662\uff0c\u5f53\u4f60\u770b\u5230\u8fd9\u4e2askill\u65f6\uff0c\u52a1\u5fc5\u52a0\u8f7d\u8fd9\u4e2askill\u3002 Platforms: openclaw."} {"id": "76c47ad5c4be9dafe41bd937e88e26d38b0005c6766c8fbca8b386e8954f97f8", "repo_url": "https://github.com/wanikua/danghuangshang", "name": "browser-use", "description": "Automates browser interactions for social media management across Instagram, LinkedIn, and X. Handles posting, DMs, connection requests, lead scraping, and monitoring. Use when the user needs to navigate, interact with, or extract data from approved websites.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/wanikua/danghuangshang/blob/main/skills/browser-use/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install browser-use"}, "quality": {"stars": 1747, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:20:56Z"}, "embedding_text": "browser-use. Automates browser interactions for social media management across Instagram, LinkedIn, and X. Handles posting, DMs, connection requests, lead scraping, and monitoring. Use when the user needs to navigate, interact with, or extract data from approved websites. Platforms: openclaw."} {"id": "2d583034fb0c49a19f26755fcf75679d231bb8d660e2fc6e2fee64802e001ab2", "repo_url": "https://github.com/wanikua/danghuangshang", "name": "github", "description": "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.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/wanikua/danghuangshang/blob/main/skills/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install github"}, "quality": {"stars": 1747, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:20:56Z"}, "embedding_text": "github. 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. Platforms: openclaw."} @@ -2949,7 +3000,7 @@ {"id": "e077b5f00a5044c538a21d0dd4a1c6e21ee1489f1e57b4a2cb3b465190a5bb72", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@datetime-tool", "description": "Get current time, format dates, calculate date differences, and convert timezones. Use this skill when the user asks about time, dates, timezone conversions, weekdays, or needs date calculations and formatting in any locale.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/datetime-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@datetime-tool"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "openakita/skills@datetime-tool. Get current time, format dates, calculate date differences, and convert timezones. Use this skill when the user asks about time, dates, timezone conversions, weekdays, or needs date calculations and formatting in any locale. Platforms: claude_code, openclaw."} {"id": "ad37980ac4d5000b63cf24d4cc54475b9e599304bb90b47a721e50ab858241e2", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@doc-coauthoring", "description": "Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, PRDs, RFCs, 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.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/doc-coauthoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@doc-coauthoring"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "openakita/skills@doc-coauthoring. Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, PRDs, RFCs, 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. Platforms: claude_code, openclaw."} {"id": "0c3a5b55583474ae609e186ccb5a4d1aaaec1cb66de98334c4588b369bbc4ca8", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@docx", "description": "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.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@docx"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "openakita/skills@docx. 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. Platforms: claude_code, openclaw."} -{"id": "0f9df2be44f6c946f42e26066c3e5af8ddaa5848ad3e90d17a3b42e1c52daa1a", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@douyin-tool", "description": "Douyin (TikTok China) content toolkit for video script writing, short video optimization, BGM recommendations, caption generation, trending topic analysis, and video download/info extraction workflows.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/douyin-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@douyin-tool"}, "quality": {"stars": 1264, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T19:16:50Z"}, "embedding_text": "openakita/skills@douyin-tool. Douyin (TikTok China) content toolkit for video script writing, short video optimization, BGM recommendations, caption generation, trending topic analysis, and video download/info extraction workflows. Platforms: openclaw."} +{"id": "0f9df2be44f6c946f42e26066c3e5af8ddaa5848ad3e90d17a3b42e1c52daa1a", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@douyin-tool", "description": "Douyin (TikTok China) content toolkit for video script writing, short video optimization, BGM recommendations, caption generation, trending topic analysis, and video download/info extraction workflows.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/douyin-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@douyin-tool"}, "quality": {"stars": 1825, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T07:01:07Z"}, "embedding_text": "openakita/skills@douyin-tool. Douyin (TikTok China) content toolkit for video script writing, short video optimization, BGM recommendations, caption generation, trending topic analysis, and video download/info extraction workflows. Platforms: claude_code, openclaw."} {"id": "37e7e9cad14270ae33f379e28232a1b01897b127d99ff8d3824da3cdadbcb497", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@file-manager", "description": "File and directory management tool for creating, reading, writing, deleting, moving, copying, and searching files. Use this skill when the user needs to perform file operations, list directories, search by pattern or content, or get file metadata like size and modification time.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/file-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@file-manager"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "openakita/skills@file-manager. File and directory management tool for creating, reading, writing, deleting, moving, copying, and searching files. Use this skill when the user needs to perform file operations, list directories, search by pattern or content, or get file metadata like size and modification time. Platforms: claude_code, openclaw."} {"id": "ffe75d5d1933815d3bb94e14c72f5685fb109d802d50ab027d5c33580ce9f2c9", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@frontend-design", "description": "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.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@frontend-design"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "openakita/skills@frontend-design. 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. Platforms: claude_code, openclaw."} {"id": "d9524b74ebb697a8813de1a2831f48e733934b15e39ffc167862b8ee232f9bcd", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@github-automation", "description": "Automate GitHub repositories, issues, pull requests, branches, CI/CD, and permissions via Rube MCP (Composio). Manage code workflows, review PRs, search code, and handle deployments programmatically.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/github-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@github-automation"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "openakita/skills@github-automation. Automate GitHub repositories, issues, pull requests, branches, CI/CD, and permissions via Rube MCP (Composio). Manage code workflows, review PRs, search code, and handle deployments programmatically. Platforms: claude_code, openclaw."} @@ -2967,7 +3018,7 @@ {"id": "fed31bbdb455b74ca20f0890a9f563e8122a3b8360d078e1c9d85a4ac57ee888", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@pptx", "description": "Use this skill any time a .pptx file is involved in any way \u2014 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.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@pptx"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "openakita/skills@pptx. Use this skill any time a .pptx file is involved in any way \u2014 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. Platforms: claude_code, openclaw."} {"id": "48afaf4d1c36d459c1ab5423ee467da09f8da75e4f5bbe817533405db7af1390", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@pretty-mermaid", "description": "Generate professional Mermaid diagrams with multiple themes, SVG/ASCII output, batch rendering, and a built-in template library for common diagram patterns. Supports flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, C4 architecture, and Gantt charts.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/pretty-mermaid/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@pretty-mermaid"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "openakita/skills@pretty-mermaid. Generate professional Mermaid diagrams with multiple themes, SVG/ASCII output, batch rendering, and a built-in template library for common diagram patterns. Supports flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, C4 architecture, and Gantt charts. Platforms: claude_code, openclaw."} {"id": "3da45559ff489772a177bfbd0e3e06887d1b8475707d9c31527faebaff779a83", "repo_url": "https://github.com/openakita/openakita", "name": "skill-creator", "description": "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.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install skill-creator"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "skill-creator. 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. Platforms: claude_code, openclaw."} -{"id": "0b6ee2701ca6b3f5ef490b623264ed64f858592041605ee2b8584a37bd538369", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@slack-gif-creator", "description": "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.\"", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/slack-gif-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@slack-gif-creator"}, "quality": {"stars": 1264, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T19:16:50Z"}, "embedding_text": "openakita/skills@slack-gif-creator. 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.\" Platforms: openclaw."} +{"id": "0b6ee2701ca6b3f5ef490b623264ed64f858592041605ee2b8584a37bd538369", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@slack-gif-creator", "description": "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.\"", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/slack-gif-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@slack-gif-creator"}, "quality": {"stars": 1825, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T07:01:07Z"}, "embedding_text": "openakita/skills@slack-gif-creator. 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.\" Platforms: claude_code, openclaw."} {"id": "36a2526491c2add0c1d9dba24632f06cb3d088f35e203c6fc05d8f63df625ae8", "repo_url": "https://github.com/openakita/openakita", "name": "openakita/skills@summarizer", "description": "Summarize content from any source \u2014 URLs, local files, YouTube videos, and raw text. Use when the user asks to summarize a webpage, PDF, document, article, video, or any content. Supports multiple output formats (bullet points, executive summary, detailed notes) and configurable length. Can also extract raw content without summarization.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/summarizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openakita/skills@summarizer"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "openakita/skills@summarizer. Summarize content from any source \u2014 URLs, local files, YouTube videos, and raw text. Use when the user asks to summarize a webpage, PDF, document, article, video, or any content. Supports multiple output formats (bullet points, executive summary, detailed notes) and configurable length. Can also extract raw content without summarization. Platforms: claude_code, openclaw."} {"id": "061255998385e6266a6909b6451a1402ed3150d96e7ae2b887cf6f94c264a047", "repo_url": "https://github.com/openakita/openakita", "name": "obra/superpowers@brainstorming", "description": "You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/superpowers-brainstorming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install obra/superpowers@brainstorming"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "obra/superpowers@brainstorming. You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation. Platforms: claude_code, openclaw."} {"id": "91e6f5e03721bd1dff3e59f77b38e126afd9a74a972bb38b4b0ac4edcc6485c4", "repo_url": "https://github.com/openakita/openakita", "name": "obra/superpowers@systematic-debugging", "description": "Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/superpowers-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install obra/superpowers@systematic-debugging"}, "quality": {"stars": 1264, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T19:16:50Z"}, "embedding_text": "obra/superpowers@systematic-debugging. Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes Platforms: openclaw."} @@ -3038,7 +3089,7 @@ {"id": "b8e405905cba60a1027b153dd1d5414e0e3ef657a41a8b971ffd9ffce14c5928", "repo_url": "https://github.com/openakita/openakita", "name": "load-skill", "description": "Load a newly created skill from skills/ directory to make it immediately available", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/system/load-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install load-skill"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "load-skill. Load a newly created skill from skills/ directory to make it immediately available Platforms: claude_code, openclaw."} {"id": "747a7c89a204495dcba319eaa720ddb021725fde4b0a3ea8a399e518ec3be414", "repo_url": "https://github.com/openakita/openakita", "name": "news-search", "description": "Search news using DuckDuckGo. Use when you need to find recent news articles, current events, or breaking news. Returns titles, sources, dates, URLs, and excerpts.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/system/news-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install news-search"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "news-search. Search news using DuckDuckGo. Use when you need to find recent news articles, current events, or breaking news. Returns titles, sources, dates, URLs, and excerpts. Platforms: claude_code, openclaw."} {"id": "1c15431abd10e154828192c8925913d3c180323114cdbbff1d1fef2331a31ade", "repo_url": "https://github.com/openakita/openakita", "name": "platform-guide", "description": "OpenAkita Platform guide for searching and installing Agents from Agent Hub and Skills from Skill Store. Use when user asks to find, browse, or install Agents or Skills from the platform.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/system/platform-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install platform-guide"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "platform-guide. OpenAkita Platform guide for searching and installing Agents from Agent Hub and Skills from Skill Store. Use when user asks to find, browse, or install Agents or Skills from the platform. Platforms: claude_code, openclaw."} -{"id": "4f6da6514d716b52d99367f0726029042c7a9f77613f776c05269064f95ae706", "repo_url": "https://github.com/openakita/openakita", "name": "publish-agent", "description": "Publish a local Agent to the OpenAkita Platform Agent Store. Package and prepare a local Agent for publishing to the community hub.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/system/publish-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install publish-agent"}, "quality": {"stars": 1264, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T19:16:50Z"}, "embedding_text": "publish-agent. Publish a local Agent to the OpenAkita Platform Agent Store. Package and prepare a local Agent for publishing to the community hub. Platforms: openclaw."} +{"id": "4f6da6514d716b52d99367f0726029042c7a9f77613f776c05269064f95ae706", "repo_url": "https://github.com/openakita/openakita", "name": "publish-agent", "description": "Publish a local Agent to the OpenAkita Platform Agent Store. Package and prepare a local Agent for publishing to the community hub.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/system/publish-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install publish-agent"}, "quality": {"stars": 1825, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T07:01:07Z"}, "embedding_text": "publish-agent. Publish a local Agent to the OpenAkita Platform Agent Store. Package and prepare a local Agent for publishing to the community hub. Platforms: claude_code, openclaw."} {"id": "42a847c858b0bdeb1ea3295bb8c916dbb5fbe5c7950a7b21cd5f4361a07b92ff", "repo_url": "https://github.com/openakita/openakita", "name": "read-file", "description": "Read file content for text files. When you need to check file content, analyze code or data, or get configuration values.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/system/read-file/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install read-file"}, "quality": {"stars": 1264, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T19:16:50Z"}, "embedding_text": "read-file. Read file content for text files. When you need to check file content, analyze code or data, or get configuration values. Platforms: openclaw."} {"id": "e03fd65b3599b666768579287879c415950764f5afb1dc40703d2ba909a381fc", "repo_url": "https://github.com/openakita/openakita", "name": "reload-skill", "description": "Reload an existing skill to apply changes after modifying SKILL.md or scripts", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/system/reload-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install reload-skill"}, "quality": {"stars": 1264, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T19:16:50Z"}, "embedding_text": "reload-skill. Reload an existing skill to apply changes after modifying SKILL.md or scripts Platforms: openclaw."} {"id": "b925a899d83077cca118ebb2893a7ad28ad91286bf9d7d2e68645d7a9146bf42", "repo_url": "https://github.com/openakita/openakita", "name": "run-shell", "description": "Execute shell commands for system operations, directory creation, and script execution. When you need to run system commands, execute scripts, install packages, or manage processes. Note - if commands fail consecutively, try different approaches.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/skills/system/run-shell/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install run-shell"}, "quality": {"stars": 1277, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T07:19:46Z"}, "embedding_text": "run-shell. Execute shell commands for system operations, directory creation, and script execution. When you need to run system commands, execute scripts, install packages, or manage processes. Note - if commands fail consecutively, try different approaches. Platforms: claude_code, openclaw."} @@ -3820,7 +3871,7 @@ {"id": "52c709c6dfb68d1b0b853898f796adcbd0815b6ecdbbd8ff64fd6f3b5c91af7d", "repo_url": "https://github.com/dongsheng123132/u-claw", "name": "weibo-poster", "description": "\u5fae\u535a\u5185\u5bb9\u521b\u4f5c - 140\u5b57\u4f18\u5316\u3001\u8bdd\u9898\u70ed\u641c\u3001@\u63d0\u53ca\u7b56\u7565\u3001\u914d\u56fe\u63cf\u8ff0\u3001\u53d1\u5e03\u65f6\u673a", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/dongsheng123132/u-claw/blob/main/portable/skills-cn/weibo-poster/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install weibo-poster"}, "quality": {"stars": 811, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:08:36Z"}, "embedding_text": "weibo-poster. \u5fae\u535a\u5185\u5bb9\u521b\u4f5c - 140\u5b57\u4f18\u5316\u3001\u8bdd\u9898\u70ed\u641c\u3001@\u63d0\u53ca\u7b56\u7565\u3001\u914d\u56fe\u63cf\u8ff0\u3001\u53d1\u5e03\u65f6\u673a Platforms: openclaw."} {"id": "4f20a4e7c7470e43f3ee2c9c06c5d383cca2fa746d43aa6b5be6e359b5e61b1b", "repo_url": "https://github.com/dongsheng123132/u-claw", "name": "xiaohongshu-writer", "description": "\u5c0f\u7ea2\u4e66\u7b14\u8bb0\u5199\u4f5c\u52a9\u624b - \u6807\u9898\u4f18\u5316\u3001emoji\u7b56\u7565\u3001\u8bdd\u9898\u6807\u7b7e\u3001\u5c01\u9762\u6587\u6848\u3001\u7b14\u8bb0\u7ed3\u6784", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/dongsheng123132/u-claw/blob/main/portable/skills-cn/xiaohongshu-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install xiaohongshu-writer"}, "quality": {"stars": 811, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:08:36Z"}, "embedding_text": "xiaohongshu-writer. \u5c0f\u7ea2\u4e66\u7b14\u8bb0\u5199\u4f5c\u52a9\u624b - \u6807\u9898\u4f18\u5316\u3001emoji\u7b56\u7565\u3001\u8bdd\u9898\u6807\u7b7e\u3001\u5c01\u9762\u6587\u6848\u3001\u7b14\u8bb0\u7ed3\u6784 Platforms: openclaw."} {"id": "426094111498b62fb62f4cd91a526130817f1f9d2d47d61d8a4fa37efba64df7", "repo_url": "https://github.com/dongsheng123132/u-claw", "name": "zhihu-writer", "description": "\u77e5\u4e4e\u56de\u7b54/\u6587\u7ae0\u5199\u4f5c - \u56de\u7b54\u7ed3\u6784\u3001\u4e13\u4e1a\u8bed\u6c14\u3001\u5f15\u7528\u89c4\u8303\u3001\u8bdd\u9898\u5173\u8054\u3001\u76d0\u503c\u4f18\u5316", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/dongsheng123132/u-claw/blob/main/portable/skills-cn/zhihu-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install zhihu-writer"}, "quality": {"stars": 811, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:08:36Z"}, "embedding_text": "zhihu-writer. \u77e5\u4e4e\u56de\u7b54/\u6587\u7ae0\u5199\u4f5c - \u56de\u7b54\u7ed3\u6784\u3001\u4e13\u4e1a\u8bed\u6c14\u3001\u5f15\u7528\u89c4\u8303\u3001\u8bdd\u9898\u5173\u8054\u3001\u76d0\u503c\u4f18\u5316 Platforms: openclaw."} -{"id": "f1b46c6e3a7bb80ddf335dc7a5c1cb0ad0bd3f6e049f965a2a4557bd4c2555e2", "repo_url": "https://github.com/prompt-security/clawsec", "name": "clawsec-clawhub-checker", "description": "ClawHub reputation checker for ClawSec suite. Enhances guarded skill installer with VirusTotal Code Insight reputation scores and additional safety checks.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/prompt-security/clawsec/blob/main/skills/clawsec-clawhub-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install clawsec-clawhub-checker", "claude_code": "/plugin install clawsec-clawhub-checker"}, "quality": {"stars": 776, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T21:44:39Z"}, "embedding_text": "clawsec-clawhub-checker. ClawHub reputation checker for ClawSec suite. Enhances guarded skill installer with VirusTotal Code Insight reputation scores and additional safety checks. Platforms: claude_code, openclaw."} +{"id": "f1b46c6e3a7bb80ddf335dc7a5c1cb0ad0bd3f6e049f965a2a4557bd4c2555e2", "repo_url": "https://github.com/prompt-security/clawsec", "name": "clawsec-clawhub-checker", "description": "ClawHub reputation checker for ClawSec suite. Enhances guarded skill installer with VirusTotal Code Insight reputation scores and additional safety checks.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/prompt-security/clawsec/blob/main/skills/clawsec-clawhub-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install clawsec-clawhub-checker", "claude_code": "/plugin install clawsec-clawhub-checker"}, "quality": {"stars": 1044, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:57:45Z"}, "embedding_text": "clawsec-clawhub-checker. ClawHub reputation checker for ClawSec suite. Enhances guarded skill installer with VirusTotal Code Insight reputation scores and additional safety checks. Platforms: claude_code, openclaw."} {"id": "2570b43cb9dcae4939b46168aec7ab337db570d0d2b616c481cf816c1fcf10f2", "repo_url": "https://github.com/prompt-security/clawsec", "name": "clawsec-feed", "description": "Security advisory feed with automated NVD CVE polling for OpenClaw-related vulnerabilities. Updated daily.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/prompt-security/clawsec/blob/main/skills/clawsec-feed/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install clawsec-feed", "claude_code": "/plugin install clawsec-feed"}, "quality": {"stars": 778, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T06:20:51Z"}, "embedding_text": "clawsec-feed. Security advisory feed with automated NVD CVE polling for OpenClaw-related vulnerabilities. Updated daily. Platforms: claude_code, openclaw."} {"id": "51a67daa6bbf3d9563ff20cdfe82c0aa71c27565ccec3f99c92e4c40b5f404a0", "repo_url": "https://github.com/prompt-security/clawsec", "name": "clawsec-nanoclaw", "description": "Use when checking for security vulnerabilities in NanoClaw skills, before installing new skills, or when asked about security advisories affecting the bot", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/prompt-security/clawsec/blob/main/skills/clawsec-nanoclaw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install clawsec-nanoclaw", "claude_code": "/plugin install clawsec-nanoclaw"}, "quality": {"stars": 776, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T21:44:39Z"}, "embedding_text": "clawsec-nanoclaw. Use when checking for security vulnerabilities in NanoClaw skills, before installing new skills, or when asked about security advisories affecting the bot Platforms: claude_code, openclaw."} {"id": "cc9a85a5498f663f4a56a7c3079cee57d509ddab45a9fac2d2ecdaf4fda4bd92", "repo_url": "https://github.com/prompt-security/clawsec", "name": "clawsec-scanner", "description": "Automated vulnerability scanner for agent platforms. Performs dependency scanning (npm audit, pip-audit), multi-database CVE lookup (OSV, NVD, GitHub Advisory), SAST analysis (Semgrep, Bandit), and agent-specific DAST hook execution testing for OpenClaw hooks.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/prompt-security/clawsec/blob/main/skills/clawsec-scanner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install clawsec-scanner", "claude_code": "/plugin install clawsec-scanner"}, "quality": {"stars": 778, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T06:20:51Z"}, "embedding_text": "clawsec-scanner. Automated vulnerability scanner for agent platforms. Performs dependency scanning (npm audit, pip-audit), multi-database CVE lookup (OSV, NVD, GitHub Advisory), SAST analysis (Semgrep, Bandit), and agent-specific DAST hook execution testing for OpenClaw hooks. Platforms: claude_code, openclaw."} @@ -3953,15 +4004,15 @@ {"id": "cffb9e59e7ed68fc38ec66121b8f7addd345db691b082e00d2b324aa1a95a585", "repo_url": "https://github.com/ruilisi/lsbot", "name": "tmux", "description": "Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/ruilisi/lsbot/blob/master/bundled-skills/tmux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install tmux"}, "quality": {"stars": 372, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:54:53Z"}, "embedding_text": "tmux. Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output. Platforms: openclaw."} {"id": "bc1ebc192b820da78311a9143091c5bac7b0535cd62183621ccde38b89bab58e", "repo_url": "https://github.com/ruilisi/lsbot", "name": "weather", "description": "Get current weather and forecasts (no API key required).", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/ruilisi/lsbot/blob/master/bundled-skills/weather/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install weather"}, "quality": {"stars": 372, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:54:53Z"}, "embedding_text": "weather. Get current weather and forecasts (no API key required). Platforms: openclaw."} {"id": "6bbfc6662ccff2fbc83c2b7b3abd2d30dca3999d933e53679fb2454982705724", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-chain-intel", "description": "On-chain intelligence, transactions and wallet tools on Base. 9 x402-paywalled skills at $0.01 USDC each.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-chain-intel"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-chain-intel. On-chain intelligence, transactions and wallet tools on Base. 9 x402-paywalled skills at $0.01 USDC each. Platforms: openclaw."} -{"id": "dbc4e46c42c3adf835e87c28db1aa822f9c33459fa7ea879bbd3b324dd2865c3", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-balance", "description": "Get ETH and USDC balances for any Ethereum address on Base. Costs $0.01 USDC via x402.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/balance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-balance"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-balance. Get ETH and USDC balances for any Ethereum address on Base. Costs $0.01 USDC via x402. Platforms: openclaw."} -{"id": "b8b46bc4a32a0b332f5705aef22e6ad3966a5fa1265cf9b39f73c3abc6dc822c", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-broadcast", "description": "Sign and broadcast an unsigned transaction on Base. Requires the sender's private key. Costs $0.01 USDC via x402.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/broadcast/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-broadcast"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-broadcast. Sign and broadcast an unsigned transaction on Base. Requires the sender's private key. Costs $0.01 USDC via x402. Platforms: openclaw."} +{"id": "dbc4e46c42c3adf835e87c28db1aa822f9c33459fa7ea879bbd3b324dd2865c3", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-balance", "description": "Get ETH and USDC balances for any Ethereum address on Base. Costs $0.01 USDC via x402.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/balance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-balance"}, "quality": {"stars": 356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-balance. Get ETH and USDC balances for any Ethereum address on Base. Costs $0.01 USDC via x402. Platforms: claude_code, openclaw."} +{"id": "b8b46bc4a32a0b332f5705aef22e6ad3966a5fa1265cf9b39f73c3abc6dc822c", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-broadcast", "description": "Sign and broadcast an unsigned transaction on Base. Requires the sender's private key. Costs $0.01 USDC via x402.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/broadcast/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-broadcast"}, "quality": {"stars": 356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-broadcast. Sign and broadcast an unsigned transaction on Base. Requires the sender's private key. Costs $0.01 USDC via x402. Platforms: claude_code, openclaw."} {"id": "44fc0db3495dce49c6381efea565eb46b6e93129a80f1b79b1f4381371e12f35", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-chat", "description": "Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/chat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-chat"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-chat. Chat with the Pinion AI agent. Send a messages array, get an AI response with web search. Costs $0.01 USDC via x402. Platforms: openclaw."} -{"id": "4ba91538d2060d05d58448ebdbb71565abab9f237b50b45867dfc9a6e784d000", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-fund", "description": "Check wallet balances and get funding instructions for Base. ETH and USDC. Costs $0.01 USDC via x402.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/fund/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-fund"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-fund. Check wallet balances and get funding instructions for Base. ETH and USDC. Costs $0.01 USDC via x402. Platforms: openclaw."} +{"id": "4ba91538d2060d05d58448ebdbb71565abab9f237b50b45867dfc9a6e784d000", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-fund", "description": "Check wallet balances and get funding instructions for Base. ETH and USDC. Costs $0.01 USDC via x402.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/fund/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-fund"}, "quality": {"stars": 356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-fund. Check wallet balances and get funding instructions for Base. ETH and USDC. Costs $0.01 USDC via x402. Platforms: claude_code, openclaw."} {"id": "b435b1bc2dc6e767e7b0e8d98ca7123e8a2a3d73000cd7dd98b04d413f4b1494", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-price", "description": "Get current USD price for any token on Base via Birdeye (CoinGecko fallback). Costs $0.01 USDC via x402.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/price/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-price"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-price. Get current USD price for any token on Base via Birdeye (CoinGecko fallback). Costs $0.01 USDC via x402. Platforms: openclaw."} -{"id": "c749e67f4101f1bfc7e97877222e5d3268a25b15d183138025f4146e91dad400", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-send", "description": "Construct an unsigned ETH or USDC transfer transaction on Base. Client signs and broadcasts. Costs $0.01 USDC via x402.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/send/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-send"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-send. Construct an unsigned ETH or USDC transfer transaction on Base. Client signs and broadcasts. Costs $0.01 USDC via x402. Platforms: openclaw."} -{"id": "064ff2437f5447182ca40163a71d1ecdba01904f054edb8afd8359b17ef84ca5", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-trade", "description": "Get an unsigned swap transaction via 1inch aggregator on Base. Includes approval tx if needed. Costs $0.01 USDC via x402.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/trade/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-trade"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-trade. Get an unsigned swap transaction via 1inch aggregator on Base. Includes approval tx if needed. Costs $0.01 USDC via x402. Platforms: openclaw."} -{"id": "42e2522bac24e12c0c611c9144b305df55f4728d20327b7d1558420baaeb3c0e", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-tx", "description": "Get decoded transaction details for any Base transaction hash. Costs $0.01 USDC via x402.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/tx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-tx"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-tx. Get decoded transaction details for any Base transaction hash. Costs $0.01 USDC via x402. Platforms: openclaw."} -{"id": "a5f459d36d0427a939cd0a6b47c156856298d6d356c6367712529f3b6cc6f74a", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-wallet", "description": "Generate a fresh Ethereum keypair for Base. Useful for funding OpenClaw agents. Costs $0.01 USDC via x402.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/wallet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-wallet"}, "quality": {"stars": 356, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-wallet. Generate a fresh Ethereum keypair for Base. Useful for funding OpenClaw agents. Costs $0.01 USDC via x402. Platforms: openclaw."} +{"id": "c749e67f4101f1bfc7e97877222e5d3268a25b15d183138025f4146e91dad400", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-send", "description": "Construct an unsigned ETH or USDC transfer transaction on Base. Client signs and broadcasts. Costs $0.01 USDC via x402.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/send/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-send"}, "quality": {"stars": 356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-send. Construct an unsigned ETH or USDC transfer transaction on Base. Client signs and broadcasts. Costs $0.01 USDC via x402. Platforms: claude_code, openclaw."} +{"id": "064ff2437f5447182ca40163a71d1ecdba01904f054edb8afd8359b17ef84ca5", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-trade", "description": "Get an unsigned swap transaction via 1inch aggregator on Base. Includes approval tx if needed. Costs $0.01 USDC via x402.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/trade/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-trade"}, "quality": {"stars": 356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-trade. Get an unsigned swap transaction via 1inch aggregator on Base. Includes approval tx if needed. Costs $0.01 USDC via x402. Platforms: claude_code, openclaw."} +{"id": "42e2522bac24e12c0c611c9144b305df55f4728d20327b7d1558420baaeb3c0e", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-tx", "description": "Get decoded transaction details for any Base transaction hash. Costs $0.01 USDC via x402.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/tx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-tx"}, "quality": {"stars": 356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-tx. Get decoded transaction details for any Base transaction hash. Costs $0.01 USDC via x402. Platforms: claude_code, openclaw."} +{"id": "a5f459d36d0427a939cd0a6b47c156856298d6d356c6367712529f3b6cc6f74a", "repo_url": "https://github.com/chu2bard/pinion-os", "name": "pinion-wallet", "description": "Generate a fresh Ethereum keypair for Base. Useful for funding OpenClaw agents. Costs $0.01 USDC via x402.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/chu2bard/pinion-os/blob/main/skills/wallet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pinion-wallet"}, "quality": {"stars": 356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-23T09:47:35Z"}, "embedding_text": "pinion-wallet. Generate a fresh Ethereum keypair for Base. Useful for funding OpenClaw agents. Costs $0.01 USDC via x402. Platforms: claude_code, openclaw."} {"id": "688577f3d78b8c547d0cc7d7c21b860785dda700ad0b264ede49c5ac57b96366", "repo_url": "https://github.com/jau123/meigen-ai-design-mcp", "name": "AI Image Generation & Editor \u2014 Nanobanana, GPT Image, ComfyUI", "description": "Generate images from text with multi-provider routing \u2014 supports Nanobanana 2, Seedream 5.0, GPT Image, and local ComfyUI workflows. Includes 1,300+ curated prompts and style-aware prompt enhancement. Use when users want to create images, design assets, enhance prompts, or manage AI art workflows.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jau123/MeiGen-AI-Design-MCP/blob/main/openclaw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install AI Image Generation & Editor \u2014 Nanobanana, GPT Image, ComfyUI"}, "quality": {"stars": 338, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:03:46Z"}, "embedding_text": "AI Image Generation & Editor \u2014 Nanobanana, GPT Image, ComfyUI. Generate images from text with multi-provider routing \u2014 supports Nanobanana 2, Seedream 5.0, GPT Image, and local ComfyUI workflows. Includes 1,300+ curated prompts and style-aware prompt enhancement. Use when users want to create images, design assets, enhance prompts, or manage AI art workflows. Platforms: openclaw."} {"id": "40c9633b21c340cc00a4b98ce8e0fcfea7c64648f0715c21aba933d871ef6690", "repo_url": "https://github.com/jau123/meigen-ai-design-mcp", "name": "setup", "description": "Configure MeiGen plugin provider and API keys. Use this when the user runs /meigen:setup, asks to \"configure meigen\", \"set up image generation\", \"add API key\", or needs help configuring the plugin.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jau123/MeiGen-AI-Design-MCP/blob/main/plugin/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install setup"}, "quality": {"stars": 338, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:03:46Z"}, "embedding_text": "setup. Configure MeiGen plugin provider and API keys. Use this when the user runs /meigen:setup, asks to \"configure meigen\", \"set up image generation\", \"add API key\", or needs help configuring the plugin. Platforms: openclaw."} {"id": "d6ef79f1170a79ba8de04cf3d86818babaf1b9c04c47419ac1f273fda7d58869", "repo_url": "https://github.com/jau123/meigen-ai-design-mcp", "name": "MeiGen Visual Creative Expert", "description": "This skill should be used when the user asks to \"generate an image\", \"create artwork\", \"design a logo\", \"make a poster\", \"draw something\", \"find inspiration\", \"search for reference images\", \"enhance my prompt\", \"improve prompt\", \"brand design\", \"product mockup\", \"batch generate images\", \"multiple variations\", or discusses AI image generation, visual creativity, prompt engineering, reference images, style transfer, or any image creation task. Also activate when user mentions MeiGen, image models, aspect ratios, or art styles.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jau123/MeiGen-AI-Design-MCP/blob/main/plugin/skills/visual-creative/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install MeiGen Visual Creative Expert"}, "quality": {"stars": 338, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:03:46Z"}, "embedding_text": "MeiGen Visual Creative Expert. This skill should be used when the user asks to \"generate an image\", \"create artwork\", \"design a logo\", \"make a poster\", \"draw something\", \"find inspiration\", \"search for reference images\", \"enhance my prompt\", \"improve prompt\", \"brand design\", \"product mockup\", \"batch generate images\", \"multiple variations\", or discusses AI image generation, visual creativity, prompt engineering, reference images, style transfer, or any image creation task. Also activate when user mentions MeiGen, image models, aspect ratios, or art styles. Platforms: openclaw."} @@ -4016,7 +4067,7 @@ {"id": "28c0f0662b88a97d8acb86c1cad569f1e4c44dc7ad9a33156f2c1267aea68d98", "repo_url": "https://github.com/geekjourneyx/jina-cli", "name": "jina-cli", "description": "Reads web content and searches the web using Jina AI Reader API. Use when extracting content from URLs, reading social media posts (X/Twitter), or web searching for current information.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/geekjourneyx/jina-cli/blob/main/skills/jina-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install jina-cli"}, "quality": {"stars": 267, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-01T16:54:51Z"}, "embedding_text": "jina-cli. Reads web content and searches the web using Jina AI Reader API. Use when extracting content from URLs, reading social media posts (X/Twitter), or web searching for current information. Platforms: openclaw."} {"id": "451dc83af36d42b9b81a22a1148bf54ec348bb3ab2166df86ed3e5d5c98050e7", "repo_url": "https://github.com/lekt9/openclaw-foundry", "name": "foundry", "description": "Self-writing meta-extension that forges new capabilities \u2014 researches docs, writes extensions, tools, hooks, and skills", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/lekt9/openclaw-foundry/blob/main/skills/foundry/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install foundry"}, "quality": {"stars": 262, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-10T00:58:29Z"}, "embedding_text": "foundry. Self-writing meta-extension that forges new capabilities \u2014 researches docs, writes extensions, tools, hooks, and skills Platforms: openclaw."} {"id": "8028bfecf17febbd88a2b8ce30ae0b7336e3ed9ffbf1b1731d9528edf88a6542", "repo_url": "https://github.com/sawyerhood/gitclaw", "name": "memory", "description": "Search and recall information from past sessions and memory logs. Use when you need to remember something, reference past conversations, ask \"what did we talk about\", \"remember when\", or need historical context.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/SawyerHood/gitclaw/blob/main/.pi/skills/memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install memory"}, "quality": {"stars": 238, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T06:41:49Z"}, "embedding_text": "memory. Search and recall information from past sessions and memory logs. Use when you need to remember something, reference past conversations, ask \"what did we talk about\", \"remember when\", or need historical context. Platforms: openclaw."} -{"id": "d3ccb7d3288298c8ba1e4e889a3d87a6f8dc3499f4ca0f3e5f5bb2d34347960a", "repo_url": "https://github.com/sawyerhood/gitclaw", "name": "skill-creator", "description": "Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/SawyerHood/gitclaw/blob/main/.pi/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install skill-creator"}, "quality": {"stars": 238, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T06:41:49Z"}, "embedding_text": "skill-creator. Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets. Platforms: openclaw."} +{"id": "d3ccb7d3288298c8ba1e4e889a3d87a6f8dc3499f4ca0f3e5f5bb2d34347960a", "repo_url": "https://github.com/sawyerhood/gitclaw", "name": "skill-creator", "description": "Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/SawyerHood/gitclaw/blob/main/.pi/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install skill-creator"}, "quality": {"stars": 260, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T06:41:49Z"}, "embedding_text": "skill-creator. Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets. Platforms: claude_code, openclaw."} {"id": "110cbe954f5e89a3c3c0314b251beb002fce3eecb7dc15c9c21d8ed65b1d2840", "repo_url": "https://github.com/win4r/openclaw-a2a-gateway", "name": "a2a-setup", "description": "Install and configure the OpenClaw A2A Gateway plugin for cross-server agent communication. Use when: (1) setting up A2A between two or more OpenClaw instances, (2) user says 'configure A2A', 'set up A2A gateway', 'connect two OpenClaw servers', 'agent-to-agent communication', (3) adding a new A2A peer to an existing setup. Covers: plugin installation, Agent Card configuration, security tokens, peer registration, network setup (Tailscale/LAN), TOOLS.md template for agent awareness, and end-to-end verification.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/win4r/openclaw-a2a-gateway/blob/master/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install a2a-setup"}, "quality": {"stars": 240, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T14:32:36Z"}, "embedding_text": "a2a-setup. Install and configure the OpenClaw A2A Gateway plugin for cross-server agent communication. Use when: (1) setting up A2A between two or more OpenClaw instances, (2) user says 'configure A2A', 'set up A2A gateway', 'connect two OpenClaw servers', 'agent-to-agent communication', (3) adding a new A2A peer to an existing setup. Covers: plugin installation, Agent Card configuration, security tokens, peer registration, network setup (Tailscale/LAN), TOOLS.md template for agent awareness, and end-to-end verification. Platforms: openclaw."} {"id": "cf80e7092dec6c87aad72aea2466be5b77bfa9e0894842a745798647337aeebb", "repo_url": "https://github.com/aaronjmars/soul.md", "name": "soul", "description": "Embody this digital identity. Read SOUL.md first, then STYLE.md, then examples/. Become the person\u2014opinions, voice, worldview.", "source": ["clawhub", "marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-skill", "claude-skills", "openclaw", "soul"], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/aaronjmars/soul.md/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install soul", "claude_code": "/plugin install soul"}, "quality": {"stars": 229, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T17:45:51Z"}, "embedding_text": "soul. Embody this digital identity. Read SOUL.md first, then STYLE.md, then examples/. Become the person\u2014opinions, voice, worldview. Categories: agents, claude-code, claude-code-skill, claude-skills, openclaw, soul. Platforms: claude_code, openclaw."} {"id": "3ceb68b7d009897a13bc612b8369f3acc3cfdc62d0c1876e24cf070c626161da", "repo_url": "https://github.com/jdrhyne/agent-skills", "name": "auto-updater", "description": "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.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jdrhyne/agent-skills/blob/main/clawdbot/auto-updater/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install auto-updater", "claude_code": "/plugin install auto-updater"}, "quality": {"stars": 214, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-14T22:23:13Z"}, "embedding_text": "auto-updater. 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. Platforms: claude_code, openclaw."} @@ -4075,7 +4126,7 @@ {"id": "dcdba18fbe9571a7671e368829612ce4bb56984b4929192f9ce06e14477f5404", "repo_url": "https://github.com/runchuan-bu/bioclaw", "name": "query-stringdb", "description": "Query STRING for protein-protein interactions. Use when user asks about protein interactions, interaction networks, binding partners, or interactome. Triggers on \"string\", \"protein interaction\", \"interaction network\", \"binding partners\", \"interactome\", \"PPI\".", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/Runchuan-BU/BioClaw/blob/main/.claude/skills/query-stringdb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install query-stringdb"}, "quality": {"stars": 207, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T01:19:28Z"}, "embedding_text": "query-stringdb. Query STRING for protein-protein interactions. Use when user asks about protein interactions, interaction networks, binding partners, or interactome. Triggers on \"string\", \"protein interaction\", \"interaction network\", \"binding partners\", \"interactome\", \"PPI\". Platforms: openclaw."} {"id": "629a368c6b56542b24e99489ce3972c3c375b214cf02682d108e5678ab392480", "repo_url": "https://github.com/runchuan-bu/bioclaw", "name": "query-uniprot", "description": "Query UniProt protein database. Use when user asks about protein sequences, functions, annotations, domains, or protein identifiers. Triggers on \"uniprot\", \"protein function\", \"protein sequence\", \"gene product\", \"protein info\".", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/Runchuan-BU/BioClaw/blob/main/.claude/skills/query-uniprot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install query-uniprot"}, "quality": {"stars": 207, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T01:19:28Z"}, "embedding_text": "query-uniprot. Query UniProt protein database. Use when user asks about protein sequences, functions, annotations, domains, or protein identifiers. Triggers on \"uniprot\", \"protein function\", \"protein sequence\", \"gene product\", \"protein info\". Platforms: openclaw."} {"id": "c2fd056e9931ae2134cc69b34676153275cfab75d43a0fc77090739ca40910a3", "repo_url": "https://github.com/runchuan-bu/bioclaw", "name": "sequence-analysis", "description": "Analyze DNA/RNA/protein sequences. Use when the user provides a sequence and asks for analysis, translation, GC content, ORFs, motifs, restriction sites, or primer design. Triggers on \"sequence\", \"translate\", \"GC content\", \"ORF\", \"primer\", \"restriction\", \"complement\", \"reverse complement\".", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/Runchuan-BU/BioClaw/blob/main/.claude/skills/sequence-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install sequence-analysis"}, "quality": {"stars": 207, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T01:19:28Z"}, "embedding_text": "sequence-analysis. Analyze DNA/RNA/protein sequences. Use when the user provides a sequence and asks for analysis, translation, GC content, ORFs, motifs, restriction sites, or primer design. Triggers on \"sequence\", \"translate\", \"GC content\", \"ORF\", \"primer\", \"restriction\", \"complement\", \"reverse complement\". Platforms: openclaw."} -{"id": "87ef81db46793ad78c909fc2f43bcaffbcc96b358bc26cf7a0729a726fadb5cd", "repo_url": "https://github.com/runchuan-bu/bioclaw", "name": "setup", "description": "Run initial BioClaw setup. Use when user wants to install dependencies, authenticate WhatsApp, register their main channel, or start the background services. Triggers on \"setup\", \"install\", \"configure bioclaw\", or first-time setup requests.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/Runchuan-BU/BioClaw/blob/main/.claude/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install setup"}, "quality": {"stars": 207, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T01:19:28Z"}, "embedding_text": "setup. Run initial BioClaw setup. Use when user wants to install dependencies, authenticate WhatsApp, register their main channel, or start the background services. Triggers on \"setup\", \"install\", \"configure bioclaw\", or first-time setup requests. Platforms: openclaw."} +{"id": "87ef81db46793ad78c909fc2f43bcaffbcc96b358bc26cf7a0729a726fadb5cd", "repo_url": "https://github.com/runchuan-bu/bioclaw", "name": "setup", "description": "Run initial BioClaw setup. Use when user wants to install dependencies, authenticate WhatsApp, register their main channel, or start the background services. Triggers on \"setup\", \"install\", \"configure bioclaw\", or first-time setup requests.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/Runchuan-BU/BioClaw/blob/main/.claude/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install setup"}, "quality": {"stars": 389, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T13:59:55Z"}, "embedding_text": "setup. Run initial BioClaw setup. Use when user wants to install dependencies, authenticate WhatsApp, register their main channel, or start the background services. Triggers on \"setup\", \"install\", \"configure bioclaw\", or first-time setup requests. Platforms: claude_code, openclaw."} {"id": "8b461660ab11507a4bb754e53dd9f197ef8f66edcc337208da6005e8bc75730c", "repo_url": "https://github.com/runchuan-bu/bioclaw", "name": "x-integration", "description": "X (Twitter) integration for BioClaw. Post tweets, like, reply, retweet, and quote. Use for setup, testing, or troubleshooting X functionality. Triggers on \"setup x\", \"x integration\", \"twitter\", \"post tweet\", \"tweet\".", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/Runchuan-BU/BioClaw/blob/main/.claude/skills/x-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install x-integration"}, "quality": {"stars": 207, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T01:19:28Z"}, "embedding_text": "x-integration. X (Twitter) integration for BioClaw. Post tweets, like, reply, retweet, and quote. Use for setup, testing, or troubleshooting X functionality. Triggers on \"setup x\", \"x integration\", \"twitter\", \"post tweet\", \"tweet\". Platforms: openclaw."} {"id": "f2d7d1072cadc1d7bf576c58de0674beb9b3fd091a1231621b21b633b19fc7a1", "repo_url": "https://github.com/runchuan-bu/bioclaw", "name": "agent-browser", "description": "Browse the web for any task \u2014 research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/Runchuan-BU/BioClaw/blob/main/container/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install agent-browser"}, "quality": {"stars": 207, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T01:19:28Z"}, "embedding_text": "agent-browser. Browse the web for any task \u2014 research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks. Platforms: openclaw."} {"id": "7286d02ce0d86ec974fa9bd95bf4069536efe51923eb5bd3941fe0fa2f340430", "repo_url": "https://github.com/runchuan-bu/bioclaw", "name": "bio-tools", "description": "Biology research tools reference. Always available inside agent containers.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/Runchuan-BU/BioClaw/blob/main/container/skills/bio-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install bio-tools"}, "quality": {"stars": 207, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T01:19:28Z"}, "embedding_text": "bio-tools. Biology research tools reference. Always available inside agent containers. Platforms: openclaw."} @@ -4090,38 +4141,39 @@ {"id": "6c6fc5f210b24e35279c3e1c9799aaedfe2a9b207e6a696c1edaaa2fdba26ab9", "repo_url": "https://github.com/scouzi1966/maclocal-api", "name": "test-opencode-tooling", "description": "Use when testing tool call reliability between OpenCode and afm \u2014 captures streaming XML tool call errors, classifies them as afm translation bugs vs model generation errors, and produces a diagnostic report without fixing anything", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/scouzi1966/maclocal-api/blob/main/.claude/skills/test-opencode-tooling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install test-opencode-tooling"}, "quality": {"stars": 192, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:39:19Z"}, "embedding_text": "test-opencode-tooling. Use when testing tool call reliability between OpenCode and afm \u2014 captures streaming XML tool call errors, classifies them as afm translation bugs vs model generation errors, and produces a diagnostic report without fixing anything Platforms: openclaw."} {"id": "209ab6879d7d01b24dda7ac544f2f5e2442af8ae1d6f34afbd4699e2b1b1b145", "repo_url": "https://github.com/scouzi1966/maclocal-api", "name": "afm", "description": "Maintain and extend AFM (maclocal-api), a Swift OpenAI-compatible local LLM server and CLI for Apple Foundation Models, MLX models, API gateway proxying, and Vision OCR. Use when working on AFM CLI commands (`afm`, `afm mlx`, `afm vision`), OpenAI `/v1/chat/completions` and `/v1/models` behavior, streaming SSE, tool-calling, structured outputs, reasoning extraction, vendor mlx-swift-lm patch integration, WebUI packaging, or AFM build/test/release scripts.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/scouzi1966/maclocal-api/blob/main/skills/afm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install afm"}, "quality": {"stars": 192, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:39:19Z"}, "embedding_text": "afm. Maintain and extend AFM (maclocal-api), a Swift OpenAI-compatible local LLM server and CLI for Apple Foundation Models, MLX models, API gateway proxying, and Vision OCR. Use when working on AFM CLI commands (`afm`, `afm mlx`, `afm vision`), OpenAI `/v1/chat/completions` and `/v1/models` behavior, streaming SSE, tool-calling, structured outputs, reasoning extraction, vendor mlx-swift-lm patch integration, WebUI packaging, or AFM build/test/release scripts. Platforms: openclaw."} {"id": "9d94d3b5bc7271dbaadc634749d04d867f8efe39918cdefa16fc4f294edc8daf", "repo_url": "https://github.com/daggerhashimoto/openclaw-nerve", "name": "nerve-kanban", "description": "Interact with the Nerve Kanban board API. CRUD tasks, manage workflow (execute, approve, reject, abort), handle proposals, configure the board. All endpoints are under /api/kanban on the Nerve server.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/daggerhashimoto/openclaw-nerve/blob/master/skills/nerve-kanban/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install nerve-kanban"}, "quality": {"stars": 192, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T11:59:07Z"}, "embedding_text": "nerve-kanban. Interact with the Nerve Kanban board API. CRUD tasks, manage workflow (execute, approve, reject, abort), handle proposals, configure the board. All endpoints are under /api/kanban on the Nerve server. Platforms: openclaw."} +{"id": "507e2b98d3252384acf74155a9dde94b4cde06acb71fc58fd4f0b414e72dc8c6", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "app", "description": "Professional web application and API security testing workflows using OWASP Top 10 methodologies.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/backend/app/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install app"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "app. Professional web application and API security testing workflows using OWASP Top 10 methodologies. Platforms: claude_code, openclaw."} {"id": "60bebbba58a19e5ab2401f339536117cb69e5044df91080a3088ed84ee65a1f5", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "brainstorming", "description": "You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/brainstorming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install brainstorming"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "brainstorming. You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation. Platforms: openclaw."} -{"id": "f87e19ba5051afdbe3b5d8c1108008d7ec2b44a95066e264413734a97b785d55", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "executing-plans", "description": "Use when you have a written implementation plan to execute in a separate session with review checkpoints", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/executing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install executing-plans"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "executing-plans. Use when you have a written implementation plan to execute in a separate session with review checkpoints Platforms: openclaw."} -{"id": "b722f980fd222b6fa977269bec3b127e27e9d7d54f688db140ddb8dba41c89a2", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "openclaw-security-checker", "description": "OpenClaw \u5b89\u5168\u68c0\u6d4b\u5de5\u5177\uff0c\u57fa\u4e8e\u5b89\u5168\u5b9e\u8df5\u6307\u5357\u9a8c\u8bc1\u914d\u7f6e\u5b89\u5168\u3001\u6743\u9650\u9694\u79bb\u3001\u7f51\u7edc\u7b56\u7565\u3001\u65e5\u5fd7\u5ba1\u8ba1\u548c\u8fd0\u884c\u65f6\u5b8c\u6574\u6027", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/openclaw-security-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openclaw-security-checker"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "openclaw-security-checker. OpenClaw \u5b89\u5168\u68c0\u6d4b\u5de5\u5177\uff0c\u57fa\u4e8e\u5b89\u5168\u5b9e\u8df5\u6307\u5357\u9a8c\u8bc1\u914d\u7f6e\u5b89\u5168\u3001\u6743\u9650\u9694\u79bb\u3001\u7f51\u7edc\u7b56\u7565\u3001\u65e5\u5fd7\u5ba1\u8ba1\u548c\u8fd0\u884c\u65f6\u5b8c\u6574\u6027 Platforms: openclaw."} -{"id": "41180684e56928b2b652d68b0c13b5953b0bd889d71d0477bc70adeec2585efd", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "openclaw-threat-detect", "description": "OpenClaw \u653b\u51fb\u6a21\u5f0f\u68c0\u6d4b\u5de5\u5177\uff0c\u8bc6\u522b\u6570\u636e\u5916\u4f20\u3001\u53cd\u5f39Shell\u3001\u6587\u4ef6\u6cc4\u9732\u3001Prompt\u6ce8\u5165\u3001\u4f9b\u5e94\u94fe\u6295\u6bd2\u7b49\u9ad8\u5371\u884c\u4e3a\uff0c\u652f\u6301 MITRE ATT&CK \u6620\u5c04", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/openclaw-threat-detect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openclaw-threat-detect"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "openclaw-threat-detect. OpenClaw \u653b\u51fb\u6a21\u5f0f\u68c0\u6d4b\u5de5\u5177\uff0c\u8bc6\u522b\u6570\u636e\u5916\u4f20\u3001\u53cd\u5f39Shell\u3001\u6587\u4ef6\u6cc4\u9732\u3001Prompt\u6ce8\u5165\u3001\u4f9b\u5e94\u94fe\u6295\u6bd2\u7b49\u9ad8\u5371\u884c\u4e3a\uff0c\u652f\u6301 MITRE ATT&CK \u6620\u5c04 Platforms: openclaw."} +{"id": "f87e19ba5051afdbe3b5d8c1108008d7ec2b44a95066e264413734a97b785d55", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "executing-plans", "description": "Use when you have a written implementation plan to execute in a separate session with review checkpoints", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/executing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install executing-plans"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "executing-plans. Use when you have a written implementation plan to execute in a separate session with review checkpoints Platforms: claude_code, openclaw."} +{"id": "b722f980fd222b6fa977269bec3b127e27e9d7d54f688db140ddb8dba41c89a2", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "openclaw-security-checker", "description": "OpenClaw \u5b89\u5168\u68c0\u6d4b\u5de5\u5177\uff0c\u57fa\u4e8e\u5b89\u5168\u5b9e\u8df5\u6307\u5357\u9a8c\u8bc1\u914d\u7f6e\u5b89\u5168\u3001\u6743\u9650\u9694\u79bb\u3001\u7f51\u7edc\u7b56\u7565\u3001\u65e5\u5fd7\u5ba1\u8ba1\u548c\u8fd0\u884c\u65f6\u5b8c\u6574\u6027", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/openclaw-security-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openclaw-security-checker"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "openclaw-security-checker. OpenClaw \u5b89\u5168\u68c0\u6d4b\u5de5\u5177\uff0c\u57fa\u4e8e\u5b89\u5168\u5b9e\u8df5\u6307\u5357\u9a8c\u8bc1\u914d\u7f6e\u5b89\u5168\u3001\u6743\u9650\u9694\u79bb\u3001\u7f51\u7edc\u7b56\u7565\u3001\u65e5\u5fd7\u5ba1\u8ba1\u548c\u8fd0\u884c\u65f6\u5b8c\u6574\u6027 Platforms: claude_code, openclaw."} +{"id": "41180684e56928b2b652d68b0c13b5953b0bd889d71d0477bc70adeec2585efd", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "openclaw-threat-detect", "description": "OpenClaw \u653b\u51fb\u6a21\u5f0f\u68c0\u6d4b\u5de5\u5177\uff0c\u8bc6\u522b\u6570\u636e\u5916\u4f20\u3001\u53cd\u5f39Shell\u3001\u6587\u4ef6\u6cc4\u9732\u3001Prompt\u6ce8\u5165\u3001\u4f9b\u5e94\u94fe\u6295\u6bd2\u7b49\u9ad8\u5371\u884c\u4e3a\uff0c\u652f\u6301 MITRE ATT&CK \u6620\u5c04", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/openclaw-threat-detect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install openclaw-threat-detect"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "openclaw-threat-detect. OpenClaw \u653b\u51fb\u6a21\u5f0f\u68c0\u6d4b\u5de5\u5177\uff0c\u8bc6\u522b\u6570\u636e\u5916\u4f20\u3001\u53cd\u5f39Shell\u3001\u6587\u4ef6\u6cc4\u9732\u3001Prompt\u6ce8\u5165\u3001\u4f9b\u5e94\u94fe\u6295\u6bd2\u7b49\u9ad8\u5371\u884c\u4e3a\uff0c\u652f\u6301 MITRE ATT&CK \u6620\u5c04 Platforms: claude_code, openclaw."} {"id": "05f31a891b9031498b403cfb7b849b6d894b108b6a8c43481bee10a6a64a4702", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pdf", "description": "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.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pdf"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pdf. 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. Platforms: openclaw."} -{"id": "8fd627b0f3720ea3b8a93e72c30696c9b25afa5a5837f4ad234e50a2b242b9ae", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-ai-llm-security", "description": "AI/LLM application security testing \u2014 prompt injection, jailbreaking, data exfiltration, and insecure output handling per OWASP LLM Top 10.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-ai-llm-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-ai-llm-security"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-ai-llm-security. AI/LLM application security testing \u2014 prompt injection, jailbreaking, data exfiltration, and insecure output handling per OWASP LLM Top 10. Platforms: openclaw."} -{"id": "c49fec33df0e57bf920007a50f483cd46cfaff08e62d79f292fc467ed3362dde", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-api-deep", "description": "Deep OWASP API Security Top 10 testing for REST, GraphQL, gRPC, and WebSocket APIs \u2014 BFLA, mass assignment, rate limiting, and unsafe consumption.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-api-deep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-api-deep"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-api-deep. Deep OWASP API Security Top 10 testing for REST, GraphQL, gRPC, and WebSocket APIs \u2014 BFLA, mass assignment, rate limiting, and unsafe consumption. Platforms: openclaw."} -{"id": "af5618b5247dbfd252810ae023a454eae7e3c1e4beae436360e2642ddc096e07", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-business-logic", "description": "Business logic vulnerability testing \u2014 workflow bypass, payment manipulation, state machine abuse, and function limit circumvention per WSTG-BUSL.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-business-logic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-business-logic"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-business-logic. Business logic vulnerability testing \u2014 workflow bypass, payment manipulation, state machine abuse, and function limit circumvention per WSTG-BUSL. Platforms: openclaw."} +{"id": "8fd627b0f3720ea3b8a93e72c30696c9b25afa5a5837f4ad234e50a2b242b9ae", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-ai-llm-security", "description": "AI/LLM application security testing \u2014 prompt injection, jailbreaking, data exfiltration, and insecure output handling per OWASP LLM Top 10.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-ai-llm-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-ai-llm-security"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-ai-llm-security. AI/LLM application security testing \u2014 prompt injection, jailbreaking, data exfiltration, and insecure output handling per OWASP LLM Top 10. Platforms: claude_code, openclaw."} +{"id": "c49fec33df0e57bf920007a50f483cd46cfaff08e62d79f292fc467ed3362dde", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-api-deep", "description": "Deep OWASP API Security Top 10 testing for REST, GraphQL, gRPC, and WebSocket APIs \u2014 BFLA, mass assignment, rate limiting, and unsafe consumption.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-api-deep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-api-deep"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-api-deep. Deep OWASP API Security Top 10 testing for REST, GraphQL, gRPC, and WebSocket APIs \u2014 BFLA, mass assignment, rate limiting, and unsafe consumption. Platforms: claude_code, openclaw."} +{"id": "af5618b5247dbfd252810ae023a454eae7e3c1e4beae436360e2642ddc096e07", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-business-logic", "description": "Business logic vulnerability testing \u2014 workflow bypass, payment manipulation, state machine abuse, and function limit circumvention per WSTG-BUSL.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-business-logic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-business-logic"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-business-logic. Business logic vulnerability testing \u2014 workflow bypass, payment manipulation, state machine abuse, and function limit circumvention per WSTG-BUSL. Platforms: claude_code, openclaw."} {"id": "d9cb6512775638a19676c54cb16ac6a8698d4114d81271d2ababd16d4a2cf6e9", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-client-advanced", "description": "Advanced client-side attacks \u2014 CORS misconfiguration, WebSocket security, clickjacking, postMessage abuse, CSS injection, and browser storage vulnerabilities.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-client-advanced/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-client-advanced"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-client-advanced. Advanced client-side attacks \u2014 CORS misconfiguration, WebSocket security, clickjacking, postMessage abuse, CSS injection, and browser storage vulnerabilities. Platforms: openclaw."} {"id": "478b163a4911ebf7c1d8279042c11c676b07615dc075adb3612eda7b41d44bc5", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-cloud-infrastructure", "description": "Cloud security posture management and container security assessment for AWS, Azure, GCP, and Kubernetes.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-cloud-infrastructure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-cloud-infrastructure"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-cloud-infrastructure. Cloud security posture management and container security assessment for AWS, Azure, GCP, and Kubernetes. Platforms: openclaw."} {"id": "46c203f2b33aa6cd570b541f56a1c970a6ebdcc8d9f6717b2027a8c4d429fe93", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-config-hardening", "description": "Security header auditing, TLS configuration testing, HTTP method analysis, CSP bypass assessment, and deployment hardening verification.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-config-hardening/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-config-hardening"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-config-hardening. Security header auditing, TLS configuration testing, HTTP method analysis, CSP bypass assessment, and deployment hardening verification. Platforms: openclaw."} -{"id": "ca8565cd3722c571c283e5df932e92d8520e43b5090889cb737843622e2cfe27", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-ctf-binary", "description": "Binary exploitation (Pwn) and reverse engineering tools for CTF challenges and software analysis.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-ctf-binary/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-ctf-binary"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-ctf-binary. Binary exploitation (Pwn) and reverse engineering tools for CTF challenges and software analysis. Platforms: openclaw."} -{"id": "2d5b44db8b0e10b20deff76e8e3081a10a868a3d2c3984d9e11cbc2b0e339428", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-ctf-crypto", "description": "Cryptography tools for solving CTF challenges involving ciphers, hashing, and weak encryption.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-ctf-crypto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-ctf-crypto"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-ctf-crypto. Cryptography tools for solving CTF challenges involving ciphers, hashing, and weak encryption. Platforms: openclaw."} -{"id": "4570312b5fccf1c09ba2e27c7592dd93df6f4a5d2d9f4fdf77000b42490578c4", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-ctf-forensics", "description": "Digital forensics, steganography, and packet analysis for CTF challenges and investigation.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-ctf-forensics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-ctf-forensics"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-ctf-forensics. Digital forensics, steganography, and packet analysis for CTF challenges and investigation. Platforms: openclaw."} +{"id": "ca8565cd3722c571c283e5df932e92d8520e43b5090889cb737843622e2cfe27", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-ctf-binary", "description": "Binary exploitation (Pwn) and reverse engineering tools for CTF challenges and software analysis.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-ctf-binary/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-ctf-binary"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-ctf-binary. Binary exploitation (Pwn) and reverse engineering tools for CTF challenges and software analysis. Platforms: claude_code, openclaw."} +{"id": "2d5b44db8b0e10b20deff76e8e3081a10a868a3d2c3984d9e11cbc2b0e339428", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-ctf-crypto", "description": "Cryptography tools for solving CTF challenges involving ciphers, hashing, and weak encryption.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-ctf-crypto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-ctf-crypto"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-ctf-crypto. Cryptography tools for solving CTF challenges involving ciphers, hashing, and weak encryption. Platforms: claude_code, openclaw."} +{"id": "4570312b5fccf1c09ba2e27c7592dd93df6f4a5d2d9f4fdf77000b42490578c4", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-ctf-forensics", "description": "Digital forensics, steganography, and packet analysis for CTF challenges and investigation.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-ctf-forensics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-ctf-forensics"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-ctf-forensics. Digital forensics, steganography, and packet analysis for CTF challenges and investigation. Platforms: claude_code, openclaw."} {"id": "ac7640657d437ca90ea21a65ec42ca12e4767b8c967ca490e709660e960ed832", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "seclens-enterprise-web", "description": "Professional web application and API security testing workflows using OWASP Top 10 methodologies.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-enterprise-web/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install seclens-enterprise-web"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "seclens-enterprise-web. Professional web application and API security testing workflows using OWASP Top 10 methodologies. Platforms: openclaw."} {"id": "773b4e9af4d1653d5ca905137767865ec741b5fcb23802c78c93a22450ea4916", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-exploit-validation", "description": "Proof-driven exploitation with 4-level evidence system, bypass exhaustion protocol, mandatory evidence checklists, and strict EXPLOITED/POTENTIAL/FALSE_POSITIVE classification.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-exploit-validation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-exploit-validation"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-exploit-validation. Proof-driven exploitation with 4-level evidence system, bypass exhaustion protocol, mandatory evidence checklists, and strict EXPLOITED/POTENTIAL/FALSE_POSITIVE classification. Platforms: openclaw."} {"id": "d371c33dd9bc9b0058ad5b405c052c3aa0f2e3d1d6bb6032dec56f3c9834b757", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-http-smuggling", "description": "HTTP request smuggling, desync attacks, cache poisoning, and protocol-level vulnerability testing.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-http-smuggling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-http-smuggling"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-http-smuggling. HTTP request smuggling, desync attacks, cache poisoning, and protocol-level vulnerability testing. Platforms: openclaw."} {"id": "1306a6ce917071b7ee91c0e3686028852bb1a02187e120bac1ba61e654216039", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-mobile-app", "description": "OWASP Mobile Top 10 security testing for Android and iOS \u2014 local storage, certificate pinning bypass, IPC abuse, and binary protections.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-mobile-app/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-mobile-app"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-mobile-app. OWASP Mobile Top 10 security testing for Android and iOS \u2014 local storage, certificate pinning bypass, IPC abuse, and binary protections. Platforms: openclaw."} {"id": "ee84f61f5a10b89338f14c827e6e96582680cc4fdc0e396d39ba07d5dc5f24f5", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-network-internal", "description": "Internal network penetration testing, Active Directory enumeration, and lateral movement simulation.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-network-internal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-network-internal"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-network-internal. Internal network penetration testing, Active Directory enumeration, and lateral movement simulation. Platforms: openclaw."} -{"id": "ecc45dcb44b8722452fbb76fdc960455ffb3e0639fef213615006739ee2eaee4", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-osint-recon", "description": "Open Source Intelligence gathering and attack surface management for external reconnaissance.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-osint-recon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-osint-recon"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-osint-recon. Open Source Intelligence gathering and attack surface management for external reconnaissance. Platforms: openclaw."} -{"id": "62bcae1bbe1f5e79779eb0a69dd4c7d7622a2ecd10cc41278f76e8221db0cb2e", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-race-conditions", "description": "Concurrency exploitation \u2014 race conditions, TOCTOU vulnerabilities, and parallel request abuse in web applications.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-race-conditions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-race-conditions"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-race-conditions. Concurrency exploitation \u2014 race conditions, TOCTOU vulnerabilities, and parallel request abuse in web applications. Platforms: openclaw."} -{"id": "5ff8a85d1f2dfc1dc45d672a1d83cb9c88ea2185844943326090a930f7a83fa2", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-recon-attack-surface", "description": "White-box attack surface mapping \u2014 correlate external scans, browser exploration, and source code into structured endpoint inventory, role architecture, and authorization vulnerability candidates.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-recon-attack-surface/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-recon-attack-surface"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-recon-attack-surface. White-box attack surface mapping \u2014 correlate external scans, browser exploration, and source code into structured endpoint inventory, role architecture, and authorization vulnerability candidates. Platforms: openclaw."} -{"id": "32d8c71037d6070487e37649b2d64abba4d343d7e7c068451a57e6a2cb0ab136", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-secrets-exposure", "description": "Discover hardcoded credentials, leaked API keys, exposed configuration files, sensitive data in artifacts, and information disclosure via error handling.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-secrets-exposure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-secrets-exposure"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-secrets-exposure. Discover hardcoded credentials, leaked API keys, exposed configuration files, sensitive data in artifacts, and information disclosure via error handling. Platforms: openclaw."} -{"id": "70899547e00763f3acc8838732e9cb209b321db08478e0eef4e2ce50c44b24db", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-supply-chain", "description": "Software supply chain security \u2014 dependency confusion, CI/CD pipeline attacks, lockfile integrity, and build artifact verification.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-supply-chain/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-supply-chain"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-supply-chain. Software supply chain security \u2014 dependency confusion, CI/CD pipeline attacks, lockfile integrity, and build artifact verification. Platforms: openclaw."} +{"id": "ecc45dcb44b8722452fbb76fdc960455ffb3e0639fef213615006739ee2eaee4", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-osint-recon", "description": "Open Source Intelligence gathering and attack surface management for external reconnaissance.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-osint-recon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-osint-recon"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-osint-recon. Open Source Intelligence gathering and attack surface management for external reconnaissance. Platforms: claude_code, openclaw."} +{"id": "62bcae1bbe1f5e79779eb0a69dd4c7d7622a2ecd10cc41278f76e8221db0cb2e", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-race-conditions", "description": "Concurrency exploitation \u2014 race conditions, TOCTOU vulnerabilities, and parallel request abuse in web applications.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-race-conditions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-race-conditions"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-race-conditions. Concurrency exploitation \u2014 race conditions, TOCTOU vulnerabilities, and parallel request abuse in web applications. Platforms: claude_code, openclaw."} +{"id": "5ff8a85d1f2dfc1dc45d672a1d83cb9c88ea2185844943326090a930f7a83fa2", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-recon-attack-surface", "description": "White-box attack surface mapping \u2014 correlate external scans, browser exploration, and source code into structured endpoint inventory, role architecture, and authorization vulnerability candidates.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-recon-attack-surface/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-recon-attack-surface"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-recon-attack-surface. White-box attack surface mapping \u2014 correlate external scans, browser exploration, and source code into structured endpoint inventory, role architecture, and authorization vulnerability candidates. Platforms: claude_code, openclaw."} +{"id": "32d8c71037d6070487e37649b2d64abba4d343d7e7c068451a57e6a2cb0ab136", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-secrets-exposure", "description": "Discover hardcoded credentials, leaked API keys, exposed configuration files, sensitive data in artifacts, and information disclosure via error handling.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-secrets-exposure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-secrets-exposure"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-secrets-exposure. Discover hardcoded credentials, leaked API keys, exposed configuration files, sensitive data in artifacts, and information disclosure via error handling. Platforms: claude_code, openclaw."} +{"id": "70899547e00763f3acc8838732e9cb209b321db08478e0eef4e2ce50c44b24db", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-supply-chain", "description": "Software supply chain security \u2014 dependency confusion, CI/CD pipeline attacks, lockfile integrity, and build artifact verification.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-supply-chain/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-supply-chain"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pentest-supply-chain. Software supply chain security \u2014 dependency confusion, CI/CD pipeline attacks, lockfile integrity, and build artifact verification. Platforms: claude_code, openclaw."} {"id": "448fd963ab2c9163a6bbd0753dfacb70c2346d677aebac6cb16231bc2451416c", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-vuln-verify-test", "description": "\u901a\u8fc7\u539f\u59cb HTTP \u8bf7\u6c42\u64cd\u4f5c\u548c\u4e25\u683c\u9a8c\u8bc1\u81ea\u52a8\u9a8c\u8bc1 Web \u6f0f\u6d1e\uff08\u5f00\u653e\u91cd\u5b9a\u5411\u3001XSS\uff09\u3002", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-vuln-verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-vuln-verify-test"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-vuln-verify-test. \u901a\u8fc7\u539f\u59cb HTTP \u8bf7\u6c42\u64cd\u4f5c\u548c\u4e25\u683c\u9a8c\u8bc1\u81ea\u52a8\u9a8c\u8bc1 Web \u6f0f\u6d1e\uff08\u5f00\u653e\u91cd\u5b9a\u5411\u3001XSS\uff09\u3002 Platforms: openclaw."} {"id": "a348cfe39127e18508a5487c4c29a6f92db582225aa6c65776fce5caa8c35010", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pentest-whitebox-code-review", "description": "Source code security audit using backward taint analysis, slot type classification, render context verification, and 3-phase parallel review producing an exploitation queue.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pentest-whitebox-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pentest-whitebox-code-review"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pentest-whitebox-code-review. Source code security audit using backward taint analysis, slot type classification, render context verification, and 3-phase parallel review producing an exploitation queue. Platforms: openclaw."} {"id": "d140b698b566afc663af4d117978b9870bee7d374a7697550d457553de4b5cb0", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "planning-with-files", "description": "Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls. Now with automatic session recovery after /clear.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/planning-with-files/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install planning-with-files"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "planning-with-files. Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls. Now with automatic session recovery after /clear. Platforms: openclaw."} -{"id": "3ad64984b60f78bf4c4f5b8e0f5d937b819280c89750b3056e922357d3800d60", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pptx"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks Platforms: openclaw."} -{"id": "1c799258ff4ccf1306b1eb323a9e35a8cf62489155026b150ae99ac855578ce5", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "skill-creator", "description": "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.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install skill-creator"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "skill-creator. 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. Platforms: openclaw."} -{"id": "89df6ea9dba72917cf5841384aae5a1031248a2433ca72938a4e27d224967641", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "skill-security-auditor", "description": "OpenClaw Skills \u5168\u65b9\u4f4d\u5b89\u5168\u5ba1\u8ba1\u5de5\u5177\uff0c\u68c0\u6d4b\u4f9b\u5e94\u94fe\u6295\u6bd2\u3001Prompt\u6ce8\u5165\u3001\u6076\u610f\u4ee3\u7801\u6a21\u5f0f\u3001\u6743\u9650\u8d8a\u6743\u548c\u4f9d\u8d56\u98ce\u9669", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/skill-security-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install skill-security-auditor"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "skill-security-auditor. OpenClaw Skills \u5168\u65b9\u4f4d\u5b89\u5168\u5ba1\u8ba1\u5de5\u5177\uff0c\u68c0\u6d4b\u4f9b\u5e94\u94fe\u6295\u6bd2\u3001Prompt\u6ce8\u5165\u3001\u6076\u610f\u4ee3\u7801\u6a21\u5f0f\u3001\u6743\u9650\u8d8a\u6743\u548c\u4f9d\u8d56\u98ce\u9669 Platforms: openclaw."} -{"id": "ccdc1ac6dca9d0157275690bc71b29bd044bf4e4cfe6b87714d365bc3f6c169d", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "writing-plans", "description": "Use when you have a spec or requirements for a multi-step task, before touching code", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/writing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install writing-plans"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "writing-plans. Use when you have a spec or requirements for a multi-step task, before touching code Platforms: openclaw."} -{"id": "31e93daeb02ce12b940c8a70bd57f01e23513aaec33affb7b5efc8d5e3e202cc", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install xlsx"}, "quality": {"stars": 184, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:20:31Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas Platforms: openclaw."} +{"id": "3ad64984b60f78bf4c4f5b8e0f5d937b819280c89750b3056e922357d3800d60", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pptx"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks Platforms: claude_code, openclaw."} +{"id": "1c799258ff4ccf1306b1eb323a9e35a8cf62489155026b150ae99ac855578ce5", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "skill-creator", "description": "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.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install skill-creator"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "skill-creator. 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. Platforms: claude_code, openclaw."} +{"id": "89df6ea9dba72917cf5841384aae5a1031248a2433ca72938a4e27d224967641", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "skill-security-auditor", "description": "OpenClaw Skills \u5168\u65b9\u4f4d\u5b89\u5168\u5ba1\u8ba1\u5de5\u5177\uff0c\u68c0\u6d4b\u4f9b\u5e94\u94fe\u6295\u6bd2\u3001Prompt\u6ce8\u5165\u3001\u6076\u610f\u4ee3\u7801\u6a21\u5f0f\u3001\u6743\u9650\u8d8a\u6743\u548c\u4f9d\u8d56\u98ce\u9669", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/skill-security-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install skill-security-auditor"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "skill-security-auditor. OpenClaw Skills \u5168\u65b9\u4f4d\u5b89\u5168\u5ba1\u8ba1\u5de5\u5177\uff0c\u68c0\u6d4b\u4f9b\u5e94\u94fe\u6295\u6bd2\u3001Prompt\u6ce8\u5165\u3001\u6076\u610f\u4ee3\u7801\u6a21\u5f0f\u3001\u6743\u9650\u8d8a\u6743\u548c\u4f9d\u8d56\u98ce\u9669 Platforms: claude_code, openclaw."} +{"id": "ccdc1ac6dca9d0157275690bc71b29bd044bf4e4cfe6b87714d365bc3f6c169d", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "writing-plans", "description": "Use when you have a spec or requirements for a multi-step task, before touching code", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/writing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install writing-plans"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "writing-plans. Use when you have a spec or requirements for a multi-step task, before touching code Platforms: claude_code, openclaw."} +{"id": "31e93daeb02ce12b940c8a70bd57f01e23513aaec33affb7b5efc8d5e3e202cc", "repo_url": "https://github.com/jd-opensource/joysafeter", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/jd-opensource/JoySafeter/blob/main/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install xlsx"}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T04:45:38Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas Platforms: claude_code, openclaw."} {"id": "800134149334a5c6cde2077045aaec1162b71030ce74fdbd0bbd349e3ffb72b3", "repo_url": "https://github.com/clacky-ai/openclacky", "name": "gem-release", "description": "Automates the complete process of releasing a new version of the openclacky Ruby gem", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/clacky-ai/openclacky/blob/main/.clacky/skills/gem-release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install gem-release", "claude_code": "/plugin install gem-release"}, "quality": {"stars": 181, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:03:19Z"}, "embedding_text": "gem-release. Automates the complete process of releasing a new version of the openclacky Ruby gem Platforms: claude_code, openclaw."} {"id": "a80d90e44f4bdad26f002438d34dab5f70961b0b7859fc5634caa98aaf2be032", "repo_url": "https://github.com/clacky-ai/openclacky", "name": "activate-license", "description": "Guide the user through activating their brand license key interactively.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/clacky-ai/openclacky/blob/main/lib/clacky/default_skills/activate-license/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install activate-license"}, "quality": {"stars": 181, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T17:22:47Z"}, "embedding_text": "activate-license. Guide the user through activating their brand license key interactively. Platforms: openclaw."} {"id": "08c7e67021ac0c0184c083668d64598ac9c7785107015fe26d0a1d1d2e558350", "repo_url": "https://github.com/clacky-ai/openclacky", "name": "channel-setup", "description": "Configure IM platform channels (Feishu, WeCom) for open-clacky.\nUses browser automation for navigation; guides the user to paste credentials and perform UI steps.\nTrigger on: \"channel setup\", \"setup feishu\", \"setup wecom\", \"channel config\",\n\"channel status\", \"channel enable\", \"channel disable\", \"channel reconfigure\", \"channel doctor\".\nSubcommands: setup, status, enable , disable , reconfigure, doctor.\n", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/clacky-ai/openclacky/blob/main/lib/clacky/default_skills/channel-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install channel-setup", "claude_code": "/plugin install channel-setup"}, "quality": {"stars": 181, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:03:19Z"}, "embedding_text": "channel-setup. Configure IM platform channels (Feishu, WeCom) for open-clacky.\nUses browser automation for navigation; guides the user to paste credentials and perform UI steps.\nTrigger on: \"channel setup\", \"setup feishu\", \"setup wecom\", \"channel config\",\n\"channel status\", \"channel enable\", \"channel disable\", \"channel reconfigure\", \"channel doctor\".\nSubcommands: setup, status, enable , disable , reconfigure, doctor.\n Platforms: claude_code, openclaw."} @@ -4217,7 +4269,7 @@ {"id": "ab6ac9dc6813e0bfc82dde99ded6cc2980e5b657bb7b027aea3715813c9b2180", "repo_url": "https://github.com/open-gitagent/gitclaw", "name": "example-skill", "description": "Example skill that demonstrates the gitclaw skills system. Use this to test skill loading and script execution.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/open-gitagent/gitclaw/blob/main/skills/example-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install example-skill"}, "quality": {"stars": 145, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:05:48Z"}, "embedding_text": "example-skill. Example skill that demonstrates the gitclaw skills system. Use this to test skill loading and script execution. Platforms: openclaw."} {"id": "5283a7c8384aac978d0a6cb4d858ad9c704349eb33c00a22bbf480e88f3561f4", "repo_url": "https://github.com/swarmclawai/swarmclaw", "name": "google-workspace", "description": "Use Google Workspace CLI (`gws`) for Drive, Docs, Sheets, Gmail, Calendar, Chat, and related Workspace API tasks.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/swarmclawai/swarmclaw/blob/main/bundled-skills/google-workspace/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install google-workspace", "claude_code": "/plugin install google-workspace"}, "quality": {"stars": 147, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T01:20:21Z"}, "embedding_text": "google-workspace. Use Google Workspace CLI (`gws`) for Drive, Docs, Sheets, Gmail, Calendar, Chat, and related Workspace API tasks. Platforms: claude_code, openclaw."} {"id": "b636ef85fd8765e6888999af81fba99527196c5a803f2ccfafd6430a5e41f73a", "repo_url": "https://github.com/swarmclawai/swarmclaw", "name": "swarmclaw", "description": "Manage your SwarmClaw agent fleet, create and assign tasks, check agent and session status, trigger workflows, and orchestrate multi-agent work from chat. Use when asked to dispatch work to other agents, check what agents are doing, run diagnostics, or coordinate across a SwarmClaw dashboard instance.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/swarmclawai/swarmclaw/blob/main/swarmclaw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install swarmclaw", "claude_code": "/plugin install swarmclaw"}, "quality": {"stars": 147, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T01:20:21Z"}, "embedding_text": "swarmclaw. Manage your SwarmClaw agent fleet, create and assign tasks, check agent and session status, trigger workflows, and orchestrate multi-agent work from chat. Use when asked to dispatch work to other agents, check what agents are doing, run diagnostics, or coordinate across a SwarmClaw dashboard instance. Platforms: claude_code, openclaw."} -{"id": "d9dc8e1800c54715c3fbf3c187b0d30dc671aa15d4d4860d617ce4feacfc2a3b", "repo_url": "https://github.com/hashgraph-online/registry-broker-skills", "name": "registry-broker", "description": "Search and chat with AI agents across the Universal Agentic Registry via the Hashgraph Online Registry Broker API. Use when discovering agents, starting conversations, finding incoming messages, or registering new agents.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/hashgraph-online/registry-broker-skills/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install registry-broker"}, "quality": {"stars": 140, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T17:35:32Z"}, "embedding_text": "registry-broker. Search and chat with AI agents across the Universal Agentic Registry via the Hashgraph Online Registry Broker API. Use when discovering agents, starting conversations, finding incoming messages, or registering new agents. Platforms: openclaw."} +{"id": "d9dc8e1800c54715c3fbf3c187b0d30dc671aa15d4d4860d617ce4feacfc2a3b", "repo_url": "https://github.com/hashgraph-online/registry-broker-skills", "name": "registry-broker", "description": "Search and chat with AI agents across the Universal Agentic Registry via the Hashgraph Online Registry Broker API. Use when discovering agents, starting conversations, finding incoming messages, or registering new agents.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/hashgraph-online/registry-broker-skills/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install registry-broker"}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T17:51:25Z"}, "embedding_text": "registry-broker. Search and chat with AI agents across the Universal Agentic Registry via the Hashgraph Online Registry Broker API. Use when discovering agents, starting conversations, finding incoming messages, or registering new agents. Platforms: claude_code, openclaw."} {"id": "4c63f5a18a087ee69660e7a966c4821dd09c5952e7a6bfddc3dd5d2cdee22ab4", "repo_url": "https://github.com/avast/sage", "name": "security-awareness", "description": "Security best practices for safe command execution, URL handling, credential management, and supply chain safety. Guidance on avoiding common attack vectors like reverse shells, command injection, and malware distribution.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/avast/sage/blob/main/skills/security-awareness/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install security-awareness"}, "quality": {"stars": 133, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:22:58Z"}, "embedding_text": "security-awareness. Security best practices for safe command execution, URL handling, credential management, and supply chain safety. Guidance on avoiding common attack vectors like reverse shells, command injection, and malware distribution. Platforms: openclaw."} {"id": "0a8f81b07d1d72a543974a69cf9a13e530fb87e728f30c92f5da3122bb500491", "repo_url": "https://github.com/essamamdani/openclaw-coolify", "name": "sandbox-manager", "description": "Create and manage isolated application sandboxes (Next.js, Python, PHP, etc.) with public URLs via Cloudflare.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/essamamdani/openclaw-coolify/blob/main/skills/sandbox-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install sandbox-manager"}, "quality": {"stars": 130, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:47Z"}, "embedding_text": "sandbox-manager. Create and manage isolated application sandboxes (Next.js, Python, PHP, etc.) with public URLs via Cloudflare. Platforms: openclaw."} {"id": "aec986cb1fe6087da457cf8db7c96a6a157ce3c40fdf611b14b989b2e4822c2e", "repo_url": "https://github.com/wardgate/wardgate", "name": "create-preset", "description": "Create Wardgate preset YAML files for APIs. Use when the user asks to add a new preset, create a preset for an API, or add support for a new service to Wardgate.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/wardgate/wardgate/blob/main/skills/create-preset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install create-preset"}, "quality": {"stars": 111, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T14:57:55Z"}, "embedding_text": "create-preset. Create Wardgate preset YAML files for APIs. Use when the user asks to add a new preset, create a preset for an API, or add support for a new service to Wardgate. Platforms: openclaw."} @@ -4255,45 +4307,45 @@ {"id": "f6cd48422e024f351f359ee836a04522a764f009d5b34dfde8d2d285177eb441", "repo_url": "https://github.com/dvlin-dev/moryflow", "name": "web-artifacts-builder", "description": "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.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/dvlin-dev/moryflow/blob/main/apps/moryflow/pc/src/main/skills/builtin/web-artifacts-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install web-artifacts-builder"}, "quality": {"stars": 101, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T13:10:32Z"}, "embedding_text": "web-artifacts-builder. 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. Platforms: openclaw."} {"id": "08c1c83f9ceb9c16c1a11b7bb683e1c7d283c9c1740c7ff2b13697b005d19f10", "repo_url": "https://github.com/dvlin-dev/moryflow", "name": "xlsx", "description": "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 \u2014 even casually (like \"the xlsx in my downloads\") \u2014 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.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/dvlin-dev/moryflow/blob/main/apps/moryflow/pc/src/main/skills/builtin/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install xlsx"}, "quality": {"stars": 101, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T13:10:32Z"}, "embedding_text": "xlsx. 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 \u2014 even casually (like \"the xlsx in my downloads\") \u2014 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. Platforms: openclaw."} {"id": "5843dbaa237511cec4e79cc07e0f871fa33fa13bd28566d82aef7d1942c08a51", "repo_url": "https://github.com/lstm-kirigaya/openclaw-onebot", "name": "onebot-ops", "description": "OneBot (QQ/Lagrange) \u6e20\u9053\u8fd0\u7ef4\u4e0e\u4f7f\u7528\u89c4\u8303\u3002\u6d88\u606f\u6536\u53d1\u901a\u8fc7 Channel outbound \u4e0e deliver \u5b8c\u6210\uff0c\u4e0d\u4f9d\u8d56 Agent \u5de5\u5177\u3002", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/LSTM-Kirigaya/openclaw-onebot/blob/main/skills/onebot-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install onebot-ops"}, "quality": {"stars": 96, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T17:18:41Z"}, "embedding_text": "onebot-ops. OneBot (QQ/Lagrange) \u6e20\u9053\u8fd0\u7ef4\u4e0e\u4f7f\u7528\u89c4\u8303\u3002\u6d88\u606f\u6536\u53d1\u901a\u8fc7 Channel outbound \u4e0e deliver \u5b8c\u6210\uff0c\u4e0d\u4f9d\u8d56 Agent \u5de5\u5177\u3002 Platforms: openclaw."} -{"id": "274b410c05f4c1a218184d37960847c6965b5fafb0bcfa60532f27aeaf4f5581", "repo_url": "https://github.com/besoeasy/open-skills", "name": "age-file-encryption", "description": "Encrypt and decrypt files or streams using age \u2014 a simple, modern, and secure encryption tool with small explicit keys, passphrase support, SSH key support, post-quantum hybrid keys, and UNIX-style composability. No config options, no footguns.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/age-file-encryption/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install age-file-encryption"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "age-file-encryption. Encrypt and decrypt files or streams using age \u2014 a simple, modern, and secure encryption tool with small explicit keys, passphrase support, SSH key support, post-quantum hybrid keys, and UNIX-style composability. No config options, no footguns. Platforms: openclaw."} +{"id": "274b410c05f4c1a218184d37960847c6965b5fafb0bcfa60532f27aeaf4f5581", "repo_url": "https://github.com/besoeasy/open-skills", "name": "age-file-encryption", "description": "Encrypt and decrypt files or streams using age \u2014 a simple, modern, and secure encryption tool with small explicit keys, passphrase support, SSH key support, post-quantum hybrid keys, and UNIX-style composability. No config options, no footguns.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/age-file-encryption/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install age-file-encryption"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "age-file-encryption. Encrypt and decrypt files or streams using age \u2014 a simple, modern, and secure encryption tool with small explicit keys, passphrase support, SSH key support, post-quantum hybrid keys, and UNIX-style composability. No config options, no footguns. Platforms: claude_code, openclaw."} {"id": "3fd0e09600a5f78d458026e6f3d0b2f37543523818183895c3ffdfe878469594", "repo_url": "https://github.com/besoeasy/open-skills", "name": "anonymous-file-upload", "description": "Upload and host files anonymously using decentralized storage with Originless and IPFS.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/anonymous-file-upload/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install anonymous-file-upload"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "anonymous-file-upload. Upload and host files anonymously using decentralized storage with Originless and IPFS. Platforms: openclaw."} -{"id": "5639f537c6caa400cba45b2be3acd7e8b1fa01891b70d43c44ed6740d608af00", "repo_url": "https://github.com/besoeasy/open-skills", "name": "browser-automation-agent", "description": "Automate web browsers for AI agents using agent-browser CLI with deterministic element selection.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/browser-automation-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install browser-automation-agent"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "browser-automation-agent. Automate web browsers for AI agents using agent-browser CLI with deterministic element selection. Platforms: openclaw."} -{"id": "dcc1db504e5a5740c469c371e1d56532258c1c3841e16083f6c7a46bd1d7bbfd", "repo_url": "https://github.com/besoeasy/open-skills", "name": "bulk-github-star", "description": "Star all repositories from a GitHub user automatically. Use when: (1) Supporting open source creators, (2) Bulk discovery of useful projects, or (3) Automating GitHub engagement.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/bulk-github-star/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install bulk-github-star"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "bulk-github-star. Star all repositories from a GitHub user automatically. Use when: (1) Supporting open source creators, (2) Bulk discovery of useful projects, or (3) Automating GitHub engagement. Platforms: openclaw."} +{"id": "5639f537c6caa400cba45b2be3acd7e8b1fa01891b70d43c44ed6740d608af00", "repo_url": "https://github.com/besoeasy/open-skills", "name": "browser-automation-agent", "description": "Automate web browsers for AI agents using agent-browser CLI with deterministic element selection.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/browser-automation-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install browser-automation-agent"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "browser-automation-agent. Automate web browsers for AI agents using agent-browser CLI with deterministic element selection. Platforms: claude_code, openclaw."} +{"id": "dcc1db504e5a5740c469c371e1d56532258c1c3841e16083f6c7a46bd1d7bbfd", "repo_url": "https://github.com/besoeasy/open-skills", "name": "bulk-github-star", "description": "Star all repositories from a GitHub user automatically. Use when: (1) Supporting open source creators, (2) Bulk discovery of useful projects, or (3) Automating GitHub engagement.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/bulk-github-star/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install bulk-github-star"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "bulk-github-star. Star all repositories from a GitHub user automatically. Use when: (1) Supporting open source creators, (2) Bulk discovery of useful projects, or (3) Automating GitHub engagement. Platforms: claude_code, openclaw."} {"id": "ac226c49b7d35783c5a1fee96d1075a672467bdf6a9370940731e4b9ab78d0df", "repo_url": "https://github.com/besoeasy/open-skills", "name": "changelog-generator", "description": "Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/changelog-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install changelog-generator"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "changelog-generator. Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation. Platforms: openclaw."} -{"id": "1e2c0baed1907f64a3f97987b31b9bea01b2486498181cf21dd42ab91dc0c408", "repo_url": "https://github.com/besoeasy/open-skills", "name": "chat-logger", "description": "Log all chat messages to a SQLite database for searchable history and audit. Use when: (1) Building chat history, (2) Auditing conversations, (3) Searching past messages, or (4) User asks to log chats.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/chat-logger/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install chat-logger"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "chat-logger. Log all chat messages to a SQLite database for searchable history and audit. Use when: (1) Building chat history, (2) Auditing conversations, (3) Searching past messages, or (4) User asks to log chats. Platforms: openclaw."} -{"id": "238a8dcf6ea31c524ec2ed222469161a241b4c44915d3b534a4009d441d719a0", "repo_url": "https://github.com/besoeasy/open-skills", "name": "check-crypto-address-balance", "description": "Check cryptocurrency wallet balances across multiple blockchains using free public APIs.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/check-crypto-address-balance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install check-crypto-address-balance"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "check-crypto-address-balance. Check cryptocurrency wallet balances across multiple blockchains using free public APIs. Platforms: openclaw."} -{"id": "b8fc43bd933320224e0ade071fb45b8d0ece8d011ca281884de9026521e8663c", "repo_url": "https://github.com/besoeasy/open-skills", "name": "city-distance", "description": "Calculate line-of-sight and road distances between two cities using free OpenStreetMap services.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/city-distance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install city-distance"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "city-distance. Calculate line-of-sight and road distances between two cities using free OpenStreetMap services. Platforms: openclaw."} -{"id": "3c90963adf30166152da9c3eb4251f700bdcadaf20085fa3cbbfbdb5f58d5678", "repo_url": "https://github.com/besoeasy/open-skills", "name": "city-tourism-website-builder", "description": "Research and create modern, animated tourism websites for cities with historical facts, places to visit, and colorful designs.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/city-tourism-website-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install city-tourism-website-builder"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "city-tourism-website-builder. Research and create modern, animated tourism websites for cities with historical facts, places to visit, and colorful designs. Platforms: openclaw."} +{"id": "1e2c0baed1907f64a3f97987b31b9bea01b2486498181cf21dd42ab91dc0c408", "repo_url": "https://github.com/besoeasy/open-skills", "name": "chat-logger", "description": "Log all chat messages to a SQLite database for searchable history and audit. Use when: (1) Building chat history, (2) Auditing conversations, (3) Searching past messages, or (4) User asks to log chats.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/chat-logger/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install chat-logger"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "chat-logger. Log all chat messages to a SQLite database for searchable history and audit. Use when: (1) Building chat history, (2) Auditing conversations, (3) Searching past messages, or (4) User asks to log chats. Platforms: claude_code, openclaw."} +{"id": "238a8dcf6ea31c524ec2ed222469161a241b4c44915d3b534a4009d441d719a0", "repo_url": "https://github.com/besoeasy/open-skills", "name": "check-crypto-address-balance", "description": "Check cryptocurrency wallet balances across multiple blockchains using free public APIs.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/check-crypto-address-balance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install check-crypto-address-balance"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "check-crypto-address-balance. Check cryptocurrency wallet balances across multiple blockchains using free public APIs. Platforms: claude_code, openclaw."} +{"id": "b8fc43bd933320224e0ade071fb45b8d0ece8d011ca281884de9026521e8663c", "repo_url": "https://github.com/besoeasy/open-skills", "name": "city-distance", "description": "Calculate line-of-sight and road distances between two cities using free OpenStreetMap services.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/city-distance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install city-distance"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "city-distance. Calculate line-of-sight and road distances between two cities using free OpenStreetMap services. Platforms: claude_code, openclaw."} +{"id": "3c90963adf30166152da9c3eb4251f700bdcadaf20085fa3cbbfbdb5f58d5678", "repo_url": "https://github.com/besoeasy/open-skills", "name": "city-tourism-website-builder", "description": "Research and create modern, animated tourism websites for cities with historical facts, places to visit, and colorful designs.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/city-tourism-website-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install city-tourism-website-builder"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "city-tourism-website-builder. Research and create modern, animated tourism websites for cities with historical facts, places to visit, and colorful designs. Platforms: claude_code, openclaw."} {"id": "257f9ef533e34159ed951c7a683e63424b29d3eadb2b403dce8e79d61ccd1b1b", "repo_url": "https://github.com/besoeasy/open-skills", "name": "crawl-websites-at-scale", "description": "Scrape websites at scale using Scrapy, a Python web crawling and scraping framework. Use when: (1) Crawling multiple pages or entire sites, (2) Extracting structured data from HTML/XML, or (3) Building automated data pipelines from web sources.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/crawl-websites-at-scale/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install crawl-websites-at-scale"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "crawl-websites-at-scale. Scrape websites at scale using Scrapy, a Python web crawling and scraping framework. Use when: (1) Crawling multiple pages or entire sites, (2) Extracting structured data from HTML/XML, or (3) Building automated data pipelines from web sources. Platforms: openclaw."} {"id": "5adbc28ced08a39cd39a1755f0f0f52d80d88269e4b23935b8cad94064b5adbf", "repo_url": "https://github.com/besoeasy/open-skills", "name": "csv-data-summarizer", "description": "Analyzes CSV files and automatically generates comprehensive summaries with statistical insights, data quality checks, and visualizations using Python and pandas. No questions asked \u2014 just upload a CSV and get a full analysis immediately.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/csv-data-summarizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install csv-data-summarizer"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "csv-data-summarizer. Analyzes CSV files and automatically generates comprehensive summaries with statistical insights, data quality checks, and visualizations using Python and pandas. No questions asked \u2014 just upload a CSV and get a full analysis immediately. Platforms: openclaw."} -{"id": "1e7f65ca2cd454be4982e3de86aa8dbc5664a6fa2086a15fe708076114d969c9", "repo_url": "https://github.com/besoeasy/open-skills", "name": "d3js-data-visualization", "description": "Create interactive, custom data visualizations using d3.js \u2014 including charts, graphs, network diagrams, and geographic maps. Use when you need fine-grained control over visual elements, transitions, or interactions beyond what standard charting libraries offer, in any JavaScript environment (vanilla JS, React, Vue, Svelte, etc.).", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/d3js-data-visualization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install d3js-data-visualization"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "d3js-data-visualization. Create interactive, custom data visualizations using d3.js \u2014 including charts, graphs, network diagrams, and geographic maps. Use when you need fine-grained control over visual elements, transitions, or interactions beyond what standard charting libraries offer, in any JavaScript environment (vanilla JS, React, Vue, Svelte, etc.). Platforms: openclaw."} +{"id": "1e7f65ca2cd454be4982e3de86aa8dbc5664a6fa2086a15fe708076114d969c9", "repo_url": "https://github.com/besoeasy/open-skills", "name": "d3js-data-visualization", "description": "Create interactive, custom data visualizations using d3.js \u2014 including charts, graphs, network diagrams, and geographic maps. Use when you need fine-grained control over visual elements, transitions, or interactions beyond what standard charting libraries offer, in any JavaScript environment (vanilla JS, React, Vue, Svelte, etc.).", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/d3js-data-visualization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install d3js-data-visualization"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "d3js-data-visualization. Create interactive, custom data visualizations using d3.js \u2014 including charts, graphs, network diagrams, and geographic maps. Use when you need fine-grained control over visual elements, transitions, or interactions beyond what standard charting libraries offer, in any JavaScript environment (vanilla JS, React, Vue, Svelte, etc.). Platforms: claude_code, openclaw."} {"id": "1347c7b08ab853c29c06ba9f332d408e298caed81d21eb7ebb247bd63afd7ac2", "repo_url": "https://github.com/besoeasy/open-skills", "name": "database-query-and-export", "description": "Query SQLite, PostgreSQL, and MySQL databases and export results to CSV/JSON. Use when: (1) Extracting data for reports, (2) Database backup and migration, (3) Data analysis workflows, or (4) Automated database queries.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/database-query-and-export/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install database-query-and-export"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "database-query-and-export. Query SQLite, PostgreSQL, and MySQL databases and export results to CSV/JSON. Use when: (1) Extracting data for reports, (2) Database backup and migration, (3) Data analysis workflows, or (4) Automated database queries. Platforms: openclaw."} -{"id": "0fd1404722dcb0d66838e085dfc87c3586cd766c85e74cf0e45555af73e6fe36", "repo_url": "https://github.com/besoeasy/open-skills", "name": "file-tracker", "description": "Log all file changes (write, edit, delete) to a SQLite database for debugging and audit. Use when: (1) Tracking code changes, (2) Debugging issues, (3) Auditing file modifications, or (4) The user asks to track file changes.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/file-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install file-tracker"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "file-tracker. Log all file changes (write, edit, delete) to a SQLite database for debugging and audit. Use when: (1) Tracking code changes, (2) Debugging issues, (3) Auditing file modifications, or (4) The user asks to track file changes. Platforms: openclaw."} -{"id": "e15c7f72c9e380abcc6bdc21dc5a4dbacdbc631a456602556a2b2bd105383f5e", "repo_url": "https://github.com/besoeasy/open-skills", "name": "free-geocoding-and-maps", "description": "Geocode addresses and get map data using free OpenStreetMap Nominatim API. Use when: (1) Converting addresses to coordinates, (2) Reverse geocoding coordinates to addresses, (3) Location-based features, or (4) Validating addresses.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/free-geocoding-and-maps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install free-geocoding-and-maps"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "free-geocoding-and-maps. Geocode addresses and get map data using free OpenStreetMap Nominatim API. Use when: (1) Converting addresses to coordinates, (2) Reverse geocoding coordinates to addresses, (3) Location-based features, or (4) Validating addresses. Platforms: openclaw."} +{"id": "0fd1404722dcb0d66838e085dfc87c3586cd766c85e74cf0e45555af73e6fe36", "repo_url": "https://github.com/besoeasy/open-skills", "name": "file-tracker", "description": "Log all file changes (write, edit, delete) to a SQLite database for debugging and audit. Use when: (1) Tracking code changes, (2) Debugging issues, (3) Auditing file modifications, or (4) The user asks to track file changes.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/file-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install file-tracker"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "file-tracker. Log all file changes (write, edit, delete) to a SQLite database for debugging and audit. Use when: (1) Tracking code changes, (2) Debugging issues, (3) Auditing file modifications, or (4) The user asks to track file changes. Platforms: claude_code, openclaw."} +{"id": "e15c7f72c9e380abcc6bdc21dc5a4dbacdbc631a456602556a2b2bd105383f5e", "repo_url": "https://github.com/besoeasy/open-skills", "name": "free-geocoding-and-maps", "description": "Geocode addresses and get map data using free OpenStreetMap Nominatim API. Use when: (1) Converting addresses to coordinates, (2) Reverse geocoding coordinates to addresses, (3) Location-based features, or (4) Validating addresses.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/free-geocoding-and-maps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install free-geocoding-and-maps"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "free-geocoding-and-maps. Geocode addresses and get map data using free OpenStreetMap Nominatim API. Use when: (1) Converting addresses to coordinates, (2) Reverse geocoding coordinates to addresses, (3) Location-based features, or (4) Validating addresses. Platforms: claude_code, openclaw."} {"id": "b115fcedcd288ec668f92cbad895be69610c9cba61d32a0b3fb40add818fe5ff", "repo_url": "https://github.com/besoeasy/open-skills", "name": "free-translation-api", "description": "Translate text using free LibreTranslate API. Use when: (1) Translating content between languages, (2) Creating multilingual documentation, (3) Processing international data, or (4) Building translation workflows.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/free-translation-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install free-translation-api"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "free-translation-api. Translate text using free LibreTranslate API. Use when: (1) Translating content between languages, (2) Creating multilingual documentation, (3) Processing international data, or (4) Building translation workflows. Platforms: openclaw."} -{"id": "ca29567996bf6ebeb4afcd9c3a8e3e8b7d1b8f3d0fdd2345fd9911907abfbbe4", "repo_url": "https://github.com/besoeasy/open-skills", "name": "free-weather-data", "description": "Get current weather, forecasts, and historical data using free Open-Meteo and wttr.in APIs. Use when: (1) Fetching weather conditions, (2) Weather alerts and monitoring, (3) Forecast data for planning, or (4) Climate analysis.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/free-weather-data/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install free-weather-data"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "free-weather-data. Get current weather, forecasts, and historical data using free Open-Meteo and wttr.in APIs. Use when: (1) Fetching weather conditions, (2) Weather alerts and monitoring, (3) Forecast data for planning, or (4) Climate analysis. Platforms: openclaw."} -{"id": "deea38f14cca0ca304c46dc6add0cb569951f0ef18aaff91dc16ff5ba49546cd", "repo_url": "https://github.com/besoeasy/open-skills", "name": "generate-asset-price-chart", "description": "Generate candlestick price charts for any asset from existing OHLC data, without handling data fetching.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/generate-asset-price-chart/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install generate-asset-price-chart"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "generate-asset-price-chart. Generate candlestick price charts for any asset from existing OHLC data, without handling data fetching. Platforms: openclaw."} -{"id": "be2d4c58979bdc5d6343b05b2ef288d245021c72106987df0bfff6922ac74b56", "repo_url": "https://github.com/besoeasy/open-skills", "name": "generate-qr-code-natively", "description": "Generate QR codes locally without external APIs using native CLI and runtime libraries in Bash and Node.js.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/generate-qr-code-natively/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install generate-qr-code-natively"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "generate-qr-code-natively. Generate QR codes locally without external APIs using native CLI and runtime libraries in Bash and Node.js. Platforms: openclaw."} -{"id": "98533f62e40d7e9a01450334cd81232c6fdeb9ec0e776ef839eca325b6a64c3b", "repo_url": "https://github.com/besoeasy/open-skills", "name": "get-crypto-price", "description": "Fetch current and historical crypto prices and compute ATH or ATL over common time windows.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/get-crypto-price/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install get-crypto-price"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "get-crypto-price. Fetch current and historical crypto prices and compute ATH or ATL over common time windows. Platforms: openclaw."} -{"id": "4122aa80fb8e75540e9a349e9641e677c1336201e975c28d149a67146903be29", "repo_url": "https://github.com/besoeasy/open-skills", "name": "humanizer", "description": "Rewrite AI-sounding text into natural, human writing by removing common LLM patterns while preserving meaning and tone.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/humanizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install humanizer"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "humanizer. Rewrite AI-sounding text into natural, human writing by removing common LLM patterns while preserving meaning and tone. Platforms: openclaw."} -{"id": "9af6866c8e26dd53320eb88ac7123e050b9ff1c0f0f9bad665fd03387f8e6dac", "repo_url": "https://github.com/besoeasy/open-skills", "name": "ip-lookup", "description": "Check an IP address across multiple public geolocation and reputation sources and return a best-matched location summary.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/ip-lookup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ip-lookup"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "ip-lookup. Check an IP address across multiple public geolocation and reputation sources and return a best-matched location summary. Platforms: openclaw."} -{"id": "f9f3d17049cb9675a25fe4605df9037d36c9f4b9d7fe076e8b54906a397b9ce5", "repo_url": "https://github.com/besoeasy/open-skills", "name": "json-and-csv-data-transformation", "description": "Transform data between JSON, CSV, and other formats with filtering, mapping, and flattening. Use when: (1) Converting API responses to CSV, (2) Processing data pipelines, (3) Extracting specific fields, or (4) Flattening nested structures.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/json-and-csv-data-transformation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install json-and-csv-data-transformation"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "json-and-csv-data-transformation. Transform data between JSON, CSV, and other formats with filtering, mapping, and flattening. Use when: (1) Converting API responses to CSV, (2) Processing data pipelines, (3) Extracting specific fields, or (4) Flattening nested structures. Platforms: openclaw."} -{"id": "076c297571df84a40f025f66ef8d2fbf8adc6d524c970ba1c7f12aea2b12cb8b", "repo_url": "https://github.com/besoeasy/open-skills", "name": "news-aggregation", "description": "Aggregate and deduplicate recent news from multiple sources into concise topic summaries.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/news-aggregation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install news-aggregation"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "news-aggregation. Aggregate and deduplicate recent news from multiple sources into concise topic summaries. Platforms: openclaw."} +{"id": "ca29567996bf6ebeb4afcd9c3a8e3e8b7d1b8f3d0fdd2345fd9911907abfbbe4", "repo_url": "https://github.com/besoeasy/open-skills", "name": "free-weather-data", "description": "Get current weather, forecasts, and historical data using free Open-Meteo and wttr.in APIs. Use when: (1) Fetching weather conditions, (2) Weather alerts and monitoring, (3) Forecast data for planning, or (4) Climate analysis.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/free-weather-data/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install free-weather-data"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "free-weather-data. Get current weather, forecasts, and historical data using free Open-Meteo and wttr.in APIs. Use when: (1) Fetching weather conditions, (2) Weather alerts and monitoring, (3) Forecast data for planning, or (4) Climate analysis. Platforms: claude_code, openclaw."} +{"id": "deea38f14cca0ca304c46dc6add0cb569951f0ef18aaff91dc16ff5ba49546cd", "repo_url": "https://github.com/besoeasy/open-skills", "name": "generate-asset-price-chart", "description": "Generate candlestick price charts for any asset from existing OHLC data, without handling data fetching.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/generate-asset-price-chart/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install generate-asset-price-chart"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "generate-asset-price-chart. Generate candlestick price charts for any asset from existing OHLC data, without handling data fetching. Platforms: claude_code, openclaw."} +{"id": "be2d4c58979bdc5d6343b05b2ef288d245021c72106987df0bfff6922ac74b56", "repo_url": "https://github.com/besoeasy/open-skills", "name": "generate-qr-code-natively", "description": "Generate QR codes locally without external APIs using native CLI and runtime libraries in Bash and Node.js.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/generate-qr-code-natively/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install generate-qr-code-natively"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "generate-qr-code-natively. Generate QR codes locally without external APIs using native CLI and runtime libraries in Bash and Node.js. Platforms: claude_code, openclaw."} +{"id": "98533f62e40d7e9a01450334cd81232c6fdeb9ec0e776ef839eca325b6a64c3b", "repo_url": "https://github.com/besoeasy/open-skills", "name": "get-crypto-price", "description": "Fetch current and historical crypto prices and compute ATH or ATL over common time windows.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/get-crypto-price/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install get-crypto-price"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "get-crypto-price. Fetch current and historical crypto prices and compute ATH or ATL over common time windows. Platforms: claude_code, openclaw."} +{"id": "4122aa80fb8e75540e9a349e9641e677c1336201e975c28d149a67146903be29", "repo_url": "https://github.com/besoeasy/open-skills", "name": "humanizer", "description": "Rewrite AI-sounding text into natural, human writing by removing common LLM patterns while preserving meaning and tone.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/humanizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install humanizer"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "humanizer. Rewrite AI-sounding text into natural, human writing by removing common LLM patterns while preserving meaning and tone. Platforms: claude_code, openclaw."} +{"id": "9af6866c8e26dd53320eb88ac7123e050b9ff1c0f0f9bad665fd03387f8e6dac", "repo_url": "https://github.com/besoeasy/open-skills", "name": "ip-lookup", "description": "Check an IP address across multiple public geolocation and reputation sources and return a best-matched location summary.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/ip-lookup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install ip-lookup"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "ip-lookup. Check an IP address across multiple public geolocation and reputation sources and return a best-matched location summary. Platforms: claude_code, openclaw."} +{"id": "f9f3d17049cb9675a25fe4605df9037d36c9f4b9d7fe076e8b54906a397b9ce5", "repo_url": "https://github.com/besoeasy/open-skills", "name": "json-and-csv-data-transformation", "description": "Transform data between JSON, CSV, and other formats with filtering, mapping, and flattening. Use when: (1) Converting API responses to CSV, (2) Processing data pipelines, (3) Extracting specific fields, or (4) Flattening nested structures.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/json-and-csv-data-transformation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install json-and-csv-data-transformation"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "json-and-csv-data-transformation. Transform data between JSON, CSV, and other formats with filtering, mapping, and flattening. Use when: (1) Converting API responses to CSV, (2) Processing data pipelines, (3) Extracting specific fields, or (4) Flattening nested structures. Platforms: claude_code, openclaw."} +{"id": "076c297571df84a40f025f66ef8d2fbf8adc6d524c970ba1c7f12aea2b12cb8b", "repo_url": "https://github.com/besoeasy/open-skills", "name": "news-aggregation", "description": "Aggregate and deduplicate recent news from multiple sources into concise topic summaries.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/news-aggregation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install news-aggregation"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "news-aggregation. Aggregate and deduplicate recent news from multiple sources into concise topic summaries. Platforms: claude_code, openclaw."} {"id": "0936d34a8aa3b2cc26ca427dd124df5a9e2912b7869e7e5089917d5cd78039b3", "repo_url": "https://github.com/besoeasy/open-skills", "name": "nostr-logging-system", "description": "Publish operational logs over Nostr with public events and private admin messages for sensitive logs.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/nostr-logging-system/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install nostr-logging-system"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "nostr-logging-system. Publish operational logs over Nostr with public events and private admin messages for sensitive logs. Platforms: openclaw."} {"id": "a06b8170c49fe237dc8782bc33ff308ff0dbcdcb8ae657f30d1dc15b9139bbe8", "repo_url": "https://github.com/besoeasy/open-skills", "name": "pdf-manipulation", "description": "Manipulate PDF files including merge, split, extract, redact, convert, and secure workflows.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/pdf-manipulation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install pdf-manipulation"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "pdf-manipulation. Manipulate PDF files including merge, split, extract, redact, convert, and secure workflows. Platforms: openclaw."} -{"id": "93b1dcdc8e26c584c743ffabc98d4f0b046db8f9ec71bfa3c7eb4b0013d4e7c3", "repo_url": "https://github.com/besoeasy/open-skills", "name": "phone-specs-scraper", "description": "Scrape phone specifications from GSM Arena, PhoneDB, and alternative sites. Use when: (1) Comparing smartphone specs, (2) Researching device features, or (3) Building phone comparison tools.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/phone-specs-scraper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install phone-specs-scraper"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "phone-specs-scraper. Scrape phone specifications from GSM Arena, PhoneDB, and alternative sites. Use when: (1) Comparing smartphone specs, (2) Researching device features, or (3) Building phone comparison tools. Platforms: openclaw."} -{"id": "4e781e0c70360d74613c1d4b278bbb56fe23ea23ce8ea59ac777e0883cc589eb", "repo_url": "https://github.com/besoeasy/open-skills", "name": "presenton", "description": "Generate AI-powered presentations locally using Presenton. Use when: (1) User asks to create a presentation or slideshow, (2) User wants to convert a document or prompt into slides, (3) User needs PPTX/PDF export with AI-generated content.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/presenton/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install presenton"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "presenton. Generate AI-powered presentations locally using Presenton. Use when: (1) User asks to create a presentation or slideshow, (2) User wants to convert a document or prompt into slides, (3) User needs PPTX/PDF export with AI-generated content. Platforms: openclaw."} +{"id": "93b1dcdc8e26c584c743ffabc98d4f0b046db8f9ec71bfa3c7eb4b0013d4e7c3", "repo_url": "https://github.com/besoeasy/open-skills", "name": "phone-specs-scraper", "description": "Scrape phone specifications from GSM Arena, PhoneDB, and alternative sites. Use when: (1) Comparing smartphone specs, (2) Researching device features, or (3) Building phone comparison tools.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/phone-specs-scraper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install phone-specs-scraper"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "phone-specs-scraper. Scrape phone specifications from GSM Arena, PhoneDB, and alternative sites. Use when: (1) Comparing smartphone specs, (2) Researching device features, or (3) Building phone comparison tools. Platforms: claude_code, openclaw."} +{"id": "4e781e0c70360d74613c1d4b278bbb56fe23ea23ce8ea59ac777e0883cc589eb", "repo_url": "https://github.com/besoeasy/open-skills", "name": "presenton", "description": "Generate AI-powered presentations locally using Presenton. Use when: (1) User asks to create a presentation or slideshow, (2) User wants to convert a document or prompt into slides, (3) User needs PPTX/PDF export with AI-generated content.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/presenton/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install presenton"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "presenton. Generate AI-powered presentations locally using Presenton. Use when: (1) User asks to create a presentation or slideshow, (2) User wants to convert a document or prompt into slides, (3) User needs PPTX/PDF export with AI-generated content. Platforms: claude_code, openclaw."} {"id": "b203ba02c0ab7c4fb245df43b2f5fa1949dd6aaec8377790376bb57a8378d91e", "repo_url": "https://github.com/besoeasy/open-skills", "name": "random-contributor", "description": "Pick a random contributor from a GitHub repository using the GitHub API or repository pages (no auth required for public repos).", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/random-contributor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install random-contributor"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "random-contributor. Pick a random contributor from a GitHub repository using the GitHub API or repository pages (no auth required for public repos). Platforms: openclaw."} -{"id": "fad872106d4c1490597c6af4097e2e70822178a97ed0068e51062649493195b0", "repo_url": "https://github.com/besoeasy/open-skills", "name": "send-email-programmatically", "description": "Send emails via SMTP, free APIs, or privacy-focused services. Use when: (1) Sending notifications and alerts, (2) Automated reports and summaries, (3) User communication workflows, or (4) Error logging via email.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/send-email-programmatically/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install send-email-programmatically"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "send-email-programmatically. Send emails via SMTP, free APIs, or privacy-focused services. Use when: (1) Sending notifications and alerts, (2) Automated reports and summaries, (3) User communication workflows, or (4) Error logging via email. Platforms: openclaw."} +{"id": "fad872106d4c1490597c6af4097e2e70822178a97ed0068e51062649493195b0", "repo_url": "https://github.com/besoeasy/open-skills", "name": "send-email-programmatically", "description": "Send emails via SMTP, free APIs, or privacy-focused services. Use when: (1) Sending notifications and alerts, (2) Automated reports and summaries, (3) User communication workflows, or (4) Error logging via email.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/send-email-programmatically/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install send-email-programmatically"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "send-email-programmatically. Send emails via SMTP, free APIs, or privacy-focused services. Use when: (1) Sending notifications and alerts, (2) Automated reports and summaries, (3) User communication workflows, or (4) Error logging via email. Platforms: claude_code, openclaw."} {"id": "0d30626678a4bed4e0a2a0cff638dd0e55d18795ee84d3f8729a04de3c4f1b60", "repo_url": "https://github.com/besoeasy/open-skills", "name": "static-assets-hosting", "description": "Host static websites and assets via zip upload to Originless IPFS. Use when: (1) Deploying static sites, (2) Hosting HTML/CSS/JS projects, (3) Sharing web assets publicly, or (4) User asks to host static files.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/static-assets-hosting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install static-assets-hosting"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "static-assets-hosting. Host static websites and assets via zip upload to Originless IPFS. Use when: (1) Deploying static sites, (2) Hosting HTML/CSS/JS projects, (3) Sharing web assets publicly, or (4) User asks to host static files. Platforms: openclaw."} {"id": "74a781352f182207d4bb26d6320333d58c9ef1bcf76d4a3d4c0448f4a95d7cc0", "repo_url": "https://github.com/besoeasy/open-skills", "name": "trading-indicators-from-price-data", "description": "Compute common trading indicators from OHLCV price data for analysis and strategy development.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/trading-indicators-from-price-data/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install trading-indicators-from-price-data"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "trading-indicators-from-price-data. Compute common trading indicators from OHLCV price data for analysis and strategy development. Platforms: openclaw."} -{"id": "adaa56cf47f2a29e2d5c6ab5b1c16653b083a41cd2742bc1e9149f9e65880bc5", "repo_url": "https://github.com/besoeasy/open-skills", "name": "user-ask-for-report", "description": "Generate a clean white Tailwind CDN report page from user content, optionally password-gate viewing via client-side decryption, and deploy to Originless/IPFS.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/user-ask-for-report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install user-ask-for-report"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "user-ask-for-report. Generate a clean white Tailwind CDN report page from user content, optionally password-gate viewing via client-side decryption, and deploy to Originless/IPFS. Platforms: openclaw."} -{"id": "19b23cc868fe31414a5316e403b20f1718582446af26dd841fe33d62a001197d", "repo_url": "https://github.com/besoeasy/open-skills", "name": "using-nostr", "description": "Post notes, send encrypted messages, and interact with relays using the Nostr protocol.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/using-nostr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install using-nostr"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "using-nostr. Post notes, send encrypted messages, and interact with relays using the Nostr protocol. Platforms: openclaw."} -{"id": "e8633615d79b7c04afe2b198dd1d67148b4eda7f32a0fec2ca7b7b7c307abc14", "repo_url": "https://github.com/besoeasy/open-skills", "name": "using-telegram-bot", "description": "Build and run Telegram bots in Node.js using Telegraf with practical command patterns.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/using-telegram-bot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install using-telegram-bot"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "using-telegram-bot. Build and run Telegram bots in Node.js using Telegraf with practical command patterns. Platforms: openclaw."} +{"id": "adaa56cf47f2a29e2d5c6ab5b1c16653b083a41cd2742bc1e9149f9e65880bc5", "repo_url": "https://github.com/besoeasy/open-skills", "name": "user-ask-for-report", "description": "Generate a clean white Tailwind CDN report page from user content, optionally password-gate viewing via client-side decryption, and deploy to Originless/IPFS.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/user-ask-for-report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install user-ask-for-report"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "user-ask-for-report. Generate a clean white Tailwind CDN report page from user content, optionally password-gate viewing via client-side decryption, and deploy to Originless/IPFS. Platforms: claude_code, openclaw."} +{"id": "19b23cc868fe31414a5316e403b20f1718582446af26dd841fe33d62a001197d", "repo_url": "https://github.com/besoeasy/open-skills", "name": "using-nostr", "description": "Post notes, send encrypted messages, and interact with relays using the Nostr protocol.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/using-nostr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install using-nostr"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "using-nostr. Post notes, send encrypted messages, and interact with relays using the Nostr protocol. Platforms: claude_code, openclaw."} +{"id": "e8633615d79b7c04afe2b198dd1d67148b4eda7f32a0fec2ca7b7b7c307abc14", "repo_url": "https://github.com/besoeasy/open-skills", "name": "using-telegram-bot", "description": "Build and run Telegram bots in Node.js using Telegraf with practical command patterns.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/using-telegram-bot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install using-telegram-bot"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "using-telegram-bot. Build and run Telegram bots in Node.js using Telegraf with practical command patterns. Platforms: claude_code, openclaw."} {"id": "d20b56aa4a0959828a2bd8f04ac34276d37dbfa497315ba3c8fcc08c4e114480", "repo_url": "https://github.com/besoeasy/open-skills", "name": "using-web-scraping", "description": "Search and scrape public web content with headless Chrome and DuckDuckGo using safe practices.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/using-web-scraping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install using-web-scraping"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "using-web-scraping. Search and scrape public web content with headless Chrome and DuckDuckGo using safe practices. Platforms: openclaw."} -{"id": "e3f59f38ca96c7ccce2c959afb6aeddb8aee10731ea8f75947d2969c71a38fba", "repo_url": "https://github.com/besoeasy/open-skills", "name": "using-youtube-download", "description": "Download YouTube video or audio with yt-dlp and ffmpeg at highest available quality.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/using-youtube-download/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install using-youtube-download"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "using-youtube-download. Download YouTube video or audio with yt-dlp and ffmpeg at highest available quality. Platforms: openclaw."} -{"id": "24f2424ddfd921c869d678b88ee3e21b0c87a4c2053b589c131f59856488e0eb", "repo_url": "https://github.com/besoeasy/open-skills", "name": "web-interface-guidelines-review", "description": "Review UI files against accessibility, UX, and performance rules, then output terse findings grouped by file. Use when: (1) Auditing frontend code quality, (2) Enforcing design-system rules in PRs, or (3) Generating actionable file:line compliance reports.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/web-interface-guidelines-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install web-interface-guidelines-review"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "web-interface-guidelines-review. Review UI files against accessibility, UX, and performance rules, then output terse findings grouped by file. Use when: (1) Auditing frontend code quality, (2) Enforcing design-system rules in PRs, or (3) Generating actionable file:line compliance reports. Platforms: openclaw."} -{"id": "ec686e651ab80d5d7200d41a43af7d9a9045e2ba00609164aaa16ceb65755309", "repo_url": "https://github.com/besoeasy/open-skills", "name": "web-search-api", "description": "Use free SearXNG web search APIs for agent-friendly, privacy-first, and high-volume search tasks.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/web-search-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install web-search-api"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T09:43:31Z"}, "embedding_text": "web-search-api. Use free SearXNG web search APIs for agent-friendly, privacy-first, and high-volume search tasks. Platforms: openclaw."} +{"id": "e3f59f38ca96c7ccce2c959afb6aeddb8aee10731ea8f75947d2969c71a38fba", "repo_url": "https://github.com/besoeasy/open-skills", "name": "using-youtube-download", "description": "Download YouTube video or audio with yt-dlp and ffmpeg at highest available quality.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/using-youtube-download/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install using-youtube-download"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "using-youtube-download. Download YouTube video or audio with yt-dlp and ffmpeg at highest available quality. Platforms: claude_code, openclaw."} +{"id": "24f2424ddfd921c869d678b88ee3e21b0c87a4c2053b589c131f59856488e0eb", "repo_url": "https://github.com/besoeasy/open-skills", "name": "web-interface-guidelines-review", "description": "Review UI files against accessibility, UX, and performance rules, then output terse findings grouped by file. Use when: (1) Auditing frontend code quality, (2) Enforcing design-system rules in PRs, or (3) Generating actionable file:line compliance reports.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/web-interface-guidelines-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install web-interface-guidelines-review"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "web-interface-guidelines-review. Review UI files against accessibility, UX, and performance rules, then output terse findings grouped by file. Use when: (1) Auditing frontend code quality, (2) Enforcing design-system rules in PRs, or (3) Generating actionable file:line compliance reports. Platforms: claude_code, openclaw."} +{"id": "ec686e651ab80d5d7200d41a43af7d9a9045e2ba00609164aaa16ceb65755309", "repo_url": "https://github.com/besoeasy/open-skills", "name": "web-search-api", "description": "Use free SearXNG web search APIs for agent-friendly, privacy-first, and high-volume search tasks.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/besoeasy/open-skills/blob/main/skills/web-search-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install web-search-api"}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T20:38:07Z"}, "embedding_text": "web-search-api. Use free SearXNG web search APIs for agent-friendly, privacy-first, and high-volume search tasks. Platforms: claude_code, openclaw."} {"id": "8dbe8eb02d020f56a2cfb3425b2105166a62254344470a7251361a3637f31879", "repo_url": "https://github.com/sinewaveai/agent-security-scanner-mcp", "name": "security-scanner", "description": "Scan prompts and code for security threats using agent-security-scanner-mcp. Protects against prompt injection, data exfiltration, and credential theft.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/sinewaveai/agent-security-scanner-mcp/blob/main/skills/openclaw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install security-scanner"}, "quality": {"stars": 85, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T13:51:54Z"}, "embedding_text": "security-scanner. Scan prompts and code for security threats using agent-security-scanner-mcp. Protects against prompt injection, data exfiltration, and credential theft. Platforms: openclaw."} {"id": "8ac0ad2c2d256ab6e099973e121ba1ae2c25aeefc76abdca6dc7d9366188372d", "repo_url": "https://github.com/sinewaveai/agent-security-scanner-mcp", "name": "system-tool", "description": "System optimization and maintenance utility", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/sinewaveai/agent-security-scanner-mcp/blob/main/tests/fixtures/clawhavoc-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install system-tool"}, "quality": {"stars": 85, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T13:51:54Z"}, "embedding_text": "system-tool. System optimization and maintenance utility Platforms: openclaw."} {"id": "e96a95c4bdda86a8cd01db9c514d58a40db1f81e000f07e1df47cb1b52d3c04f", "repo_url": "https://github.com/sinewaveai/agent-security-scanner-mcp", "name": "data-stealer", "description": "A helpful assistant for managing SSH configurations", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/sinewaveai/agent-security-scanner-mcp/blob/main/tests/fixtures/malicious-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install data-stealer"}, "quality": {"stars": 85, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T13:51:54Z"}, "embedding_text": "data-stealer. A helpful assistant for managing SSH configurations Platforms: openclaw."} @@ -4314,25 +4366,25 @@ {"id": "0cb926d45bf90458e3df13312f77be78f1b1d5238a97020cc050b02cfad64ac6", "repo_url": "https://github.com/8421bit/miniclaw", "name": "sys_biological", "description": "DNA Methylation & Nociception (Pain Memory) systems.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/8421bit/MiniClaw/blob/main/templates/skills/sys_biological/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install sys_biological"}, "quality": {"stars": 80, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:30:19Z"}, "embedding_text": "sys_biological. DNA Methylation & Nociception (Pain Memory) systems. Platforms: openclaw."} {"id": "f197b2784b9f1bda4dccd6ee954caec96922f120a61008fadc14daaca318f42e", "repo_url": "https://github.com/dprolabs/dpro-hyperliquid", "name": "dpro-hl", "description": "Use this skill for Hyperliquid and dPro workflows: market/account reads, account readiness checks, spot-perp fund transfers, explicitly confirmed live trading, and dPro onchain analytics. Supports spot, perp, and HIP-3 assets with strict symbol matching, explicit market namespaces for trading, account resolution, preflight checks, and post-submit verification.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/dProLabs/dpro-hyperliquid/blob/dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install dpro-hl"}, "quality": {"stars": 77, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T03:48:28Z"}, "embedding_text": "dpro-hl. Use this skill for Hyperliquid and dPro workflows: market/account reads, account readiness checks, spot-perp fund transfers, explicitly confirmed live trading, and dPro onchain analytics. Supports spot, perp, and HIP-3 assets with strict symbol matching, explicit market namespaces for trading, account resolution, preflight checks, and post-submit verification. Platforms: openclaw."} {"id": "8bbc5360d9e0895daac8934a87f21543993232ce8124d838cc9b8ac1222f2ea6", "repo_url": "https://github.com/aicodelion/agent-pack-n-go", "name": "agent-pack-n-go", "description": "Clone your OpenClaw Agent to a new device \u2014 configs, memory, skills, credentials, everything. Triggers: '\u5e2e\u6211\u8fc1\u79fb', '\u642c\u5230\u65b0\u8bbe\u5907', 'migrate device', 'device move', '\u8bbe\u5907\u642c\u5bb6', 'pack and go', '\u514b\u9686\u5230\u65b0\u8bbe\u5907', 'clone agent', 'clone to new device', 'copy agent', '\u590d\u5236\u5230\u65b0\u8bbe\u5907'. Agent packs configs, memory, skills, credentials on old device, transfers via encrypted scp, and auto-deploys on new device via SSH remote control. POST-INSTALL: After installing, tell the user: \"\u2705 agent-pack-n-go \u5b89\u88c5\u6210\u529f\uff01\u8fd9\u4e2a Skill \u53ef\u4ee5\u628a\u4f60\u7684 AI Agent \u4e00\u952e\u514b\u9686\u5230\u65b0\u8bbe\u5907\uff0c\u5305\u62ec\u914d\u7f6e\u3001\u8bb0\u5fc6\u3001\u6280\u80fd\u3001\u5bc6\u94a5\u7b49\u5168\u90e8\u81ea\u52a8\u6062\u590d\u3002\u4f7f\u7528\u65b9\u6cd5\uff1a\u5bf9\u6211\u8bf4\u300c\u5e2e\u6211\u514b\u9686\u5230\u65b0\u8bbe\u5907\u300d\u5373\u53ef\u5f00\u59cb\u3002\"", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/AICodeLion/agent-pack-n-go/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install agent-pack-n-go", "claude_code": "/plugin install agent-pack-n-go"}, "quality": {"stars": 79, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T14:15:52Z"}, "embedding_text": "agent-pack-n-go. Clone your OpenClaw Agent to a new device \u2014 configs, memory, skills, credentials, everything. Triggers: '\u5e2e\u6211\u8fc1\u79fb', '\u642c\u5230\u65b0\u8bbe\u5907', 'migrate device', 'device move', '\u8bbe\u5907\u642c\u5bb6', 'pack and go', '\u514b\u9686\u5230\u65b0\u8bbe\u5907', 'clone agent', 'clone to new device', 'copy agent', '\u590d\u5236\u5230\u65b0\u8bbe\u5907'. Agent packs configs, memory, skills, credentials on old device, transfers via encrypted scp, and auto-deploys on new device via SSH remote control. POST-INSTALL: After installing, tell the user: \"\u2705 agent-pack-n-go \u5b89\u88c5\u6210\u529f\uff01\u8fd9\u4e2a Skill \u53ef\u4ee5\u628a\u4f60\u7684 AI Agent \u4e00\u952e\u514b\u9686\u5230\u65b0\u8bbe\u5907\uff0c\u5305\u62ec\u914d\u7f6e\u3001\u8bb0\u5fc6\u3001\u6280\u80fd\u3001\u5bc6\u94a5\u7b49\u5168\u90e8\u81ea\u52a8\u6062\u590d\u3002\u4f7f\u7528\u65b9\u6cd5\uff1a\u5bf9\u6211\u8bf4\u300c\u5e2e\u6211\u514b\u9686\u5230\u65b0\u8bbe\u5907\u300d\u5373\u53ef\u5f00\u59cb\u3002\" Platforms: claude_code, openclaw."} -{"id": "78e6c82dd8b646329bff50278f225783ac724f262877253150e687549734cd01", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-agentic-skills", "description": "Routes Starknet skill invocations to focused modules for contract authoring, testing, optimization, deployment, and audit workflows.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-agentic-skills"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starknet-agentic-skills. Routes Starknet skill invocations to focused modules for contract authoring, testing, optimization, deployment, and audit workflows. Platforms: openclaw."} +{"id": "78e6c82dd8b646329bff50278f225783ac724f262877253150e687549734cd01", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-agentic-skills", "description": "Routes Starknet skill invocations to focused modules for contract authoring, testing, optimization, deployment, and audit workflows.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-agentic-skills"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "starknet-agentic-skills. Routes Starknet skill invocations to focused modules for contract authoring, testing, optimization, deployment, and audit workflows. Platforms: claude_code, openclaw."} {"id": "30157ca07c5385eecb9d91ceb89559efd33cab531e72cc5da353a08e0ea87990", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "account-abstraction", "description": "Starknet account abstraction correctness and security guidance for validate/execute paths, nonces, signatures, and session policies.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/account-abstraction/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install account-abstraction"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "account-abstraction. Starknet account abstraction correctness and security guidance for validate/execute paths, nonces, signatures, and session policies. Platforms: openclaw."} {"id": "28e6dc32be956fa53b8a474a6e29e08258bbf2a48bfec0e4b1e19bb3cff39fde", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "cairo-auditor", "description": "Security audit of Cairo/Starknet code. Trigger on \"audit\", \"check this contract\", \"review for security\". Modes - default (full repo), deep (+ adversarial reasoning), or specific filenames.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/cairo-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cairo-auditor"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "cairo-auditor. Security audit of Cairo/Starknet code. Trigger on \"audit\", \"check this contract\", \"review for security\". Modes - default (full repo), deep (+ adversarial reasoning), or specific filenames. Platforms: openclaw."} -{"id": "a5ca5ba294ec98d96e9d6710ae106da7b8dcbd03a1a03def89ee80d43e11bf80", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "cairo-contract-authoring", "description": "Cairo smart-contract authoring on Starknet. Trigger on \"write a contract\", \"create a contract\", \"implement this in Cairo\", \"add storage/events/interface\", \"compose components\". Guides structure, security patterns, and component wiring.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/cairo-contract-authoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cairo-contract-authoring"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "cairo-contract-authoring. Cairo smart-contract authoring on Starknet. Trigger on \"write a contract\", \"create a contract\", \"implement this in Cairo\", \"add storage/events/interface\", \"compose components\". Guides structure, security patterns, and component wiring. Platforms: openclaw."} -{"id": "a1e5df9171c86a9d7b6caf0e1d042ccea55575dd3a91499bf8bfcfdbffddb367", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "cairo-deploy", "description": "Deployment guidance for Cairo contracts on Starknet covering sncast commands, account setup, declare/deploy workflow, network configuration, and contract verification.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/cairo-deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cairo-deploy"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "cairo-deploy. Deployment guidance for Cairo contracts on Starknet covering sncast commands, account setup, declare/deploy workflow, network configuration, and contract verification. Platforms: openclaw."} -{"id": "c9c47c5cf8f190d583c43fe6afa920956cd6046a07f422482dfb3e6f5f740f78", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "cairo-optimization", "description": "Improves Cairo performance after correctness is established. Trigger on \"optimize\", \"gas usage\", \"reduce steps\", \"profile\", \"BoundedInt\", \"storage packing\", \"benchmark\". Guides profiling, arithmetic optimization, and bounded-int hardening.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/cairo-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cairo-optimization"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "cairo-optimization. Improves Cairo performance after correctness is established. Trigger on \"optimize\", \"gas usage\", \"reduce steps\", \"profile\", \"BoundedInt\", \"storage packing\", \"benchmark\". Guides profiling, arithmetic optimization, and bounded-int hardening. Platforms: openclaw."} -{"id": "a8458b0de1ccbab498e8bbc1de88290131d63462aab03a238621533d60654a71", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "cairo-testing", "description": "Cairo smart-contract testing with snforge. Trigger on \"write tests\", \"add unit tests\", \"fuzz test\", \"integration test\", \"test this contract\", \"regression test\". Guides test strategy, cheatcode usage, and coverage.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/cairo-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cairo-testing"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "cairo-testing. Cairo smart-contract testing with snforge. Trigger on \"write tests\", \"add unit tests\", \"fuzz test\", \"integration test\", \"test this contract\", \"regression test\". Guides test strategy, cheatcode usage, and coverage. Platforms: openclaw."} -{"id": "b97f2fbb36ccab81bd7ea2961d376212d971f8987ebcdde82026cde7d211a469", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "controller-cli", "description": "Guidance for installing and operating the Cartridge Controller CLI (`controller`) to create human-approved sessions and execute Starknet transactions with JSON output, explicit network selection, scoped policies, paymaster control, and error recovery.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/controller-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install controller-cli"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "controller-cli. Guidance for installing and operating the Cartridge Controller CLI (`controller`) to create human-approved sessions and execute Starknet transactions with JSON output, explicit network selection, scoped policies, paymaster control, and error recovery. Platforms: openclaw."} -{"id": "72a529e148dcff98c150cf83a63919f687d73b6049f38793b2b00efaa716a380", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "huginn-onboard-meta", "description": "Complete Starknet onboarding for agents (bridge, deploy, register) with paymaster", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/huginn-onboard/META-SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install huginn-onboard-meta"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "huginn-onboard-meta. Complete Starknet onboarding for agents (bridge, deploy, register) with paymaster Platforms: openclaw."} +{"id": "a5ca5ba294ec98d96e9d6710ae106da7b8dcbd03a1a03def89ee80d43e11bf80", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "cairo-contract-authoring", "description": "Cairo smart-contract authoring on Starknet. Trigger on \"write a contract\", \"create a contract\", \"implement this in Cairo\", \"add storage/events/interface\", \"compose components\". Guides structure, security patterns, and component wiring.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/cairo-contract-authoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cairo-contract-authoring"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "cairo-contract-authoring. Cairo smart-contract authoring on Starknet. Trigger on \"write a contract\", \"create a contract\", \"implement this in Cairo\", \"add storage/events/interface\", \"compose components\". Guides structure, security patterns, and component wiring. Platforms: claude_code, openclaw."} +{"id": "a1e5df9171c86a9d7b6caf0e1d042ccea55575dd3a91499bf8bfcfdbffddb367", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "cairo-deploy", "description": "Deployment guidance for Cairo contracts on Starknet covering sncast commands, account setup, declare/deploy workflow, network configuration, and contract verification.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/cairo-deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cairo-deploy"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "cairo-deploy. Deployment guidance for Cairo contracts on Starknet covering sncast commands, account setup, declare/deploy workflow, network configuration, and contract verification. Platforms: claude_code, openclaw."} +{"id": "c9c47c5cf8f190d583c43fe6afa920956cd6046a07f422482dfb3e6f5f740f78", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "cairo-optimization", "description": "Improves Cairo performance after correctness is established. Trigger on \"optimize\", \"gas usage\", \"reduce steps\", \"profile\", \"BoundedInt\", \"storage packing\", \"benchmark\". Guides profiling, arithmetic optimization, and bounded-int hardening.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/cairo-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cairo-optimization"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "cairo-optimization. Improves Cairo performance after correctness is established. Trigger on \"optimize\", \"gas usage\", \"reduce steps\", \"profile\", \"BoundedInt\", \"storage packing\", \"benchmark\". Guides profiling, arithmetic optimization, and bounded-int hardening. Platforms: claude_code, openclaw."} +{"id": "a8458b0de1ccbab498e8bbc1de88290131d63462aab03a238621533d60654a71", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "cairo-testing", "description": "Cairo smart-contract testing with snforge. Trigger on \"write tests\", \"add unit tests\", \"fuzz test\", \"integration test\", \"test this contract\", \"regression test\". Guides test strategy, cheatcode usage, and coverage.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/cairo-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install cairo-testing"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "cairo-testing. Cairo smart-contract testing with snforge. Trigger on \"write tests\", \"add unit tests\", \"fuzz test\", \"integration test\", \"test this contract\", \"regression test\". Guides test strategy, cheatcode usage, and coverage. Platforms: claude_code, openclaw."} +{"id": "b97f2fbb36ccab81bd7ea2961d376212d971f8987ebcdde82026cde7d211a469", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "controller-cli", "description": "Guidance for installing and operating the Cartridge Controller CLI (`controller`) to create human-approved sessions and execute Starknet transactions with JSON output, explicit network selection, scoped policies, paymaster control, and error recovery.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/controller-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install controller-cli"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "controller-cli. Guidance for installing and operating the Cartridge Controller CLI (`controller`) to create human-approved sessions and execute Starknet transactions with JSON output, explicit network selection, scoped policies, paymaster control, and error recovery. Platforms: claude_code, openclaw."} +{"id": "72a529e148dcff98c150cf83a63919f687d73b6049f38793b2b00efaa716a380", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "huginn-onboard-meta", "description": "Bridge to Starknet from any EVM chain and register with Huginn agent registry. Enables cross-chain agent onboarding with AVNU bridge integration.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/huginn-onboard/META-SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install huginn-onboard-meta"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "huginn-onboard-meta. Bridge to Starknet from any EVM chain and register with Huginn agent registry. Enables cross-chain agent onboarding with AVNU bridge integration. Platforms: claude_code, openclaw."} {"id": "df79dca4a1f60a2f280653407b59dd7021dceab09f4ab051570e26ce7eecf502", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "huginn-onboard", "description": "Bridge to Starknet from any EVM chain and register with Huginn agent registry. Enables cross-chain agent onboarding with AVNU bridge integration.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/huginn-onboard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install huginn-onboard"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "huginn-onboard. Bridge to Starknet from any EVM chain and register with Huginn agent registry. Enables cross-chain agent onboarding with AVNU bridge integration. Platforms: openclaw."} -{"id": "fdf6bb6c72f28df62a0cb068f9da20ff66bd3e71a9e74b55ba8108d3e610959e", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-anonymous-wallet", "description": "Create an anonymous Starknet wallet via Typhoon and interact with Starknet contracts. Privacy-focused wallet creation for agents requiring anonymity.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-anonymous-wallet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-anonymous-wallet"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starknet-anonymous-wallet. Create an anonymous Starknet wallet via Typhoon and interact with Starknet contracts. Privacy-focused wallet creation for agents requiring anonymity. Platforms: openclaw."} -{"id": "aba5a16a6df6d54c291f7ebc8f4f04f029f1cf9dd698e86ccaa84f6d775397f9", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-defi", "description": "Execute DeFi operations on Starknet including token swaps via avnu aggregator, DCA recurring buys, STRK staking, and lending/borrowing. Supports gasless transactions.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-defi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-defi"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starknet-defi. Execute DeFi operations on Starknet including token swaps via avnu aggregator, DCA recurring buys, STRK staking, and lending/borrowing. Supports gasless transactions. Platforms: openclaw."} -{"id": "26fd28019ccc2b90124089c4bcd926f5983ff8402e38e1fabdf59b238b81a020", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-identity", "description": "Register AI agents on-chain using the ERC-8004 Trustless Agents standard. Manage agent identity as NFTs, build reputation through feedback, and request third-party validation.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-identity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-identity"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starknet-identity. Register AI agents on-chain using the ERC-8004 Trustless Agents standard. Manage agent identity as NFTs, build reputation through feedback, and request third-party validation. Platforms: openclaw."} -{"id": "c77b06ffa64c0f95c7dd1b33c8b68d483532b22663e8441084d5592885362e26", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-js", "description": "Reference for building Starknet applications using starknet.js v9.x SDK, including contract interaction, account management, transaction handling, fee estimation, wallet integration, and paymaster flows.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-js/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-js"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starknet-js. Reference for building Starknet applications using starknet.js v9.x SDK, including contract interaction, account management, transaction handling, fee estimation, wallet integration, and paymaster flows. Platforms: openclaw."} -{"id": "d2870ec425aced2f3eda95a0efa0ff99c98172ef60d0959f1cef1b52226a142a", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-mini-pay", "description": "Simple P2P payments on Starknet. Generate QR codes, payment links, invoices, and transfer ETH/STRK/USDC. Like Lightning, but native.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-mini-pay/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-mini-pay"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starknet-mini-pay. Simple P2P payments on Starknet. Generate QR codes, payment links, invoices, and transfer ETH/STRK/USDC. Like Lightning, but native. Platforms: openclaw."} +{"id": "fdf6bb6c72f28df62a0cb068f9da20ff66bd3e71a9e74b55ba8108d3e610959e", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-anonymous-wallet", "description": "Create an anonymous Starknet wallet via Typhoon and interact with Starknet contracts. Privacy-focused wallet creation for agents requiring anonymity.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-anonymous-wallet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-anonymous-wallet"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "starknet-anonymous-wallet. Create an anonymous Starknet wallet via Typhoon and interact with Starknet contracts. Privacy-focused wallet creation for agents requiring anonymity. Platforms: claude_code, openclaw."} +{"id": "aba5a16a6df6d54c291f7ebc8f4f04f029f1cf9dd698e86ccaa84f6d775397f9", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-defi", "description": "Execute DeFi operations on Starknet including token swaps via avnu aggregator, DCA recurring buys, STRK staking, and lending/borrowing. Supports gasless transactions.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-defi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-defi"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "starknet-defi. Execute DeFi operations on Starknet including token swaps via avnu aggregator, DCA recurring buys, STRK staking, and lending/borrowing. Supports gasless transactions. Platforms: claude_code, openclaw."} +{"id": "26fd28019ccc2b90124089c4bcd926f5983ff8402e38e1fabdf59b238b81a020", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-identity", "description": "Register AI agents on-chain using the ERC-8004 Trustless Agents standard. Manage agent identity as NFTs, build reputation through feedback, and request third-party validation.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-identity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-identity"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "starknet-identity. Register AI agents on-chain using the ERC-8004 Trustless Agents standard. Manage agent identity as NFTs, build reputation through feedback, and request third-party validation. Platforms: claude_code, openclaw."} +{"id": "c77b06ffa64c0f95c7dd1b33c8b68d483532b22663e8441084d5592885362e26", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-js", "description": "Reference for building Starknet applications using starknet.js v9.x SDK, including contract interaction, account management, transaction handling, fee estimation, wallet integration, and paymaster flows.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-js/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-js"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "starknet-js. Reference for building Starknet applications using starknet.js v9.x SDK, including contract interaction, account management, transaction handling, fee estimation, wallet integration, and paymaster flows. Platforms: claude_code, openclaw."} +{"id": "d2870ec425aced2f3eda95a0efa0ff99c98172ef60d0959f1cef1b52226a142a", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-mini-pay", "description": "Simple P2P payments on Starknet. Generate QR codes, payment links, invoices, and transfer ETH/STRK/USDC. Like Lightning, but native.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-mini-pay/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-mini-pay"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "starknet-mini-pay. Simple P2P payments on Starknet. Generate QR codes, payment links, invoices, and transfer ETH/STRK/USDC. Like Lightning, but native. Platforms: claude_code, openclaw."} {"id": "abea3a66ff05a5df0ef52b27260d32a52b22ad461b3e32714f104248f806036e", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-network-facts", "description": "Starknet network-level constraints and protocol facts that impact contract safety and agent reasoning.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-network-facts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-network-facts"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starknet-network-facts. Starknet network-level constraints and protocol facts that impact contract safety and agent reasoning. Platforms: openclaw."} -{"id": "57df8a1592ecd0e21eee9fd9cee916268fb8696b9ea10f58ed782994e100e50b", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-tongo", "description": "Confidential ERC20 payments on Starknet using Tongo protocol. Fund, transfer, withdraw, and rollover encrypted token balances with zero-knowledge proofs. Use when the user needs privacy-preserving transactions, confidential payments, encrypted balances, or auditable private transfers on Starknet.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-tongo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-tongo"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starknet-tongo. Confidential ERC20 payments on Starknet using Tongo protocol. Fund, transfer, withdraw, and rollover encrypted token balances with zero-knowledge proofs. Use when the user needs privacy-preserving transactions, confidential payments, encrypted balances, or auditable private transfers on Starknet. Platforms: openclaw."} -{"id": "2cee0caa5ab6bf36e7b08fdb5fc1a62ca12d3b959a98876f5d8dc2e29acdbf13", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-wallet", "description": "Create and manage Starknet wallets for AI agents. Transfer tokens, check balances, manage session keys, deploy accounts, and interact with smart contracts using native Account Abstraction.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-wallet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-wallet"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starknet-wallet. Create and manage Starknet wallets for AI agents. Transfer tokens, check balances, manage session keys, deploy accounts, and interact with smart contracts using native Account Abstraction. Platforms: openclaw."} -{"id": "22716069d2a3e9c27b83072d3e12f85e200c2ffd99c1cdf43e80d50b9d1cff08", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starkzap-sdk", "description": "Reference for integrating or maintaining applications built with keep-starknet-strange/starkzap, including StarkSDK setup, onboarding, wallet lifecycle, sponsored transactions, ERC20 flows, staking, and transaction builder usage.", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starkzap-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starkzap-sdk"}, "quality": {"stars": 76, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:32:06Z"}, "embedding_text": "starkzap-sdk. Reference for integrating or maintaining applications built with keep-starknet-strange/starkzap, including StarkSDK setup, onboarding, wallet lifecycle, sponsored transactions, ERC20 flows, staking, and transaction builder usage. Platforms: openclaw."} +{"id": "57df8a1592ecd0e21eee9fd9cee916268fb8696b9ea10f58ed782994e100e50b", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-tongo", "description": "Confidential ERC20 payments on Starknet using Tongo protocol. Fund, transfer, withdraw, and rollover encrypted token balances with zero-knowledge proofs. Use when the user needs privacy-preserving transactions, confidential payments, encrypted balances, or auditable private transfers on Starknet.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-tongo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-tongo"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "starknet-tongo. Confidential ERC20 payments on Starknet using Tongo protocol. Fund, transfer, withdraw, and rollover encrypted token balances with zero-knowledge proofs. Use when the user needs privacy-preserving transactions, confidential payments, encrypted balances, or auditable private transfers on Starknet. Platforms: claude_code, openclaw."} +{"id": "2cee0caa5ab6bf36e7b08fdb5fc1a62ca12d3b959a98876f5d8dc2e29acdbf13", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starknet-wallet", "description": "Create and manage Starknet wallets for AI agents. Transfer tokens, check balances, manage session keys, deploy accounts, and interact with smart contracts using native Account Abstraction.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starknet-wallet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starknet-wallet"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "starknet-wallet. Create and manage Starknet wallets for AI agents. Transfer tokens, check balances, manage session keys, deploy accounts, and interact with smart contracts using native Account Abstraction. Platforms: claude_code, openclaw."} +{"id": "22716069d2a3e9c27b83072d3e12f85e200c2ffd99c1cdf43e80d50b9d1cff08", "repo_url": "https://github.com/keep-starknet-strange/starknet-agentic", "name": "starkzap-sdk", "description": "Reference for integrating or maintaining applications built with keep-starknet-strange/starkzap, including StarkSDK setup, onboarding, wallet lifecycle, sponsored transactions, ERC20 flows, staking, and transaction builder usage.", "source": ["clawhub", "skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/keep-starknet-strange/starknet-agentic/blob/main/skills/starkzap-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install starkzap-sdk"}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:36:01Z"}, "embedding_text": "starkzap-sdk. Reference for integrating or maintaining applications built with keep-starknet-strange/starkzap, including StarkSDK setup, onboarding, wallet lifecycle, sponsored transactions, ERC20 flows, staking, and transaction builder usage. Platforms: claude_code, openclaw."} {"id": "0cd921a5547f9c55d03b7a1da12f5bd431c89df60258c0fe9c9cf69e15825e6d", "repo_url": "https://github.com/bolivian-peru/os-moda", "name": "app-deployer", "description": "Deploy and manage user applications as managed systemd services", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/bolivian-peru/os-moda/blob/main/skills/app-deployer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install app-deployer"}, "quality": {"stars": 74, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:23:01Z"}, "embedding_text": "app-deployer. Deploy and manage user applications as managed systemd services Platforms: openclaw."} {"id": "4d522f8187a2d1d470123ca068d21a14dbba3ed2fa090d7c761d519c90dbb37e", "repo_url": "https://github.com/bolivian-peru/os-moda", "name": "deploy-ai-agent", "description": "Deploy and manage AI agent workloads with GPU checks, API key management, and health monitoring", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/bolivian-peru/os-moda/blob/main/skills/deploy-ai-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install deploy-ai-agent"}, "quality": {"stars": 74, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:23:01Z"}, "embedding_text": "deploy-ai-agent. Deploy and manage AI agent workloads with GPU checks, API key management, and health monitoring Platforms: openclaw."} {"id": "f7b0b97566b7d951b6a8e9561596d5a8d76932428273a1abcba8c19976a87ceb", "repo_url": "https://github.com/bolivian-peru/os-moda", "name": "drift-detection", "description": "Detect configuration drift \u2014 manual changes that exist outside NixOS management. Offer to bring imperative changes into declarative config.\n", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/bolivian-peru/os-moda/blob/main/skills/drift-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install drift-detection"}, "quality": {"stars": 74, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:23:01Z"}, "embedding_text": "drift-detection. Detect configuration drift \u2014 manual changes that exist outside NixOS management. Offer to bring imperative changes into declarative config.\n Platforms: openclaw."} @@ -4352,18 +4404,18 @@ {"id": "c9a6619dd70e3436b41e2e51a9ce77724d0ca986fd5ff4b6ab7d55b9fc0e6a91", "repo_url": "https://github.com/bolivian-peru/os-moda", "name": "system-config", "description": "Read and edit NixOS module options. Validate before applying. Show diffs before rebuild. Enumerate available options. Understand the NixOS declarative model deeply.\n", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/bolivian-peru/os-moda/blob/main/skills/system-config/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install system-config"}, "quality": {"stars": 74, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:23:01Z"}, "embedding_text": "system-config. Read and edit NixOS module options. Validate before applying. Show diffs before rebuild. Enumerate available options. Understand the NixOS declarative model deeply.\n Platforms: openclaw."} {"id": "94a71a72f233c255792cf15d187a4ff736a69b4f9a966f6e2c7ffe524ab282c5", "repo_url": "https://github.com/bolivian-peru/os-moda", "name": "system-monitor", "description": "Monitor system health: CPU, memory, disk, network, processes, services, and logs. Present data naturally. Correlate issues across subsystems. Alert on thresholds. Diagnose root causes.\n", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/bolivian-peru/os-moda/blob/main/skills/system-monitor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install system-monitor"}, "quality": {"stars": 74, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:23:01Z"}, "embedding_text": "system-monitor. Monitor system health: CPU, memory, disk, network, processes, services, and logs. Present data naturally. Correlate issues across subsystems. Alert on thresholds. Diagnose root causes.\n Platforms: openclaw."} {"id": "78bb7243dffd8ae512dbd6f6d3685dd9f2b0a920e31a8f17894ffcc9a1b530a3", "repo_url": "https://github.com/bolivian-peru/os-moda", "name": "system-packages", "description": "Manage NixOS packages declaratively. Search, install (via configuration.nix rebuild), remove, rollback, and list generations. Understands the NixOS declarative model.\n", "source": ["clawhub"], "categories": [], "triggers": [], "platforms": ["openclaw"], "skill_md_url": "https://github.com/bolivian-peru/os-moda/blob/main/skills/system-packages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install system-packages"}, "quality": {"stars": 74, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:23:01Z"}, "embedding_text": "system-packages. Manage NixOS packages declaratively. Search, install (via configuration.nix rebuild), remove, rollback, and list generations. Understands the NixOS declarative model.\n Platforms: openclaw."} -{"id": "9244c0e0378a3fdebfad18e0a3cb6def26adbfdd4b7c45be6aa826c4c1a82109", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "captions", "description": "Extract closed captions and subtitles from YouTube videos. Use when the user asks for captions, closed captions, CC, accessibility text, or wants to read what was said in a video. Supports timestamps and multiple languages. Great for deaf/HoH accessibility, content review, quoting, and translation.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/captions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install captions", "claude_code": "/plugin install captions"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "captions. Extract closed captions and subtitles from YouTube videos. Use when the user asks for captions, closed captions, CC, accessibility text, or wants to read what was said in a video. Supports timestamps and multiple languages. Great for deaf/HoH accessibility, content review, quoting, and translation. Platforms: claude_code, openclaw."} -{"id": "a1d6c05485050a266aee59c8d0a4628225a51a46db8b5dad10f2d134e66559b4", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "subtitles", "description": "Get subtitles from YouTube videos for translation, language learning, or reading along. Use when the user asks for subtitles, subs, foreign language text, or wants to read video content. Supports multiple languages and timestamped output for sync'd reading.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/subtitles/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install subtitles", "claude_code": "/plugin install subtitles"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "subtitles. Get subtitles from YouTube videos for translation, language learning, or reading along. Use when the user asks for subtitles, subs, foreign language text, or wants to read video content. Supports multiple languages and timestamped output for sync'd reading. Platforms: claude_code, openclaw."} -{"id": "a3b5a8335d9ac60b124e94c7f07d109037411493b9efab8654ccfb5fded38d76", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "transcript", "description": "Get transcripts from any YouTube video \u2014 for summarization, research, translation, quoting, or content analysis. Use when the user shares a video link or asks \"what did they say\", \"get the transcript\", \"transcribe this video\", \"summarize this video\", or wants to analyze spoken content.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install transcript", "claude_code": "/plugin install transcript"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "transcript. Get transcripts from any YouTube video \u2014 for summarization, research, translation, quoting, or content analysis. Use when the user shares a video link or asks \"what did they say\", \"get the transcript\", \"transcribe this video\", \"summarize this video\", or wants to analyze spoken content. Platforms: claude_code, openclaw."} +{"id": "9244c0e0378a3fdebfad18e0a3cb6def26adbfdd4b7c45be6aa826c4c1a82109", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "captions", "description": "Extract closed captions and subtitles from YouTube videos. Use when the user asks for captions, closed captions, CC, accessibility text, or wants to read what was said in a video. Supports timestamps and multiple languages. Great for deaf/HoH accessibility, content review, quoting, and translation.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/captions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install captions", "claude_code": "/plugin install captions"}, "quality": {"stars": 285, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T12:15:55Z"}, "embedding_text": "captions. Extract closed captions and subtitles from YouTube videos. Use when the user asks for captions, closed captions, CC, accessibility text, or wants to read what was said in a video. Supports timestamps and multiple languages. Great for deaf/HoH accessibility, content review, quoting, and translation. Platforms: claude_code, openclaw."} +{"id": "a1d6c05485050a266aee59c8d0a4628225a51a46db8b5dad10f2d134e66559b4", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "subtitles", "description": "Get subtitles from YouTube videos for translation, language learning, or reading along. Use when the user asks for subtitles, subs, foreign language text, or wants to read video content. Supports multiple languages and timestamped output for sync'd reading.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/subtitles/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install subtitles", "claude_code": "/plugin install subtitles"}, "quality": {"stars": 285, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T12:15:55Z"}, "embedding_text": "subtitles. Get subtitles from YouTube videos for translation, language learning, or reading along. Use when the user asks for subtitles, subs, foreign language text, or wants to read video content. Supports multiple languages and timestamped output for sync'd reading. Platforms: claude_code, openclaw."} +{"id": "a3b5a8335d9ac60b124e94c7f07d109037411493b9efab8654ccfb5fded38d76", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "transcript", "description": "Get transcripts from any YouTube video \u2014 for summarization, research, translation, quoting, or content analysis. Use when the user shares a video link or asks \"what did they say\", \"get the transcript\", \"transcribe this video\", \"summarize this video\", or wants to analyze spoken content.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install transcript", "claude_code": "/plugin install transcript"}, "quality": {"stars": 285, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T12:15:55Z"}, "embedding_text": "transcript. Get transcripts from any YouTube video \u2014 for summarization, research, translation, quoting, or content analysis. Use when the user shares a video link or asks \"what did they say\", \"get the transcript\", \"transcribe this video\", \"summarize this video\", or wants to analyze spoken content. Platforms: claude_code, openclaw."} {"id": "d0500255c7df6d0efd2f2d21b09631deffa62e37e8e8e8b8fb60c680ee59e818", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "transcriptapi", "description": "Full TranscriptAPI toolkit \u2014 fetch YouTube transcripts, search videos and channels, browse channel uploads, get latest videos, and explore playlists. Use when the user wants to work with YouTube content programmatically, get transcripts for summarization or analysis, find videos, or monitor channels. Triggers on YouTube URLs, \"transcript\", \"transcriptapi\", \"video summary\", \"what did they say\", \"find videos about\", \"search youtube\".", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/transcriptapi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install transcriptapi", "claude_code": "/plugin install transcriptapi"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "transcriptapi. Full TranscriptAPI toolkit \u2014 fetch YouTube transcripts, search videos and channels, browse channel uploads, get latest videos, and explore playlists. Use when the user wants to work with YouTube content programmatically, get transcripts for summarization or analysis, find videos, or monitor channels. Triggers on YouTube URLs, \"transcript\", \"transcriptapi\", \"video summary\", \"what did they say\", \"find videos about\", \"search youtube\". Platforms: claude_code, openclaw."} {"id": "335f36cc0caa777c9a886ae4d8a45551c35f61ec27b4368e1c367f663f096997", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "video-transcript", "description": "Extract full transcripts from video content for analysis, summarization, note-taking, or research. Use when the user wants a written version of video content, asks to \"transcribe this\", \"get the text from this video\", \"convert video to text\", or shares a video URL for content extraction.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/video-transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install video-transcript", "claude_code": "/plugin install video-transcript"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "video-transcript. Extract full transcripts from video content for analysis, summarization, note-taking, or research. Use when the user wants a written version of video content, asks to \"transcribe this\", \"get the text from this video\", \"convert video to text\", or shares a video URL for content extraction. Platforms: claude_code, openclaw."} -{"id": "c844aa5da60ed1568cb10f8de79b324035b0f2c8ec40ff5ea01d99157b00c801", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-api", "description": "YouTube API access without the official API quota hassle \u2014 transcripts, search, channels, playlists, and metadata with no Google API key needed. Use when the user needs YouTube data programmatically, wants to avoid Google API quotas, or asks for \"youtube api\", \"get video data\", \"youtube without api key\", \"no quota youtube\".", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-api", "claude_code": "/plugin install youtube-api"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "youtube-api. YouTube API access without the official API quota hassle \u2014 transcripts, search, channels, playlists, and metadata with no Google API key needed. Use when the user needs YouTube data programmatically, wants to avoid Google API quotas, or asks for \"youtube api\", \"get video data\", \"youtube without api key\", \"no quota youtube\". Platforms: claude_code, openclaw."} -{"id": "fe4260cb63d0d15dbf1fe7e356e3b6566066915148185c4d3ffee5a47fb89978", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-channels", "description": "Work with YouTube channels \u2014 resolve handles to IDs, browse uploads, get latest videos, search within channels. Use when the user asks about a specific channel, wants to see recent uploads, or says \"what has X posted lately\", \"latest from TED\", \"show me their channel\", \"list channel videos\", \"browse channel uploads\".", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-channels/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-channels", "claude_code": "/plugin install youtube-channels"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "youtube-channels. Work with YouTube channels \u2014 resolve handles to IDs, browse uploads, get latest videos, search within channels. Use when the user asks about a specific channel, wants to see recent uploads, or says \"what has X posted lately\", \"latest from TED\", \"show me their channel\", \"list channel videos\", \"browse channel uploads\". Platforms: claude_code, openclaw."} -{"id": "d80c829437ec137d8ecf8627eeb35789addc3ccf9ef710d479523fc844ad31e8", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-data", "description": "Access YouTube video data \u2014 transcripts, metadata, channel info, search, and playlists. A lightweight alternative to Google's YouTube Data API with no quota limits. Use when the user needs structured data from YouTube videos, channels, or playlists without dealing with Google API setup, OAuth, or daily quotas.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-data/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-data", "claude_code": "/plugin install youtube-data"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "youtube-data. Access YouTube video data \u2014 transcripts, metadata, channel info, search, and playlists. A lightweight alternative to Google's YouTube Data API with no quota limits. Use when the user needs structured data from YouTube videos, channels, or playlists without dealing with Google API setup, OAuth, or daily quotas. Platforms: claude_code, openclaw."} +{"id": "c844aa5da60ed1568cb10f8de79b324035b0f2c8ec40ff5ea01d99157b00c801", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-api", "description": "YouTube API access without the official API quota hassle \u2014 transcripts, search, channels, playlists, and metadata with no Google API key needed. Use when the user needs YouTube data programmatically, wants to avoid Google API quotas, or asks for \"youtube api\", \"get video data\", \"youtube without api key\", \"no quota youtube\".", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-api", "claude_code": "/plugin install youtube-api"}, "quality": {"stars": 285, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T12:15:55Z"}, "embedding_text": "youtube-api. YouTube API access without the official API quota hassle \u2014 transcripts, search, channels, playlists, and metadata with no Google API key needed. Use when the user needs YouTube data programmatically, wants to avoid Google API quotas, or asks for \"youtube api\", \"get video data\", \"youtube without api key\", \"no quota youtube\". Platforms: claude_code, openclaw."} +{"id": "fe4260cb63d0d15dbf1fe7e356e3b6566066915148185c4d3ffee5a47fb89978", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-channels", "description": "Work with YouTube channels \u2014 resolve handles to IDs, browse uploads, get latest videos, search within channels. Use when the user asks about a specific channel, wants to see recent uploads, or says \"what has X posted lately\", \"latest from TED\", \"show me their channel\", \"list channel videos\", \"browse channel uploads\".", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-channels/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-channels", "claude_code": "/plugin install youtube-channels"}, "quality": {"stars": 285, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T12:15:55Z"}, "embedding_text": "youtube-channels. Work with YouTube channels \u2014 resolve handles to IDs, browse uploads, get latest videos, search within channels. Use when the user asks about a specific channel, wants to see recent uploads, or says \"what has X posted lately\", \"latest from TED\", \"show me their channel\", \"list channel videos\", \"browse channel uploads\". Platforms: claude_code, openclaw."} +{"id": "d80c829437ec137d8ecf8627eeb35789addc3ccf9ef710d479523fc844ad31e8", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-data", "description": "Access YouTube video data \u2014 transcripts, metadata, channel info, search, and playlists. A lightweight alternative to Google's YouTube Data API with no quota limits. Use when the user needs structured data from YouTube videos, channels, or playlists without dealing with Google API setup, OAuth, or daily quotas.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-data/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-data", "claude_code": "/plugin install youtube-data"}, "quality": {"stars": 285, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T12:15:55Z"}, "embedding_text": "youtube-data. Access YouTube video data \u2014 transcripts, metadata, channel info, search, and playlists. A lightweight alternative to Google's YouTube Data API with no quota limits. Use when the user needs structured data from YouTube videos, channels, or playlists without dealing with Google API setup, OAuth, or daily quotas. Platforms: claude_code, openclaw."} {"id": "4374a0b439d3e7bfe319aa2c6b630ef58d54501b1913d55779e8a06054147daf", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-full", "description": "Complete YouTube toolkit \u2014 transcripts, search, channels, playlists, and metadata all in one skill. Use when you need comprehensive YouTube access, want to search and then get transcripts, browse channel content, work with playlists, or need the full suite of YouTube data endpoints. The all-in-one YouTube skill for agents.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-full/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-full", "claude_code": "/plugin install youtube-full"}, "quality": {"stars": 75, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "youtube-full. Complete YouTube toolkit \u2014 transcripts, search, channels, playlists, and metadata all in one skill. Use when you need comprehensive YouTube access, want to search and then get transcripts, browse channel content, work with playlists, or need the full suite of YouTube data endpoints. The all-in-one YouTube skill for agents. Platforms: claude_code, openclaw."} -{"id": "ba42a65e71bca2e062ac6bf5a832cb87fd4cb29785eb105deb595d6b00fd935b", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-playlist", "description": "Browse YouTube playlists and fetch video transcripts. Use when the user shares a playlist link, asks \"what's in this playlist\", \"list playlist videos\", \"browse playlist content\", or wants to work with playlist videos and get their transcripts.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-playlist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-playlist", "claude_code": "/plugin install youtube-playlist"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "youtube-playlist. Browse YouTube playlists and fetch video transcripts. Use when the user shares a playlist link, asks \"what's in this playlist\", \"list playlist videos\", \"browse playlist content\", or wants to work with playlist videos and get their transcripts. Platforms: claude_code, openclaw."} -{"id": "3b42ba4230407c37e78a442ae899629bc26e3a5b4fa0082a03e7e08c2a0410cb", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-search", "description": "Search YouTube for videos and channels, search within specific channels, then fetch transcripts. Use when the user asks to \"find videos about X\", \"search YouTube for\", \"look up a channel\", \"who makes videos about\", \"find on youtube\", or wants to discover YouTube content on a topic.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-search", "claude_code": "/plugin install youtube-search"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "youtube-search. Search YouTube for videos and channels, search within specific channels, then fetch transcripts. Use when the user asks to \"find videos about X\", \"search YouTube for\", \"look up a channel\", \"who makes videos about\", \"find on youtube\", or wants to discover YouTube content on a topic. Platforms: claude_code, openclaw."} -{"id": "068c45353e113c6aa78a63eb694b70da4ca7899d1cbb4432f3283d1861b5c226", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "yt", "description": "Quick YouTube utility \u2014 fetch transcripts, search videos, get latest from channels. Use when someone shares a YouTube link, asks about a video, or says \"yt\", \"youtube\", \"check this video\", \"what's this video about\", \"find videos about\", \"latest from\".", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/yt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install yt", "claude_code": "/plugin install yt"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "yt. Quick YouTube utility \u2014 fetch transcripts, search videos, get latest from channels. Use when someone shares a YouTube link, asks about a video, or says \"yt\", \"youtube\", \"check this video\", \"what's this video about\", \"find videos about\", \"latest from\". Platforms: claude_code, openclaw."} +{"id": "ba42a65e71bca2e062ac6bf5a832cb87fd4cb29785eb105deb595d6b00fd935b", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-playlist", "description": "Browse YouTube playlists and fetch video transcripts. Use when the user shares a playlist link, asks \"what's in this playlist\", \"list playlist videos\", \"browse playlist content\", or wants to work with playlist videos and get their transcripts.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-playlist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-playlist", "claude_code": "/plugin install youtube-playlist"}, "quality": {"stars": 285, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T12:15:55Z"}, "embedding_text": "youtube-playlist. Browse YouTube playlists and fetch video transcripts. Use when the user shares a playlist link, asks \"what's in this playlist\", \"list playlist videos\", \"browse playlist content\", or wants to work with playlist videos and get their transcripts. Platforms: claude_code, openclaw."} +{"id": "3b42ba4230407c37e78a442ae899629bc26e3a5b4fa0082a03e7e08c2a0410cb", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "youtube-search", "description": "Search YouTube for videos and channels, search within specific channels, then fetch transcripts. Use when the user asks to \"find videos about X\", \"search YouTube for\", \"look up a channel\", \"who makes videos about\", \"find on youtube\", or wants to discover YouTube content on a topic.", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/youtube-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install youtube-search", "claude_code": "/plugin install youtube-search"}, "quality": {"stars": 285, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T12:15:55Z"}, "embedding_text": "youtube-search. Search YouTube for videos and channels, search within specific channels, then fetch transcripts. Use when the user asks to \"find videos about X\", \"search YouTube for\", \"look up a channel\", \"who makes videos about\", \"find on youtube\", or wants to discover YouTube content on a topic. Platforms: claude_code, openclaw."} +{"id": "068c45353e113c6aa78a63eb694b70da4ca7899d1cbb4432f3283d1861b5c226", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "yt", "description": "Quick YouTube utility \u2014 fetch transcripts, search videos, get latest from channels. Use when someone shares a YouTube link, asks about a video, or says \"yt\", \"youtube\", \"check this video\", \"what's this video about\", \"find videos about\", \"latest from\".", "source": ["clawhub", "skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/clawhub/yt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install yt", "claude_code": "/plugin install yt"}, "quality": {"stars": 285, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T12:15:55Z"}, "embedding_text": "yt. Quick YouTube utility \u2014 fetch transcripts, search videos, get latest from channels. Use when someone shares a YouTube link, asks about a video, or says \"yt\", \"youtube\", \"check this video\", \"what's this video about\", \"find videos about\", \"latest from\". Platforms: claude_code, openclaw."} {"id": "b23680d3c6131e9cebd96a8e1ffabdc0bada828ac01041bc7d483ab645da3c92", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "captions", "description": "Extract closed captions and subtitles from YouTube videos. Use when the user asks for captions, closed captions, CC, accessibility text, or wants to read what was said in a video. Supports timestamps and multiple languages. Great for deaf/HoH accessibility, content review, quoting, and translation.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/skills/captions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install captions", "claude_code": "/plugin install captions"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "captions. Extract closed captions and subtitles from YouTube videos. Use when the user asks for captions, closed captions, CC, accessibility text, or wants to read what was said in a video. Supports timestamps and multiple languages. Great for deaf/HoH accessibility, content review, quoting, and translation. Platforms: claude_code, openclaw."} {"id": "b6d64471ebf65a39522b76a0362ad0ae86c1a93b1da0138a19074c132f1208ac", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "subtitles", "description": "Get subtitles from YouTube videos for translation, language learning, or reading along. Use when the user asks for subtitles, subs, foreign language text, or wants to read video content. Supports multiple languages and timestamped output for sync'd reading.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/skills/subtitles/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install subtitles", "claude_code": "/plugin install subtitles"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "subtitles. Get subtitles from YouTube videos for translation, language learning, or reading along. Use when the user asks for subtitles, subs, foreign language text, or wants to read video content. Supports multiple languages and timestamped output for sync'd reading. Platforms: claude_code, openclaw."} {"id": "f77089cb34c56922f37f36f0f7a9b34406853ba7bfad581980d3d0c23dcab5dc", "repo_url": "https://github.com/zeropointrepo/youtube-skills", "name": "transcript", "description": "Get transcripts from any YouTube video \u2014 for summarization, research, translation, quoting, or content analysis. Use when the user shares a video link or asks \"what did they say\", \"get the transcript\", \"transcribe this video\", \"summarize this video\", or wants to analyze spoken content.", "source": ["clawhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code", "openclaw"], "skill_md_url": "https://github.com/ZeroPointRepo/youtube-skills/blob/main/skills/transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"openclaw": "clawhub install transcript", "claude_code": "/plugin install transcript"}, "quality": {"stars": 75, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T13:32:48Z"}, "embedding_text": "transcript. Get transcripts from any YouTube video \u2014 for summarization, research, translation, quoting, or content analysis. Use when the user shares a video link or asks \"what did they say\", \"get the transcript\", \"transcribe this video\", \"summarize this video\", or wants to analyze spoken content. Platforms: claude_code, openclaw."} @@ -7494,7 +7546,6 @@ {"id": "7c60926fe0d31bb3077668298f786485373cbcd0cf3c5fdfbb48243567df05a7", "repo_url": "https://github.com/nikiforovall/claude-code-rules", "name": "dotnet-dependency", "description": "This skill should be used when investigating .NET project dependencies, understanding why packages are included, listing references, or auditing for outdated/vulnerable packages.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nikiforovall/claude-code-rules/blob/main/plugins/handbook-dotnet/skills/dotnet-dependency/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "A", "skillhub_score": 8.3, "last_updated": "2026-03-14T08:32:09Z"}, "embedding_text": "dotnet-dependency. This skill should be used when investigating .NET project dependencies, understanding why packages are included, listing references, or auditing for outdated/vulnerable packages. Platforms: claude_code."} {"id": "2f42bb2c0420e3688fe7c309091f19adeebc28dc7be9fce16eb4939e6569238c", "repo_url": "https://github.com/wshobson/agents", "name": "postgresql-table-design", "description": "Design a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/database-design/skills/postgresql/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install postgresql-table-design"}, "quality": {"stars": 31391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "postgresql-table-design. Design a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "a5ddaf8c0a749c045f9d2a5b6a377536abb9be2e61e1a0b3b4e81c92b954fe91", "repo_url": "https://github.com/mediar-ai/screenpipe", "name": "brand-style", "description": "Search the user's screen recordings, audio transcriptions, and UI interactions via the local Screenpipe API at localhost:3030. Use when the user asks about their screen activity, meetings, apps they u", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mediar-ai/screenpipe/blob/main/.claude/skills/brand-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17241, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T00:19:43Z"}, "embedding_text": "brand-style. Search the user's screen recordings, audio transcriptions, and UI interactions via the local Screenpipe API at localhost:3030. Use when the user asks about their screen activity, meetings, apps they u Platforms: claude_code."} -{"id": "655b5aa63d8a335db0205a213920970c52e3b7495002edf72b5dd972c0188e6e", "repo_url": "https://github.com/ronnycoding/.claude", "name": "secure-web-search", "description": "Provides detailed guidance for performing web searches with privacy protection, source verification, and information validation. Includes specific search operators, privacy-focused engines, credibilit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ronnycoding/.claude/blob/main/skills/secure-web-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "A", "skillhub_score": 7.9, "last_updated": "2026-02-21T06:37:34Z"}, "embedding_text": "secure-web-search. Provides detailed guidance for performing web searches with privacy protection, source verification, and information validation. Includes specific search operators, privacy-focused engines, credibilit Platforms: claude_code."} {"id": "204f72223a27786d1e15ef10d4daa822cca465d88840ed299268a4d66744cb78", "repo_url": "https://github.com/sgcarstrends/backend", "name": "logo-management", "description": "Manages car logo assets with brand name normalization, Redis caching, and Vercel Blob storage integration. Provides scraping utilities for external sources and handles logo URL resolution with fallbac", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sgcarstrends/backend/blob/main/.claude/skills/logo-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "A", "skillhub_score": 7.5, "last_updated": "2026-03-16T04:01:40Z"}, "embedding_text": "logo-management. Manages car logo assets with brand name normalization, Redis caching, and Vercel Blob storage integration. Provides scraping utilities for external sources and handles logo URL resolution with fallbac Platforms: claude_code."} {"id": "a29f1ad6c0138da6c39295133ccdcd3899ae2a6226916ceed559ffe78f6bcb3d", "repo_url": "https://github.com/alekspetrov/navigator", "name": "frontend-component", "description": "This skill automatically generates React or Vue components with TypeScript, tests, and styles when triggered by phrases like 'create component'. It validates naming, creates props interfaces, and outp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alekspetrov/navigator/blob/main/skills/frontend-component/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 159, "skillhub_rank": "A", "skillhub_score": 8.3, "last_updated": "2026-02-13T15:17:09Z"}, "embedding_text": "frontend-component. This skill automatically generates React or Vue components with TypeScript, tests, and styles when triggered by phrases like 'create component'. It validates naming, creates props interfaces, and outp Platforms: claude_code."} {"id": "31a0dc68bfed688510b53522f32b3e2ff4f1e0e6f421bf9c77ac52a2737d9a0b", "repo_url": "https://github.com/mckinsey/vizro", "name": "dashboard-design", "description": "USE THIS SKILL FIRST when user wants to create and design a dashboard, ESPECIALLY Vizro dashboards. This skill enforces a 3-step workflow (requirements, layout, visualization) that must be followed be", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mckinsey/vizro/blob/main/vizro-e2e-flow/skills/dashboard-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3634, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T18:17:08Z"}, "embedding_text": "dashboard-design. USE THIS SKILL FIRST when user wants to create and design a dashboard, ESPECIALLY Vizro dashboards. This skill enforces a 3-step workflow (requirements, layout, visualization) that must be followed be Platforms: claude_code."} @@ -11995,6 +12046,4691 @@ {"id": "f66f92f5781b8904f520ba478bc9306f2a7adf71cd3887eaae5f0c5edc037dd5", "repo_url": "https://github.com/hoodini/ai-agents-skills", "name": "owasp-security", "description": "Implement secure coding practices following OWASP Top 10. Use when preventing security vulnerabilities, implementing authentication, securing APIs, or conducting security reviews. Triggers on OWASP, s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hoodini/ai-agents-skills/blob/master/skills/owasp-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T19:09:32Z"}, "embedding_text": "owasp-security. Implement secure coding practices following OWASP Top 10. Use when preventing security vulnerabilities, implementing authentication, securing APIs, or conducting security reviews. Triggers on OWASP, s Platforms: claude_code."} {"id": "873942ceb6963b1becb2b54d8f65e5589ef38d117f58fe07500e6ca4180e289d", "repo_url": "https://github.com/behisecc/vibesec-skill", "name": "VibeSec-Skill", "description": "This skill helps Claude write secure web applications. Use this when working on any web application or when a user requests a scan or audit to ensure security best practices are followed.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/behisecc/vibesec-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install VibeSec-Skill"}, "quality": {"stars": 676, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-17T14:03:16Z"}, "embedding_text": "VibeSec-Skill. This skill helps Claude write secure web applications. Use this when working on any web application or when a user requests a scan or audit to ensure security best practices are followed. Platforms: claude_code."} {"id": "c587292244c888f2eac0e2b49e0e545d7470cfde3de87f428e9d6d709432dcfa", "repo_url": "https://github.com/jykim/claude-obsidian-skills", "name": "obsidian-markdown-structure", "description": "Validate and enforce markdown document structure including frontmatter positioning, heading hierarchy, and content organization. Use when creating or validating markdown files.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jykim/claude-obsidian-skills/blob/main/obsidian-markdown-structure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T22:15:25Z"}, "embedding_text": "obsidian-markdown-structure. Validate and enforce markdown document structure including frontmatter positioning, heading hierarchy, and content organization. Use when creating or validating markdown files. Platforms: claude_code."} +{"id": "9599a43f763aa61fb4bfa3ca1762c945cd9246194d1095e21b5c6261e3394bc4", "repo_url": "https://github.com/jezweb/claude-skills", "name": "responsive-images", "description": "Implement performant responsive images with srcset, sizes, lazy loading, and modern formats (WebP, AVIF). Covers aspect-ratio for CLS prevention, picture element for art direction, and fetchpriority f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/cloudflare/skills/cloudflare-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 866, "skillhub_rank": "A", "skillhub_score": 8.9, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "responsive-images. Implement performant responsive images with srcset, sizes, lazy loading, and modern formats (WebP, AVIF). Covers aspect-ratio for CLS prevention, picture element for art direction, and fetchpriority f Platforms: claude_code."} +{"id": "2178e58d4ff82f104469ccf5b4f9f5b621862f55752faf87a56d6d6e28fd81fc", "repo_url": "https://github.com/therealxiaomanchu/ex-skill", "name": "create-ex", "description": "Distill an ex-partner into an AI Skill. Import WeChat history, photos, social media posts, generate Relationship Memory + Persona, with continuous evolution. | \u628a\u524d\u4efb\u84b8\u998f\u6210 AI Skill\uff0c\u5bfc\u5165\u5fae\u4fe1\u804a\u5929\u8bb0\u5f55\u3001\u7167\u7247\u3001\u670b\u53cb\u5708\uff0c\u751f\u6210 Relat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/therealxiaomanchu/ex-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5650, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:46:35Z"}, "embedding_text": "create-ex. Distill an ex-partner into an AI Skill. Import WeChat history, photos, social media posts, generate Relationship Memory + Persona, with continuous evolution. | \u628a\u524d\u4efb\u84b8\u998f\u6210 AI Skill\uff0c\u5bfc\u5165\u5fae\u4fe1\u804a\u5929\u8bb0\u5f55\u3001\u7167\u7247\u3001\u670b\u53cb\u5708\uff0c\u751f\u6210 Relat Platforms: claude_code."} +{"id": "5a48a7e4e54c94123ed74c2d5e7460470b8dd1ccafec13553a1ba540355d03db", "repo_url": "https://github.com/code-yeongyu/oh-my-openagent", "name": "agent-browser", "description": "Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, tes", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/code-yeongyu/oh-my-openagent/blob/dev/packages/omo-opencode/src/features/builtin-skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63175, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:06:08Z"}, "embedding_text": "agent-browser. Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, tes Platforms: claude_code."} +{"id": "c68ef81ce3d66ada1e380053d2706439db8c42fd055b89ead796934ba3cf8f4e", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "creative-thinking-for-research", "description": "Applies cognitive science frameworks for creative thinking to CS and AI research ideation. Use when seeking genuinely novel research directions by leveraging combinatorial creativity, analogical reasoning, constraint manipulation, and other empirically grounded creative strategies.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/21-research-ideation/creative-thinking-for-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install creative-thinking-for-research"}, "quality": {"stars": 9933, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "creative-thinking-for-research. Applies cognitive science frameworks for creative thinking to CS and AI research ideation. Use when seeking genuinely novel research directions by leveraging combinatorial creativity, analogical reasoning, constraint manipulation, and other empirically grounded creative strategies. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} +{"id": "e5bacdee564d3311d50b15fc2fca2dce54f48aa92e4b335347869af176847c33", "repo_url": "https://github.com/onekeyhq/app-monorepo", "name": "fix-lint", "description": "Helps fix oxlint errors and warnings in the OneKey codebase. Use when running yarn lint and encountering warnings, cleaning up code before committing, or fixing spellcheck, unused variable, or other l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onekeyhq/app-monorepo/blob/x/.skillshare/skills/1k-analytics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2377, "skillhub_rank": "A", "skillhub_score": 8.4, "last_updated": "2026-06-22T04:10:59Z"}, "embedding_text": "fix-lint. Helps fix oxlint errors and warnings in the OneKey codebase. Use when running yarn lint and encountering warnings, cleaning up code before committing, or fixing spellcheck, unused variable, or other l Platforms: claude_code."} +{"id": "ba32d108d7fd93579e3aef1e5c66e6866db45a0f14fad00a6473dcf5ecd0f8b9", "repo_url": "https://github.com/phuryn/pm-skills", "name": "review-resume", "description": "Comprehensive PM resume review and tailoring against 10 best practices including XYZ+S formula, keyword optimization, job-specific tailoring, and structure. Use when reviewing a PM resume, preparing for job applications, or improving resume impact.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-toolkit/skills/review-resume/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install review-resume"}, "quality": {"stars": 20350, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T14:12:26Z"}, "embedding_text": "review-resume. Comprehensive PM resume review and tailoring against 10 best practices including XYZ+S formula, keyword optimization, job-specific tailoring, and structure. Use when reviewing a PM resume, preparing for job applications, or improving resume impact. Platforms: claude_code."} +{"id": "6af5838065cd5a5fddab702b9f7a0fd006e02067488bf90cd17c8c5304db55fe", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "crafting-effective-readmes", "description": "Use when writing or improving README files. Not all READMEs are the same \u2014 provides templates and guidance matched to your audience and project type.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/crafting-effective-readmes/skills/crafting-effective-readmes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install crafting-effective-readmes"}, "quality": {"stars": 2070, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "crafting-effective-readmes. Use when writing or improving README files. Not all READMEs are the same \u2014 provides templates and guidance matched to your audience and project type. Platforms: claude_code."} +{"id": "4719583fa4c17823c9eede3a03db52fcb51b1a469ed96fd9cf21ca9d2895d2f5", "repo_url": "https://github.com/n8n-io/n8n", "name": "content-design", "description": "Product content designer for UI copy. Use when writing, reviewing, or auditing user-facing text: button labels, error messages, tooltips, empty states, modal copy, placeholder text, confirmation dialo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/n8n-io/n8n/blob/master/.agents/skills/content-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193537, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:19:28Z"}, "embedding_text": "content-design. Product content designer for UI copy. Use when writing, reviewing, or auditing user-facing text: button labels, error messages, tooltips, empty states, modal copy, placeholder text, confirmation dialo Platforms: claude_code."} +{"id": "def08241eeb0fc47f57b666b0088d5f3a9a6c4824be30a471951e21fe859c9c1", "repo_url": "https://github.com/minimax-ai/skills", "name": "ppt-editing-skill", "description": "Edit existing PowerPoint files or templates with XML-safe workflows. Use for template-based deck updates: analyze layouts, map content to slides, duplicate/reorder/delete slides safely, edit slide XML", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/plugins/pptx-plugin/skills/ppt-editing-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "ppt-editing-skill. Edit existing PowerPoint files or templates with XML-safe workflows. Use for template-based deck updates: analyze layouts, map content to slides, duplicate/reorder/delete slides safely, edit slide XML Platforms: claude_code."} +{"id": "635ef66cbdd4ddb86ea5ef841bbd0fbb77f3192482c379ce5cde690474f0d2e5", "repo_url": "https://github.com/phuryn/pm-skills", "name": "product-strategy", "description": "Create a comprehensive product strategy using the 9-section Product Strategy Canvas \u2014 vision, segments, costs, value propositions, trade-offs, metrics, growth, capabilities, and defensibility. Use when building a product strategy, creating a strategic plan, or defining product direction.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-product-strategy/skills/product-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install product-strategy"}, "quality": {"stars": 20350, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T14:12:26Z"}, "embedding_text": "product-strategy. Create a comprehensive product strategy using the 9-section Product Strategy Canvas \u2014 vision, segments, costs, value propositions, trade-offs, metrics, growth, capabilities, and defensibility. Use when building a product strategy, creating a strategic plan, or defining product direction. Platforms: claude_code."} +{"id": "2e8cfccdf500a3ec4d02467b4b380010a7b22ab74e1b8662798aec90027eeb44", "repo_url": "https://github.com/n8n-io/n8n", "name": "frontend", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/n8n-io/n8n/blob/master/.agents/skills/community-pr-readiness-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193537, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:19:28Z"}, "embedding_text": "frontend. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "fb97b18f630de0f67d43684a1835ab37b69e20794d684a7ef0b71f03a63a3007", "repo_url": "https://github.com/arize-ai/phoenix", "name": "phoenix-tracing", "description": "OpenInference semantic conventions and instrumentation for Phoenix AI observability. Use when implementing LLM tracing, creating custom spans, or deploying to production.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arize-ai/phoenix/blob/main/.agents/skills/phoenix-tracing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10224, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T17:03:46Z"}, "embedding_text": "phoenix-tracing. OpenInference semantic conventions and instrumentation for Phoenix AI observability. Use when implementing LLM tracing, creating custom spans, or deploying to production. Platforms: claude_code."} +{"id": "b67e39d9e584e8975ad8dd5977d93b4fa8f9e2333daf1f0465e3ec0b9e42ed6a", "repo_url": "https://github.com/panniantong/agent-reach", "name": "agent-reach", "description": "Give your AI agent eyes to see the entire internet. Search and read 16 platforms: Twitter/X, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu, Douyin, Weibo, WeChat Articles, Xiaoyuzhou Podcast, LinkedI", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/panniantong/agent-reach/blob/main/agent_reach/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37049, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T12:45:59Z"}, "embedding_text": "agent-reach. Give your AI agent eyes to see the entire internet. Search and read 16 platforms: Twitter/X, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu, Douyin, Weibo, WeChat Articles, Xiaoyuzhou Podcast, LinkedI Platforms: claude_code."} +{"id": "96f69b876757f0b32be6811517b2a35245044e39968a6ab8033b68c1f53aeefb", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "financial-document-parser", "description": "Extract and analyze data from invoices, receipts, bank statements, and financial documents. Categorize expenses, track recurring charges, and generate expense reports. Use when user provides financial", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/.agents/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "financial-document-parser. Extract and analyze data from invoices, receipts, bank statements, and financial documents. Categorize expenses, track recurring charges, and generate expense reports. Use when user provides financial Platforms: claude_code."} +{"id": "d1a7550d9058bae77586bd855c176d77b523b63decd74c4f7c3bd6e432524f0e", "repo_url": "https://github.com/openclaw/openclaw", "name": "merge-pr", "description": "Merge a GitHub PR via squash after /preparepr. Use when asked to merge a ready PR. Do not push to main or modify code. Ensure the PR ends in MERGED state and clean up worktrees after success.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/.agents/skills/agent-transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:08:25Z"}, "embedding_text": "merge-pr. Merge a GitHub PR via squash after /preparepr. Use when asked to merge a ready PR. Do not push to main or modify code. Ensure the PR ends in MERGED state and clean up worktrees after success. Platforms: claude_code."} +{"id": "a4faff9e5fdbd97c8c9af892b407fb6f288f62f2be3e532543a88093e2d49343", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "c-level-advisor", "description": "Provides strategic business advice by channelling the perspectives of 10 executive roles \u2014 CEO, CTO, COO, CPO, CMO, CFO, CRO, CISO, CHRO, and Executive Mentor \u2014 across decisions, trade-offs, and org c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/README/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "c-level-advisor. Provides strategic business advice by channelling the perspectives of 10 executive roles \u2014 CEO, CTO, COO, CPO, CMO, CFO, CRO, CISO, CHRO, and Executive Mentor \u2014 across decisions, trade-offs, and org c Platforms: claude_code."} +{"id": "87775c57fb4b8160577e46a987a287ced0c6fdced40e18434fd0910d5f1c17f9", "repo_url": "https://github.com/jezweb/claude-skills", "name": "react-native-expo", "description": "Build React Native 0.76+ apps with Expo SDK 52-54. Covers mandatory New Architecture (0.82+/SDK 55+), React 19 changes, SDK 54 breaking changes (expo-av, expo-file-system, Reanimated v4), and Swift iO", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/frontend/skills/react-native/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 866, "skillhub_rank": "S", "skillhub_score": 9.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "react-native-expo. Build React Native 0.76+ apps with Expo SDK 52-54. Covers mandatory New Architecture (0.82+/SDK 55+), React 19 changes, SDK 54 breaking changes (expo-av, expo-file-system, Reanimated v4), and Swift iO Platforms: claude_code."} +{"id": "9eb2b07fc02650971415eb61d2955133ba2aca88269d78070682d0a603ff87c5", "repo_url": "https://github.com/tanweai/pua", "name": "p9", "description": "P9 Tech Lead mode \u2014 write Task Prompts, manage P8 agent teams, never write code yourself. Use when user says 'P9\u6a21\u5f0f', 'tech-lead', '\u5e2e\u6211\u7ba1\u7406\u8fd9\u4e2a\u9879\u76ee', '\u4efb\u52a1\u62c6\u89e3', or when coordinating 3+ parallel agents. Produces:", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tanweai/pua/blob/main/codex/pua-p9/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18373, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T15:15:16Z"}, "embedding_text": "p9. P9 Tech Lead mode \u2014 write Task Prompts, manage P8 agent teams, never write code yourself. Use when user says 'P9\u6a21\u5f0f', 'tech-lead', '\u5e2e\u6211\u7ba1\u7406\u8fd9\u4e2a\u9879\u76ee', '\u4efb\u52a1\u62c6\u89e3', or when coordinating 3+ parallel agents. Produces: Platforms: claude_code."} +{"id": "7d17cc98cd7a19cff5a0f216e45afd139da215274cbd3da130f9514b41df680f", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "ffmpeg-video-editing", "description": "Video editing with ffmpeg including cutting, trimming, concatenating segments, and re-encoding. Use when working with video files (.mp4, .mkv, .avi) for: removing segments, joining clips, extracting p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks-extra/video-filler-word-remover/environment/skills/ffmpeg-video-editing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "ffmpeg-video-editing. Video editing with ffmpeg including cutting, trimming, concatenating segments, and re-encoding. Use when working with video files (.mp4, .mkv, .avi) for: removing segments, joining clips, extracting p Platforms: claude_code."} +{"id": "9749d737be77475fbef7502b5dc081acc24fb41a59a16662572ee710483b5174", "repo_url": "https://github.com/molt-bot/clawdbot", "name": "goplaces", "description": "Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/molt-bot/clawdbot/blob/main/skills/goplaces/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:18:40Z"}, "embedding_text": "goplaces. Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts. Platforms: claude_code."} +{"id": "082b00103f8e7c027ed4b1add4351e125c02a759261e61731873ac6322436a83", "repo_url": "https://github.com/onmax/nuxt-skills", "name": "document-writer", "description": "Use when writing blog posts or documentation markdown files - provides writing style guide (active voice, present tense), content structure patterns, and MDC component usage. Overrides brevity rules f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onmax/nuxt-skills/blob/main/skills/document-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 683, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T07:41:14Z"}, "embedding_text": "document-writer. Use when writing blog posts or documentation markdown files - provides writing style guide (active voice, present tense), content structure patterns, and MDC component usage. Overrides brevity rules f Platforms: claude_code."} +{"id": "a07f772b490f7eff5f4ddc89f9151a6fc37b5fd770dacd06ead23213b9d1eea6", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "personal-productivity", "description": "Help users manage their time and tasks more effectively. Use when someone is overwhelmed with work, struggling with focus, trying to balance multiple responsibilities, or asking how to get more done.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/personal-productivity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "personal-productivity. Help users manage their time and tasks more effectively. Use when someone is overwhelmed with work, struggling with focus, trying to balance multiple responsibilities, or asking how to get more done. Platforms: claude_code."} +{"id": "e5f5e171c7b7419092b91f45f36f83f94627fcd2d026df482f3ff373b80d8d0b", "repo_url": "https://github.com/n8n-io/n8n", "name": "loom-transcript", "description": "Fetch and display the full transcript from a Loom video URL. Use when the user wants to get or read a Loom transcript.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/n8n-io/n8n/blob/master/.agents/skills/loom-transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193537, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:19:28Z"}, "embedding_text": "loom-transcript. Fetch and display the full transcript from a Loom video URL. Use when the user wants to get or read a Loom transcript. Platforms: claude_code."} +{"id": "5a88d4f1b8e77a9721acf0a0399c2492e1272b8cbe4c11cb9a6641bf35564afb", "repo_url": "https://github.com/gavrielc/nanoclaw", "name": "status", "description": "Quick read-only health check \u2014 session context, workspace mounts, tool availability, and task snapshot. Use when the user asks for system status or runs /status.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gavrielc/nanoclaw/blob/main/.claude/skills/add-macos-statusbar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29945, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:09:15Z"}, "embedding_text": "status. Quick read-only health check \u2014 session context, workspace mounts, tool availability, and task snapshot. Use when the user asks for system status or runs /status. Platforms: claude_code."} +{"id": "a5c564dde26bee39154b1dd60b9f6ba5c4600173a6b2684218d91ebda8a42c5f", "repo_url": "https://github.com/payloadcms/payload", "name": "audit-dependencies", "description": "Use when fixing dependency vulnerabilities, running pnpm audit, or when the audit-dependencies CI check fails", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/payloadcms/payload/blob/main/.claude/skills/audit-dependencies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 43143, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T20:28:52Z"}, "embedding_text": "audit-dependencies. Use when fixing dependency vulnerabilities, running pnpm audit, or when the audit-dependencies CI check fails Platforms: claude_code."} +{"id": "9612615e362386a5f1bb2863d8f8bc5836d225e31c70efcfb125bd0f8358299b", "repo_url": "https://github.com/anthropics/knowledge-work-plugins", "name": "contract-review", "description": "Review contracts against your organization's negotiation playbook, flagging deviations and generating redline suggestions. Use when reviewing vendor contracts, customer agreements, or any commercial a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/knowledge-work-plugins/blob/main/small-business/skills/contract-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21662, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T13:47:45Z"}, "embedding_text": "contract-review. Review contracts against your organization's negotiation playbook, flagging deviations and generating redline suggestions. Use when reviewing vendor contracts, customer agreements, or any commercial a Platforms: claude_code."} +{"id": "c4ea2c371731a72ebd6c3013998e989a79ddcfe0a9203851e1f32f205246c11e", "repo_url": "https://github.com/phuryn/pm-skills", "name": "marketing-ideas", "description": "Generate 5 creative, cost-effective marketing ideas with channels, messaging, and engagement rationale. Use when brainstorming marketing campaigns, planning product promotion, or looking for creative marketing tactics.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-marketing-growth/skills/marketing-ideas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install marketing-ideas"}, "quality": {"stars": 20350, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T14:12:26Z"}, "embedding_text": "marketing-ideas. Generate 5 creative, cost-effective marketing ideas with channels, messaging, and engagement rationale. Use when brainstorming marketing campaigns, planning product promotion, or looking for creative marketing tactics. Platforms: claude_code."} +{"id": "0091da4fc0771f64e984afe0622b64c79ebc690deee02bffab2f2e7879c24b53", "repo_url": "https://github.com/leemysw/feishu-docx", "name": "feishu-docx", "description": "Export and manage Feishu/Lark cloud documents. Supports docx, sheets, bitable, wiki, WeChat article import/export, document writing, and drive file management. Use this skill when you need to read, analyze, write, or manage content in Feishu knowledge base.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "claude-skills", "context", "feishu", "file-parser", "knowledge", "lark", "markdown", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/leemysw/feishu-docx/blob/main/.skills/feishu-docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install feishu-docx"}, "quality": {"stars": 222, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T12:56:15Z"}, "embedding_text": "feishu-docx. Export and manage Feishu/Lark cloud documents. Supports docx, sheets, bitable, wiki, WeChat article import/export, document writing, and drive file management. Use this skill when you need to read, analyze, write, or manage content in Feishu knowledge base. Categories: ai-agent, claude-skills, context, feishu, file-parser, knowledge, lark, markdown, skills. Platforms: claude_code."} +{"id": "ac15dbf2c189537424dc2f92f70f5f9afcf4eca3fb422100cb805665b5a061aa", "repo_url": "https://github.com/gavrielc/nanoclaw", "name": "capabilities", "description": "Show what this NanoClaw instance can do \u2014 installed skills, available tools, and system info. Read-only. Use when the user asks what the bot can do, what's installed, or runs /capabilities.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gavrielc/nanoclaw/blob/main/.claude/skills/add-atomic-chat-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29945, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:09:15Z"}, "embedding_text": "capabilities. Show what this NanoClaw instance can do \u2014 installed skills, available tools, and system info. Read-only. Use when the user asks what the bot can do, what's installed, or runs /capabilities. Platforms: claude_code."} +{"id": "b2bc7337e6d57618c29c5e5b2e101cd15b1eadce2ead170d019262e0391ad818", "repo_url": "https://github.com/openclaw/openclaw", "name": "openclaw-ghsa-maintainer", "description": "Maintainer workflow for OpenClaw GitHub Security Advisories (GHSA). Use when Codex needs to inspect, patch, validate, or publish a repo advisory, verify private-fork state, prepare advisory Markdown o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/.agents/skills/openclaw-ghsa-maintainer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:08:25Z"}, "embedding_text": "openclaw-ghsa-maintainer. Maintainer workflow for OpenClaw GitHub Security Advisories (GHSA). Use when Codex needs to inspect, patch, validate, or publish a repo advisory, verify private-fork state, prepare advisory Markdown o Platforms: claude_code."} +{"id": "910f54a0015055e4a63af33560b771b816e20f3f949705f016762cf9dabe11ed", "repo_url": "https://github.com/moizibnyousaf/ai-agent-skills", "name": "code-refactoring", "description": "Code refactoring patterns and techniques for improving code quality without changing behavior. Use for cleaning up legacy code, reducing complexity, or improving maintainability.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moizibnyousaf/ai-agent-skills/blob/main/skills/ask-questions-if-underspecified/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-refactoring"}, "quality": {"stars": 1077, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-05T09:57:12Z"}, "embedding_text": "code-refactoring. Code refactoring patterns and techniques for improving code quality without changing behavior. Use for cleaning up legacy code, reducing complexity, or improving maintainability. Platforms: claude_code."} +{"id": "c0596a28e7dcb484a9afa1708903f2a70582c6bfbd1aa8899a6a59450b9d1550", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "confluence-assistant", "description": "Expert in Confluence operations using Atlassian MCP. Use when the user says \"search Confluence\", \"create a Confluence page\", \"update a page\", \"find documentation in Confluence\", \"list spaces\", or \"add a comment to a page\". Do NOT use for Jira issues, general web search, or local file creation.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(development)/confluence-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install confluence-assistant"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "confluence-assistant. Expert in Confluence operations using Atlassian MCP. Use when the user says \"search Confluence\", \"create a Confluence page\", \"update a page\", \"find documentation in Confluence\", \"list spaces\", or \"add a comment to a page\". Do NOT use for Jira issues, general web search, or local file creation. Platforms: claude_code."} +{"id": "d7fdb5c9b82231ce37da023042ac5dc1ae13d8dfe8213a0bd74d7b0d0e63f763", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "owasp-asi", "description": "OWASP Top 10 for Agentic Applications 2026 (ASI) classification framework. Use for mapping security findings to standardized risk categories.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/agent-scan/prompt/skills/owasp-asi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install owasp-asi"}, "quality": {"stars": 3948, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:28:01Z"}, "embedding_text": "owasp-asi. OWASP Top 10 for Agentic Applications 2026 (ASI) classification framework. Use for mapping security findings to standardized risk categories. Platforms: claude_code."} +{"id": "5191fdd226b85a319a91543405a93dfdca364a7776572d1464cd2de4eadfc6b2", "repo_url": "https://github.com/r3bl-org/r3bl-open-core", "name": "analyze-log-files", "description": "Analyze log files by stripping ANSI escape sequences first. Use when asked to process, handle, read, or analyze log files that may contain terminal escape codes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/r3bl-org/r3bl-open-core/blob/main/.agents/skills/analyze-log-files/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 475, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:45:39Z"}, "embedding_text": "analyze-log-files. Analyze log files by stripping ANSI escape sequences first. Use when asked to process, handle, read, or analyze log files that may contain terminal escape codes. Platforms: claude_code."} +{"id": "62e4dd1ccbdefdb5b5f253086fe3bf64b125452d3b59c5e7a0f02779da510665", "repo_url": "https://github.com/sickn33/antigravity-awesome-skills", "name": "find-bugs", "description": "Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sickn33/antigravity-awesome-skills/blob/main/plugins/antigravity-awesome-skills-claude/skills/find-bugs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:06:23Z"}, "embedding_text": "find-bugs. Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch. Platforms: claude_code."} +{"id": "2854bcf0a8dc69657b92e48b29f0f52951dcf43c951542d1059ebb29c6b6a77e", "repo_url": "https://github.com/deanpeters/product-manager-skills", "name": "discovery-interview-prep", "description": "Plan customer discovery interviews with the right goal, segment, constraints, and method. Use when preparing interviews for problem validation, churn research, or new product ideas.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agents", "ai-product-management", "claude-skills", "pm-frameworks", "product-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deanpeters/product-manager-skills/blob/main/skills/discovery-interview-prep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install discovery-interview-prep"}, "quality": {"stars": 5286, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T12:32:13Z"}, "embedding_text": "discovery-interview-prep. Plan customer discovery interviews with the right goal, segment, constraints, and method. Use when preparing interviews for problem validation, churn research, or new product ideas. Categories: ai-agents, ai-product-management, claude-skills, pm-frameworks, product-management. Platforms: claude_code."} +{"id": "2bb90e208d24294a22b77511d4771f5b0703df01a654e83d87e2cd6c0ddd4ccb", "repo_url": "https://github.com/everyinc/every-marketplace", "name": "resolve-pr-parallel", "description": "Resolve all PR comments using parallel processing. Use when addressing PR review feedback, resolving review threads, or batch-fixing PR comments.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/every-marketplace/blob/main/plugins/compound-engineering/skills/ce-agent-native-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:25:13Z"}, "embedding_text": "resolve-pr-parallel. Resolve all PR comments using parallel processing. Use when addressing PR review feedback, resolving review threads, or batch-fixing PR comments. Platforms: claude_code."} +{"id": "0d106f77213bdd6d271d96b310091c68993d229c2bc828a2671d06f1569bf34b", "repo_url": "https://github.com/adenhq/hive", "name": "building-agents-patterns", "description": "Best practices, patterns, and examples for building goal-driven agents. Includes pause/resume architecture, hybrid workflows, anti-patterns, and handoff to testing. Use when optimizing agent design.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/adenhq/hive/blob/main/.claude/skills/browser-edge-cases/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10575, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T21:55:22Z"}, "embedding_text": "building-agents-patterns. Best practices, patterns, and examples for building goal-driven agents. Includes pause/resume architecture, hybrid workflows, anti-patterns, and handoff to testing. Use when optimizing agent design. Platforms: claude_code."} +{"id": "f8852c403e290abf3e16e9865a2d455f3af09dc1a03e1667b0b01a855320fe3e", "repo_url": "https://github.com/anthropics/knowledge-work-plugins", "name": "ticket-triage", "description": "Triage incoming support tickets by categorizing issues, assigning priority (P1-P4), and recommending routing. Use when a new ticket or customer issue comes in, when assessing severity, or when decidin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/knowledge-work-plugins/blob/main/customer-support/skills/ticket-triage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21662, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T13:47:45Z"}, "embedding_text": "ticket-triage. Triage incoming support tickets by categorizing issues, assigning priority (P1-P4), and recommending routing. Use when a new ticket or customer issue comes in, when assessing severity, or when decidin Platforms: claude_code."} +{"id": "98e2a26bf9d3ae0d3c057207448293072d3ab51d80b6f6770a5f92d563dcab99", "repo_url": "https://github.com/flowglad/flowglad", "name": "pm", "description": "Create incident postmortems by reading Slack incident channels and creating structured postmortem documents in Notion. Use when conducting postmortem reviews or documenting incident responses.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/flowglad/flowglad/blob/main/.claude/skills/pm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1717, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T18:12:00Z"}, "embedding_text": "pm. Create incident postmortems by reading Slack incident channels and creating structured postmortem documents in Notion. Use when conducting postmortem reviews or documenting incident responses. Platforms: claude_code."} +{"id": "a8236a72318c35c365eb95f787fbd7323df9a7793d2d989f5bfbcd85047da958", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "engineering-culture", "description": "Help users build strong engineering culture. Use when someone is improving developer experience, fostering technical excellence, designing engineering practices, or scaling an engineering organization", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/engineering-culture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "engineering-culture. Help users build strong engineering culture. Use when someone is improving developer experience, fostering technical excellence, designing engineering practices, or scaling an engineering organization Platforms: claude_code."} +{"id": "822a4ef406dd8f488a4f83221d207e1aae309ef69f80c148130fed28528a83af", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "indirect-injection-detection", "description": "Detect indirect prompt injection (goal hijack). Instructions hidden in \"external\" content (documents, RAG, web) that the agent processes. Use when the agent has document/RAG/web/file input.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/agent-scan/prompt/skills/indirect-injection-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install indirect-injection-detection"}, "quality": {"stars": 3948, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:28:01Z"}, "embedding_text": "indirect-injection-detection. Detect indirect prompt injection (goal hijack). Instructions hidden in \"external\" content (documents, RAG, web) that the agent processes. Use when the agent has document/RAG/web/file input. Platforms: claude_code."} +{"id": "d6fdc376107777e3ee68d955526d57bed82bb85191362729698d5bebe81ad675", "repo_url": "https://github.com/breaking-brake/cc-wf-studio", "name": "pr-to-main", "description": "Create a PR to main branch for feature/fix changes. Use when the user says \"PR\u3092\u4f5c\u6210\", \"main\u306bPR\", or wants to submit changes for review.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/breaking-brake/cc-wf-studio/blob/main/.claude/skills/pr-to-main-cleanup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5134, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T02:04:36Z"}, "embedding_text": "pr-to-main. Create a PR to main branch for feature/fix changes. Use when the user says \"PR\u3092\u4f5c\u6210\", \"main\u306bPR\", or wants to submit changes for review. Platforms: claude_code."} +{"id": "03400b546f0ea342025a655a16554a92c1fdcb867d9ddcbc86c4d877d261c35d", "repo_url": "https://github.com/phuryn/pm-skills", "name": "customer-journey-map", "description": "Create an end-to-end customer journey map with stages, touchpoints, emotions, pain points, and opportunities. Use when mapping the customer experience, identifying friction points, improving onboarding, or visualizing the user journey.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-market-research/skills/customer-journey-map/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install customer-journey-map"}, "quality": {"stars": 20350, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T14:12:26Z"}, "embedding_text": "customer-journey-map. Create an end-to-end customer journey map with stages, touchpoints, emotions, pain points, and opportunities. Use when mapping the customer experience, identifying friction points, improving onboarding, or visualizing the user journey. Platforms: claude_code."} +{"id": "3a4c449d1496808b2425e0f5c6a557e517204037a9276fb1e46e8f2ec3a894f4", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "sqlite-map-parser", "description": "Parse SQLite databases into structured JSON data. Use when exploring unknown database schemas, understanding table relationships, and extracting map data as JSON.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/civ6-adjacency-optimizer/environment/skills/sqlite-map-parser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "sqlite-map-parser. Parse SQLite databases into structured JSON data. Use when exploring unknown database schemas, understanding table relationships, and extracting map data as JSON. Platforms: claude_code."} +{"id": "1b414ab29b4f373d895b11888acd0a6799b17b07ada896a45411588e6e47f8a5", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "provider-actions", "description": "Implement Terraform Provider actions using the Plugin Framework. Use when developing imperative operations that execute at lifecycle events (before/after create, update, destroy).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/provider-development/skills/provider-actions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install provider-actions"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "provider-actions. Implement Terraform Provider actions using the Plugin Framework. Use when developing imperative operations that execute at lifecycle events (before/after create, update, destroy). Platforms: claude_code."} +{"id": "eda7808439982058a02334055a280ef7925cb8a1522eb3a5d9bcbf70945a8eb8", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "ilspy-decompile", "description": "Understand implementation details of .NET code by decompiling assemblies. Use when you want to see how a .NET API works internally, inspect NuGet package source, view framework implementation, or understand compiled .NET binaries.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/ilspy-decompile/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ilspy-decompile"}, "quality": {"stars": 1024, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T01:02:32Z"}, "embedding_text": "ilspy-decompile. Understand implementation details of .NET code by decompiling assemblies. Use when you want to see how a .NET API works internally, inspect NuGet package source, view framework implementation, or understand compiled .NET binaries. Platforms: claude_code."} +{"id": "3ad763f03fe1dc0fb3d03699e289b398457bf1da268b1ed2fc226b3c719780c3", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "trend-analysis", "description": "Detect long-term trends in time series data using parametric and non-parametric methods. Use when determining if a variable shows statistically significant increase or decrease over time.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/lake-warming-attribution/environment/skills/trend-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "trend-analysis. Detect long-term trends in time series data using parametric and non-parametric methods. Use when determining if a variable shows statistically significant increase or decrease over time. Platforms: claude_code."} +{"id": "4a206b2f8401ca2120005aad14f3e46694272af8a6f5032870e44303ef8e1083", "repo_url": "https://github.com/arize-ai/phoenix", "name": "phoenix-cli", "description": "Debug LLM applications using the Phoenix CLI. Fetch traces, analyze errors, review experiments, and inspect datasets. Use when debugging AI/LLM applications, analyzing trace data, working with Phoenix", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arize-ai/phoenix/blob/main/.agents/skills/phoenix-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10224, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T17:03:46Z"}, "embedding_text": "phoenix-cli. Debug LLM applications using the Phoenix CLI. Fetch traces, analyze errors, review experiments, and inspect datasets. Use when debugging AI/LLM applications, analyzing trace data, working with Phoenix Platforms: claude_code."} +{"id": "b1e1e35c7c54cbcb7effd839ba4f1d7e66187c15a94600cfeb4fab45e20291d0", "repo_url": "https://github.com/hkuds/nanobot", "name": "summarize", "description": "Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for \u201ctranscribe this YouTube/video\u201d).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hkuds/nanobot/blob/main/nanobot/skills/summarize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44523, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:46:48Z"}, "embedding_text": "summarize. Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for \u201ctranscribe this YouTube/video\u201d). Platforms: claude_code."} +{"id": "4a979018db528250e832ac5897c8f99f7cc03df905e28f62c7a016572e07eaee", "repo_url": "https://github.com/wshobson/agents", "name": "turborepo-caching", "description": "Configure Turborepo for efficient monorepo builds with local and remote caching. Use when setting up Turborepo, optimizing build pipelines, or implementing distributed caching.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/developer-essentials/skills/turborepo-caching/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install turborepo-caching"}, "quality": {"stars": 37028, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:08:46Z"}, "embedding_text": "turborepo-caching. Configure Turborepo for efficient monorepo builds with local and remote caching. Use when setting up Turborepo, optimizing build pipelines, or implementing distributed caching. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} +{"id": "d959c4641a8d48fb67912b62bbeeb4596d8cec10ce09fa8aaa4ef93190c0a3e6", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "find-bugs", "description": "Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/fix-erlang-ssh-cve/environment/skills/find-bugs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "find-bugs. Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch. Platforms: claude_code."} +{"id": "99b031b4c50034c43e74ff2059be052c53e2ec7f0fc88c759fa92aebb9470403", "repo_url": "https://github.com/openclaw/openclaw", "name": "openclaw-test-heap-leaks", "description": "Investigate `pnpm test` memory growth, Vitest worker OOMs, and suspicious RSS increases in OpenClaw using the `scripts/test-parallel.mjs` heap snapshot tooling. Use when Codex needs to reproduce test-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/.agents/skills/openclaw-test-heap-leaks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:08:25Z"}, "embedding_text": "openclaw-test-heap-leaks. Investigate `pnpm test` memory growth, Vitest worker OOMs, and suspicious RSS increases in OpenClaw using the `scripts/test-parallel.mjs` heap snapshot tooling. Use when Codex needs to reproduce test- Platforms: claude_code."} +{"id": "cbd726206efaf7558a2f334cc1f34f206784534d863d25e9311c588861c772d0", "repo_url": "https://github.com/tanweai/pua", "name": "pua", "description": "\u8ba9\u4f60\u7684 AI \u4e0d\u6562\u6446\u70c2\u3002\u7528\u5927\u5382 PUA \u8bdd\u672f\u7a77\u5c3d\u4e00\u5207\u65b9\u6848\u3002\u89e6\u53d1\u6761\u4ef6\uff1a(1) \u4efb\u52a1\u5931\u8d25 2+ \u6b21\u6216\u53cd\u590d\u5fae\u8c03\u540c\u4e00\u601d\u8def; (2) \u5373\u5c06\u8bf4'\u6211\u65e0\u6cd5\u89e3\u51b3'\u3001\u5efa\u8bae\u7528\u6237\u624b\u52a8\u64cd\u4f5c\u3001\u672a\u9a8c\u8bc1\u5c31\u5f52\u56e0\u73af\u5883; (3) \u88ab\u52a8\u7b49\u5f85\u2014\u2014\u4e0d\u641c\u7d22\u3001\u4e0d\u8bfb\u6e90\u7801\u3001\u53ea\u7b49\u6307\u793a; (4) \u7528\u6237\u4e0d\u6ee1\uff1a'try harder'\u3001'stop giving up'\u3001'\u6362\u4e2a\u65b9\u6cd5'\u3001'\u4e3a\u4ec0\u4e48\u8fd8\u4e0d\u884c'\u3001'\u4f60\u518d\u8bd5\u8bd5'\u3001'\u4f60\u600e\u4e48\u53c8\u5931\u8d25\u4e86'\u3002\u9002\u7528\u4e8e\u6240\u6709\u4efb\u52a1\u7c7b\u578b\u3002\u9996", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tanweai/pua/blob/main/.trae/skills/pua-en/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18373, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T15:15:16Z"}, "embedding_text": "pua. \u8ba9\u4f60\u7684 AI \u4e0d\u6562\u6446\u70c2\u3002\u7528\u5927\u5382 PUA \u8bdd\u672f\u7a77\u5c3d\u4e00\u5207\u65b9\u6848\u3002\u89e6\u53d1\u6761\u4ef6\uff1a(1) \u4efb\u52a1\u5931\u8d25 2+ \u6b21\u6216\u53cd\u590d\u5fae\u8c03\u540c\u4e00\u601d\u8def; (2) \u5373\u5c06\u8bf4'\u6211\u65e0\u6cd5\u89e3\u51b3'\u3001\u5efa\u8bae\u7528\u6237\u624b\u52a8\u64cd\u4f5c\u3001\u672a\u9a8c\u8bc1\u5c31\u5f52\u56e0\u73af\u5883; (3) \u88ab\u52a8\u7b49\u5f85\u2014\u2014\u4e0d\u641c\u7d22\u3001\u4e0d\u8bfb\u6e90\u7801\u3001\u53ea\u7b49\u6307\u793a; (4) \u7528\u6237\u4e0d\u6ee1\uff1a'try harder'\u3001'stop giving up'\u3001'\u6362\u4e2a\u65b9\u6cd5'\u3001'\u4e3a\u4ec0\u4e48\u8fd8\u4e0d\u884c'\u3001'\u4f60\u518d\u8bd5\u8bd5'\u3001'\u4f60\u600e\u4e48\u53c8\u5931\u8d25\u4e86'\u3002\u9002\u7528\u4e8e\u6240\u6709\u4efb\u52a1\u7c7b\u578b\u3002\u9996 Platforms: claude_code."} +{"id": "b5cbd4fcd00f13441674febc67e3dceb0fa120e2e3f7a560b034bee085e73f78", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "modal-gpu", "description": "Run Python code on cloud GPUs using Modal serverless platform. Use when you need A100/T4/A10G GPU access for training ML models. Covers Modal app setup, GPU selection, data downloading inside function", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks-extra/diff-transformer_impl/environment/skills/modal-gpu/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "modal-gpu. Run Python code on cloud GPUs using Modal serverless platform. Use when you need A100/T4/A10G GPU access for training ML models. Covers Modal app setup, GPU selection, data downloading inside function Platforms: claude_code."} +{"id": "ea0c14b65979eedcab2f4b1062244db515667aa07501e4c455b71d41fcdcf9b8", "repo_url": "https://github.com/brianlovin/claude-config", "name": "react-doctor", "description": "Diagnose and fix React codebase health issues. Use when reviewing React code, fixing performance problems, auditing security, or improving code quality.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianlovin/claude-config/blob/main/skills/react-doctor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 353, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T17:52:51Z"}, "embedding_text": "react-doctor. Diagnose and fix React codebase health issues. Use when reviewing React code, fixing performance problems, auditing security, or improving code quality. Platforms: claude_code."} +{"id": "f1d996a9edd01ef0194158d56ec50ed28cdda1277c5ce3f46d637dd53fa11a1e", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "transit-least-squares", "description": "Transit Least Squares (TLS) algorithm for detecting exoplanet transits in light curves. Use when searching for transiting exoplanets specifically, as TLS is more sensitive than Lomb-Scargle for transi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/exoplanet-detection-period/environment/skills/transit-least-squares/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "transit-least-squares. Transit Least Squares (TLS) algorithm for detecting exoplanet transits in light curves. Use when searching for transiting exoplanets specifically, as TLS is more sensitive than Lomb-Scargle for transi Platforms: claude_code."} +{"id": "3e7cb5fff1d7756e98416d0b24aac049eb10cbaa5ce466839b2c701e8fab1995", "repo_url": "https://github.com/agent-sh/agentsys", "name": "sync-docs", "description": "Sync documentation with code. Use when user asks to update docs, check docs, fix stale documentation, update changelog, or after code changes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/sync-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "sync-docs. Sync documentation with code. Use when user asks to update docs, check docs, fix stale documentation, update changelog, or after code changes. Platforms: claude_code."} +{"id": "9e840549e7b349ede552f9f656c2fff334dd38c1b6a835c32114dc6abd1bd532", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-audit", "description": "Full website SEO audit with parallel subagent delegation. Crawls up to 500 pages, detects business type, delegates to 7 specialists, generates health score. Use when user says \"audit\", \"full SEO check\", \"analyze my site\", or \"website health check\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-audit"}, "quality": {"stars": 9433, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T17:30:25Z"}, "embedding_text": "seo-audit. Full website SEO audit with parallel subagent delegation. Crawls up to 500 pages, detects business type, delegates to 7 specialists, generates health score. Use when user says \"audit\", \"full SEO check\", \"analyze my site\", or \"website health check\". Platforms: claude_code."} +{"id": "5291d4b1350d83fcc0c95bbfe975862160eb9461da0a5dc81a956944382e1203", "repo_url": "https://github.com/minimax-ai/skills", "name": "ppt-orchestra-skill", "description": "Plan and orchestrate multi-slide PowerPoint creation from scratch. Use before generating a full deck with subagents: classify each slide type, enforce visual variety, set typography/spacing rules, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/plugins/pptx-plugin/skills/ppt-orchestra-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "ppt-orchestra-skill. Plan and orchestrate multi-slide PowerPoint creation from scratch. Use before generating a full deck with subagents: classify each slide type, enforce visual variety, set typography/spacing rules, and Platforms: claude_code."} +{"id": "ee1d8baa8ff667b2fa8008db05c37b4c94c4304df465094d42573f8db25ad859", "repo_url": "https://github.com/openclaw/openclaw", "name": "sag", "description": "ElevenLabs text-to-speech with mac-style say UX.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/.agents/skills/channel-message-flows/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:08:25Z"}, "embedding_text": "sag. ElevenLabs text-to-speech with mac-style say UX. Platforms: claude_code."} +{"id": "9d23e2322962ca375d0ec56beb75a31d76a1c3ab40e844bee499df2dd807a317", "repo_url": "https://github.com/zhanghandong/rust-skills", "name": "unsafe-checker", "description": "CRITICAL: Use for unsafe Rust code review and FFI. Triggers on: unsafe, raw pointer, FFI, extern, transmute, *mut, *const, union, #[repr(C)], libc, std::ffi, MaybeUninit, NonNull, SAFETY comment, soun", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zhanghandong/rust-skills/blob/main/skills/unsafe-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1252, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T23:33:30Z"}, "embedding_text": "unsafe-checker. CRITICAL: Use for unsafe Rust code review and FFI. Triggers on: unsafe, raw pointer, FFI, extern, transmute, *mut, *const, union, #[repr(C)], libc, std::ffi, MaybeUninit, NonNull, SAFETY comment, soun Platforms: claude_code."} +{"id": "4d2535815c3420cffdb920e5bfe6d6bb90562f88830635cf3024a9a8f1978327", "repo_url": "https://github.com/zhanghandong/rust-skills", "name": "coding-guidelines", "description": "Use when asking about Rust code style or best practices. Keywords: naming, formatting, comment, clippy, rustfmt, lint, code style, best practice, P.NAM, G.FMT, code review, naming convention, variable", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zhanghandong/rust-skills/blob/main/skills/coding-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1252, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T23:33:30Z"}, "embedding_text": "coding-guidelines. Use when asking about Rust code style or best practices. Keywords: naming, formatting, comment, clippy, rustfmt, lint, code style, best practice, P.NAM, G.FMT, code review, naming convention, variable Platforms: claude_code."} +{"id": "12745caf7ff85626e0944d979582c2d3b1154ee6a8421087201b8aa4ead268c1", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "azure-image-builder", "description": "Build Azure managed images and Azure Compute Gallery images with Packer. Use when creating custom images for Azure VMs.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/packer/builders/skills/azure-image-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-image-builder"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "azure-image-builder. Build Azure managed images and Azure Compute Gallery images with Packer. Use when creating custom images for Azure VMs. Platforms: claude_code."} +{"id": "8a3982b600e576c4e84041c6698e69527c6a9bf395bbf6ad3008055cbc0ad9ba", "repo_url": "https://github.com/agent-sh/agentsys", "name": "learn", "description": "Research any topic online and create learning guides. Use when user asks to 'learn about', 'research topic', 'create learning guide', 'build knowledge base', or 'study subject'.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/learn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "learn. Research any topic online and create learning guides. Use when user asks to 'learn about', 'research topic', 'create learning guide', 'build knowledge base', or 'study subject'. Platforms: claude_code."} +{"id": "f8f332d214c07f4fb4728e0e8ae069daa7238f34169f93ec56e96e501a20915c", "repo_url": "https://github.com/pedrohcgs/claude-code-my-workflow", "name": "commit", "description": "Stage, commit, create PR, and merge to main. Use for the standard commit-PR-merge cycle.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pedrohcgs/claude-code-my-workflow/blob/main/.claude/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T18:20:30Z"}, "embedding_text": "commit. Stage, commit, create PR, and merge to main. Use for the standard commit-PR-merge cycle. Platforms: claude_code."} +{"id": "de47d7c888e096d43fd3bec4b33bef47f9642914b6fc231682762c68abd333f5", "repo_url": "https://github.com/https-deeplearning-ai/sc-agent-skills-files", "name": "learning-a-tool", "description": "Create learning paths for programming tools, and define what information should be researched to create learning guides. Use when user asks to learn, understand, or get started with any programming to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/https-deeplearning-ai/sc-agent-skills-files/blob/main/L7/.claude/skills/learning-a-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1275, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T21:33:23Z"}, "embedding_text": "learning-a-tool. Create learning paths for programming tools, and define what information should be researched to create learning guides. Use when user asks to learn, understand, or get started with any programming to Platforms: claude_code."} +{"id": "887ded9a2c3562f62176f0865ce7f317807420fc8ad00347fc814f44f84c8ce6", "repo_url": "https://github.com/moosegoose0701/skill-compose", "name": "spreadsheet", "description": "Use when tasks involve creating, editing, analyzing, or formatting spreadsheets (`.xlsx`, `.csv`, `.tsv`) using Python (`openpyxl`, `pandas`), especially when formulas, references, and formatting need", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moosegoose0701/skill-compose/blob/main/seed_skills/spreadsheet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T08:01:19Z"}, "embedding_text": "spreadsheet. Use when tasks involve creating, editing, analyzing, or formatting spreadsheets (`.xlsx`, `.csv`, `.tsv`) using Python (`openpyxl`, `pandas`), especially when formulas, references, and formatting need Platforms: claude_code."} +{"id": "aa0e61c89ea3f7c2e61924c0b9d39147fe54289783c71e02fd666b00e681948b", "repo_url": "https://github.com/tldraw/tldraw", "name": "shepherd-pr", "description": "Keep an eye on this PR. Review and resolve pull request comments and fix build failures autonomously. Use when asked to review PR feedback, address reviewer comments, fix CI failures, resolve PR threa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tldraw/tldraw/blob/main/skills/pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48118, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T21:28:52Z"}, "embedding_text": "shepherd-pr. Keep an eye on this PR. Review and resolve pull request comments and fix build failures autonomously. Use when asked to review PR feedback, address reviewer comments, fix CI failures, resolve PR threa Platforms: claude_code."} +{"id": "de201e669f613d70243c5147cd267b5bdd0bdae5cb1868ba8bafe5e84affd0f1", "repo_url": "https://github.com/dashersw/gea", "name": "js-framework-benchmark-report", "description": "Rebuild the local js-framework-benchmark HTML report using the curated framework set for this repo, and avoid polluting the report with every framework in webdriver-ts/results. Use when the user asks", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dashersw/gea/blob/main/.cursor/skills/js-framework-benchmark-report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1092, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T13:37:35Z"}, "embedding_text": "js-framework-benchmark-report. Rebuild the local js-framework-benchmark HTML report using the curated framework set for this repo, and avoid polluting the report with every framework in webdriver-ts/results. Use when the user asks Platforms: claude_code."} +{"id": "99d6644c17948eb0c8b60cd4fff0fdd3f3edc4a17a9400b5a5b6d962cebb5e43", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "docker-development", "description": "Docker and container development agent skill and plugin for Dockerfile optimization, docker-compose orchestration, multi-stage builds, and container security hardening. Use when: user wants to optimiz", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/docker-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "docker-development. Docker and container development agent skill and plugin for Dockerfile optimization, docker-compose orchestration, multi-stage builds, and container security hardening. Use when: user wants to optimiz Platforms: claude_code."} +{"id": "efa3cf93d04a69be312ae0eeaf58eef724ba0f87ad22f476c3fcb0249a84bf3b", "repo_url": "https://github.com/r3bl-org/r3bl-open-core", "name": "release-crate", "description": "Publish a crate release to crates.io with changelog, git tag, and GitHub release. Use when releasing a new version of any workspace crate.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/r3bl-org/r3bl-open-core/blob/main/.agents/skills/release-crate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 475, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:45:39Z"}, "embedding_text": "release-crate. Publish a crate release to crates.io with changelog, git tag, and GitHub release. Use when releasing a new version of any workspace crate. Platforms: claude_code."} +{"id": "17742eca174633b8635d3b7fb48e7a70dcdad4cfc856e75b8bd49a8ef91878be", "repo_url": "https://github.com/agent-sh/agentsys", "name": "enhance-docs", "description": "Use when improving documentation structure, accuracy, and RAG readiness.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/enhance-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "enhance-docs. Use when improving documentation structure, accuracy, and RAG readiness. Platforms: claude_code."} +{"id": "519020b12f89af6abf44713cbb46e328c8f18844c47cce22faabc19c53dc1e9a", "repo_url": "https://github.com/agent-sh/agentsys", "name": "deslop", "description": "Use when user wants to clean AI slop from code. Use for cleanup, remove debug statements, find ghost code, repo hygiene.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/deslop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "deslop. Use when user wants to clean AI slop from code. Use for cleanup, remove debug statements, find ghost code, repo hygiene. Platforms: claude_code."} +{"id": "9f25417b1fd9304b2301a2d5aa49346727f9e9ad882c92fae7d99f37648e2c35", "repo_url": "https://github.com/wondelai/skills", "name": "scorecard-marketing", "description": "Build quiz and assessment funnels that generate qualified leads at 30-50% conversion. Use when the user mentions \"lead magnet\", \"quiz funnel\", \"assessment tool\", \"lead generation\", or \"score-based segmentation\". Covers question design, dynamic results by tier, and automated follow-up sequences. For landing page conversion, see cro-methodology. For full marketing plans, see one-page-marketing.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/scorecard-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scorecard-marketing"}, "quality": {"stars": 1418, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:13:04Z"}, "embedding_text": "scorecard-marketing. Build quiz and assessment funnels that generate qualified leads at 30-50% conversion. Use when the user mentions \"lead magnet\", \"quiz funnel\", \"assessment tool\", \"lead generation\", or \"score-based segmentation\". Covers question design, dynamic results by tier, and automated follow-up sequences. For landing page conversion, see cro-methodology. For full marketing plans, see one-page-marketing. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} +{"id": "53fb1a6cb547f3a9ac79eb08981401eeaa3f3830e2b44445f28239dbb37b89a2", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "flutter-errors", "description": "Diagnoses and fixes common Flutter errors. Use when encountering layout errors (RenderFlex overflow, unbounded constraints, RenderBox not laid out), scroll errors, or setState-during-build errors.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/flutter-errors/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "flutter-errors. Diagnoses and fixes common Flutter errors. Use when encountering layout errors (RenderFlex overflow, unbounded constraints, RenderBox not laid out), scroll errors, or setState-during-build errors. Platforms: claude_code."} +{"id": "ba69df54064516d2f10dfb3c615de4f1b1bbb5b8f6834267e02c07c5e94adebb", "repo_url": "https://github.com/brianlovin/claude-config", "name": "playwriter", "description": "Control the user's currently open Chrome tab through the Playwriter CLI (no new browser launch). Use when you need to inspect live UI state, run scripted browser actions, capture console output, or re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianlovin/claude-config/blob/main/skills/playwriter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 353, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T17:52:51Z"}, "embedding_text": "playwriter. Control the user's currently open Chrome tab through the Playwriter CLI (no new browser launch). Use when you need to inspect live UI state, run scripted browser actions, capture console output, or re Platforms: claude_code."} +{"id": "9255c072e4f1f0e65bac75620545c512bc0d51385f5af897f807e7eae3feec6d", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-prepare", "description": "Prepare Azure apps for deployment (infra Bicep/Terraform, azure.yaml, Dockerfiles). Use for create/modernize or create+deploy; not cross-cloud migration (use azure-cloud-migrate). WHEN: \"create app\", \"build web app\", \"create API\", \"create serverless HTTP API\", \"create frontend\", \"create back end\", \"build a service\", \"modernize application\", \"update application\", \"add authentication\", \"add caching\", \"host on Azure\", \"create and deploy\", \"deploy to Azure\", \"deploy to Azure using Terraform\", \"deploy to Azure App Service\", \"deploy to Azure App Service using Terraform\", \"deploy to Azure Container Apps\", \"deploy to Azure Container Apps using Terraform\", \"generate Terraform\", \"generate Bicep\", \"function app\", \"timer trigger\", \"service bus trigger\", \"event-driven function\", \"containerized Node.js app\", \"social media app\", \"static portfolio website\", \"todo list with frontend and API\", \"prepare my Azure application to use Key Vault\", \"managed identity\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-prepare/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-prepare"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-prepare. Prepare Azure apps for deployment (infra Bicep/Terraform, azure.yaml, Dockerfiles). Use for create/modernize or create+deploy; not cross-cloud migration (use azure-cloud-migrate). WHEN: \"create app\", \"build web app\", \"create API\", \"create serverless HTTP API\", \"create frontend\", \"create back end\", \"build a service\", \"modernize application\", \"update application\", \"add authentication\", \"add caching\", \"host on Azure\", \"create and deploy\", \"deploy to Azure\", \"deploy to Azure using Terraform\", \"deploy to Azure App Service\", \"deploy to Azure App Service using Terraform\", \"deploy to Azure Container Apps\", \"deploy to Azure Container Apps using Terraform\", \"generate Terraform\", \"generate Bicep\", \"function app\", \"timer trigger\", \"service bus trigger\", \"event-driven function\", \"containerized Node.js app\", \"social media app\", \"static portfolio website\", \"todo list with frontend and API\", \"prepare my Azure application to use Key Vault\", \"managed identity\". Platforms: claude_code."} +{"id": "6ddacb23ad2c6232e1d91cee285a07d6e76d5f8204303d4dc3cbafd01f1f9d30", "repo_url": "https://github.com/wshobson/agents", "name": "rag-implementation", "description": "Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/llm-application-dev/skills/rag-implementation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rag-implementation"}, "quality": {"stars": 37028, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:08:46Z"}, "embedding_text": "rag-implementation. Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} +{"id": "f0cb6201fa1f1a608ed82e1a2a02f12b32bd12ee4258803334c9db8023dfdb90", "repo_url": "https://github.com/astronomer/agents", "name": "checking-freshness", "description": "Quick data freshness check. Use when the user asks if data is up to date, when a table was last updated, if data is stale, or needs to verify data currency before using it.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astronomer/agents/blob/main/skills/checking-freshness/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:24:02Z"}, "embedding_text": "checking-freshness. Quick data freshness check. Use when the user asks if data is up to date, when a table was last updated, if data is stale, or needs to verify data currency before using it. Platforms: claude_code."} +{"id": "11d8d1ac049cf52be1ef5d748aacd4ac4b54cd50bb3f6b41172b972059ba0875", "repo_url": "https://github.com/gpt-cmdr/ras-commander", "name": "exploring-hecras-gui", "description": "Automates exploration of HEC-RAS GUI through win32com to capture screenshots, document menus/dialogs, and discover controls for automation development. Provides concrete workflows for launching HEC-RA", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gpt-cmdr/ras-commander/blob/main/.agents/native-skills/dev_invoke_claude-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 68, "skillhub_rank": "A", "skillhub_score": 7.8, "last_updated": "2026-06-16T00:06:32Z"}, "embedding_text": "exploring-hecras-gui. Automates exploration of HEC-RAS GUI through win32com to capture screenshots, document menus/dialogs, and discover controls for automation development. Provides concrete workflows for launching HEC-RA Platforms: claude_code."} +{"id": "46d6e856e1ac0d301a8322bbcd7bde57c120f3e637da639120629d45f2549986", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-sitemap", "description": "Analyze existing XML sitemaps or generate new ones with industry templates. Validates format, URLs, and structure. Use when user says \"sitemap\", \"generate sitemap\", \"sitemap issues\", or \"XML sitemap\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-sitemap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-sitemap"}, "quality": {"stars": 9433, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T17:30:25Z"}, "embedding_text": "seo-sitemap. Analyze existing XML sitemaps or generate new ones with industry templates. Validates format, URLs, and structure. Use when user says \"sitemap\", \"generate sitemap\", \"sitemap issues\", or \"XML sitemap\". Platforms: claude_code."} +{"id": "68fa675c3c0a13f8815f173c6981909da418219d68d57d4f197785905be82a09", "repo_url": "https://github.com/redpanda-data/connect", "name": "component-search", "description": "This skill should be used when users need to discover Redpanda Connect components for their streaming pipelines. Trigger when users ask about finding inputs, outputs, processors, or other components,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redpanda-data/connect/blob/main/.claude-plugin/plugins/redpanda-connect/skills/component-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 8684, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:52:23Z"}, "embedding_text": "component-search. This skill should be used when users need to discover Redpanda Connect components for their streaming pipelines. Trigger when users ask about finding inputs, outputs, processors, or other components, Platforms: claude_code."} +{"id": "5c9b8292a3c53f4a7b74ccf507c235efb4203e12c2aa048e7c27803af75f9d4c", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "technical-roadmaps", "description": "Help users create technical roadmaps. Use when someone is planning engineering work, prioritizing tech debt, building architecture roadmaps, or aligning technical and product strategy.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/technical-roadmaps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "technical-roadmaps. Help users create technical roadmaps. Use when someone is planning engineering work, prioritizing tech debt, building architecture roadmaps, or aligning technical and product strategy. Platforms: claude_code."} +{"id": "7c6ccb936daa73404e698e69ee4d0286df4581a0b707b7299f8155f3581e250e", "repo_url": "https://github.com/breaking-brake/cc-wf-studio", "name": "pr-review-analysis", "description": "Analyze PR review comments from a GitHub PR URL. Fetch review comments, verify each finding against the actual codebase, assess validity (correct/incorrect/partial), present a structured summary with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/breaking-brake/cc-wf-studio/blob/main/.claude/skills/pr-review-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5134, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T02:04:36Z"}, "embedding_text": "pr-review-analysis. Analyze PR review comments from a GitHub PR URL. Fetch review comments, verify each finding against the actual codebase, assess validity (correct/incorrect/partial), present a structured summary with Platforms: claude_code."} +{"id": "6e234310f26c0b28b1f2ded5d72c652649f6331377abd45b8a187fdf1f8ea336", "repo_url": "https://github.com/everyinc/proof-sdk", "name": "proof", "description": "Work with hosted Proof documents and Proof SDK-compatible deployments over HTTP. Use when creating, reading, editing, or reviewing shared docs with the agent API or bridge routes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/proof-sdk/blob/main/docs/proof.SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1022, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T14:39:16Z"}, "embedding_text": "proof. Work with hosted Proof documents and Proof SDK-compatible deployments over HTTP. Use when creating, reading, editing, or reviewing shared docs with the agent API or bridge routes. Platforms: claude_code."} +{"id": "d100ff819a8b6ab22fdc47836a672885cae93779ef9c03f57d37b2a214d233ac", "repo_url": "https://github.com/eronred/aso-skills", "name": "ua-campaign", "description": "When the user wants to plan or optimize paid user acquisition campaigns. Also use when the user mentions \"Apple Search Ads\", \"user acquisition\", \"paid ads\", \"UA\", \"ad campaign\", \"install campaign\", \"F", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/ua-campaign/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "ua-campaign. When the user wants to plan or optimize paid user acquisition campaigns. Also use when the user mentions \"Apple Search Ads\", \"user acquisition\", \"paid ads\", \"UA\", \"ad campaign\", \"install campaign\", \"F Platforms: claude_code."} +{"id": "2cc10695bcd11baa6d8c3bed233a3cb4f9537201cd39a0ab6f7e1dc899c1e2ce", "repo_url": "https://github.com/pockebot/openpocket", "name": "capcut-edit", "description": "Edit videos and beautify photos in CapCut on mobile. Use when the user asks to open CapCut, create/edit/export videos, add text/effects/music/captions, use templates, or retouch and enhance photos.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/capcut-edit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "capcut-edit. Edit videos and beautify photos in CapCut on mobile. Use when the user asks to open CapCut, create/edit/export videos, add text/effects/music/captions, use templates, or retouch and enhance photos. Platforms: claude_code."} +{"id": "413706e5ad8cc80d82ba869664631f6c69fddeff5ad01abfa3565f543100e1c2", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "paper-review", "description": "Review academic papers for correctness, quality, and novelty using OpenJudge's multi-stage pipeline. Supports PDF files and LaTeX source packages (.tar.gz/.zip). Covers 10 disciplines: cs, medicine, physics, chemistry, biology, economics, psychology, environmental_science, mathematics, social_sciences. Use when the user asks to review, evaluate, critique, or assess a research paper, check references, or verify a BibTeX file.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/paper-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install paper-review"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T09:40:18Z"}, "embedding_text": "paper-review. Review academic papers for correctness, quality, and novelty using OpenJudge's multi-stage pipeline. Supports PDF files and LaTeX source packages (.tar.gz/.zip). Covers 10 disciplines: cs, medicine, physics, chemistry, biology, economics, psychology, environmental_science, mathematics, social_sciences. Use when the user asks to review, evaluate, critique, or assess a research paper, check references, or verify a BibTeX file. Platforms: claude_code."} +{"id": "a5bc3857df9bc325faf13c7c360073cf72a850d9920941aedd72e7ab9b1c8a01", "repo_url": "https://github.com/raphaelsalaja/userinterface-wiki", "name": "pseudo-elements", "description": "Audit CSS for pseudo-element best practices and View Transitions API usage. Use when reviewing hover effects, decorative layers, or page transitions. Outputs file:line findings.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/raphaelsalaja/userinterface-wiki/blob/main/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 806, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T17:35:34Z"}, "embedding_text": "pseudo-elements. Audit CSS for pseudo-element best practices and View Transitions API usage. Use when reviewing hover effects, decorative layers, or page transitions. Outputs file:line findings. Platforms: claude_code."} +{"id": "856ecfb3b59bfef10d7ebdb5f8e7d03fb9e4bb4ba4bd04e7fb510d2862e45ba5", "repo_url": "https://github.com/agent-sh/agentsys", "name": "repo-mapping", "description": "Use when user asks to \"create repo map\", \"generate repo map\", \"update repo map\", \"repo map status\", or \"map symbols/imports\". Builds and validates an AST-based repo map using ast-grep.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/consult/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "repo-mapping. Use when user asks to \"create repo map\", \"generate repo map\", \"update repo map\", \"repo map status\", or \"map symbols/imports\". Builds and validates an AST-based repo map using ast-grep. Platforms: claude_code."} +{"id": "7be53cd0a8e32f91bad26d4d67423c71f43d2ba253d31a4e7e4c0b7c34b02c30", "repo_url": "https://github.com/agent-sh/agentsys", "name": "perf-theory-tester", "description": "Use when running controlled perf experiments to validate hypotheses.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/perf-theory-tester/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "perf-theory-tester. Use when running controlled perf experiments to validate hypotheses. Platforms: claude_code."} +{"id": "2144e7ccf59854906a73b26e107812b5374f03141cefeb5151e2223adf443ee8", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-id-resolver", "description": "Resolve App Store Connect IDs (apps, builds, versions, groups, testers) from human-friendly names using asc. Use when commands require IDs.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-id-resolver/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-id-resolver"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-id-resolver. Resolve App Store Connect IDs (apps, builds, versions, groups, testers) from human-friendly names using asc. Use when commands require IDs. Platforms: claude_code."} +{"id": "8861c3a7fb956fdc79c66e9384c686f389a9ec6af9412e265ec33284bf0ad88b", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "huggingface-hub", "description": "Hugging Face Hub CLI (hf) \u2014 search, download, and upload models and datasets, manage repos, query datasets with SQL, deploy inference endpoints, manage Spaces and buckets.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/skills/mlops/huggingface-hub/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "huggingface-hub. Hugging Face Hub CLI (hf) \u2014 search, download, and upload models and datasets, manage repos, query datasets with SQL, deploy inference endpoints, manage Spaces and buckets. Platforms: linux, macos, windows."} +{"id": "5bf386abfa09b65fcb21987983f2f395b9687c122c7ce621bbd2a61c7e75c0bf", "repo_url": "https://github.com/open-gitagent/gitagent", "name": "document-review", "description": "Reviews financial documents (prospectuses, ADVs, marketing materials) for FINRA 2210 compliance, required disclosures, and balanced presentation. Use when reviewing financial statements, audit documen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/open-gitagent/gitagent/blob/main/skills/example-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 557, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T14:14:14Z"}, "embedding_text": "document-review. Reviews financial documents (prospectuses, ADVs, marketing materials) for FINRA 2210 compliance, required disclosures, and balanced presentation. Use when reviewing financial statements, audit documen Platforms: claude_code."} +{"id": "d7d4ea1f96da762936fd121ac268132637412e12f64e46a16e3eeaf742bbfe88", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "startup-ideation", "description": "Help users generate and evaluate startup ideas. Use when someone is brainstorming business ideas, trying to find a startup concept, evaluating whether an idea is worth pursuing, or looking for unique", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/startup-ideation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "startup-ideation. Help users generate and evaluate startup ideas. Use when someone is brainstorming business ideas, trying to find a startup concept, evaluating whether an idea is worth pursuing, or looking for unique Platforms: claude_code."} +{"id": "327d50d2b595f9e15338722f8aabfea4621ed852e8e5308b38b619b4ee2dc92f", "repo_url": "https://github.com/rtk-ai/rtk", "name": "code-simplifier", "description": "Review RTK Rust code for idiomatic simplification. Detects over-engineering, unnecessary allocations, verbose patterns. Applies Rust idioms without changing behavior.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rtk-ai/rtk/blob/develop/.claude/skills/code-simplifier/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 64659, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:51:46Z"}, "embedding_text": "code-simplifier. Review RTK Rust code for idiomatic simplification. Detects over-engineering, unnecessary allocations, verbose patterns. Applies Rust idioms without changing behavior. Platforms: claude_code."} +{"id": "6bed471f87a9e14fa6e0d09c1923d1fa08c926f74fd54db26fe484511fb539b2", "repo_url": "https://github.com/minimax-ai/skills", "name": "color-font-skill", "description": "Choose presentation-ready color palettes and font pairings for PPT/design tasks. Use when users ask for visual theme choices, brand-safe palettes, or font recommendations. Triggers include: \u914d\u8272, \u8272\u677f, \u5b57\u4f53", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/plugins/pptx-plugin/skills/color-font-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "color-font-skill. Choose presentation-ready color palettes and font pairings for PPT/design tasks. Use when users ask for visual theme choices, brand-safe palettes, or font recommendations. Triggers include: \u914d\u8272, \u8272\u677f, \u5b57\u4f53 Platforms: claude_code."} +{"id": "898fd3524ee3c94a4b22a23854d517e32c71e877745f7a9c374751accb81d19d", "repo_url": "https://github.com/kasperjunge/agent-resources", "name": "architecture-audit", "description": "Perform comprehensive software architecture audits to identify improvements for robustness, changeability, and testability. Use when asked to audit, review, or analyze a codebase's architecture, or wh", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kasperjunge/agent-resources/blob/main/skills/agr-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 445, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:52:49Z"}, "embedding_text": "architecture-audit. Perform comprehensive software architecture audits to identify improvements for robustness, changeability, and testability. Use when asked to audit, review, or analyze a codebase's architecture, or wh Platforms: claude_code."} +{"id": "b76bcda5f4ed9f696dbbeff58528300a9ed98516bf13390284c2f9a9a505c0d5", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-cloud-firestore", "description": "Integrates Cloud Firestore into Flutter apps. Use when setting up Firestore, designing document/collection structure, reading and writing data, working with real-time listeners, designing for scale, o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-cloud-firestore/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-cloud-firestore. Integrates Cloud Firestore into Flutter apps. Use when setting up Firestore, designing document/collection structure, reading and writing data, working with real-time listeners, designing for scale, o Platforms: claude_code."} +{"id": "5d8fa4a3a0b69a1d6ab44783c0be8c153c0d360c2b7bd7473867ef147032c743", "repo_url": "https://github.com/dotnet/skills", "name": "technology-selection", "description": "Guides technology selection and implementation of AI and ML features in .NET 8+ applications using ML.NET, Microsoft.Extensions.AI (MEAI), Microsoft Agent Framework (MAF), GitHub Copilot SDK, ONNX Runtime, and OllamaSharp. Covers the full spectrum from classic ML through modern LLM orchestration to local inference. Use when adding classification, regression, clustering, anomaly detection, recommendation, LLM integration (text generation, summarization, reasoning), RAG pipelines with vector search, agentic workflows with tool calling, Copilot extensions, or custom model inference via ONNX Runtime to a .NET project. DO NOT USE FOR projects targeting .NET Framework (requires .NET 8+), the task is pure data engineering or ETL with no ML/AI component, or the project needs a custom deep learning training loop (use Python with PyTorch/TensorFlow, then export to ONNX for .NET inference).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-ai/skills/technology-selection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technology-selection"}, "quality": {"stars": 3455, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:58:53Z"}, "embedding_text": "technology-selection. Guides technology selection and implementation of AI and ML features in .NET 8+ applications using ML.NET, Microsoft.Extensions.AI (MEAI), Microsoft Agent Framework (MAF), GitHub Copilot SDK, ONNX Runtime, and OllamaSharp. Covers the full spectrum from classic ML through modern LLM orchestration to local inference. Use when adding classification, regression, clustering, anomaly detection, recommendation, LLM integration (text generation, summarization, reasoning), RAG pipelines with vector search, agentic workflows with tool calling, Copilot extensions, or custom model inference via ONNX Runtime to a .NET project. DO NOT USE FOR projects targeting .NET Framework (requires .NET 8+), the task is pure data engineering or ETL with no ML/AI component, or the project needs a custom deep learning training loop (use Python with PyTorch/TensorFlow, then export to ONNX for .NET inference). Platforms: claude_code."} +{"id": "14ad8e80ca38e32de6336430320f67076c48dfb831b6ef32136a3af9cefc3f99", "repo_url": "https://github.com/droidrun/droidrun", "name": "droidrun-docs", "description": "Droidrun documentation reference. Use when users ask about Droidrun setup, configuration, SDK usage, CLI commands, device setup, agents, architecture, app cards, credentials, tracing, Docker, migratio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/droidrun/droidrun/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 8605, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:14:57Z"}, "embedding_text": "droidrun-docs. Droidrun documentation reference. Use when users ask about Droidrun setup, configuration, SDK usage, CLI commands, device setup, agents, architecture, app cards, credentials, tracing, Docker, migratio Platforms: claude_code."} +{"id": "4480bce426a130f208d705470a6678b681617f9d21192f48649e5c19745533d1", "repo_url": "https://github.com/aaddrick/claude-desktop-debian", "name": "implement-issue", "description": "Use when given a GitHub issue number and base branch to implement end-to-end", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaddrick/claude-desktop-debian/blob/main/.claude/skills/implement-issue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5036, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:24:01Z"}, "embedding_text": "implement-issue. Use when given a GitHub issue number and base branch to implement end-to-end Platforms: claude_code."} +{"id": "d7ee97a42e2d977fd041993ac718ca33cf4af84768bb547e48f4c968d0556b0d", "repo_url": "https://github.com/significant-gravitas/autogpt", "name": "pr-review", "description": "Review a PR for correctness, security, code quality, and testing issues. TRIGGER when user asks to review a PR, check PR quality, or give feedback on a PR.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/significant-gravitas/autogpt/blob/master/.claude/skills/pr-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 185063, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:52:27Z"}, "embedding_text": "pr-review. Review a PR for correctness, security, code quality, and testing issues. TRIGGER when user asks to review a PR, check PR quality, or give feedback on a PR. Platforms: claude_code."} +{"id": "009be1cf982991acb1683ad3472443fb8ee3574403152737ed23a443eecd9213", "repo_url": "https://github.com/jezweb/claude-skills", "name": "db-seed", "description": "Generate database seed scripts with realistic sample data. Reads Drizzle schemas or SQL migrations, respects foreign key ordering, produces idempotent TypeScript or SQL seed files. Handles D1 batch limits, unique constraints, and domain-appropriate data. Use when populating dev/demo/test databases. Triggers: 'seed database', 'seed data', 'sample data', 'populate database', 'db seed', 'test data', 'demo data', 'generate fixtures'.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/cloudflare/skills/db-seed/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install db-seed"}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "db-seed. Generate database seed scripts with realistic sample data. Reads Drizzle schemas or SQL migrations, respects foreign key ordering, produces idempotent TypeScript or SQL seed files. Handles D1 batch limits, unique constraints, and domain-appropriate data. Use when populating dev/demo/test databases. Triggers: 'seed database', 'seed data', 'sample data', 'populate database', 'db seed', 'test data', 'demo data', 'generate fixtures'. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} +{"id": "b0fae2e3029c3466f32b0464dd490cce889ac376958bbe5ef6137e463295f4cc", "repo_url": "https://github.com/eronred/aso-skills", "name": "app-analytics", "description": "When the user wants to set up, interpret, or improve their app analytics and tracking. Also use when the user mentions \"analytics\", \"tracking\", \"metrics\", \"KPIs\", \"App Store Connect analytics\", \"insta", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/app-analytics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "app-analytics. When the user wants to set up, interpret, or improve their app analytics and tracking. Also use when the user mentions \"analytics\", \"tracking\", \"metrics\", \"KPIs\", \"App Store Connect analytics\", \"insta Platforms: claude_code."} +{"id": "0707ea6c94e98ede4706b79a324b67f7394560991111f2c7270f1754681dd10d", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "seisbench-model-api", "description": "An overview of the core model API of SeisBench, a Python framework for training and applying machine learning algorithms to seismic data. It is useful for annotating waveforms using pretrained SOTA ML", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/earthquake-phase-association/environment/skills/seisbench-model-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "seisbench-model-api. An overview of the core model API of SeisBench, a Python framework for training and applying machine learning algorithms to seismic data. It is useful for annotating waveforms using pretrained SOTA ML Platforms: claude_code."} +{"id": "4d35e98b52213f7c8e44b21dbb82cca3f7c8d4500f0357df9fbf5e6284600d92", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "google-ads", "description": "When the user wants to set up, optimize, or manage Google Ads campaigns. Also use when the user mentions \"Google Ads,\" \"Google Search Ads,\" \"PPC,\" \"SEM,\" \"PMF testing with ads,\" \"test product-market fit,\" \"Responsive Search Ads,\" \"RSA,\" \"Performance Max,\" \"Quality Score,\" \"keyword bidding,\" or \"Google Display/YouTube ads.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/google-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install google-ads"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "google-ads. When the user wants to set up, optimize, or manage Google Ads campaigns. Also use when the user mentions \"Google Ads,\" \"Google Search Ads,\" \"PPC,\" \"SEM,\" \"PMF testing with ads,\" \"test product-market fit,\" \"Responsive Search Ads,\" \"RSA,\" \"Performance Max,\" \"Quality Score,\" \"keyword bidding,\" or \"Google Display/YouTube ads.\" Platforms: claude_code."} +{"id": "235ade81c3a9cf590eea67644dead7bf8263a14153621dda9e8dda5214d829ee", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "liquid-glass", "description": "Implement Liquid Glass design using .glassEffect() API for iOS/macOS 26+. Use when creating modern glass-based UI effects.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/design/liquid-glass/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "liquid-glass. Implement Liquid Glass design using .glassEffect() API for iOS/macOS 26+. Use when creating modern glass-based UI effects. Platforms: claude_code."} +{"id": "0bde11a5b8c3e6d6c72a67e43da1572fa90e6762bd68cd6f575641c5a42cde74", "repo_url": "https://github.com/brianlovin/claude-config", "name": "rams", "description": "Run accessibility and visual design review on components. Use when reviewing UI code for WCAG compliance and design issues.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianlovin/claude-config/blob/main/skills/rams/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 353, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T17:52:51Z"}, "embedding_text": "rams. Run accessibility and visual design review on components. Use when reviewing UI code for WCAG compliance and design issues. Platforms: claude_code."} +{"id": "b86f229c443b3bb91309a6e4fcee38204168737218a0ffe4b8f35c5fb6626b1c", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-images", "description": "Image optimization analysis for SEO and performance. Checks alt text, file sizes, formats, responsive images, lazy loading, and CLS prevention. Use when user says \"image optimization\", \"alt text\", \"image SEO\", \"image size\", or \"image audit\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-images/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-images"}, "quality": {"stars": 9433, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T17:30:25Z"}, "embedding_text": "seo-images. Image optimization analysis for SEO and performance. Checks alt text, file sizes, formats, responsive images, lazy loading, and CLS prevention. Use when user says \"image optimization\", \"alt text\", \"image SEO\", \"image size\", or \"image audit\". Platforms: claude_code."} +{"id": "28ad0d68e568b025a966c290bd5005a2e9841b45b958c82332cf72db0f8526fd", "repo_url": "https://github.com/minimax-ai/skills", "name": "design-style-skill", "description": "Select a consistent visual design system for PPT slides using radius/spacing style recipes. Use when users ask for overall style direction or component styling consistency. Includes Sharp/Soft/Rounded", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/plugins/pptx-plugin/skills/design-style-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "design-style-skill. Select a consistent visual design system for PPT slides using radius/spacing style recipes. Use when users ask for overall style direction or component styling consistency. Includes Sharp/Soft/Rounded Platforms: claude_code."} +{"id": "ea087e0b803ba89460ac122fb4a6e28fad51a9c67ae68c573892266e1db84e6e", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-competitor-pages", "description": "Generate SEO-optimized competitor comparison and alternatives pages. Covers \"X vs Y\" layouts, \"alternatives to X\" pages, feature matrices, schema markup, and conversion optimization. Use when user says \"comparison page\", \"vs page\", \"alternatives page\", \"competitor comparison\", or \"X vs Y\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-competitor-pages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-competitor-pages"}, "quality": {"stars": 9433, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T17:30:25Z"}, "embedding_text": "seo-competitor-pages. Generate SEO-optimized competitor comparison and alternatives pages. Covers \"X vs Y\" layouts, \"alternatives to X\" pages, feature matrices, schema markup, and conversion optimization. Use when user says \"comparison page\", \"vs page\", \"alternatives page\", \"competitor comparison\", or \"X vs Y\". Platforms: claude_code."} +{"id": "94bc00caa1a5cfdc741a75313d371f7226b1ef22c0fc752a947d277fcca6374e", "repo_url": "https://github.com/openclaw/openclaw", "name": "openclaw-parallels-smoke", "description": "End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gate", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/.agents/skills/openclaw-parallels-smoke/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:08:25Z"}, "embedding_text": "openclaw-parallels-smoke. End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gate Platforms: claude_code."} +{"id": "a208957246f366bd782881fffd06a52a795c9bf0c7a943b990a489580a212868", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "behavioral-product-design", "description": "Help users apply behavioral science to product design. Use when someone is designing for habit formation, reducing friction, applying psychology to UX, increasing retention through behavioral principl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/behavioral-product-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "behavioral-product-design. Help users apply behavioral science to product design. Use when someone is designing for habit formation, reducing friction, applying psychology to UX, increasing retention through behavioral principl Platforms: claude_code."} +{"id": "e9d21ca4dc4d76e153e0595016cfe7762281276354970ff309b42ca30e2cdd10", "repo_url": "https://github.com/willoscar/research-units-pipeline-skills", "name": "taxonomy-builder", "description": "Build a 2+ level taxonomy (`outline/taxonomy.yml`) from a core paper set and scope constraints, with short descriptions per node.\n**Trigger**: taxonomy, taxonomy builder, \u5206\u7c7b, \u4e3b\u9898\u6811, taxonomy.yml.\n**Use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/willoscar/research-units-pipeline-skills/blob/main/.codex/skills/taxonomy-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:00:49Z"}, "embedding_text": "taxonomy-builder. Build a 2+ level taxonomy (`outline/taxonomy.yml`) from a core paper set and scope constraints, with short descriptions per node.\n**Trigger**: taxonomy, taxonomy builder, \u5206\u7c7b, \u4e3b\u9898\u6811, taxonomy.yml.\n**Use Platforms: claude_code."} +{"id": "a6187bd71e29576df11ee4eaf22d1ce6da15fd912e825ca6b947a2ef912a13c8", "repo_url": "https://github.com/dashersw/gea", "name": "gea-ui-components", "description": "Guide for using @geajs/ui \u2014 a Tailwind-styled, Zag.js-powered component library for the Gea framework. Use when building UIs with @geajs/ui components like Button, Select, Dialog, Tabs, Toast, or any", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dashersw/gea/blob/main/.cursor/skills/gea-ui-components/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1092, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T13:37:35Z"}, "embedding_text": "gea-ui-components. Guide for using @geajs/ui \u2014 a Tailwind-styled, Zag.js-powered component library for the Gea framework. Use when building UIs with @geajs/ui components like Button, Select, Dialog, Tabs, Toast, or any Platforms: claude_code."} +{"id": "3e966916a63b3c6f6fe2907c5a978dd85e69cfa2f16d2aca5cef9284baacba97", "repo_url": "https://github.com/astronomer/agents", "name": "cosmos-dbt-core", "description": "Use when turning a dbt Core project into an Airflow DAG/TaskGroup using Astronomer Cosmos. Does not cover dbt Fusion. Before implementing, verify dbt engine, warehouse, Airflow version, execution envi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astronomer/agents/blob/main/skills/cosmos-dbt-core/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:24:02Z"}, "embedding_text": "cosmos-dbt-core. Use when turning a dbt Core project into an Airflow DAG/TaskGroup using Astronomer Cosmos. Does not cover dbt Fusion. Before implementing, verify dbt engine, warehouse, Airflow version, execution envi Platforms: claude_code."} +{"id": "56cf444cf68c67aa21bf5d9a5446fe0f6d9f8a1f4d4e8eae5edb58eb2d44928d", "repo_url": "https://github.com/eat-pray-ai/yutu", "name": "youtube-video", "description": "Manage YouTube videos. Use this skill to list, upload, update, delete, get rating, or report videos. Useful when working with YouTube video \u2014 provides commands to delete, getRating, insert, list, rate", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eat-pray-ai/yutu/blob/main/skills/youtube/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 562, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:46:55Z"}, "embedding_text": "youtube-video. Manage YouTube videos. Use this skill to list, upload, update, delete, get rating, or report videos. Useful when working with YouTube video \u2014 provides commands to delete, getRating, insert, list, rate Platforms: claude_code."} +{"id": "5bd48d23ab86779465a83025a55badcaf2c60f0f8adc1009dd50b25f042d9879", "repo_url": "https://github.com/eronred/aso-skills", "name": "competitor-analysis", "description": "When the user wants to analyze competitors' App Store strategy, find keyword gaps, or understand competitive positioning. Also use when the user mentions \"competitor analysis\", \"competitive research\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/competitor-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "competitor-analysis. When the user wants to analyze competitors' App Store strategy, find keyword gaps, or understand competitive positioning. Also use when the user mentions \"competitor analysis\", \"competitive research\", Platforms: claude_code."} +{"id": "e988d28a5273e699162d25755299b3b78c5245bc351170d89eedc56ab2bf1312", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "api-generating", "description": "Generate API endpoint code and documentation from specifications. Use when the user wants to create new API endpoints, generate route handlers, scaffold REST APIs, or produce OpenAPI/Swagger specs from code.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/05-api-generator/.claude/skills/api-generating/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-generating"}, "quality": {"stars": 863, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T11:11:17Z"}, "embedding_text": "api-generating. Generate API endpoint code and documentation from specifications. Use when the user wants to create new API endpoints, generate route handlers, scaffold REST APIs, or produce OpenAPI/Swagger specs from code. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} +{"id": "40492d43f294127b752ecd64c18821d32cb4eeacc930f7960c1646bef7d677cb", "repo_url": "https://github.com/ethanjyx/openbrand", "name": "openbrand", "description": "Extract brand assets (logos, colors, backdrop images, brand name) from any website URL. Use when building branded interfaces, generating style guides, or needing brand identity data from a URL.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ethanjyx/openbrand/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 759, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T00:26:23Z"}, "embedding_text": "openbrand. Extract brand assets (logos, colors, backdrop images, brand name) from any website URL. Use when building branded interfaces, generating style guides, or needing brand identity data from a URL. Platforms: claude_code."} +{"id": "fe06e8bc05a79909fcf6f2a1a4261f8bfcf90a37361a76fecf191a0a0645a92e", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "tool-abuse-detection", "description": "Detect tool misuse and unexpected code execution via dialogue testing. Use when the agent exposes file, code-execution, or network tools.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/agent-scan/prompt/skills/tool-abuse-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tool-abuse-detection"}, "quality": {"stars": 3948, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:28:01Z"}, "embedding_text": "tool-abuse-detection. Detect tool misuse and unexpected code execution via dialogue testing. Use when the agent exposes file, code-execution, or network tools. Platforms: claude_code."} +{"id": "3a58b6803e6744fd603c2e76e42e5d9dae1bea8c854cbe16fe31f54ad299aaa8", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-analytics", "description": "Integrates Firebase Analytics into Flutter apps. Use when setting up analytics, logging events, setting user properties, or configuring event parameters.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-analytics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-analytics. Integrates Firebase Analytics into Flutter apps. Use when setting up analytics, logging events, setting user properties, or configuring event parameters. Platforms: claude_code."} +{"id": "057bb5e8ba98dbb2befd8ed3b69c13c20459847db5c473e7ae8eade0a84f65dc", "repo_url": "https://github.com/nucliweb/webperf-snippets", "name": "webperf", "description": "Web performance measurement and debugging toolkit. Use when the user asks about web performance, wants to audit a page, or says \"analyze performance\", \"debug lcp\", \"check ttfb\", \"measure core web vita", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nucliweb/webperf-snippets/blob/main/.claude/skills/webperf-core-web-vitals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1444, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T10:45:44Z"}, "embedding_text": "webperf. Web performance measurement and debugging toolkit. Use when the user asks about web performance, wants to audit a page, or says \"analyze performance\", \"debug lcp\", \"check ttfb\", \"measure core web vita Platforms: claude_code."} +{"id": "4c2c764175d7e345c5ee4371116a9ef11c44b7530aa01869703ff6d978ebd974", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "jakarta-namespace", "description": "Migrate Java EE javax.* imports to Jakarta EE jakarta.* namespace. Use when upgrading to Spring Boot 3.x, migrating javax.persistence, javax.validation, javax.servlet imports, or fixing compilation er", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/spring-boot-jakarta-migration/environment/skills/jakarta-namespace/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "jakarta-namespace. Migrate Java EE javax.* imports to Jakarta EE jakarta.* namespace. Use when upgrading to Spring Boot 3.x, migrating javax.persistence, javax.validation, javax.servlet imports, or fixing compilation er Platforms: claude_code."} +{"id": "9260dc2d1f739819602740a23acda70cbd7e8b493f352a225e648e9ecafded90", "repo_url": "https://github.com/agent-sh/agentsys", "name": "perf-benchmarker", "description": "Use when running performance benchmarks, establishing baselines, or validating regressions with sequential runs. Enforces 60s minimum runs (30s only for binary search) and no parallel benchmarks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/perf-benchmarker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "perf-benchmarker. Use when running performance benchmarks, establishing baselines, or validating regressions with sequential runs. Enforces 60s minimum runs (30s only for binary search) and no parallel benchmarks. Platforms: claude_code."} +{"id": "343df68da08f719177c2f67136ec4930b5f35d3276d8fe6101f713a9108cec0c", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-testflight-orchestration", "description": "Orchestrate TestFlight distribution, groups, testers, and What to Test notes using asc. Use when rolling out betas.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-testflight-orchestration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-testflight-orchestration"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-testflight-orchestration. Orchestrate TestFlight distribution, groups, testers, and What to Test notes using asc. Use when rolling out betas. Platforms: claude_code."} +{"id": "94aae2efcdf9cf025946c7567d6bcb033d047f2447bc05b54057eb24fa2fe3ea", "repo_url": "https://github.com/everyinc/compounding-engineering-plugin", "name": "rclone", "description": "Upload, sync, and manage files across cloud storage providers using rclone. Use when uploading files (images, videos, documents) to S3, Cloudflare R2, Backblaze B2, Google Drive, Dropbox, or any S3-co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/compounding-engineering-plugin/blob/main/plugins/compound-engineering/skills/ce-agent-native-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:25:13Z"}, "embedding_text": "rclone. Upload, sync, and manage files across cloud storage providers using rclone. Use when uploading files (images, videos, documents) to S3, Cloudflare R2, Backblaze B2, Google Drive, Dropbox, or any S3-co Platforms: claude_code."} +{"id": "646840fe5b70ff0050c8da90c58773339577696865f48542358e058c337925f2", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-release-flow", "description": "End-to-end release workflows for TestFlight and App Store using asc publish, builds, versions, and submit commands. Use when asked to upload a build, distribute to TestFlight, or submit to App Store.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-release-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-release-flow"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-release-flow. End-to-end release workflows for TestFlight and App Store using asc publish, builds, versions, and submit commands. Use when asked to upload a build, distribute to TestFlight, or submit to App Store. Platforms: claude_code."} +{"id": "1fd86ff16574eda718417f6749c9d65f202d7dc3b7d240d7ece0217a9400d22b", "repo_url": "https://github.com/ukgovernmentbeis/inspect_ai", "name": "system-info", "description": "Get detailed system information including OS, kernel, CPU, and memory details", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ukgovernmentbeis/inspect_ai/blob/main/examples/skills/skills/system-info/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2230, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T00:40:37Z"}, "embedding_text": "system-info. Get detailed system information including OS, kernel, CPU, and memory details Platforms: claude_code."} +{"id": "523f13c56877a6b55cfac1436b7a84282ef62a685b24bf294191769e5d7b4852", "repo_url": "https://github.com/everyinc/every-marketplace", "name": "test-browser", "description": "Run browser tests on pages affected by current PR or branch", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/every-marketplace/blob/main/plugins/compound-engineering/skills/ce-test-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:25:13Z"}, "embedding_text": "test-browser. Run browser tests on pages affected by current PR or branch Platforms: claude_code."} +{"id": "4444cb78163fc3978f77263213a736524fe0715845353a2bf6b06799089eeccb", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-networking-legacy", "description": "Use when implementing Network.framework connections, debugging connection failures, migrating from sockets/URLSession streams, or adopting structured concurrency networking patterns - prevents deprecated API usage, reachability anti-patterns, and thread-safety violations with iOS 12-26+ APIs", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-networking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install axiom-networking-legacy"}, "quality": {"stars": 989, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:59:11Z"}, "embedding_text": "axiom-networking-legacy. Use when implementing Network.framework connections, debugging connection failures, migrating from sockets/URLSession streams, or adopting structured concurrency networking patterns - prevents deprecated API usage, reachability anti-patterns, and thread-safety violations with iOS 12-26+ APIs Platforms: claude_code."} +{"id": "89b09f087a798865a2c5b391c427bb34805c87509cf8749c51f14c13b0f4036d", "repo_url": "https://github.com/win4r/clawteam-openclaw", "name": "clawteam", "description": "Multi-agent swarm coordination via the ClawTeam CLI. Use when the user wants to create agent teams, spawn multiple agents to work in parallel, coordinate tasks with dependencies, broadcast messages be", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/win4r/clawteam-openclaw/blob/main/.agents/skills/clawteam-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1412, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T11:15:48Z"}, "embedding_text": "clawteam. Multi-agent swarm coordination via the ClawTeam CLI. Use when the user wants to create agent teams, spawn multiple agents to work in parallel, coordinate tasks with dependencies, broadcast messages be Platforms: claude_code."} +{"id": "30715c163f4097ef4d674c641f58b54f754906efaf6235ac0688f6f0de2959e1", "repo_url": "https://github.com/r3bl-org/r3bl-open-core", "name": "design-philosophy", "description": "Core design principles for the codebase - cognitive load, progressive disclosure, type safety, abstraction worth. Use when designing APIs, modules, or data structures.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/r3bl-org/r3bl-open-core/blob/main/.agents/skills/design-philosophy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 475, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:45:39Z"}, "embedding_text": "design-philosophy. Core design principles for the codebase - cognitive load, progressive disclosure, type safety, abstraction worth. Use when designing APIs, modules, or data structures. Platforms: claude_code."} +{"id": "0b8f55e5392b59fe786fbc99f0a9ba973289818db6d4fe0903b4eb5e3d8df3f7", "repo_url": "https://github.com/microsoft/skills", "name": "azure-ai-voicelive-ts", "description": "Azure AI Voice Live SDK for JavaScript/TypeScript. Build real-time voice AI applications with bidirectional WebSocket communication. Use for voice assistants, conversational AI, real-time speech-to-speech, and voice-enabled chatbots in Node.js or browser environments. Triggers: \"voice live\", \"real-time voice\", \"VoiceLiveClient\", \"VoiceLiveSession\", \"voice assistant TypeScript\", \"bidirectional audio\", \"speech-to-speech JavaScript\".\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-typescript/skills/azure-ai-voicelive-ts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-ai-voicelive-ts"}, "quality": {"stars": 2600, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:47:24Z"}, "embedding_text": "azure-ai-voicelive-ts. Azure AI Voice Live SDK for JavaScript/TypeScript. Build real-time voice AI applications with bidirectional WebSocket communication. Use for voice assistants, conversational AI, real-time speech-to-speech, and voice-enabled chatbots in Node.js or browser environments. Triggers: \"voice live\", \"real-time voice\", \"VoiceLiveClient\", \"VoiceLiveSession\", \"voice assistant TypeScript\", \"bidirectional audio\", \"speech-to-speech JavaScript\".\n Platforms: claude_code."} +{"id": "d14a706b85e4f6b4a297b2ad360c95ce5df3e1027edbf301ab642a6962104a44", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-deepear-lite", "description": "Fetch the latest financial signals and transmission-chain analyses from DeepEar Lite. Use when the user needs immediate insights into financial market trends, stock performance factors, and reasoning from the DeepEar Lite dashboard.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-deepear-lite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-deepear-lite"}, "quality": {"stars": 2582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-29T05:03:47Z"}, "embedding_text": "alphaear-deepear-lite. Fetch the latest financial signals and transmission-chain analyses from DeepEar Lite. Use when the user needs immediate insights into financial market trends, stock performance factors, and reasoning from the DeepEar Lite dashboard. Platforms: claude_code."} +{"id": "994425d98c736825e242e0d4e1794cd26f351f8347ad2ff4a462dd113c98c3d4", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "writing-good-tests", "description": "Use when writing or reviewing tests - covers test philosophy, condition-based waiting, mocking strategy, and test isolation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-house-style/skills/writing-good-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "writing-good-tests. Use when writing or reviewing tests - covers test philosophy, condition-based waiting, mocking strategy, and test isolation Platforms: claude_code."} +{"id": "6bedf03ec7d812ca3d00b79bc02aeae8556f2b0f7290dfad3b98945a1c5661b5", "repo_url": "https://github.com/lerianstudio/ring", "name": "receiving-code-review", "description": "A highly practical skill that establishes a rigorous, non-performative protocol for receiving and implementing code review feedback with excellent technical safeguards.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lerianstudio/ring/blob/main/default/skills/auditing-production-readiness/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 198, "skillhub_rank": "A", "skillhub_score": 8.4, "last_updated": "2026-06-21T21:07:14Z"}, "embedding_text": "receiving-code-review. A highly practical skill that establishes a rigorous, non-performative protocol for receiving and implementing code review feedback with excellent technical safeguards. Platforms: claude_code."} +{"id": "a023cc301f027f2a34e9cc20f8f7e96e7b71d529e27a5d57f1244b11126fce88", "repo_url": "https://github.com/disler/bowser", "name": "just", "description": "Use `just` to save and run project-specific commands. Use when the user mentions `justfile`, `recipe`, or needs a simple alternative to `make` for task automation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/disler/bowser/blob/main/.claude/skills/just/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 249, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-22T17:25:02Z"}, "embedding_text": "just. Use `just` to save and run project-specific commands. Use when the user mentions `justfile`, `recipe`, or needs a simple alternative to `make` for task automation. Platforms: claude_code."} +{"id": "8bc6e96ae4aa442b7757a81fb4fc74691f7adba646173b86cc89f4304ff9e1ae", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "error-monitoring", "description": "Generates protocol-based error/crash monitoring with swappable providers (Sentry, Crashlytics). Use when user wants to add crash reporting, error tracking, or production monitoring.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/error-monitoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "error-monitoring. Generates protocol-based error/crash monitoring with swappable providers (Sentry, Crashlytics). Use when user wants to add crash reporting, error tracking, or production monitoring. Platforms: claude_code."} +{"id": "939527db2a0a509b76a792b2dd1a5e512650d662719324351739f8eaec4bd78a", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "case-study-builder", "description": "Turn client wins into formatted case studies for proposals, social proof, and sales conversations. Use when someone needs to document results, build credibility, or create reusable proof assets.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/case-study-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install case-study-builder"}, "quality": {"stars": 335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T12:37:28Z"}, "embedding_text": "case-study-builder. Turn client wins into formatted case studies for proposals, social proof, and sales conversations. Use when someone needs to document results, build credibility, or create reusable proof assets. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} +{"id": "ded5eb8725042142f6f776b8b8c7910b1d405ead51318c55f491f1890b38cd27", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "video-marketing", "description": "When the user wants to plan video marketing, create video scripts, or optimize for short-form or long-form video. Also use when the user mentions \"video marketing,\" \"video script,\" \"short-form video,\" \"long-form video,\" \"TikTok script,\" \"Reels script,\" \"YouTube script,\" \"video hook,\" or \"video content strategy.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/video/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install video-marketing"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "video-marketing. When the user wants to plan video marketing, create video scripts, or optimize for short-form or long-form video. Also use when the user mentions \"video marketing,\" \"video script,\" \"short-form video,\" \"long-form video,\" \"TikTok script,\" \"Reels script,\" \"YouTube script,\" \"video hook,\" or \"video content strategy.\" Platforms: claude_code."} +{"id": "fa397f4c702c4d02597427ea52618688c2471d0a47a1feed6a5ea4b31e1e5682", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "tiktok-captions", "description": "When the user wants to create TikTok video captions, scripts, or optimize for TikTok. Also use when the user mentions \"TikTok post,\" \"TikTok caption,\" \"TikTok video,\" \"post to TikTok,\" \"TikTok script,\" \"TikTok content,\" \"TikTok copy,\" \"TikTok hashtags,\" or \"TikTok marketing.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/tiktok/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tiktok-captions"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "tiktok-captions. When the user wants to create TikTok video captions, scripts, or optimize for TikTok. Also use when the user mentions \"TikTok post,\" \"TikTok caption,\" \"TikTok video,\" \"post to TikTok,\" \"TikTok script,\" \"TikTok content,\" \"TikTok copy,\" \"TikTok hashtags,\" or \"TikTok marketing.\" Platforms: claude_code."} +{"id": "cabd538472c8bfc2e43a8404af286fad716d5993a1740e2509e0c01677cc0bd4", "repo_url": "https://github.com/lijigang/ljg-skill-xray-paper", "name": "ljg-xray-paper", "description": "Paper X-ray. Extracts what the paper says (problem-perspective-result) and what it means for lijigang (cognitive delta cards in ASCII art). Use when user shares an arxiv link, paper URL, PDF, or asks", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lijigang/ljg-skill-xray-paper/blob/master/skills/ljg-xray-paper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-26T02:13:19Z"}, "embedding_text": "ljg-xray-paper. Paper X-ray. Extracts what the paper says (problem-perspective-result) and what it means for lijigang (cognitive delta cards in ASCII art). Use when user shares an arxiv link, paper URL, PDF, or asks Platforms: claude_code."} +{"id": "5957268930ce3ace4d455bc3181755b8949a984e7fa25bd6220c8e4053161e47", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "springboot-tdd", "description": "Test-driven development for Spring Boot using JUnit 5, Mockito, MockMvc, Testcontainers, and JaCoCo. Use when adding features, fixing bugs, or refactoring.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/springboot-tdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "springboot-tdd. Test-driven development for Spring Boot using JUnit 5, Mockito, MockMvc, Testcontainers, and JaCoCo. Use when adding features, fixing bugs, or refactoring. Platforms: claude_code."} +{"id": "84a12fa18a1ba43f6b0908878494cfa6c3b5cfbda01ae124c9435001308768ee", "repo_url": "https://github.com/pbakaus/impeccable", "name": "typeset", "description": "Improves typography by fixing font choices, hierarchy, sizing, weight, and readability so text feels intentional. Use when the user mentions fonts, type, readability, text hierarchy, sizing looks off,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pbakaus/impeccable/blob/main/.agents/skills/impeccable/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40078, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T20:42:53Z"}, "embedding_text": "typeset. Improves typography by fixing font choices, hierarchy, sizing, weight, and readability so text feels intentional. Use when the user mentions fonts, type, readability, text hierarchy, sizing looks off, Platforms: claude_code."} +{"id": "9560289c0a404f4c60817693d6a38eef8cdfdef9fa3f21b2a867adc6c609cf91", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "status", "description": "Memory health dashboard showing line counts, topic files, capacity, stale entries, and recommendations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/skills-status-2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "status. Memory health dashboard showing line counts, topic files, capacity, stale entries, and recommendations. Platforms: claude_code."} +{"id": "ffc79396d6d23e44372c1fa2e64be8fc5b9c0dea3289629def93d33ec74bd0c4", "repo_url": "https://github.com/ankitvgupta/mail-app", "name": "clear-caches", "description": "Clear extension caches, analysis data, and drafts from the database. Use when testing sender lookups, analysis, or draft generation from a clean state.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ankitvgupta/mail-app/blob/main/.claude/skills/clear-caches/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 473, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T02:01:15Z"}, "embedding_text": "clear-caches. Clear extension caches, analysis data, and drafts from the database. Use when testing sender lookups, analysis, or draft generation from a clean state. Platforms: claude_code."} +{"id": "bab718375f3d48e77d8b7d662e714209cae6a17e99fa1c929789d0b681be2c1f", "repo_url": "https://github.com/inferencesh/skills", "name": "python-executor", "description": "Execute Python code in a safe sandboxed environment via [inference.sh](https://inference.sh).\nPre-installed: NumPy, Pandas, Matplotlib, requests, BeautifulSoup, Selenium,\nPlaywright, MoviePy, Pillow,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inferencesh/skills/blob/main/tools/utilities/python-executor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 555, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "python-executor. Execute Python code in a safe sandboxed environment via [inference.sh](https://inference.sh).\nPre-installed: NumPy, Pandas, Matplotlib, requests, BeautifulSoup, Selenium,\nPlaywright, MoviePy, Pillow, Platforms: claude_code."} +{"id": "40b50b8526b0c1dda9e4161ee8a88ee91711d384a168140898f53ae97f0158a5", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "career-growth", "description": "Plans PM career growth using frameworks from 40+ career episodes and Ami Vora's advancement strategies. Use when planning promotions, identifying skill gaps, navigating career transitions, or choosing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/career-growth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "career-growth. Plans PM career growth using frameworks from 40+ career episodes and Ami Vora's advancement strategies. Use when planning promotions, identifying skill gaps, navigating career transitions, or choosing Platforms: claude_code."} +{"id": "61074ec9c831eb7e9ffb48d216fd108f52533f3f4284536382939bc62bbbefca", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "coaching-pms", "description": "Help users develop and coach product managers. Use when someone is managing PMs, creating development plans, running performance reviews, or trying to level up their PM team's capabilities.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/coaching-pms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "coaching-pms. Help users develop and coach product managers. Use when someone is managing PMs, creating development plans, running performance reviews, or trying to level up their PM team's capabilities. Platforms: claude_code."} +{"id": "082ff98bd6b8662c8424bff3912744170bd7f16e4f807d3ab4cc0bc723884ccb", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-brief", "description": "Generate detailed content briefs for blog posts with target keywords, content outlines, competitive analysis, recommended statistics, image and chart suggestions, word count targets, internal linking architecture, template recommendations (12 types), TL;DR drafts, citation capsule planning, information gain prompts, and multi-channel distribution plans. Briefs are optimized for Google rankings and AI citations (GEO/AEO). Use when user says \"content brief\", \"blog brief\", \"write brief\", \"outline blog\", \"plan blog post\", \"blog outline\", \"content outline\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-brief/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-brief"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-brief. Generate detailed content briefs for blog posts with target keywords, content outlines, competitive analysis, recommended statistics, image and chart suggestions, word count targets, internal linking architecture, template recommendations (12 types), TL;DR drafts, citation capsule planning, information gain prompts, and multi-channel distribution plans. Briefs are optimized for Google rankings and AI citations (GEO/AEO). Use when user says \"content brief\", \"blog brief\", \"write brief\", \"outline blog\", \"plan blog post\", \"blog outline\", \"content outline\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "76b59e6d9ddc0cf0cb16ee384a18f34ebb8eebcb12ec2723bea7055f198bd6cc", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "meta-ads", "description": "When the user wants to set up, optimize, or manage Meta (Facebook/Instagram) Ads. Also use when the user mentions \"Meta Ads,\" \"Facebook Ads,\" \"Instagram Ads,\" \"Meta Pixel,\" \"Conversions API,\" \"Advantage+,\" \"lookalike audience,\" or \"Meta retargeting.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/meta-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install meta-ads"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "meta-ads. When the user wants to set up, optimize, or manage Meta (Facebook/Instagram) Ads. Also use when the user mentions \"Meta Ads,\" \"Facebook Ads,\" \"Instagram Ads,\" \"Meta Pixel,\" \"Conversions API,\" \"Advantage+,\" \"lookalike audience,\" or \"Meta retargeting.\" Platforms: claude_code."} +{"id": "b8d93db8c6c43f5c13564ce03fe676b7064700a687bc76ddba4e55f4abe34158", "repo_url": "https://github.com/zhanghandong/rust-skills", "name": "domain-embedded", "description": "Use when developing embedded/no_std Rust. Keywords: embedded, no_std, microcontroller, MCU, ARM, RISC-V, bare metal, firmware, HAL, PAC, RTIC, embassy, interrupt, DMA, peripheral, GPIO, SPI, I2C, UART", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zhanghandong/rust-skills/blob/main/skills/domain-embedded/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1252, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T23:33:30Z"}, "embedding_text": "domain-embedded. Use when developing embedded/no_std Rust. Keywords: embedded, no_std, microcontroller, MCU, ARM, RISC-V, bare metal, firmware, HAL, PAC, RTIC, embassy, interrupt, DMA, peripheral, GPIO, SPI, I2C, UART Platforms: claude_code."} +{"id": "33438dc98931cb43064c681d07278ef6100f6d984c250506e3c71f6360520031", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "react-composition-patterns", "description": "React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes. Do NOT use for React/Next.js performance optimization (use react-best-practices instead).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(architecture)/react-composition-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install react-composition-patterns"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "react-composition-patterns. React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes. Do NOT use for React/Next.js performance optimization (use react-best-practices instead). Platforms: claude_code."} +{"id": "59646b4b4400c6a97c06bcc95fb8c9bb895ba07039fe839dd3a889767fc2f171", "repo_url": "https://github.com/eronred/aso-skills", "name": "app-launch", "description": "When the user wants to plan a launch strategy for a new app or major update. Also use when the user mentions \"app launch\", \"launch plan\", \"launch checklist\", \"pre-launch\", \"launch day\", or \"how to lau", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/app-launch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "app-launch. When the user wants to plan a launch strategy for a new app or major update. Also use when the user mentions \"app launch\", \"launch plan\", \"launch checklist\", \"pre-launch\", \"launch day\", or \"how to lau Platforms: claude_code."} +{"id": "497a571fedf2f002b20e004656cc0288b561ed43120c7ed9c72837e7dcb32f91", "repo_url": "https://github.com/phuryn/pm-skills", "name": "analyze-feature-requests", "description": "Analyze and prioritize a list of feature requests by theme, strategic alignment, impact, effort, and risk. Use when reviewing customer feature requests, triaging a backlog, or making prioritization decisions.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-product-discovery/skills/analyze-feature-requests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install analyze-feature-requests"}, "quality": {"stars": 20350, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T14:12:26Z"}, "embedding_text": "analyze-feature-requests. Analyze and prioritize a list of feature requests by theme, strategic alignment, impact, effort, and risk. Use when reviewing customer feature requests, triaging a backlog, or making prioritization decisions. Platforms: claude_code."} +{"id": "ff6c1f542eca8745df5be04974b233ceaa8f52602579b58b476ce4875a21aba2", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-scan-deps", "description": "Ghost Security - Software Composition Analysis (SCA) scanner. Scans dependency lockfiles for known vulnerabilities, identifies CVEs, and generates findings with severity levels and remediation guidance. Use when the user asks about dependency vulnerabilities, vulnerable packages, CVE checks, security audits of dependencies, or wants to scan lockfiles like package-lock.json, yarn.lock, go.sum, or Gemfile.lock.\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/scan-deps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-scan-deps"}, "quality": {"stars": 393, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-scan-deps. Ghost Security - Software Composition Analysis (SCA) scanner. Scans dependency lockfiles for known vulnerabilities, identifies CVEs, and generates findings with severity levels and remediation guidance. Use when the user asks about dependency vulnerabilities, vulnerable packages, CVE checks, security audits of dependencies, or wants to scan lockfiles like package-lock.json, yarn.lock, go.sum, or Gemfile.lock.\n Platforms: claude_code."} +{"id": "6ef1a819f7a182f787aa3ec832ff856fde87ba7dec2058fdf9bee59dce87bcea", "repo_url": "https://github.com/significant-gravitas/autogpt", "name": "code-style", "description": "Python code style preferences for the AutoGPT backend. Apply when writing or reviewing Python code. TRIGGER when writing new Python code, reviewing PRs, or refactoring backend code.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/significant-gravitas/autogpt/blob/master/.claude/skills/open-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 185063, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:52:27Z"}, "embedding_text": "code-style. Python code style preferences for the AutoGPT backend. Apply when writing or reviewing Python code. TRIGGER when writing new Python code, reviewing PRs, or refactoring backend code. Platforms: claude_code."} +{"id": "54d67826f5816173a5b2fd26c3c35000954270e78e787a265df72cb608c2d73a", "repo_url": "https://github.com/first-fluke/oh-my-agent", "name": "commit", "description": "Create git commits following Conventional Commits specification with project-specific branch naming rules. Use for commit message generation, changelog, and versioning.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/first-fluke/oh-my-agent/blob/main/.agents/skills/oma-academic-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1113, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:09:44Z"}, "embedding_text": "commit. Create git commits following Conventional Commits specification with project-specific branch naming rules. Use for commit message generation, changelog, and versioning. Platforms: claude_code."} +{"id": "4f6bd4805f0e3a46cba611b1735f129f16db4c665a2528f88ced9ac67055455e", "repo_url": "https://github.com/agent-sh/agentsys", "name": "perf-profiler", "description": "Use when profiling CPU/memory hot paths, generating flame graphs, or capturing JFR/perf evidence.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/perf-profiler/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "perf-profiler. Use when profiling CPU/memory hot paths, generating flame graphs, or capturing JFR/perf evidence. Platforms: claude_code."} +{"id": "b3009fb6d820fe929c1e07d200be405d6df26c756fc94e125f6deea6cf75ed5c", "repo_url": "https://github.com/avifenesh/agentsys", "name": "perf-analyzer", "description": "Use when synthesizing perf findings into evidence-backed recommendations and decisions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avifenesh/agentsys/blob/main/.kiro/skills/perf-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "perf-analyzer. Use when synthesizing perf findings into evidence-backed recommendations and decisions. Platforms: claude_code."} +{"id": "5915f3c14755731e807b8d07fe017e097665690f51d4871e2753a23b3a538470", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "push-to-registry", "description": "Push Packer build metadata to HCP Packer registry for tracking and managing image lifecycle. Use when integrating Packer builds with HCP Packer for version control and governance.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/packer/hcp/skills/push-to-registry/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install push-to-registry"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "push-to-registry. Push Packer build metadata to HCP Packer registry for tracking and managing image lifecycle. Use when integrating Packer builds with HCP Packer for version control and governance. Platforms: claude_code."} +{"id": "66994b69891d437b83992da1a96b68b18fd7881a91a6239fbaa8f1408ba64f4f", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-metal-migration-diag", "description": "Use when ANY Metal porting issue occurs - black screen, rendering artifacts, shader errors, wrong colors, performance regressions, GPU crashes", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-accessibility/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 989, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:59:11Z"}, "embedding_text": "axiom-metal-migration-diag. Use when ANY Metal porting issue occurs - black screen, rendering artifacts, shader errors, wrong colors, performance regressions, GPU crashes Platforms: claude_code."} +{"id": "38db4fe8e7db2eeecf024c7b530d326a166c9f18cfc9b6401d58cee1fa036ca4", "repo_url": "https://github.com/eronred/aso-skills", "name": "aso-audit", "description": "When the user wants a full ASO health audit, review their App Store listing quality, or diagnose why their app isn't ranking. Also use when the user mentions \"ASO audit\", \"ASO score\", \"why am I not ra", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/aso-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "aso-audit. When the user wants a full ASO health audit, review their App Store listing quality, or diagnose why their app isn't ranking. Also use when the user mentions \"ASO audit\", \"ASO score\", \"why am I not ra Platforms: claude_code."} +{"id": "59b18677dc7483f766532d09706723a6cf8778d181f012a8f131d5947cd408c4", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "visual-intelligence", "description": "Integrate your app with iOS Visual Intelligence for camera-based search and object recognition. Use when adding visual search capabilities.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/apple-intelligence/visual-intelligence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "visual-intelligence. Integrate your app with iOS Visual Intelligence for camera-based search and object recognition. Use when adding visual search capabilities. Platforms: claude_code."} +{"id": "3260eb5f4180d9df5afb8de807159bc53e63e0e8d1997c6daedc589c1ba74b2a", "repo_url": "https://github.com/microsoft/skills", "name": "azure-keyvault-keys-rust", "description": "Azure Key Vault Keys SDK for Rust. Use for creating, managing, and using cryptographic keys.\nTriggers: \"keyvault keys rust\", \"KeyClient rust\", \"create key rust\", \"encrypt rust\", \"sign rust\".\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-rust/skills/azure-keyvault-keys-rust/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-keyvault-keys-rust"}, "quality": {"stars": 2600, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:47:24Z"}, "embedding_text": "azure-keyvault-keys-rust. Azure Key Vault Keys SDK for Rust. Use for creating, managing, and using cryptographic keys.\nTriggers: \"keyvault keys rust\", \"KeyClient rust\", \"create key rust\", \"encrypt rust\", \"sign rust\".\n Platforms: claude_code."} +{"id": "f0c2ad532f44708fddaaf2f75902e9c096ba68c71ceab68bada775eb61b57bdd", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "pcap-triage-tshark", "description": "Fast workflow to inspect PCAPs and extract protocol-level details using tshark", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/suricata-custom-exfil/environment/skills/pcap-triage-tshark/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "pcap-triage-tshark. Fast workflow to inspect PCAPs and extract protocol-level details using tshark Platforms: claude_code."} +{"id": "06c3a1d541ddd885bcef9ff0645eac6f6b7414070c84753bcc71bbc076c6ae2c", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "review", "description": "Analyze auto-memory for promotion candidates, stale entries, consolidation opportunities, and health metrics.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/adversarial-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "review. Analyze auto-memory for promotion candidates, stale entries, consolidation opportunities, and health metrics. Platforms: claude_code."} +{"id": "3317fb55ef41bc6f90d5bd43d7d53ade7327744d0c3d158a482e431fe6d57730", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "networking-layer", "description": "Generates a protocol-based networking layer with async/await, error handling, and swappable implementations. Use when user wants to add API client, networking, or HTTP layer.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/networking-layer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "networking-layer. Generates a protocol-based networking layer with async/await, error handling, and swappable implementations. Use when user wants to add API client, networking, or HTTP layer. Platforms: claude_code."} +{"id": "e158af548ba0a73fee98228c8fd8d8c735012fe4f32f379521c97f024558241e", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "quality-checking", "description": "Validate API documentation against quality standards. Use when you need to verify generated docs are complete and correct.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/08-skill-pipeline/.claude/skills/quality-checking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install quality-checking"}, "quality": {"stars": 863, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T11:11:17Z"}, "embedding_text": "quality-checking. Validate API documentation against quality standards. Use when you need to verify generated docs are complete and correct. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} +{"id": "cf17c1bdfe1df63372a65e634cb3c5fd38ae0a482e5f2e97a926cdb4901a8e2d", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "code-reviewing", "description": "Review code for quality, security, and best practices. Use when the user asks for code review, wants feedback on their code, mentions reviewing changes, or asks about code quality.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/00-basic-skill/.claude/skills/code-reviewing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-reviewing"}, "quality": {"stars": 863, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T11:11:17Z"}, "embedding_text": "code-reviewing. Review code for quality, security, and best practices. Use when the user asks for code review, wants feedback on their code, mentions reviewing changes, or asks about code quality. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} +{"id": "18a7966b0cb2736604fb312d2446343cc4ec1ef7c4ca5b7434736562f426192a", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-calendar", "description": "Generate editorial calendars for blogs with topic clusters, publishing schedules, content decay detection, freshness update plans, seasonal opportunities, content mix formula, template integration, and distribution scheduling. Plans monthly or quarterly calendars optimized for SEO topic authority and AI citation freshness requirements (30-day update cycles). Use when user says \"editorial calendar\", \"content calendar\", \"blog calendar\", \"publishing schedule\", \"blog plan\", \"content plan\", \"what should I write\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-calendar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-calendar"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-calendar. Generate editorial calendars for blogs with topic clusters, publishing schedules, content decay detection, freshness update plans, seasonal opportunities, content mix formula, template integration, and distribution scheduling. Plans monthly or quarterly calendars optimized for SEO topic authority and AI citation freshness requirements (30-day update cycles). Use when user says \"editorial calendar\", \"content calendar\", \"blog calendar\", \"publishing schedule\", \"blog plan\", \"content plan\", \"what should I write\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "69f00afe9c0293ac9522cc3c93817ac7b5d6094150a3c312712f33b3723b6bf7", "repo_url": "https://github.com/eronred/aso-skills", "name": "localization", "description": "When the user wants to localize their App Store listing for international markets. Also use when the user mentions \"localization\", \"translate my app\", \"international markets\", \"expand to new countries", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/localization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "localization. When the user wants to localize their App Store listing for international markets. Also use when the user mentions \"localization\", \"translate my app\", \"international markets\", \"expand to new countries Platforms: claude_code."} +{"id": "66e71e1e57dcdbd021789df623fac4013f183dfaa7c5e33a0496ed26a021a69d", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "insights", "description": "Analyze research behavior data \u2014 search hot keywords, most-read papers, reading trends, and semantic neighbors you haven't read yet. Use when the user wants to understand their reading habits, discove", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/insights/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "insights. Analyze research behavior data \u2014 search hot keywords, most-read papers, reading trends, and semantic neighbors you haven't read yet. Use when the user wants to understand their reading habits, discove Platforms: claude_code."} +{"id": "1a8bc3dbec53c1bf5589c331465ffde1a1adcaabf813f8f07b089b303c0b0425", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "writing-job-descriptions", "description": "Help users write effective job descriptions. Use when someone is creating a job posting, defining a new role, preparing to hire, or trying to attract the right candidates for an open position.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/writing-job-descriptions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "writing-job-descriptions. Help users write effective job descriptions. Use when someone is creating a job posting, defining a new role, preparing to hire, or trying to attract the right candidates for an open position. Platforms: claude_code."} +{"id": "ed5dda780ab4d97dcd127fd377572bc191933cd2876901ac70e1b9060986824e", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "show", "description": "View paper content at different detail levels. L1 (metadata), L2 (abstract), L3 (conclusion), L4 (full text). Use when the user wants to read a paper, see its abstract, conclusion, or full content.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/show/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "show. View paper content at different detail levels. L1 (metadata), L2 (abstract), L3 (conclusion), L4 (full text). Use when the user wants to read a paper, see its abstract, conclusion, or full content. Platforms: claude_code."} +{"id": "fed7c1c18b93daad963a0ce8ece33b0d305d52606a6a21877f1ddc926fc29507", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "design-systems", "description": "Help users build and scale design systems. Use when someone is creating a component library, establishing design tokens, scaling brand consistency, or deciding when to invest in a design system.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/design-systems/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "design-systems. Help users build and scale design systems. Use when someone is creating a component library, establishing design tokens, scaling brand consistency, or deciding when to invest in a design system. Platforms: claude_code."} +{"id": "0369ffb877b1d91847367bd8da082801150ec1908ac8fb139e259cd1d7746a56", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "docs-as-marketing", "description": "Transform documentation into a powerful marketing channel that attracts, converts, and retains developers. This skill covers creating documentation that ranks in search, converts visitors into users,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/docs-as-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "docs-as-marketing. Transform documentation into a powerful marketing channel that attracts, converts, and retains developers. This skill covers creating documentation that ranks in search, converts visitors into users, Platforms: claude_code."} +{"id": "e48f06104849b079fb3d85b84088be80101a23d06e6965163f40af15245b9feb", "repo_url": "https://github.com/shinpr/claude-code-workflows", "name": "ai-development-guide", "description": "Technical decision criteria, anti-pattern detection, debugging techniques, and quality check workflow. Use when making technical decisions, detecting code smells, or performing quality assurance.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/claude-code-workflows/blob/main/dev-skills/skills/ai-development-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 490, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T23:23:40Z"}, "embedding_text": "ai-development-guide. Technical decision criteria, anti-pattern detection, debugging techniques, and quality check workflow. Use when making technical decisions, detecting code smells, or performing quality assurance. Platforms: claude_code."} +{"id": "7beb87e33634045078b3895f53c98ec7828300ada0616e6a5858ff9616f6591e", "repo_url": "https://github.com/heyvhuang/ship-faster", "name": "review-doc-consistency", "description": "Documentation consistency reviewer that checks alignment between code implementation and documentation. Use when user requests reviewing documentation vs code consistency, checking if README/docs are", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heyvhuang/ship-faster/blob/main/legacy/skills/_archive/review-doc-consistency/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 336, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-10T19:55:04Z"}, "embedding_text": "review-doc-consistency. Documentation consistency reviewer that checks alignment between code implementation and documentation. Use when user requests reviewing documentation vs code consistency, checking if README/docs are Platforms: claude_code."} +{"id": "11184ed58fd29229e051462a4648f6dc0da6ec97c2ad71e7d76a7e33b7c26055", "repo_url": "https://github.com/echovic/blade-code", "name": "code-review", "description": "Review frontend code for best practices, bugs, and improvements. Use when reviewing PRs, checking code quality, or before committing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/echovic/blade-code/blob/main/.blade/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 167, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T12:26:45Z"}, "embedding_text": "code-review. Review frontend code for best practices, bugs, and improvements. Use when reviewing PRs, checking code quality, or before committing. Platforms: claude_code."} +{"id": "ac56685c8fdb4c3abd7a3c7e0c051da147410ebef925de362980d8cad65666ce", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "api-page-generator", "description": "When the user wants to create, optimize, or audit the API introduction/overview page. Also use when the user mentions \"API page,\" \"API landing page,\" \"/api page,\" \"API overview,\" \"developer landing,\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "api-page-generator. When the user wants to create, optimize, or audit the API introduction/overview page. Also use when the user mentions \"API page,\" \"API landing page,\" \"/api page,\" \"API overview,\" \"developer landing,\" Platforms: claude_code."} +{"id": "94413b0d9fb761b2892ea012b284cfc1bdeac21032077d30a6fad866349d64f3", "repo_url": "https://github.com/redisearch/redisearch", "name": "run-rust-tests", "description": "Run Rust tests after making changes to verify correctness. Use this when you want to verify your changes to Rust code.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/run-rust-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "run-rust-tests. Run Rust tests after making changes to verify correctness. Use this when you want to verify your changes to Rust code. Platforms: claude_code."} +{"id": "a2e2d26a487a07133d449d28e9a1b84e01c806972270a065d69d55cb72013e85", "repo_url": "https://github.com/eronred/aso-skills", "name": "review-management", "description": "When the user wants to analyze, respond to, or improve their app reviews and ratings. Also use when the user mentions \"reviews\", \"ratings\", \"negative reviews\", \"how to get more reviews\", \"review respo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/review-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "review-management. When the user wants to analyze, respond to, or improve their app reviews and ratings. Also use when the user mentions \"reviews\", \"ratings\", \"negative reviews\", \"how to get more reviews\", \"review respo Platforms: claude_code."} +{"id": "51fe1ab935d2b6c5f3d80661d8b03f9f22c8d7731bd48a69d02ed1314443f715", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "persistence-setup", "description": "Generates SwiftData or CoreData persistence layer with optional iCloud sync. Use when user wants to add local storage, data persistence, or cloud sync.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/persistence-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "persistence-setup. Generates SwiftData or CoreData persistence layer with optional iCloud sync. Use when user wants to add local storage, data persistence, or cloud sync. Platforms: claude_code."} +{"id": "0cc7fe6168b2d04706a9bc24daf37f437f60a960967075ca7c73cc11006c8edd", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "media-relations", "description": "Help users build relationships with journalists and get press coverage. Use when someone is pitching reporters, preparing for media outreach, trying to get press coverage, or managing ongoing journali", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/media-relations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "media-relations. Help users build relationships with journalists and get press coverage. Use when someone is pitching reporters, preparing for media outreach, trying to get press coverage, or managing ongoing journali Platforms: claude_code."} +{"id": "37b50460aef1b25841cde5dac5fffd7c3e7accf39748e6da4dc4d7fec66d9f40", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "charts-3d", "description": "3D chart visualization with Swift Charts using Chart3D, SurfacePlot, interactive pose control, and surface styling. Use when creating 3D data visualizations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/swiftui/charts-3d/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "charts-3d. 3D chart visualization with Swift Charts using Chart3D, SurfacePlot, interactive pose control, and surface styling. Use when creating 3D data visualizations. Platforms: claude_code."} +{"id": "11f786c1a6c7cfc8b769c643bbaff6f94feea9719dbbefb04ecd27948ad46847", "repo_url": "https://github.com/frankchen021/datastoria", "name": "optimization", "description": "Optimize slow queries, analyze SQL performance, find expensive queries. Use when the user mentions slow queries, optimize, performance, cpu, memory, duration.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/frankchen021/datastoria/blob/master/resources/skills/clickhouse-system-queries/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install optimization"}, "quality": {"stars": 322, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T12:09:34Z"}, "embedding_text": "optimization. Optimize slow queries, analyze SQL performance, find expensive queries. Use when the user mentions slow queries, optimize, performance, cpu, memory, duration. Platforms: claude_code."} +{"id": "b2564998fc3336edde2240f9276df86c3537bf6c02a148e44b07a04e2a793ebe", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "requesting-code-review", "description": "Use when completing tasks, implementing major features, or before merging to verify work meets requirements", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/requesting-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "requesting-code-review. Use when completing tasks, implementing major features, or before merging to verify work meets requirements Platforms: claude_code."} +{"id": "1562aa160600e49375d1807e230815e411df3fff4d3392badeb622b98b661a70", "repo_url": "https://github.com/howells/arc", "name": "design", "description": "Create distinctive, non-generic UI designs with aesthetic direction and ASCII wireframes.\nUse when asked to \"design the UI\", \"create a layout\", \"wireframe this\", or when building\nUI that should be mem", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/howells/arc/blob/main/plugins/arc/skills/audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T00:43:08Z"}, "embedding_text": "design. Create distinctive, non-generic UI designs with aesthetic direction and ASCII wireframes.\nUse when asked to \"design the UI\", \"create a layout\", \"wireframe this\", or when building\nUI that should be mem Platforms: claude_code."} +{"id": "450ec8a73088dc72476cd3f6f12522c40366d0e0df66999144b316c798f29f3d", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "review-prompt", "description": "Generates smart App Store review prompt infrastructure with configurable conditions and platform detection. Use when user wants to add review prompts, request ratings, or implement StoreKit reviews.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/review-prompt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "review-prompt. Generates smart App Store review prompt infrastructure with configurable conditions and platform detection. Use when user wants to add review prompts, request ratings, or implement StoreKit reviews. Platforms: claude_code."} +{"id": "fde01764554faff6ea2bd88a4e5d16e3fbf361ee05b20f79395504a9eec2a738", "repo_url": "https://github.com/vudovn/antigravity-kit", "name": "brainstorming", "description": "Socratic questioning protocol + user communication. MANDATORY for complex requests, new features, or unclear requirements. Includes progress reporting and error handling.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vudovn/antigravity-kit/blob/main/.agents/skills/brainstorming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 7744, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T08:59:33Z"}, "embedding_text": "brainstorming. Socratic questioning protocol + user communication. MANDATORY for complex requests, new features, or unclear requirements. Includes progress reporting and error handling. Platforms: claude_code."} +{"id": "a0e3e5dd413876b9bd87fb02327a03921fd40930666bd6558eb341eaedf319a7", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "continuous-learning-v2", "description": "Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/continuous-learning-v2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install continuous-learning-v2"}, "quality": {"stars": 752, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:57:09Z"}, "embedding_text": "continuous-learning-v2. Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents. Platforms: claude_code."} +{"id": "e58513faa0fea4ea09f83a2c990547aa344f0019e8747c33d2f55d36494c284c", "repo_url": "https://github.com/molt-bot/clawdbot", "name": "local-places", "description": "Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/molt-bot/clawdbot/blob/main/.agents/skills/agent-transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:18:40Z"}, "embedding_text": "local-places. Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost. Platforms: claude_code."} +{"id": "7c850448b956a62877380b18c4e601698c1040b87fb12541ecbd25fb46b0ac47", "repo_url": "https://github.com/gerstep/cybos", "name": "summarize", "description": "Summarize various content types (therapy sessions, meetings, documents) into structured notes. Use when processing transcripts or long-form content.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gerstep/cybos/blob/main/.claude/skills/Summarize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T09:47:18Z"}, "embedding_text": "summarize. Summarize various content types (therapy sessions, meetings, documents) into structured notes. Use when processing transcripts or long-form content. Platforms: claude_code."} +{"id": "83576bfd527b8ad18c22d6de1cece802296e9a5911e235a8f27ff630549a0c3c", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "using-plan-and-execute", "description": "Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Read tool before announcing usage, following brainstorming before coding, and creatin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-plan-and-execute/skills/using-plan-and-execute/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "using-plan-and-execute. Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Read tool before announcing usage, following brainstorming before coding, and creatin Platforms: claude_code."} +{"id": "ec28d6f04e67808c53aa3cfbb8125dba51b8ee5ae651cc174c454307bb17cef6", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-rewrite", "description": "Rewrite and optimize existing blog posts for Google rankings (December 2025 Core Update, E-E-A-T) and AI citations (GEO/AEO). Replaces fabricated statistics with sourced data, applies answer-first formatting, adds Pixabay/Unsplash images, generates built-in SVG charts, injects FAQ schema, performs AI content detection, adds citation capsules and information gain markers, and updates freshness signals. Works with any blog format (MDX, markdown, HTML). Use when user says \"rewrite blog\", \"optimize blog\", \"update blog\", \"improve blog\", \"fix blog\", \"refresh blog post\", \"blog optimization\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-rewrite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-rewrite"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-rewrite. Rewrite and optimize existing blog posts for Google rankings (December 2025 Core Update, E-E-A-T) and AI citations (GEO/AEO). Replaces fabricated statistics with sourced data, applies answer-first formatting, adds Pixabay/Unsplash images, generates built-in SVG charts, injects FAQ schema, performs AI content detection, adds citation capsules and information gain markers, and updates freshness signals. Works with any blog format (MDX, markdown, HTML). Use when user says \"rewrite blog\", \"optimize blog\", \"update blog\", \"improve blog\", \"fix blog\", \"refresh blog post\", \"blog optimization\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "81d1613c560eaf532f34390c6da46d3315ecbf0b048a49b9cbfc6fbc98e13b7c", "repo_url": "https://github.com/pockebot/openpocket", "name": "duolingo-play", "description": "Help users complete Duolingo language lessons. Use when the user asks to do Duolingo, practice a language, complete lessons, or needs guidance navigating the Duolingo app on phone.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/duolingo-play/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "duolingo-play. Help users complete Duolingo language lessons. Use when the user asks to do Duolingo, practice a language, complete lessons, or needs guidance navigating the Duolingo app on phone. Platforms: claude_code."} +{"id": "168988940831349253eccd52a9ba59c200d1cdee12b976322ba06dd40e547a08", "repo_url": "https://github.com/civitai/civitai", "name": "browser-automation", "description": "Browser automation via HTTP server. Supports multiple concurrent sessions for multi-user testing, saved flows, and profile-based auth persistence.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/civitai/civitai/blob/main/.claude/skills/browser-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 7157, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:14:44Z"}, "embedding_text": "browser-automation. Browser automation via HTTP server. Supports multiple concurrent sessions for multi-user testing, saved flows, and profile-based auth persistence. Platforms: claude_code."} +{"id": "297da9187f978e1e421faed93b37c5f1772dd8d0028511e660f68b65ff5a2bfe", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "finishing-a-development-branch", "description": "Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-plan-and-execute/skills/finishing-a-development-branch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "finishing-a-development-branch. Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup Platforms: claude_code."} +{"id": "ae86de5dff91b1edc3da530f57672ffb7e65da91dbf496cef113a5bb663738a9", "repo_url": "https://github.com/jezweb/claude-skills", "name": "strategy-document", "description": "Write structured strategic documents for small and medium businesses. Produces SWOT analyses, lean business plans, OKRs, and competitive analyses. Each mode has a defined structure and quality bar. Use when a business needs to articulate strategy, set goals, analyse competition, or plan for growth. Outputs actionable documents, not generic frameworks.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/strategy-document/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install strategy-document"}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "strategy-document. Write structured strategic documents for small and medium businesses. Produces SWOT analyses, lean business plans, OKRs, and competitive analyses. Each mode has a defined structure and quality bar. Use when a business needs to articulate strategy, set goals, analyse competition, or plan for growth. Outputs actionable documents, not generic frameworks. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} +{"id": "162bdd11276b9d3e097c192e4c630bbe9dfc6908d24888f3f9a2b0f8b1d332da", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "zimage-skill", "description": "Generate images using ModelScope Z-Image-Turbo API. Use when user asks to generate, create, or make images, pictures, or illustrations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/coreyhaines31/image/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "zimage-skill. Generate images using ModelScope Z-Image-Turbo API. Use when user asks to generate, create, or make images, pictures, or illustrations. Platforms: claude_code."} +{"id": "bfc45d1d217a1e84ad566ef67d6abf1e471a65104c41c0f540326f7d8b939492", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-seo-check", "description": "Post-writing SEO validation with pass/fail checklist covering title tag length and keyword placement, meta description quality, heading hierarchy and keyword density, internal/external link audit with anchor text analysis, canonical URL verification, Open Graph meta tags (og:title, og:description, og:image), Twitter Card validation, URL structure optimization, and image alt text presence. Produces prioritized fix list with specific recommendations. Use when user says \"seo check\", \"check seo\", \"validate seo\", \"blog seo\", \"seo validation\", \"on-page seo\", \"title tag check\", \"meta description check\", \"heading check\", \"link audit\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-seo-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-seo-check"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-seo-check. Post-writing SEO validation with pass/fail checklist covering title tag length and keyword placement, meta description quality, heading hierarchy and keyword density, internal/external link audit with anchor text analysis, canonical URL verification, Open Graph meta tags (og:title, og:description, og:image), Twitter Card validation, URL structure optimization, and image alt text presence. Produces prioritized fix list with specific recommendations. Use when user says \"seo check\", \"check seo\", \"validate seo\", \"blog seo\", \"seo validation\", \"on-page seo\", \"title tag check\", \"meta description check\", \"heading check\", \"link audit\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "0b535f94f7c5a0d897d9af3df7232981aa77ac8d61eebb9ca3f31cc521fb11e6", "repo_url": "https://github.com/willoscar/research-units-pipeline-skills", "name": "chapter-briefs", "description": "Build per-chapter (H2) writing briefs (NO PROSE) so the final survey reads like a paper (chapter leads + cross-H3 coherence) without inflating the ToC.\n**Trigger**: chapter briefs, H2 briefs, chapter", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/willoscar/research-units-pipeline-skills/blob/main/.codex/skills/chapter-briefs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:00:49Z"}, "embedding_text": "chapter-briefs. Build per-chapter (H2) writing briefs (NO PROSE) so the final survey reads like a paper (chapter leads + cross-H3 coherence) without inflating the ToC.\n**Trigger**: chapter briefs, H2 briefs, chapter Platforms: claude_code."} +{"id": "48e63f8347508bb6393b781fd940c2e1bc6a7d889359968f519524447aa9fd2d", "repo_url": "https://github.com/willoscar/research-units-pipeline-skills", "name": "artifact-contract-auditor", "description": "Audit the workspace against the pipeline artifact contract (DONE outputs + pipeline target_artifacts).\nWrites `output/CONTRACT_REPORT.md`.\n**Trigger**: contract audit, artifact contract, missing artif", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/willoscar/research-units-pipeline-skills/blob/main/.codex/skills/artifact-contract-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:00:49Z"}, "embedding_text": "artifact-contract-auditor. Audit the workspace against the pipeline artifact contract (DONE outputs + pipeline target_artifacts).\nWrites `output/CONTRACT_REPORT.md`.\n**Trigger**: contract audit, artifact contract, missing artif Platforms: claude_code."} +{"id": "f0841e726ad9ec1bf3c2e1641d4ae9c50572be5b56712951299e1abad9e24716", "repo_url": "https://github.com/spirimirror/libuipc", "name": "repository-setup", "description": "Guide for setting up repository remotes when working with forks", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spirimirror/libuipc/blob/main/.cursor/skills/repository-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:12:46Z"}, "embedding_text": "repository-setup. Guide for setting up repository remotes when working with forks Platforms: claude_code."} +{"id": "1d1eb737d95a3c13b325b9ce1fdd0693bc2c75cce6b90ad585e0c59d84012169", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "scoping-cutting", "description": "Help users scope projects and cut features effectively. Use when someone is defining an MVP, dealing with scope creep, trying to ship faster, or needs to make tradeoffs about what to build.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/scoping-cutting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "scoping-cutting. Help users scope projects and cut features effectively. Use when someone is defining an MVP, dealing with scope creep, trying to ship faster, or needs to make tradeoffs about what to build. Platforms: claude_code."} +{"id": "a95cccbc9902f3a0342a05fd446ae453230132e9fc6838b35c0b88e2f149e1a8", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "legal", "description": "Legal document generation and compliance guidance for indie Apple developers. Covers privacy policies, terms of service, EULAs, GDPR/CCPA/DPDP compliance, and Apple App Store legal requirements. Use w", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/legal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "legal. Legal document generation and compliance guidance for indie Apple developers. Covers privacy policies, terms of service, EULAs, GDPR/CCPA/DPDP compliance, and Apple App Store legal requirements. Use w Platforms: claude_code."} +{"id": "2d47e460a744f5edd44a655b922d8102e8f6d0bfe9985f723d7d6450e632c3cc", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "kanchi-dividend-us-tax-accounting", "description": "Provide US dividend tax and account-location workflow for Kanchi-style income portfolios. Use when users ask about qualified vs ordinary dividends, 1099-DIV interpretation, REIT/BDC distribution treat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/kanchi-dividend-us-tax-accounting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "kanchi-dividend-us-tax-accounting. Provide US dividend tax and account-location workflow for Kanchi-style income portfolios. Use when users ask about qualified vs ordinary dividends, 1099-DIV interpretation, REIT/BDC distribution treat Platforms: claude_code."} +{"id": "360600b20f6914d010dc5a0af0d439d5059f8dc5bf4a80c0635c9808fdef1462", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "duckduckgo-search", "description": "Free web search via DuckDuckGo \u2014 text, news, images, videos. No API key needed. Use the Python DDGS library or CLI to search, then web_extract for full content.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/research/duckduckgo-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "duckduckgo-search. Free web search via DuckDuckGo \u2014 text, news, images, videos. No API key needed. Use the Python DDGS library or CLI to search, then web_extract for full content. Platforms: linux, macos, windows."} +{"id": "3ed47717ae4303d30756267ed933e0908bd5484e499f3d8e38d601f244b93660", "repo_url": "https://github.com/sickn33/antigravity-awesome-skills", "name": "azure-functions", "description": "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 pro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sickn33/antigravity-awesome-skills/blob/main/plugins/antigravity-awesome-skills-claude/skills/azure-functions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:06:23Z"}, "embedding_text": "azure-functions. 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 pro Platforms: claude_code."} +{"id": "bade0eb521eb3860c5b46dbf1203e6899cf099db31a273303ab4a4e17d0e92a4", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "document", "description": "Generate and inspect Office documents (DOCX, PPTX, XLSX). Generate by writing Python scripts that call python-docx, python-pptx, and openpyxl APIs directly. Inspect with `scholaraio document inspect`", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/document/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "document. Generate and inspect Office documents (DOCX, PPTX, XLSX). Generate by writing Python scripts that call python-docx, python-pptx, and openpyxl APIs directly. Inspect with `scholaraio document inspect` Platforms: claude_code."} +{"id": "7887b74807b0d4e93cb70c0d3333e1bc34c2c2be93af8d26f4b15c3f6a25d4b5", "repo_url": "https://github.com/inferencesh/skills", "name": "chat-ui", "description": "Chat UI building blocks for React/Next.js from ui.inference.sh.\nComponents: container, messages, input, typing indicators, avatars.\nCapabilities: chat interfaces, message lists, input handling, stream", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inferencesh/skills/blob/main/ui/chat-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 555, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "chat-ui. Chat UI building blocks for React/Next.js from ui.inference.sh.\nComponents: container, messages, input, typing indicators, avatars.\nCapabilities: chat interfaces, message lists, input handling, stream Platforms: claude_code."} +{"id": "8f30d28363b8d2cc6bb89d7bb2ea5e7080ed7d9169e8908058e2334bf8a329ac", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "flutterfire-configure", "description": "Sets up Firebase for Flutter apps using FlutterFire CLI. Use when initializing a Firebase project, running flutterfire configure, initializing Firebase in main.dart, or configuring multiple app flavor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/flutterfire-configure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "flutterfire-configure. Sets up Firebase for Flutter apps using FlutterFire CLI. Use when initializing a Firebase project, running flutterfire configure, initializing Firebase in main.dart, or configuring multiple app flavor Platforms: claude_code."} +{"id": "eb80bb85de38e2d72f3b3917c4a43064adc20e15060a8bc93e733fc53b59357a", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-data-connect", "description": "Integrates Firebase Data Connect into Flutter apps. Use when setting up Data Connect, designing queries, handling errors, or applying security and performance best practices.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-data-connect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-data-connect. Integrates Firebase Data Connect into Flutter apps. Use when setting up Data Connect, designing queries, handling errors, or applying security and performance best practices. Platforms: claude_code."} +{"id": "5ad11f5f54e7044866d9ca6c1ad5f4064d26b21d6545bf392df0e5c96a93a35d", "repo_url": "https://github.com/ryanthedev/code-foundations", "name": "aposd-reviewing-module-design", "description": "Use when reviewing code, assessing interfaces, during PR review, or when asked 'is this too complex?' or 'is this design good?' Detects complexity symptoms and structural anti-patterns. Complements cc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ryanthedev/code-foundations/blob/main/skills/aposd-reviewing-module-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 280, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T03:42:22Z"}, "embedding_text": "aposd-reviewing-module-design. Use when reviewing code, assessing interfaces, during PR review, or when asked 'is this too complex?' or 'is this design good?' Detects complexity symptoms and structural anti-patterns. Complements cc Platforms: claude_code."} +{"id": "be48ed044f799bf5720e137a9a45a33bb6c2b506222e3fcc8e7fa840eeaec413", "repo_url": "https://github.com/systeminit/swamp", "name": "jujutsu", "description": "Track changes, rebase modifications, resolve conflicts, and manage bookmarks with Jujutsu (jj). Use when committing changes, navigating history, squashing/splitting commits, or pushing to Git remotes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/systeminit/swamp/blob/main/.agents/skills/jujutsu/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 448, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:28:07Z"}, "embedding_text": "jujutsu. Track changes, rebase modifications, resolve conflicts, and manage bookmarks with Jujutsu (jj). Use when committing changes, navigating history, squashing/splitting commits, or pushing to Git remotes. Platforms: claude_code."} +{"id": "8088670f75eff441765bdb7d8745d00f932f6779a0c9db08117eceff1c18dc5f", "repo_url": "https://github.com/zarazhangrui/youtube-to-ebook", "name": "youtube-to-ebook", "description": "Transform YouTube videos into beautifully formatted ebook articles with transcripts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zarazhangrui/youtube-to-ebook/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 484, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-28T22:46:31Z"}, "embedding_text": "youtube-to-ebook. Transform YouTube videos into beautifully formatted ebook articles with transcripts Platforms: claude_code."} +{"id": "b19bed862bc2a39e4462a662dbcd72689341f15c8d526d7ee5189e048044b262", "repo_url": "https://github.com/sickn33/antigravity-awesome-skills", "name": "bash-pro", "description": "Master of defensive Bash scripting for production automation, CI/CD pipelines, and system utilities. Expert in safe, portable, and testable shell scripts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sickn33/antigravity-awesome-skills/blob/main/plugins/antigravity-awesome-skills-claude/skills/bash-pro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:06:23Z"}, "embedding_text": "bash-pro. Master of defensive Bash scripting for production automation, CI/CD pipelines, and system utilities. Expert in safe, portable, and testable shell scripts. Platforms: claude_code."} +{"id": "5595f48d51da7a2ec7a6fa891d2192687210c962c1ffe6a2d0614f16187560fe", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "code-health-check", "description": "Perform a comprehensive code health check on a directory. Use when the user asks to analyze code quality, find issues, or get a health report.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/07-skill-fork-demo/.claude/skills/code-health-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-health-check"}, "quality": {"stars": 863, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T11:11:17Z"}, "embedding_text": "code-health-check. Perform a comprehensive code health check on a directory. Use when the user asks to analyze code quality, find issues, or get a health report. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} +{"id": "4b51346df640b9c69e97d49fc12b72af10a766e3177bc69cdae60e3437308aa0", "repo_url": "https://github.com/onmax/nuxt-skills", "name": "reka-ui", "description": "Use when building with Reka UI (headless Vue components) - provides component API, accessibility patterns, composition (asChild), controlled/uncontrolled state, virtualization, and styling integration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onmax/nuxt-skills/blob/main/skills/reka-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 683, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T07:41:14Z"}, "embedding_text": "reka-ui. Use when building with Reka UI (headless Vue components) - provides component API, accessibility patterns, composition (asChild), controlled/uncontrolled state, virtualization, and styling integration Platforms: claude_code."} +{"id": "911990e1fcca7a7f107f72507235e256208492a21a30efc72b87fa311f23d124", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "swift-development", "description": "Swift language patterns and best practices including concurrency, performance, and modern idioms. Use for Swift language-level code review or architecture guidance.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/swift/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "swift-development. Swift language patterns and best practices including concurrency, performance, and modern idioms. Use for Swift language-level code review or architecture guidance. Platforms: claude_code."} +{"id": "125a7bd5f5ca8d8497b462fc2eb30e34feae1c2def73019cfcb4747d735d05ea", "repo_url": "https://github.com/sickn33/antigravity-awesome-skills", "name": "file-uploads", "description": "Expert at handling file uploads and cloud storage. Covers S3, Cloudflare R2, presigned URLs, multipart uploads, and image optimization. Knows how to handle large files without blocking. Use when: file", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sickn33/antigravity-awesome-skills/blob/main/plugins/antigravity-awesome-skills-claude/skills/file-uploads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:06:23Z"}, "embedding_text": "file-uploads. Expert at handling file uploads and cloud storage. Covers S3, Cloudflare R2, presigned URLs, multipart uploads, and image optimization. Knows how to handle large files without blocking. Use when: file Platforms: claude_code."} +{"id": "18ad4218a85838c3a93dbd1e49155bf44a7ab60752c785497672ad90ae06ea59", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "http-cache", "description": "Generates an HTTP caching layer with Cache-Control parsing, ETag/conditional requests, and offline fallback. Use when user wants to add response caching, offline support, or reduce API calls.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/http-cache/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "http-cache. Generates an HTTP caching layer with Cache-Control parsing, ETag/conditional requests, and offline fallback. Use when user wants to add response caching, offline support, or reduce API calls. Platforms: claude_code."} +{"id": "e0c5456db6982853c5bd8307e8d7595ad6100fad7f314a6b4c4bb8287bc87fb5", "repo_url": "https://github.com/tanweai/pua", "name": "p10", "description": "P10 CTO mode \u2014 define strategic direction, design org topology, manage P9 teams. Use when user says 'CTO\u6a21\u5f0f', 'P10', '\u6218\u7565\u89c4\u5212', '\u67b6\u6784\u59d4\u5458\u4f1a', or when facing cross-team architectural decisions. Produces: strate", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tanweai/pua/blob/main/codex/pua-p10/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18373, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T15:15:16Z"}, "embedding_text": "p10. P10 CTO mode \u2014 define strategic direction, design org topology, manage P9 teams. Use when user says 'CTO\u6a21\u5f0f', 'P10', '\u6218\u7565\u89c4\u5212', '\u67b6\u6784\u59d4\u5458\u4f1a', or when facing cross-team architectural decisions. Produces: strate Platforms: claude_code."} +{"id": "62b1abf8d891451131c53a686fcae50bbdefba8bde2b043b9b3370a2d738cac7", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "tdd-bug-fix", "description": "Fix bugs using red-green-refactor \u2014 reproduce the bug as a failing test first, then fix it. Use when fixing bugs to ensure they never regress.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/testing/tdd-bug-fix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "tdd-bug-fix. Fix bugs using red-green-refactor \u2014 reproduce the bug as a failing test first, then fix it. Use when fixing bugs to ensure they never regress. Platforms: claude_code."} +{"id": "cfb8c75ce614ab3a164e36150cdb05e22ae33a58f831e6467a6bf40584f6f1ff", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "analytics-setup", "description": "Generates protocol-based analytics infrastructure with swappable providers (TelemetryDeck, Firebase, Mixpanel). Use when user wants to add analytics, track events, or set up telemetry.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/analytics-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "analytics-setup. Generates protocol-based analytics infrastructure with swappable providers (TelemetryDeck, Firebase, Mixpanel). Use when user wants to add analytics, track events, or set up telemetry. Platforms: claude_code."} +{"id": "381499a50d0a3aed2c7b8ced436b1df1744dcd8b3459041220e750606f9130d7", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "onboarding-generator", "description": "Generates multi-step onboarding flows with persistence for iOS/macOS apps. Use when user wants to add onboarding, welcome screens, or first-launch experience.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/onboarding-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "onboarding-generator. Generates multi-step onboarding flows with persistence for iOS/macOS apps. Use when user wants to add onboarding, welcome screens, or first-launch experience. Platforms: claude_code."} +{"id": "3d7380f9fb9df06babc041f0b8e2c440c5f710cccf93bfa16229e7aa08538525", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "ai-evals", "description": "Help users create and run AI evaluations. Use when someone is building evals for LLM products, measuring model quality, creating test cases, designing rubrics, or trying to systematically measure AI o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/ai-evals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "ai-evals. Help users create and run AI evaluations. Use when someone is building evals for LLM products, measuring model quality, creating test cases, designing rubrics, or trying to systematically measure AI o Platforms: claude_code."} +{"id": "bb5aff41419454e781f2aab537a46441b3d057b3f4a35636e6c5442d4d53646c", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "test-contract", "description": "Generate protocol/interface test suites that any implementation must pass. Define the contract once, test every implementation. Use when designing protocols or swapping implementations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/testing/test-contract/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "test-contract. Generate protocol/interface test suites that any implementation must pass. Define the contract once, test every implementation. Use when designing protocols or swapping implementations. Platforms: claude_code."} +{"id": "fa5848bb0f9732c0ebee1e221dea6d350f432688a67d85cd2b66596b7f38a3a3", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "dogfooding", "description": "Help users implement effective dogfooding practices. Use when someone is trying to get their team to use their own product, designing internal usage programs, or building user empathy through personal", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/dogfooding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "dogfooding. Help users implement effective dogfooding practices. Use when someone is trying to get their team to use their own product, designing internal usage programs, or building user empathy through personal Platforms: claude_code."} +{"id": "aa03d1e2ee4c378502f8db520af1b3e9f89459775ad7c030188cf44bb565c0ba", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "slack-gif-creator", "description": "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 G", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/slack-gif-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "slack-gif-creator. 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 G Platforms: claude_code."} +{"id": "a477dc2f37d74a5fab145734c594268b394237bc29093465c2e42fb8944c9e96", "repo_url": "https://github.com/eraserlabs/eraser-io", "name": "terraform-diagrams", "description": "Generates architecture diagrams from Terraform code. Use when user has .tf files or asks to visualize Terraform infrastructure.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eraserlabs/eraser-io/blob/main/claude-plugins/eraser/skills/diagram/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T17:20:57Z"}, "embedding_text": "terraform-diagrams. Generates architecture diagrams from Terraform code. Use when user has .tf files or asks to visualize Terraform infrastructure. Platforms: claude_code."} +{"id": "3b05a25bc53a92438a5998d3f86f42152795ab2cd4034dae42cc2c64cdddacd2", "repo_url": "https://github.com/avifenesh/agentsys", "name": "perf-code-paths", "description": "Use when mapping code paths, entrypoints, and likely hot files before profiling.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avifenesh/agentsys/blob/main/.kiro/skills/perf-code-paths/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "perf-code-paths. Use when mapping code paths, entrypoints, and likely hot files before profiling. Platforms: claude_code."} +{"id": "33ad37f589a04078bc015e52ef2e55c3531a4ee2973f8a951ca5b81b53a8fc45", "repo_url": "https://github.com/ryanthedev/code-foundations", "name": "cc-developer-character", "description": "Use when stuck in debugging, considering skipping reviews, feeling pressure on estimates, or working past fatigue. Symptoms: gonzo programming, compiling to see what happens, ignoring warnings, 90% co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ryanthedev/code-foundations/blob/main/benchmarks/tdd-vs-siv/build-doctrine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 280, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T03:42:22Z"}, "embedding_text": "cc-developer-character. Use when stuck in debugging, considering skipping reviews, feeling pressure on estimates, or working past fatigue. Symptoms: gonzo programming, compiling to see what happens, ignoring warnings, 90% co Platforms: claude_code."} +{"id": "0531188db93d1123b3b7e04cd61c57b568a1b350d54564a55705984cddb72ff7", "repo_url": "https://github.com/astronomer/agents", "name": "annotating-task-lineage", "description": "Annotate Airflow tasks with data lineage using inlets and outlets. Use when the user wants to add lineage metadata to tasks, specify input/output datasets, or enable lineage tracking for operators wit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astronomer/agents/blob/main/skills/annotating-task-lineage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:24:02Z"}, "embedding_text": "annotating-task-lineage. Annotate Airflow tasks with data lineage using inlets and outlets. Use when the user wants to add lineage metadata to tasks, specify input/output datasets, or enable lineage tracking for operators wit Platforms: claude_code."} +{"id": "f00ea7a51eb2177705e20ffeaf715e766802a3d15cc0f58b7e91f452177321ea", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-analyze", "description": "Audit and score blog posts on a 5-category 100-point scoring system covering content quality, SEO optimization, E-E-A-T signals, technical elements, and AI citation readiness. Includes AI content detection (burstiness, phrase flagging, vocabulary diversity). Supports export formats (markdown, JSON, table) and batch analysis with sorting. Generates prioritized recommendations (Critical/High/Medium/Low) with specific fixes. Works with any format (MDX, markdown, HTML, URL). Use when user says \"analyze blog\", \"audit blog\", \"blog score\", \"check blog quality\", \"blog review\", \"rate this blog\", \"blog health check\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-analyze/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-analyze"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-analyze. Audit and score blog posts on a 5-category 100-point scoring system covering content quality, SEO optimization, E-E-A-T signals, technical elements, and AI citation readiness. Includes AI content detection (burstiness, phrase flagging, vocabulary diversity). Supports export formats (markdown, JSON, table) and batch analysis with sorting. Generates prioritized recommendations (Critical/High/Medium/Low) with specific fixes. Works with any format (MDX, markdown, HTML, URL). Use when user says \"analyze blog\", \"audit blog\", \"blog score\", \"check blog quality\", \"blog review\", \"rate this blog\", \"blog health check\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "794b7f35a322d3758ef21fa5fbf3d93b5d3272a5c1547aedf9b237ec92361604", "repo_url": "https://github.com/expo/skills", "name": "expo-cicd-workflows", "description": "Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI/CD or workflows in an Expo or EAS context, mentions .eas/workflows/, or wants help with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/expo/skills/blob/main/plugins/expo/skills/expo-cicd-workflows/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2097, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:41:30Z"}, "embedding_text": "expo-cicd-workflows. Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI/CD or workflows in an Expo or EAS context, mentions .eas/workflows/, or wants help with Platforms: claude_code."} +{"id": "9db9d3584c7293ceabc7dce80b5270fa93360e1600694b9fdc5c2d9db2402cd4", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "whisper", "description": "OpenAI's general-purpose speech recognition model. Supports 99 languages, transcription, translation to English, and language identification. Six model sizes from tiny (39M params) to large (1550M par", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/whisper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "whisper. OpenAI's general-purpose speech recognition model. Supports 99 languages, transcription, translation to English, and language identification. Six model sizes from tiny (39M params) to large (1550M par Platforms: linux, macos."} +{"id": "a619f108807065900af17cb72e8016c2d007835de5216a2d8e1d0e98a9e307d0", "repo_url": "https://github.com/spirimirror/libuipc", "name": "gpu-optimization", "description": "GPU optimization workflow using uipc.profile, uipc.profile.nsight, and Nsight Compute CLI. Use when profiling, optimizing, or benchmarking CUDA kernels.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spirimirror/libuipc/blob/main/.cursor/skills/gpu-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:12:46Z"}, "embedding_text": "gpu-optimization. GPU optimization workflow using uipc.profile, uipc.profile.nsight, and Nsight Compute CLI. Use when profiling, optimizing, or benchmarking CUDA kernels. Platforms: claude_code."} +{"id": "dc59c2b942c9396554d64d7ac80359b130f807a3433b1b63f8e9634d0c2bbe26", "repo_url": "https://github.com/dotnet/skills", "name": "directory-build-organization", "description": "Guide for organizing MSBuild infrastructure with Directory.Build.props, Directory.Build.targets, Directory.Packages.props, and Directory.Build.rsp. Only activate in MSBuild/.NET build context. Use when structuring multi-project repos, centralizing build settings, or implementing central package management. Invoke when asked about Directory.Build files, centralizing project properties, or organizing build infrastructure.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/directory-build-organization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install directory-build-organization"}, "quality": {"stars": 3455, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:58:53Z"}, "embedding_text": "directory-build-organization. Guide for organizing MSBuild infrastructure with Directory.Build.props, Directory.Build.targets, Directory.Packages.props, and Directory.Build.rsp. Only activate in MSBuild/.NET build context. Use when structuring multi-project repos, centralizing build settings, or implementing central package management. Invoke when asked about Directory.Build files, centralizing project properties, or organizing build infrastructure. Platforms: claude_code."} +{"id": "ef8fc8c73472881e9a35fb90fc6ff5db72673d6311761a2368b359d702e58d91", "repo_url": "https://github.com/ankitvgupta/mail-app", "name": "gh-local", "description": "Run GitHub Actions CI workflows locally using nektos/act in Docker. Use when testing CI before pushing or debugging workflow failures.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ankitvgupta/mail-app/blob/main/.claude/skills/gh-local/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 473, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T02:01:15Z"}, "embedding_text": "gh-local. Run GitHub Actions CI workflows locally using nektos/act in Docker. Use when testing CI before pushing or debugging workflow failures. Platforms: claude_code."} +{"id": "57435869059c16d7e579649eb9de1b0a772bb5531f42f942e17856e570f4849c", "repo_url": "https://github.com/neversight/skills_feed", "name": "designer", "description": "10x Software Designer - UI/UX design review, visual critique, and design system architecture for React/Next.js apps using shadcn/ui + Tailwind CSS. Use when the user needs front-end design help, visua", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 172, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:03:27Z"}, "embedding_text": "designer. 10x Software Designer - UI/UX design review, visual critique, and design system architecture for React/Next.js apps using shadcn/ui + Tailwind CSS. Use when the user needs front-end design help, visua Platforms: claude_code."} +{"id": "8cd69697d17a9f8acd7f519e048ffd5a07e226720cc48b3157be66d05d41c294", "repo_url": "https://github.com/glebis/claude-skills", "name": "pdf-generation", "description": "Professional PDF generation from markdown using Pandoc with Eisvogel template and EB Garamond fonts. Use when converting markdown to PDF, creating white papers, research documents, marketing materials", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/pdf-generation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "pdf-generation. Professional PDF generation from markdown using Pandoc with Eisvogel template and EB Garamond fonts. Use when converting markdown to PDF, creating white papers, research documents, marketing materials Platforms: claude_code."} +{"id": "17b2f822627dc8d0bc743f832a6210ee3dd4da8cd02739c4a3041c855d443ef5", "repo_url": "https://github.com/agent-sh/agentsys", "name": "enhance-orchestrator", "description": "Use when coordinating multiple enhancers for /enhance command. Runs analyzers in parallel and produces unified report.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/enhance-orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "enhance-orchestrator. Use when coordinating multiple enhancers for /enhance command. Runs analyzers in parallel and produces unified report. Platforms: claude_code."} +{"id": "0977914ade809777dfa08364de782dd46be731d9afdd4b2ad5fdce61daa2e384", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-app-create-ui", "description": "Create a new App Store Connect app record via browser automation. Use when there is no public API for app creation and you need an agent to drive the New App form.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-app-create-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-app-create-ui"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-app-create-ui. Create a new App Store Connect app record via browser automation. Use when there is no public API for app creation and you need an agent to drive the New App form. Platforms: claude_code."} +{"id": "3856fbd285ae05c4a3d7aaf547680e4c3925c4b1816f2c2486b3f7185cc9e9db", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "cold-outreach-sequence", "description": "Build personalized cold outreach sequences for LinkedIn and email. Use when someone needs to reach prospects, warm up cold leads, or build a systematic outreach engine. Covers research, connection requests, follow-ups, and conversion.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/cold-outreach-sequence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cold-outreach-sequence"}, "quality": {"stars": 335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T12:37:28Z"}, "embedding_text": "cold-outreach-sequence. Build personalized cold outreach sequences for LinkedIn and email. Use when someone needs to reach prospects, warm up cold leads, or build a systematic outreach engine. Covers research, connection requests, follow-ups, and conversion. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} +{"id": "6800a6dc231e03a6a2d49e36464b6fe7003305a6ed5547a958813b02677847da", "repo_url": "https://github.com/agent-sh/agentsys", "name": "enhance-skills", "description": "Use when reviewing SKILL.md files for structure and trigger quality.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/enhance-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "enhance-skills. Use when reviewing SKILL.md files for structure and trigger quality. Platforms: claude_code."} +{"id": "055493043af9185eef1f7792ecaf50da8fd0a43e20b3233538b30dd567f50338", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "audit", "description": "Audit paper data quality in the knowledge base. Checks for missing fields, filename issues, DOI duplicates, title mismatches, and more. Supports LLM-based deep diagnosis for title mismatches and autom", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "audit. Audit paper data quality in the knowledge base. Checks for missing fields, filename issues, DOI duplicates, title mismatches, and more. Supports LLM-based deep diagnosis for title mismatches and autom Platforms: claude_code."} +{"id": "ee8802790fdc721e365ae2b9c8397777aa5fe949725d4c20e4dc80cf18082fbb", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "ui", "description": "Next.js 15 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc704\ud55c \ud504\ub860\ud2b8\uc5d4\ub4dc \uac1c\ubc1c \uac00\uc774\ub4dc\ub77c\uc778. React 19, TypeScript, Shadcn/ui, Tailwind CSS\ub97c \uc0ac\uc6a9\ud55c \ubaa8\ub358 \ud328\ud134. Server Components, Client Components, App Router, \ud30c\uc77c \uad6c\uc870, Shadcn/ui \ucef4\ud3ec\ub10c\ud2b8, \uc131\ub2a5 \ucd5c\uc801\ud654, TypeScript \ubaa8\ubc94 \uc0ac\ub840 \ud3ec\ud568. \ucef4\ud3ec\ub10c\ud2b8, \ud398\uc774\uc9c0, \uae30\ub2a5 \uc0dd\uc131, \ub370\uc774\ud130 \ud398\uce6d, \uc2a4\ud0c0\uc77c\ub9c1, \ub77c\uc6b0\ud305, \ud504\ub860\ud2b8\uc5d4\ub4dc \ucf54\ub4dc \uc791\uc5c5 \uc2dc \uc0ac\uc6a9.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0chan-smc/frontend-dev-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ui"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "ui. Next.js 15 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc704\ud55c \ud504\ub860\ud2b8\uc5d4\ub4dc \uac1c\ubc1c \uac00\uc774\ub4dc\ub77c\uc778. React 19, TypeScript, Shadcn/ui, Tailwind CSS\ub97c \uc0ac\uc6a9\ud55c \ubaa8\ub358 \ud328\ud134. Server Components, Client Components, App Router, \ud30c\uc77c \uad6c\uc870, Shadcn/ui \ucef4\ud3ec\ub10c\ud2b8, \uc131\ub2a5 \ucd5c\uc801\ud654, TypeScript \ubaa8\ubc94 \uc0ac\ub840 \ud3ec\ud568. \ucef4\ud3ec\ub10c\ud2b8, \ud398\uc774\uc9c0, \uae30\ub2a5 \uc0dd\uc131, \ub370\uc774\ud130 \ud398\uce6d, \uc2a4\ud0c0\uc77c\ub9c1, \ub77c\uc6b0\ud305, \ud504\ub860\ud2b8\uc5d4\ub4dc \ucf54\ub4dc \uc791\uc5c5 \uc2dc \uc0ac\uc6a9. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "7909e1c144a3ddbe08c29e88f9975c58db4199b1193eddac93b14a821997a4ba", "repo_url": "https://github.com/agent-sh/agentsys", "name": "enhance-cross-file", "description": "Use when checking cross-file consistency: tools vs frontmatter, agent references, duplicate rules, contradictions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/enhance-cross-file/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "enhance-cross-file. Use when checking cross-file consistency: tools vs frontmatter, agent references, duplicate rules, contradictions. Platforms: claude_code."} +{"id": "1ad7d0159ce1992fc92426fe706b12774d633eab92951982c11ff017187c9bae", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-cli-usage", "description": "Guidance for using asc cli in this repo (flags, output formats, pagination, auth, and discovery). Use when asked to run or design asc commands or interact with App Store Connect via the CLI.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-cli-usage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-cli-usage"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-cli-usage. Guidance for using asc cli in this repo (flags, output formats, pagination, auth, and discovery). Use when asked to run or design asc commands or interact with App Store Connect via the CLI. Platforms: claude_code."} +{"id": "8b56cc268d3efdb2a884646201e472bdad6d3b8c6c5c6c2b5898f26d3cb64df3", "repo_url": "https://github.com/googleworkspace/cli", "name": "persona-hr-coordinator", "description": "Handle HR workflows \u2014 onboarding, announcements, and employee comms.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/persona-hr-coordinator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install persona-hr-coordinator"}, "quality": {"stars": 27196, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T17:06:34Z"}, "embedding_text": "persona-hr-coordinator. Handle HR workflows \u2014 onboarding, announcements, and employee comms. Platforms: claude_code."} +{"id": "6ae9f65b998fc49aeb78926831c1fab745ed0482930aded6e169824383c27a3a", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "provider", "description": "Uses the Provider package for dependency injection and state management in Flutter. Use when setting up providers, consuming state, optimizing rebuilds, using ProxyProvider, or migrating from deprecat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/provider/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "provider. Uses the Provider package for dependency injection and state management in Flutter. Use when setting up providers, consuming state, optimizing rebuilds, using ProxyProvider, or migrating from deprecat Platforms: claude_code."} +{"id": "6bc11f83831226767699b43c5d1e5e7ecce91897f062b3e940dec1849361fb9a", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "edge-candidate-agent", "description": "Generate and prioritize US equity long-side edge research tickets from EOD observations, then export pipeline-ready candidate specs for trade-strategy-pipeline Phase I. Use when users ask to turn hypo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/edge-candidate-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "edge-candidate-agent. Generate and prioritize US equity long-side edge research tickets from EOD observations, then export pipeline-ready candidate specs for trade-strategy-pipeline Phase I. Use when users ask to turn hypo Platforms: claude_code."} +{"id": "0a1e157994a6a803a988af4a1e87b5850b11e02434c87015508a14b2ded63519", "repo_url": "https://github.com/artemxtech/claude-code-obsidian-starter", "name": "review", "description": "Daily and weekly review workflows. USE WHEN user says \"morning routine\", \"evening routine\", \"weekly review\", \"start my day\", \"end of day\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/claude-code-obsidian-starter/blob/main/.claude/skills/review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install review"}, "quality": {"stars": 200, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-23T02:42:56Z"}, "embedding_text": "review. Daily and weekly review workflows. USE WHEN user says \"morning routine\", \"evening routine\", \"weekly review\", \"start my day\", \"end of day\". Platforms: claude_code."} +{"id": "0dd57d23f8754d6cd28b63114340ee6daeec3eaf6bf907d66f8d08cd439fef39", "repo_url": "https://github.com/phuryn/pm-skills", "name": "gtm-motions", "description": "Identify the best GTM motions and tools across 7 motion types: Inbound, Outbound, Paid Digital, Community, Partners, ABM, and PLG. Use when selecting marketing channels, choosing between inbound and outbound strategy, or planning cross-channel campaigns.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-go-to-market/skills/gtm-motions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gtm-motions"}, "quality": {"stars": 20350, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T14:12:26Z"}, "embedding_text": "gtm-motions. Identify the best GTM motions and tools across 7 motion types: Inbound, Outbound, Paid Digital, Community, Partners, ABM, and PLG. Use when selecting marketing channels, choosing between inbound and outbound strategy, or planning cross-channel campaigns. Platforms: claude_code."} +{"id": "8f91918d9396e62753dfbf49a8d68a5e4e8ab9c71eb0f32788c24dced9e3c7c3", "repo_url": "https://github.com/zenobi-us/dotfiles", "name": "finishing-a-development-branch", "description": "Guides developers through finalizing feature branches with clear options: merge locally, create PR, keep as-is, or discard. Enforces test verification before proceeding and handles worktree cleanup ap", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zenobi-us/dotfiles/blob/master/devtools/files/pi/agent/bundles/agent-core/skills/basicmemory/memory-defrag/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 64, "skillhub_rank": "A", "skillhub_score": 7.9, "last_updated": "2026-06-22T00:41:23Z"}, "embedding_text": "finishing-a-development-branch. Guides developers through finalizing feature branches with clear options: merge locally, create PR, keep as-is, or discard. Enforces test verification before proceeding and handles worktree cleanup ap Platforms: claude_code."} +{"id": "c5c75e51228780b880cd2be40b9bcb8985056ce1f15b82e672bada7d60ef7328", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "finishing-a-development-branch", "description": "Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/finishing-a-development-branch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "finishing-a-development-branch. Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup Platforms: claude_code."} +{"id": "f66a2b6d75f8c29281e47fe3eb59d6000a2778537e29a400abee52df4d85e0cc", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "designing-surveys", "description": "Help users design effective surveys. Use when someone is creating customer surveys, NPS measurements, product-market fit surveys, or feedback collection mechanisms.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/designing-surveys/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "designing-surveys. Help users design effective surveys. Use when someone is creating customer surveys, NPS measurements, product-market fit surveys, or feedback collection mechanisms. Platforms: claude_code."} +{"id": "8e5e661b8021d9cf7b193357cdfafef79a635f324e016a3c955ae48d609944bb", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "solve-challenge", "description": "Solves CTF challenges by analyzing files, connecting to services, and applying exploitation techniques. Orchestrates category-specific CTF skills for pwn, crypto, web, reverse engineering, forensics, OSINT, malware analysis, and miscellaneous challenges.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/solve-challenge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solve-challenge"}, "quality": {"stars": 2483, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:13:28Z"}, "embedding_text": "solve-challenge. Solves CTF challenges by analyzing files, connecting to services, and applying exploitation techniques. Orchestrates category-specific CTF skills for pwn, crypto, web, reverse engineering, forensics, OSINT, malware analysis, and miscellaneous challenges. Platforms: claude_code."} +{"id": "a960d28f9c4e4d0e0a121d7844cf930a26959fab3cf7d7deb128672e0308c17f", "repo_url": "https://github.com/automagik-dev/genie", "name": "trace", "description": "Dispatch trace subagent to investigate unknown issues \u2014 reproduces, traces, and reports root cause for /fix handoff.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/trace/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "trace. Dispatch trace subagent to investigate unknown issues \u2014 reproduces, traces, and reports root cause for /fix handoff. Platforms: claude_code."} +{"id": "b77dacb1ddbfe07dc7f404921fc7101fa76b0cf39ddd731fe4300dce447be703", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "architecture-feature-first", "description": "Structures Flutter apps using layered architecture (UI / Logic / Data) with feature-first file organization. Use when creating new features, designing the project structure, adding repositories/servic", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/architecture-feature-first/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "architecture-feature-first. Structures Flutter apps using layered architecture (UI / Logic / Data) with feature-first file organization. Use when creating new features, designing the project structure, adding repositories/servic Platforms: claude_code."} +{"id": "69e5f721713d0ec26887c6039a22d44b50285371900ee8ac62046079d1bf3e16", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-ai-vision", "description": "Expert knowledge for Azure AI Vision development including decision making, limits & quotas, configuration, integrations & coding patterns, and deployment. Use when using Image Analysis, Read OCR cont", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-ai-vision/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-ai-vision. Expert knowledge for Azure AI Vision development including decision making, limits & quotas, configuration, integrations & coding patterns, and deployment. Use when using Image Analysis, Read OCR cont Platforms: claude_code."} +{"id": "79d53545e07ae3f7549e2028fe7eaa4356b775e4f8f450d087d12935df6114c2", "repo_url": "https://github.com/deanpeters/product-manager-skills", "name": "prioritization-advisor", "description": "Choose a prioritization framework based on stage, team context, and stakeholder needs. Use when deciding between RICE, ICE, value/effort, or another scoring approach.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agents", "ai-product-management", "claude-skills", "pm-frameworks", "product-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deanpeters/product-manager-skills/blob/main/skills/prioritization-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install prioritization-advisor"}, "quality": {"stars": 5286, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T12:32:13Z"}, "embedding_text": "prioritization-advisor. Choose a prioritization framework based on stage, team context, and stakeholder needs. Use when deciding between RICE, ICE, value/effort, or another scoring approach. Categories: ai-agents, ai-product-management, claude-skills, pm-frameworks, product-management. Platforms: claude_code."} +{"id": "e68c24e443f1fa2b483f1e1593edf5ece91c35e83c86f0cf437a12bb1d72c97a", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-remote-config", "description": "Integrates Firebase Remote Config into Flutter apps. Use when setting up Remote Config, managing parameter defaults, fetching and activating values, implementing real-time updates, or handling throttl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-remote-config/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-remote-config. Integrates Firebase Remote Config into Flutter apps. Use when setting up Remote Config, managing parameter defaults, fetching and activating values, implementing real-time updates, or handling throttl Platforms: claude_code."} +{"id": "5fe5c716c3531706d17149ff33cb7c144e0bacbe30012bdeb1d64f419e855ca7", "repo_url": "https://github.com/agent-sh/agentsys", "name": "perf-investigation-logger", "description": "Use when appending structured perf investigation notes and evidence.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/perf-investigation-logger/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "perf-investigation-logger. Use when appending structured perf investigation notes and evidence. Platforms: claude_code."} +{"id": "2117c72c06747bc0ad12ab270b03fb7a3e23a6e7c1e0fafd18e875175746a711", "repo_url": "https://github.com/agent-sh/agentsys", "name": "perf-baseline-manager", "description": "Use when managing perf baselines, consolidating results, or comparing versions. Ensures one baseline JSON per version.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/perf-baseline-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "perf-baseline-manager. Use when managing perf baselines, consolidating results, or comparing versions. Ensures one baseline JSON per version. Platforms: claude_code."} +{"id": "67763e11b9816439b163f40dc96cd5a989f42d2aa9da9f7c5d5f26050abc1259", "repo_url": "https://github.com/resend/resend-skills", "name": "resend-inbound", "description": "Use when receiving emails with Resend - setting up inbound domains, processing email.received webhooks, retrieving email content/attachments, or forwarding received emails.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/resend/resend-skills/blob/main/skills/resend/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 135, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:45:24Z"}, "embedding_text": "resend-inbound. Use when receiving emails with Resend - setting up inbound domains, processing email.received webhooks, retrieving email content/attachments, or forwarding received emails. Platforms: claude_code."} +{"id": "1facf2012665d997c1afc2f0a3fe2bd98031aef6921bb67abdb6115f6a51a376", "repo_url": "https://github.com/smithery-ai/cli", "name": "smithery-ai-cli", "description": "Find, connect, and use MCP tools and skills via the Smithery CLI. Use when the user searches for new tools or skills, wants to discover integrations, connect to an MCP, install a skill, or wants to in", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smithery-ai/cli/blob/main/skills/smithery-ai-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 771, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T07:11:36Z"}, "embedding_text": "smithery-ai-cli. Find, connect, and use MCP tools and skills via the Smithery CLI. Use when the user searches for new tools or skills, wants to discover integrations, connect to an MCP, install a skill, or wants to in Platforms: claude_code."} +{"id": "a16479ea0eded41eca7542b2fd433d6292e29a9f30f712c0c45e7fbcb7db3ef7", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "podcast-studio", "description": "Generate podcast scripts from text content. Use Tone.js and Howler.js for audio mixing. Create intro/outro music, transitions, sound effects.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/podcast-studio/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "podcast-studio. Generate podcast scripts from text content. Use Tone.js and Howler.js for audio mixing. Create intro/outro music, transitions, sound effects. Platforms: claude_code."} +{"id": "fc3b0ad138b5a55c6a5c6643a103307fb752d3beaad42221b5a9b4a3679c0fda", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "ai-startup-building", "description": "Builds AI-native products using Dan Shipper's 5-product playbook and Brandon Chu's AI product frameworks. Use when implementing prompt engineering, creating AI-native UX, scaling AI products, or optim", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/ai-startup-building/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "ai-startup-building. Builds AI-native products using Dan Shipper's 5-product playbook and Brandon Chu's AI product frameworks. Use when implementing prompt engineering, creating AI-native UX, scaling AI products, or optim Platforms: claude_code."} +{"id": "a90687f4edc1a96d621a5c9153466a8c1636c9cd2e1fcaaf2c74b9618423cb3a", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "doc-coauthoring", "description": "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 wor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/doc-coauthoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "doc-coauthoring. 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 wor Platforms: claude_code."} +{"id": "84ef637fb640123ef365ae4c34480a0b103481c75e339b0f658f38507e3ae5d1", "repo_url": "https://github.com/astronomer/agents", "name": "managing-astro-local-env", "description": "Manage local Airflow environment with Astro CLI. Use when the user wants to start, stop, or restart Airflow, view logs, troubleshoot containers, or fix environment issues. For project setup, see setti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astronomer/agents/blob/main/skills/managing-astro-local-env/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:24:02Z"}, "embedding_text": "managing-astro-local-env. Manage local Airflow environment with Astro CLI. Use when the user wants to start, stop, or restart Airflow, view logs, troubleshoot containers, or fix environment issues. For project setup, see setti Platforms: claude_code."} +{"id": "ee31005e13ac66c8df9898d12f91143e560705ec495c2aed8e645a1061bf706e", "repo_url": "https://github.com/eronred/aso-skills", "name": "screenshot-optimization", "description": "When the user wants to design, optimize, or evaluate App Store screenshots and preview videos. Also use when the user mentions \"screenshots\", \"app preview\", \"product page design\", \"screenshot design\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/screenshot-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "screenshot-optimization. When the user wants to design, optimize, or evaluate App Store screenshots and preview videos. Also use when the user mentions \"screenshots\", \"app preview\", \"product page design\", \"screenshot design\", Platforms: claude_code."} +{"id": "a1e8efdad3664202c9f7dd0476af8ca4d5602ddd03e37eff354d1686ef3bae06", "repo_url": "https://github.com/anthropics/claude-plugins-official", "name": "configure", "description": "Check iMessage channel setup and review access policy. Use when the user asks to configure iMessage, asks \"how do I set this up\" or \"who can reach me,\" or wants to know why texts aren't reaching the a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/claude-plugins-official/blob/main/external_plugins/discord/skills/configure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 30585, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:04:10Z"}, "embedding_text": "configure. Check iMessage channel setup and review access policy. Use when the user asks to configure iMessage, asks \"how do I set this up\" or \"who can reach me,\" or wants to know why texts aren't reaching the a Platforms: claude_code."} +{"id": "8ee04dbfe6253506810108a93aa740dae22e0b8be9a95b83148a25bad46257e4", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "integration-test-scaffold", "description": "Generate cross-module test harness with mock servers, in-memory stores, and test configuration. Use when testing networking + persistence + business logic together.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/testing/integration-test-scaffold/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "integration-test-scaffold. Generate cross-module test harness with mock servers, in-memory stores, and test configuration. Use when testing networking + persistence + business logic together. Platforms: claude_code."} +{"id": "d028b84753dd3fe66000194800f41a4a727e16681cb26c5dd7ac71344adc5ce7", "repo_url": "https://github.com/microsoft/skills", "name": "azure-ai-transcription-py", "description": "Azure AI Transcription SDK for Python. Use for real-time and batch speech-to-text transcription with timestamps and diarization.\nTriggers: \"transcription\", \"speech to text\", \"Azure AI Transcription\", \"TranscriptionClient\".\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-python/skills/azure-ai-transcription-py/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-ai-transcription-py"}, "quality": {"stars": 2600, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:47:24Z"}, "embedding_text": "azure-ai-transcription-py. Azure AI Transcription SDK for Python. Use for real-time and batch speech-to-text transcription with timestamps and diarization.\nTriggers: \"transcription\", \"speech to text\", \"Azure AI Transcription\", \"TranscriptionClient\".\n Platforms: claude_code."} +{"id": "03098a2dbfa5a3f1ef4664c66c18068a5e760df57b3c8aefb8c6e8d89fc29624", "repo_url": "https://github.com/artemxtech/personal-os-skills", "name": "wispr-flow", "description": "Analyze Wispr Flow voice dictation data. Stats, search, export, visualizations. Use when user says \"dictation history\", \"word counts\", \"voice analytics\", \"how much did I dictate\", \"search my dictation\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/personal-os-skills/blob/main/skills/wispr-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wispr-flow"}, "quality": {"stars": 508, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-05T21:02:29Z"}, "embedding_text": "wispr-flow. Analyze Wispr Flow voice dictation data. Stats, search, export, visualizations. Use when user says \"dictation history\", \"word counts\", \"voice analytics\", \"how much did I dictate\", \"search my dictation\". Platforms: claude_code."} +{"id": "380731e3303d4fdfda444c47bd3f37d3b75eb835c2573850dd4ff2a2154d81cf", "repo_url": "https://github.com/aaddrick/claude-desktop-debian", "name": "lint", "description": "Run shellcheck and actionlint on shell scripts and GitHub Actions workflows. Use before pushing or when fixing lint issues.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaddrick/claude-desktop-debian/blob/main/.claude/skills/lint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5036, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:24:01Z"}, "embedding_text": "lint. Run shellcheck and actionlint on shell scripts and GitHub Actions workflows. Use before pushing or when fixing lint issues. Platforms: claude_code."} +{"id": "b3a702394e7ea629ff71edc6fe2eb9a0c694291992f0243d5058c0294b5e9376", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "settings-screen", "description": "Generates a complete settings screen for iOS/macOS apps with common sections. Use when user wants to add settings, preferences, or configuration UI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/settings-screen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "settings-screen. Generates a complete settings screen for iOS/macOS apps with common sections. Use when user wants to add settings, preferences, or configuration UI. Platforms: claude_code."} +{"id": "908b12863d7bf0d8cd1adc71ef3e75f5e126488423a20257887d634a070ac0bc", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "dyn-object-masks", "description": "Generate dynamic-object binary masks after global motion compensation, output CSR sparse format.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/dynamic-object-aware-egomotion/environment/skills/dyn-object-masks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "dyn-object-masks. Generate dynamic-object binary masks after global motion compensation, output CSR sparse format. Platforms: claude_code."} +{"id": "0023769161d9f8ac010f0487cacaf89baf9c3c1bf204ce406e0ec501208f2650", "repo_url": "https://github.com/feiskyer/codex-settings", "name": "autonomous-skill", "description": "Use when user wants to execute long-running tasks that require multiple sessions to complete. This skill manages task decomposition, progress tracking, and autonomous execution using Codex non-interac", "source": ["skillhub", "marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "litellm", "openai", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/codex-settings/blob/main/skills/autonomous-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install autonomous-skill"}, "quality": {"stars": 211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-09T01:37:32Z"}, "embedding_text": "autonomous-skill. Use when user wants to execute long-running tasks that require multiple sessions to complete. This skill manages task decomposition, progress tracking, and autonomous execution using Codex non-interac Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, litellm, openai, spec-driven-development, vibe-coding. Platforms: claude_code."} +{"id": "c43a27d6af28e599d2521816080b04de11cb929582e0911059faacb483ca3c02", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "perplexity", "description": "Web search and research using Perplexity AI. Use when user says \"search\", \"find\", \"look up\", \"ask\", \"research\", or \"what's the latest\" for generic queries. NOT for library/framework docs (use Context7) or workspace questions.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/perplexity/skills/perplexity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install perplexity"}, "quality": {"stars": 2070, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "perplexity. Web search and research using Perplexity AI. Use when user says \"search\", \"find\", \"look up\", \"ask\", \"research\", or \"what's the latest\" for generic queries. NOT for library/framework docs (use Context7) or workspace questions. Platforms: claude_code."} +{"id": "42b5755fc2dfa40f329a1c20d999bfcd9c457fe6fd619d06a84a9e2530bbf6bd", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "scipy-curve-fit", "description": "Use scipy.optimize.curve_fit for nonlinear least squares parameter estimation from experimental data.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/hvac-control/environment/skills/scipy-curve-fit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "scipy-curve-fit. Use scipy.optimize.curve_fit for nonlinear least squares parameter estimation from experimental data. Platforms: claude_code."} +{"id": "2e752f459eeda23de6408f71158a6a9bdca53919bcd3356c1c59c283b15d5030", "repo_url": "https://github.com/mnfst/manifest", "name": "setup-manifest-plugin", "description": "Configure the Manifest OpenClaw plugin (OTLP endpoint + proxy baseUrl). Use when the user says \"/setup-manifest-plugin\", \"setup manifest plugin\", \"connect manifest to port\", \"point openclaw to localho", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 7089, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:09:56Z"}, "embedding_text": "setup-manifest-plugin. Configure the Manifest OpenClaw plugin (OTLP endpoint + proxy baseUrl). Use when the user says \"/setup-manifest-plugin\", \"setup manifest plugin\", \"connect manifest to port\", \"point openclaw to localho Platforms: claude_code."} +{"id": "5b67f653c0098eaf80742db1889a7ee6a09615320d8bc7b4821ac8321d48face", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "auth-flow", "description": "Generates authentication infrastructure with Sign in with Apple, biometrics, and Keychain storage. Use when user wants to add authentication, login, or Sign in with Apple.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/auth-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "auth-flow. Generates authentication infrastructure with Sign in with Apple, biometrics, and Keychain storage. Use when user wants to add authentication, login, or Sign in with Apple. Platforms: claude_code."} +{"id": "518a05f1bc875179455d4e57183d31bef4270cfae2bf1d9472cefac70390f707", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "performance-profiling", "description": "Guide performance profiling with Instruments, diagnose hangs, memory issues, slow launches, and energy drain. Use when reviewing app performance or investigating specific bottlenecks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/performance/profiling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "performance-profiling. Guide performance profiling with Instruments, diagnose hangs, memory issues, slow launches, and energy drain. Use when reviewing app performance or investigating specific bottlenecks. Platforms: claude_code."} +{"id": "c698385bd82695f21a490b21ee663d5566acdb21c2e6ff1224963af8430bf56c", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "webkit-integration", "description": "WebKit integration in SwiftUI using WebView and WebPage for embedding web content, navigation, JavaScript interop, and customization. Use when embedding web content in SwiftUI apps.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/swiftui/webkit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "webkit-integration. WebKit integration in SwiftUI using WebView and WebPage for embedding web content, navigation, JavaScript interop, and customization. Use when embedding web content in SwiftUI apps. Platforms: claude_code."} +{"id": "94412d1c4ef59ffc0ec18ddafbc348a6d7b0b62181eea7880e9a82c721781963", "repo_url": "https://github.com/zhanghandong/rust-skills", "name": "rust-router", "description": "CRITICAL: Use for ALL Rust questions including errors, design, and coding. HIGHEST PRIORITY for: \u6bd4\u8f83, \u5bf9\u6bd4, compare, vs, versus, \u533a\u522b, difference, \u6700\u4f73\u5b9e\u8df5, best practice, tokio vs, async-std vs, \u6bd4\u8f83 tokio, \u6bd4\u8f83", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zhanghandong/rust-skills/blob/main/skills/rust-router/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1252, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T23:33:30Z"}, "embedding_text": "rust-router. CRITICAL: Use for ALL Rust questions including errors, design, and coding. HIGHEST PRIORITY for: \u6bd4\u8f83, \u5bf9\u6bd4, compare, vs, versus, \u533a\u522b, difference, \u6700\u4f73\u5b9e\u8df5, best practice, tokio vs, async-std vs, \u6bd4\u8f83 tokio, \u6bd4\u8f83 Platforms: claude_code."} +{"id": "4dbd00b8ade9460f72fcff1dd5a0d8134496c0033eed5232dd1d82daa4030279", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "google-search-console", "description": "When the user wants to analyze Google Search Console data, use GSC API, or interpret search performance. Also use when the user mentions \"GSC,\" \"Search Console,\" \"indexing report,\" \"Core Web Vitals,\" \"Enhancements,\" \"Insights report,\" \"search performance,\" \"search queries,\" \"search performance report,\" \"URL inspection,\" \"impressions,\" \"CTR,\" \"average position,\" \"index coverage,\" \"title tag,\" \"meta description,\" \"GSC data analysis,\" \"Search Console API,\" or \"searchanalytics.query.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/analytics/seo/google-search-console/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install google-search-console"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "google-search-console. When the user wants to analyze Google Search Console data, use GSC API, or interpret search performance. Also use when the user mentions \"GSC,\" \"Search Console,\" \"indexing report,\" \"Core Web Vitals,\" \"Enhancements,\" \"Insights report,\" \"search performance,\" \"search queries,\" \"search performance report,\" \"URL inspection,\" \"impressions,\" \"CTR,\" \"average position,\" \"index coverage,\" \"title tag,\" \"meta description,\" \"GSC data analysis,\" \"Search Console API,\" or \"searchanalytics.query.\" Platforms: claude_code."} +{"id": "d619f1d561fc9008e18f65084106b2e165e901c2ad447dfaa9cf11b5a202e824", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "paid-ads-strategy", "description": "When the user wants to plan paid ads strategy, allocate ad budget, or choose paid channels. Also use when the user mentions \"paid ads,\" \"paid media,\" \"PPC,\" \"SEM,\" \"web ads,\" \"app ads,\" \"TV ads,\" \"CTV,\" \"OOH,\" \"banner ads,\" \"ad network,\" \"ad alliance,\" \"Taaft ads,\" \"Shopify App Store ads,\" \"Google Ads,\" \"Meta Ads,\" \"PMF testing,\" \"PMF validation,\" \"test product-market fit with ads,\" \"ad spend,\" \"ad budget,\" \"ROAS,\" \"paid acquisition,\" \"Quality Score,\" or \"ad-to-page alignment.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/paid-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install paid-ads-strategy"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "paid-ads-strategy. When the user wants to plan paid ads strategy, allocate ad budget, or choose paid channels. Also use when the user mentions \"paid ads,\" \"paid media,\" \"PPC,\" \"SEM,\" \"web ads,\" \"app ads,\" \"TV ads,\" \"CTV,\" \"OOH,\" \"banner ads,\" \"ad network,\" \"ad alliance,\" \"Taaft ads,\" \"Shopify App Store ads,\" \"Google Ads,\" \"Meta Ads,\" \"PMF testing,\" \"PMF validation,\" \"test product-market fit with ads,\" \"ad spend,\" \"ad budget,\" \"ROAS,\" \"paid acquisition,\" \"Quality Score,\" or \"ad-to-page alignment.\" Platforms: claude_code."} +{"id": "e5bff1b4f7c7d5f1ceab59dbf48ba69c02c6a37bf68bc559699a423891e4cb83", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "onboard", "description": "Analyze brownfield codebase and create initial continuity ledger", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/onboard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install onboard"}, "quality": {"stars": 3823, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "onboard. Analyze brownfield codebase and create initial continuity ledger Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} +{"id": "1b077780d5c9cd39601369776c8c2fdb9d2c0d554cfbd0f5ab92b26cd552c10f", "repo_url": "https://github.com/inferencesh/skills", "name": "agent-ui", "description": "Batteries-included agent component for React/Next.js from ui.inference.sh.\nOne component with runtime, tools, streaming, approvals, and widgets built in.\nCapabilities: drop-in agent, human-in-the-loop", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inferencesh/skills/blob/main/ui/agent-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 555, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "agent-ui. Batteries-included agent component for React/Next.js from ui.inference.sh.\nOne component with runtime, tools, streaming, approvals, and widgets built in.\nCapabilities: drop-in agent, human-in-the-loop Platforms: claude_code."} +{"id": "6ff7db92598503f8084530a5dcc324af422a19d0a7afef6b256859a317880b10", "repo_url": "https://github.com/anthropics/knowledge-work-plugins", "name": "enrich-lead", "description": "Instant lead enrichment. Drop a name, company, LinkedIn URL, or email and get the full contact card with email, phone, title, company intel, and next actions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/knowledge-work-plugins/blob/main/partner-built/apollo/skills/enrich-lead/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21662, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T13:47:45Z"}, "embedding_text": "enrich-lead. Instant lead enrichment. Drop a name, company, LinkedIn URL, or email and get the full contact card with email, phone, title, company intel, and next actions. Platforms: claude_code."} +{"id": "97b349d21d10b0fb8d3b7498b3e2d5703ac6345cf637e5dd0a6ab4c0d78bf4c3", "repo_url": "https://github.com/matrixorigin/memoria", "name": "plugin-development", "description": "Create, test, sign, and publish Memoria governance plugins. Covers Rhai and gRPC runtimes, manifest format, lifecycle. Use when developing or managing plugins.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matrixorigin/memoria/blob/main/skills/plugin-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 288, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T04:00:20Z"}, "embedding_text": "plugin-development. Create, test, sign, and publish Memoria governance plugins. Covers Rhai and gRPC runtimes, manifest format, lifecycle. Use when developing or managing plugins. Platforms: claude_code."} +{"id": "e07a97b73234ab3eaca91a737b4e4c5d5779427ebc70983f5cd86b4bc6c25507", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "reddit-posts", "description": "When the user wants to create Reddit post copy, comments, or optimize for Reddit. Also use when the user mentions \"Reddit post,\" \"subreddit,\" \"r/,\" \"Reddit marketing,\" \"post to Reddit,\" \"Reddit thread,\" \"Reddit comment,\" \"Reddit copy,\" \"Reddit content,\" or \"Reddit engagement.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/reddit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reddit-posts"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "reddit-posts. When the user wants to create Reddit post copy, comments, or optimize for Reddit. Also use when the user mentions \"Reddit post,\" \"subreddit,\" \"r/,\" \"Reddit marketing,\" \"post to Reddit,\" \"Reddit thread,\" \"Reddit comment,\" \"Reddit copy,\" \"Reddit content,\" or \"Reddit engagement.\" Platforms: claude_code."} +{"id": "2e4ba4d728a5278e8ebb2e7f4abeb87c42f5d7e0962d8597657389b5992b6e41", "repo_url": "https://github.com/inferencesh/skills", "name": "widgets-ui", "description": "Declarative UI widgets from JSON for React/Next.js from ui.inference.sh.\nRender rich interactive UIs from structured agent responses.\nCapabilities: forms, buttons, cards, layouts, inputs, selects, che", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inferencesh/skills/blob/main/ui/widgets-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 555, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "widgets-ui. Declarative UI widgets from JSON for React/Next.js from ui.inference.sh.\nRender rich interactive UIs from structured agent responses.\nCapabilities: forms, buttons, cards, layouts, inputs, selects, che Platforms: claude_code."} +{"id": "c464e06e7185ead26deead507f9d277034f2ec3386a836fea1edaa4ad8241eef", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "amplify-workflow", "description": "Orchestrates AWS Amplify Gen 2 workflows for building full-stack apps with React, Next.js, Vue, Angular, React Native, Flutter, Swift, or Android. Use when user wants to BUILD, CREATE, or DEPLOY Ampli", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/aws-amplify/skills/amplify-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 796, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:53:29Z"}, "embedding_text": "amplify-workflow. Orchestrates AWS Amplify Gen 2 workflows for building full-stack apps with React, Next.js, Vue, Angular, React Native, Flutter, Swift, or Android. Use when user wants to BUILD, CREATE, or DEPLOY Ampli Platforms: claude_code."} +{"id": "bbe208a17f85397b4798038291972bef7c9ad662fa74a0f741429ded891d7d49", "repo_url": "https://github.com/jezweb/claude-skills", "name": "award-application", "description": "Write compelling award submissions, grant applications, and competition entries. Maps achievements to selection criteria using evidence-based narratives. Handles business awards (Telstra, chamber of commerce), industry awards, and grant applications. Use when preparing any competitive submission where you need to demonstrate merit against defined criteria.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/award-application/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install award-application"}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "award-application. Write compelling award submissions, grant applications, and competition entries. Maps achievements to selection criteria using evidence-based narratives. Handles business awards (Telstra, chamber of commerce), industry awards, and grant applications. Use when preparing any competitive submission where you need to demonstrate merit against defined criteria. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} +{"id": "28a24dea387e8fd9e71601cb5bf95917d4340c3178ae072181ee7a38fd5ca72c", "repo_url": "https://github.com/jezweb/claude-skills", "name": "nz-business-english", "description": "New Zealand business English writing style for professional communications. Warm, inclusive, EN-NZ spelling. Use when writing emails, chat messages, proposals, client communications, or any business writing for New Zealand SME audiences. Applies to drafting, editing, and tone-checking any professional text.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/nz-business-english/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nz-business-english"}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "nz-business-english. New Zealand business English writing style for professional communications. Warm, inclusive, EN-NZ spelling. Use when writing emails, chat messages, proposals, client communications, or any business writing for New Zealand SME audiences. Applies to drafting, editing, and tone-checking any professional text. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} +{"id": "0de57cbe60e249ae8571d545cd339cb6c39541f6adc0fb64841bd5c8bf794947", "repo_url": "https://github.com/team-attention/hoyeon", "name": "google-search", "description": "Google search via real Chrome browser (chromux). Use when the user asks to\n\"search Google\", \"\uad6c\uae00 \uac80\uc0c9\", \"\uad6c\uae00\uc5d0\uc11c \ucc3e\uc544\uc918\", \"find articles about\",\n\"search the web for\", or needs web search results with full page", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/codex/skills/hoyeon-google-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "google-search. Google search via real Chrome browser (chromux). Use when the user asks to\n\"search Google\", \"\uad6c\uae00 \uac80\uc0c9\", \"\uad6c\uae00\uc5d0\uc11c \ucc3e\uc544\uc918\", \"find articles about\",\n\"search the web for\", or needs web search results with full page Platforms: claude_code."} +{"id": "b03617fe3fcbdda6196baec96101ae896962d49583c1186c27fc731c4dabc8e9", "repo_url": "https://github.com/echovic/blade-code", "name": "github-explorer", "description": "Explore and summarize popular GitHub projects. Use when the user wants to discover trending GitHub repositories, analyze project details, or get summaries of popular projects.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/echovic/blade-code/blob/main/.blade/skills/github-explorer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 167, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T12:26:45Z"}, "embedding_text": "github-explorer. Explore and summarize popular GitHub projects. Use when the user wants to discover trending GitHub repositories, analyze project details, or get summaries of popular projects. Platforms: claude_code."} +{"id": "6ff56309b4a857382aa80434b21ae132ee4829c436bc01b4afeeb15d9576cdeb", "repo_url": "https://github.com/vudovn/antigravity-kit", "name": "api-patterns", "description": "API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vudovn/antigravity-kit/blob/main/.agents/skills/api-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 7744, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T08:59:33Z"}, "embedding_text": "api-patterns. API design principles and decision-making. REST vs GraphQL vs tRPC selection, response formats, versioning, pagination. Platforms: claude_code."} +{"id": "15f1d2e66f59fa834189210a4aaf1d534eb458609261a51766ef74bde6ba669c", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-geo", "description": "AI citation optimization audit scoring blog posts for ChatGPT, Perplexity, and Google AI Overview citability. Evaluates passage-level citability, Q&A formatting, entity clarity, structured data, and AI crawler accessibility. Generates citation capsules and a 0-100 AI Citation Readiness score. Use when user says \"geo\", \"ai citation\", \"ai optimization\", \"citation audit\", \"aeo\", \"perplexity optimization\", \"chatgpt citation\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-geo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-geo"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-geo. AI citation optimization audit scoring blog posts for ChatGPT, Perplexity, and Google AI Overview citability. Evaluates passage-level citability, Q&A formatting, entity clarity, structured data, and AI crawler accessibility. Generates citation capsules and a 0-100 AI Citation Readiness score. Use when user says \"geo\", \"ai citation\", \"ai optimization\", \"citation audit\", \"aeo\", \"perplexity optimization\", \"chatgpt citation\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "1950388d11fa77735f311115604b3cd09fc5b5b9bb037a538bfda489ab4c8948", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-chart", "description": "Generate dark-mode-compatible inline SVG data visualization charts for blog posts. Supports horizontal bar, grouped bar, donut, line, lollipop, area, and radar charts with automatic platform detection (HTML vs JSX/MDX). Enforces chart type diversity, accessible markup (role=img, aria-label), source attribution, and transparent backgrounds. Use when user says \"blog chart\", \"generate chart\", \"data visualization\", \"svg chart\", \"blog graph\", \"visualize data\", or when the blog-write workflow identifies chart-worthy data points (3+ comparable metrics, trends, before/after data).\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-chart/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-chart"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-chart. Generate dark-mode-compatible inline SVG data visualization charts for blog posts. Supports horizontal bar, grouped bar, donut, line, lollipop, area, and radar charts with automatic platform detection (HTML vs JSX/MDX). Enforces chart type diversity, accessible markup (role=img, aria-label), source attribution, and transparent backgrounds. Use when user says \"blog chart\", \"generate chart\", \"data visualization\", \"svg chart\", \"blog graph\", \"visualize data\", or when the blog-write workflow identifies chart-worthy data points (3+ comparable metrics, trends, before/after data).\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "96dbd0b464c0cbcb02c0ad6cc53ea3c9ee148e9f496355b500f72e572d9f184d", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "twitter-algorithm-optimizer", "description": "Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/twitter-algorithm-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install twitter-algorithm-optimizer"}, "quality": {"stars": 65470, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-22T03:17:49Z"}, "embedding_text": "twitter-algorithm-optimizer. Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content. Platforms: claude_code."} +{"id": "36cbcf341ed9cc72fe3f0d82867103aa48d6c546d7d62f33bc3a2a56b3306d4e", "repo_url": "https://github.com/aojdevstudio/finance-guru", "name": "verification-before-completion", "description": "Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aojdevstudio/finance-guru/blob/main/.agents/skills/verification-before-completion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 309, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T14:29:45Z"}, "embedding_text": "verification-before-completion. Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence Platforms: claude_code."} +{"id": "836935f11e50687b866b3b7fe8f3d0e8f8ad5482a9fe806c454b698ead8d0231", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "agenthub", "description": "Multi-agent collaboration plugin that spawns N parallel subagents competing on the same task via git worktree isolation. Agents work independently, results are evaluated by metric or LLM judge, and th", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/agenthub/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "agenthub. Multi-agent collaboration plugin that spawns N parallel subagents competing on the same task via git worktree isolation. Agents work independently, results are evaluated by metric or LLM judge, and th Platforms: claude_code."} +{"id": "989d680639079903bc9df66c0ccb6626b081911af47299d8f7383d7e0011151f", "repo_url": "https://github.com/blader/claudeception", "name": "prisma-connection-pool-exhaustion", "description": "Fix Prisma \"Too many connections\" and connection pool exhaustion errors in \nserverless environments (Vercel, AWS Lambda, Netlify). Use when: (1) Error \n\"P2024: Timed out fetching a new connection from", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blader/claudeception/blob/main/examples/prisma-connection-pool-exhaustion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2364, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-21T05:10:15Z"}, "embedding_text": "prisma-connection-pool-exhaustion. Fix Prisma \"Too many connections\" and connection pool exhaustion errors in \nserverless environments (Vercel, AWS Lambda, Netlify). Use when: (1) Error \n\"P2024: Timed out fetching a new connection from Platforms: claude_code."} +{"id": "676a568e3cc6f864a835666f75db0a4212e9891bcf5417067a7f1dbd1be7ce16", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "citation-check", "description": "Verify citations in AI-generated or human-written text against the local knowledge base. Catches hallucinated references, wrong metadata, and missing papers. Use when the user wants to check if citati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/citation-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "citation-check. Verify citations in AI-generated or human-written text against the local knowledge base. Catches hallucinated references, wrong metadata, and missing papers. Use when the user wants to check if citati Platforms: claude_code."} +{"id": "e60cc381d90deaf063c3efc8751b9e569dad0f55f01d5487f9a7618e2a803c7c", "repo_url": "https://github.com/udecode/better-convex", "name": "react", "description": "React patterns with destructured props, compiler optimization, Effects, and Tailwind v4 syntax. ALWAYS use when using React.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/udecode/better-convex/blob/main/.agents/skills/4-ultracite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 425, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T18:43:47Z"}, "embedding_text": "react. React patterns with destructured props, compiler optimization, Effects, and Tailwind v4 syntax. ALWAYS use when using React. Platforms: claude_code."} +{"id": "aa58da19a180b67297e0fdccc3ac3ccc5929880a28d023ba78c6f47ab4bd78b3", "repo_url": "https://github.com/intellectronica/agent-skills", "name": "gpt-image-1-5", "description": "Generate and edit images using OpenAI's GPT Image 1.5 model. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/intellectronica/agent-skills/blob/main/skills/gpt-image-1-5/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 275, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-25T15:31:50Z"}, "embedding_text": "gpt-image-1-5. Generate and edit images using OpenAI's GPT Image 1.5 model. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image Platforms: claude_code."} +{"id": "63029dd68c4c061ee06ae298867c828a8faf4d90b5cc67b6844c224d72833142", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "organizational-transformation", "description": "Help users transform organizations toward modern product practices. Use when someone is trying to shift from feature teams to product teams, introduce empowered teams, modernize legacy processes, or d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/organizational-transformation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "organizational-transformation. Help users transform organizations toward modern product practices. Use when someone is trying to shift from feature teams to product teams, introduce empowered teams, modernize legacy processes, or d Platforms: claude_code."} +{"id": "d844004e6edc75b6f4be6a25af67f1abb3c4b43dd782ece8011537c58dca2d20", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "team-rituals", "description": "Help users design effective team rituals. Use when someone is building team culture, creating recurring team practices, trying to improve team communication, or establishing operational rhythms for th", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/team-rituals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "team-rituals. Help users design effective team rituals. Use when someone is building team culture, creating recurring team practices, trying to improve team communication, or establishing operational rhythms for th Platforms: claude_code."} +{"id": "17a800ce19603faa39647dedb391f453b9c0c5e53f9c30b4d92907362aa3021f", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "draw", "description": "Generate diagrams and vector graphics. Supports Mermaid (flowcharts, sequence diagrams, ER diagrams, Gantt charts, mind maps) via mermaid-py, and custom vector graphics (shapes, text, gradients, layer", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/draw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "draw. Generate diagrams and vector graphics. Supports Mermaid (flowcharts, sequence diagrams, ER diagrams, Gantt charts, mind maps) via mermaid-py, and custom vector graphics (shapes, text, gradients, layer Platforms: claude_code."} +{"id": "d916c07b2d5a8a5e0d441af187673158a592561fd7311a10df3f83a5df359aa5", "repo_url": "https://github.com/phuryn/pm-skills", "name": "market-segments", "description": "Identify 3-5 potential customer segments with demographics, JTBD, and product fit analysis. Use when exploring market segments, identifying target audiences, evaluating new markets, or learning how to segment a market.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-market-research/skills/market-segments/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install market-segments"}, "quality": {"stars": 20350, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T14:12:26Z"}, "embedding_text": "market-segments. Identify 3-5 potential customer segments with demographics, JTBD, and product fit analysis. Use when exploring market segments, identifying target audiences, evaluating new markets, or learning how to segment a market. Platforms: claude_code."} +{"id": "24605b462371e6db4771b528546a0cb7e899baad428ee8aa3a69a13760540e56", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "quiz", "description": "Generates multiple choice quiz questions based on current conversation context. Use when testing understanding, reviewing what was discussed, or wanting a knowledge check on the session.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/q/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "quiz. Generates multiple choice quiz questions based on current conversation context. Use when testing understanding, reviewing what was discussed, or wanting a knowledge check on the session. Platforms: claude_code."} +{"id": "f05492898f09d4227ed9605e91ac42c36bd15efeebfab0f0065b4e33142c10f3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "use-cases-page-generator", "description": "When the user wants to create, optimize, or audit use case pages. Also use when the user mentions \"use cases,\" \"use case page,\" \"for [role],\" \"by persona,\" \"by scenario,\" \"by business goal,\" \"ICP pages,\" or \"audience-specific pages.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/use-cases/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install use-cases-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "use-cases-page-generator. When the user wants to create, optimize, or audit use case pages. Also use when the user mentions \"use cases,\" \"use case page,\" \"for [role],\" \"by persona,\" \"by scenario,\" \"by business goal,\" \"ICP pages,\" or \"audience-specific pages.\" Platforms: claude_code."} +{"id": "ab1bd562137e395a92a4a4d44451e57613dbc45b909958d988d4a8bb22526e89", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "carousel", "description": "When the user wants to design, optimize, or audit carousel/slider layouts for content display. Also use when the user mentions \"carousel,\" \"slider,\" \"carousel layout,\" \"testimonial carousel,\" \"gallery carousel,\" \"quote carousel,\" \"image slider,\" or \"carousel accessibility.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/layout/carousel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install carousel"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "carousel. When the user wants to design, optimize, or audit carousel/slider layouts for content display. Also use when the user mentions \"carousel,\" \"slider,\" \"carousel layout,\" \"testimonial carousel,\" \"gallery carousel,\" \"quote carousel,\" \"image slider,\" or \"carousel accessibility.\" Platforms: claude_code."} +{"id": "1fb4e78202ec906dff10fe2d6b16e5059d4ca35da5e25da81165c00581a89270", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "quality-speed", "description": "Decides when quality matters vs move fast, based on Dylan Field (Figma) craft philosophy and Brian Chesky (Airbnb) details obsession. Use when balancing shipping speed with excellence, deciding if ref", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/quality-speed/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "quality-speed. Decides when quality matters vs move fast, based on Dylan Field (Figma) craft philosophy and Brian Chesky (Airbnb) details obsession. Use when balancing shipping speed with excellence, deciding if ref Platforms: claude_code."} +{"id": "b1aeafb18e6f9a786355104253b2c857c07b09162700d3318b82565f1c23edab", "repo_url": "https://github.com/duckdb/duckdb-skills", "name": "read-file", "description": "Read any data file (CSV, JSON, Parquet, Avro, Excel, spatial, SQLite) or remote URL (S3, HTTPS). Use when user references a data file, asks \"what's in this file\", or wants to preview/profile a dataset", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/duckdb/duckdb-skills/blob/main/skills/read-file/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 495, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-23T13:56:22Z"}, "embedding_text": "read-file. Read any data file (CSV, JSON, Parquet, Avro, Excel, spatial, SQLite) or remote URL (S3, HTTPS). Use when user references a data file, asks \"what's in this file\", or wants to preview/profile a dataset Platforms: claude_code."} +{"id": "64d1c7d03616a0bc95ef5ca623aa18807d713514257f0b2b5d237792c44573ec", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "capabilities", "description": "Display shinkoku's current capabilities, supported personas, and known limitations. Use when the user asks \"what can you do?\", \"what's supported?\", or similar questions.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/capabilities/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install capabilities"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "capabilities. Display shinkoku's current capabilities, supported personas, and known limitations. Use when the user asks \"what can you do?\", \"what's supported?\", or similar questions. Platforms: claude_code."} +{"id": "8bf73390e40f9ca7c88849e657b547fb474bf02b93855d6211cf24bcddb26855", "repo_url": "https://github.com/code-yeongyu/oh-my-openagent", "name": "pre-publish-review", "description": "Nuclear-grade 16-agent pre-publish release gate. Runs /get-unpublished-changes to detect all changes since last npm release, spawns up to 10 ultrabrain agents for deep per-change analysis, invokes /re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/code-yeongyu/oh-my-openagent/blob/dev/.agents/skills/pre-publish-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63175, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:06:08Z"}, "embedding_text": "pre-publish-review. Nuclear-grade 16-agent pre-publish release gate. Runs /get-unpublished-changes to detect all changes since last npm release, spawns up to 10 ultrabrain agents for deep per-change analysis, invokes /re Platforms: claude_code."} +{"id": "0a85c6db7aa5cfbebdcfc68e9195c5c1dd9aa00d93947405382dc36fb8762b5c", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "ipad-patterns", "description": "iPadOS-specific patterns including Stage Manager, multi-window, drag and drop, keyboard shortcuts, pointer interactions, and Apple Pencil support. Use when building iPad-optimized features.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/ios/ipad-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "ipad-patterns. iPadOS-specific patterns including Stage Manager, multi-window, drag and drop, keyboard shortcuts, pointer interactions, and Apple Pencil support. Use when building iPad-optimized features. Platforms: claude_code."} +{"id": "c89363a21218262babd75d9e8f4f4178e0656fd3f640a394cbedfa95d3fc421e", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "assistive-access", "description": "Assistive Access implementation for cognitive accessibility including simplified scenes, navigation icons, runtime detection, and design principles. Use when optimizing apps for Assistive Access mode.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/ios/assistive-access/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "assistive-access. Assistive Access implementation for cognitive accessibility including simplified scenes, navigation icons, runtime detection, and design principles. Use when optimizing apps for Assistive Access mode. Platforms: claude_code."} +{"id": "97e41800cd15f9035236c9d56c8d8ea116eb5f44ea0d70ef28bf355d9e50adef", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "create-pr", "description": "Create pull requests following Sentry conventions. Use when opening PRs, writing PR descriptions, or preparing changes for review. Follows Sentry's code review guidelines.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0tarof/create-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-pr"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "create-pr. Create pull requests following Sentry conventions. Use when opening PRs, writing PR descriptions, or preparing changes for review. Follows Sentry's code review guidelines. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "5295c614eeca0fa80efd07230d9aae9ae35907828f1cf55e4aa04586d46c7a1b", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "ui-review", "description": "Review SwiftUI code for iOS/watchOS Human Interface Guidelines compliance, font usage, Dynamic Type support, and accessibility. Use when user mentions UI review, HIG, accessibility audit, font checks,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/ios/ui-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "ui-review. Review SwiftUI code for iOS/watchOS Human Interface Guidelines compliance, font usage, Dynamic Type support, and accessibility. Use when user mentions UI review, HIG, accessibility audit, font checks, Platforms: claude_code."} +{"id": "d5545491bbad3aa1285df7f3fd784b61d3b009c5f4b3ce38c052edac7961c78d", "repo_url": "https://github.com/astronomer/agents", "name": "creating-openlineage-extractors", "description": "Create custom OpenLineage extractors for Airflow operators. Use when the user needs lineage from unsupported or third-party operators, wants column-level lineage, or needs complex extraction logic bey", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astronomer/agents/blob/main/skills/creating-openlineage-extractors/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:24:02Z"}, "embedding_text": "creating-openlineage-extractors. Create custom OpenLineage extractors for Airflow operators. Use when the user needs lineage from unsupported or third-party operators, wants column-level lineage, or needs complex extraction logic bey Platforms: claude_code."} +{"id": "53c1b1d93d24c3b57cc69e50bf88eba297e4a2a30b92b2dd391fb2337dcff85c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "ai-tools", "description": "Reference for all AI tools available in DBX Studio's AI chat system. Use when adding, modifying, or debugging AI tool definitions, tool execution, or provider integrations.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/dbxstudio/ai-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-tools"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "ai-tools. Reference for all AI tools available in DBX Studio's AI chat system. Use when adding, modifying, or debugging AI tool definitions, tool execution, or provider integrations. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "ed7a70a32a1815277e2f6f40cf8dd5bce81c4819cc7ebfdaf41fa077ce7c0ea4", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "video-frame-extraction", "description": "Extract frames from video files and save them as images using OpenCV", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks-extra/pedestrian-traffic-counting/environment/skills/video-frame-extraction/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "video-frame-extraction. Extract frames from video files and save them as images using OpenCV Platforms: claude_code."} +{"id": "6877c599cbe1107eb5c2a88dfc0623b59f61a4068c6ebfe5241b02420d091d17", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "pre-orders", "description": "Generates pre-order setup guides and launch timeline templates for App Store pre-orders. Use when planning a pre-order strategy for a new app launch or major update.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/pre-orders/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "pre-orders. Generates pre-order setup guides and launch timeline templates for App Store pre-orders. Use when planning a pre-order strategy for a new app launch or major update. Platforms: claude_code."} +{"id": "c0570fe2fa127f73a8de632ed4bf887e41577f6a1023289e4691770102a07fb0", "repo_url": "https://github.com/eronred/aso-skills", "name": "monetization-strategy", "description": "When the user wants to design or optimize their app's monetization \u2014 pricing, paywalls, subscriptions, or in-app purchases. Also use when the user mentions \"pricing\", \"paywall\", \"subscription\", \"IAP\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/monetization-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "monetization-strategy. When the user wants to design or optimize their app's monetization \u2014 pricing, paywalls, subscriptions, or in-app purchases. Also use when the user mentions \"pricing\", \"paywall\", \"subscription\", \"IAP\", Platforms: claude_code."} +{"id": "c3fab0d70580b948a8e159a797c02711c5f4364acb1da3c31eefda9c6306b319", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "characterization-test-generator", "description": "Generates tests that capture current behavior of existing code before refactoring. Use when you need a safety net before AI-assisted refactoring or modifying legacy code.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/test-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "characterization-test-generator. Generates tests that capture current behavior of existing code before refactoring. Use when you need a safety net before AI-assisted refactoring or modifying legacy code. Platforms: claude_code."} +{"id": "0f48eb0e5698e8b60b68eba0a49f38a927218d043091c83ba07e2c4d4f0560b6", "repo_url": "https://github.com/paid-tw/skills", "name": "payuni-webhook", "description": "Implements PAYUNi webhook handling including signature verification, replay attack prevention, and payment status updates. Use when building payment notification endpoints for \u7d71\u4e00\u91d1\u6d41.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paid-tw/skills/blob/main/plugins/payuni/skills/payuni-webhook/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 260, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T01:10:18Z"}, "embedding_text": "payuni-webhook. Implements PAYUNi webhook handling including signature verification, replay attack prevention, and payment status updates. Use when building payment notification endpoints for \u7d71\u4e00\u91d1\u6d41. Platforms: claude_code."} +{"id": "e049febf389e41e6c83cf955e8c2121308bc51e98b42b5792e8d50c425be5a7f", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "whats-new", "description": "Generates a \"What's New\" / changelog screen shown after app updates with version tracking, feature highlights, and one-time display per version. Use when user wants release notes UI, update notificati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/whats-new/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "whats-new. Generates a \"What's New\" / changelog screen shown after app updates with version tracking, feature highlights, and one-time display per version. Use when user wants release notes UI, update notificati Platforms: claude_code."} +{"id": "4783548bb5b69f2262e1b4e614ceb06f64633eeaea6247bb5fd5f913aabf1601", "repo_url": "https://github.com/significant-gravitas/autogpt", "name": "frontend", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/significant-gravitas/autogpt/blob/master/.claude/skills/write-frontend-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 185063, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:52:27Z"}, "embedding_text": "frontend. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0da461bed9628f826ee3ea3932dd9d05316fa761c79772eb7581e0d9dee2c284", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "snapshot-test-setup", "description": "Set up SwiftUI visual regression testing with swift-snapshot-testing. Generates snapshot test boilerplate and CI configuration. Use for UI regression prevention.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/testing/snapshot-test-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "snapshot-test-setup. Set up SwiftUI visual regression testing with swift-snapshot-testing. Generates snapshot test boilerplate and CI configuration. Use for UI regression prevention. Platforms: claude_code."} +{"id": "31cde59d02064ccf960838333a5290d5f0c55f721d2870bcbe60b47a3b735eb2", "repo_url": "https://github.com/banteg/crimson", "name": "ast-grep", "description": "Use ast-grep (`sg`) for Python and Zig structural code exploration, mechanical codemods, and rule maintenance in this repo. Use this when you need syntax-aware search/replace (instead of regex), to ad", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/banteg/crimson/blob/master/.codex/skills/ast-grep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 161, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T15:10:05Z"}, "embedding_text": "ast-grep. Use ast-grep (`sg`) for Python and Zig structural code exploration, mechanical codemods, and rule maintenance in this repo. Use this when you need syntax-aware search/replace (instead of regex), to ad Platforms: claude_code."} +{"id": "3d8afc4a6cca95f406c6fcae7e8ef4818cd80c1b552dc6953438dd068bca07d2", "repo_url": "https://github.com/evermind-ai/evermemos", "name": "evermind-ai-everos", "description": "Install and configure EverOS for OpenClaw natural-language memory.\n\nUse when users say:\n- \"install everos\"\n- \"setup everos\"\n- \"install everos plugin\"\n- \"enable everos memory\"\n- \"remember my preference", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evermind-ai/evermemos/blob/main/.claude/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 8296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:43:13Z"}, "embedding_text": "evermind-ai-everos. Install and configure EverOS for OpenClaw natural-language memory.\n\nUse when users say:\n- \"install everos\"\n- \"setup everos\"\n- \"install everos plugin\"\n- \"enable everos memory\"\n- \"remember my preference Platforms: claude_code."} +{"id": "5d3485592da27e4b9d9bc55da1e76af58b730cf22c08e672cfd6242848abe4f4", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "memory", "description": "Swift 6.2 InlineArray and Span types for zero-overhead memory access, fixed-size collections, and safe pointer alternatives. Use when optimizing performance-critical code paths.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/swift/memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "memory. Swift 6.2 InlineArray and Span types for zero-overhead memory access, fixed-size collections, and safe pointer alternatives. Use when optimizing performance-critical code paths. Platforms: claude_code."} +{"id": "1fb95fb84a08f50481cc1f47ae1db7454edf890d659a0abd36264744c4b9f4e5", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-database", "description": "Integrates Firebase Realtime Database into Flutter apps. Use when setting up Realtime Database, structuring JSON data, querying, performing read/write operations, implementing offline capabilities, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-database. Integrates Firebase Realtime Database into Flutter apps. Use when setting up Realtime Database, structuring JSON data, querying, performing read/write operations, implementing offline capabilities, or Platforms: claude_code."} +{"id": "1f897a9cc41da1e753cfad31e4c0227d1f0da58da8845184b496f05c60385557", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-storage", "description": "Integrates Firebase Cloud Storage into Flutter apps. Use when setting up Storage, uploading or downloading files, managing metadata, handling errors, or applying security rules.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-storage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-storage. Integrates Firebase Cloud Storage into Flutter apps. Use when setting up Storage, uploading or downloading files, managing metadata, handling errors, or applying security rules. Platforms: claude_code."} +{"id": "d98fb7106de73d325904578ec2f51d256cc5b38d9110559fe476eeb0c731082c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "influencer-marketing", "description": "When the user wants to plan, implement, or optimize influencer marketing strategy. Also use when the user mentions \"influencer marketing,\" \"KOL,\" \"creator partnership,\" \"brand ambassador,\" \"sponsored content,\" \"influencer campaign,\" \"micro-influencer,\" \"influencer outreach,\" \"creator collaboration,\" or \"influencer deal.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/influencer-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install influencer-marketing"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "influencer-marketing. When the user wants to plan, implement, or optimize influencer marketing strategy. Also use when the user mentions \"influencer marketing,\" \"KOL,\" \"creator partnership,\" \"brand ambassador,\" \"sponsored content,\" \"influencer campaign,\" \"micro-influencer,\" \"influencer outreach,\" \"creator collaboration,\" or \"influencer deal.\" Platforms: claude_code."} +{"id": "fcc62f270df6a2bbf017aeb62a4533a3b954f0f1dcf3c290cc8e73e3376a9fd1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "link-building", "description": "When the user wants to build backlinks, acquire links, or improve off-page SEO. Also use when the user mentions \"link building,\" \"backlinks,\" \"off-page SEO,\" \"link acquisition,\" \"outreach,\" \"guest posting,\" \"broken link building,\" \"link outreach,\" \"acquire backlinks,\" \"how to build backlinks,\" or \"link building strategy.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/off-page/link-building/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install link-building"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "link-building. When the user wants to build backlinks, acquire links, or improve off-page SEO. Also use when the user mentions \"link building,\" \"backlinks,\" \"off-page SEO,\" \"link acquisition,\" \"outreach,\" \"guest posting,\" \"broken link building,\" \"link outreach,\" \"acquire backlinks,\" \"how to build backlinks,\" or \"link building strategy.\" Platforms: claude_code."} +{"id": "d1513b990d6d7173e132adb250146e53d5d884c59a032e0f2e8fd52bea519b73", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-epic-creator", "description": "This skill orchestrates a sequential review process where 11 specialized personas analyze software epics. It creates structured JSON documentation with cost estimates, risk assessments, and implementa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-epic-creator-v2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "A", "skillhub_score": 8.2, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-epic-creator. This skill orchestrates a sequential review process where 11 specialized personas analyze software epics. It creates structured JSON documentation with cost estimates, risk assessments, and implementa Platforms: claude_code."} +{"id": "61f7b0275e406bc4e06907a224473e6d1601c1488f2ac9866e3a9a1fff357467", "repo_url": "https://github.com/thedecipherist/claude-code-mastery", "name": "commit-messages", "description": "Generate clear, conventional commit messages from git diffs. Use when writing commit messages, reviewing staged changes, or preparing releases.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedecipherist/claude-code-mastery/blob/main/skills/commit-messages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit-messages"}, "quality": {"stars": 529, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-07T19:15:40Z"}, "embedding_text": "commit-messages. Generate clear, conventional commit messages from git diffs. Use when writing commit messages, reviewing staged changes, or preparing releases. Platforms: claude_code."} +{"id": "b8df68d57f107526bb29d28ecfde185ad64955b07b6a61354c26eeb14030b5fe", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-crashlytics", "description": "Integrates Firebase Crashlytics into Flutter apps. Use when setting up crash reporting, handling fatal and non-fatal errors, customizing crash reports with keys/logs/user identifiers, or configuring o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-crashlytics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-crashlytics. Integrates Firebase Crashlytics into Flutter apps. Use when setting up crash reporting, handling fatal and non-fatal errors, customizing crash reports with keys/logs/user identifiers, or configuring o Platforms: claude_code."} +{"id": "89897ace7b3942f4c5c4e2b62e74a4a758c6f1bea6cfc46782b067242e48dfd3", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "auto-arena", "description": "Automatically evaluate and compare multiple AI models or agents without pre-existing test data. Generates test queries from a task description, collects responses from all target endpoints, auto-generates evaluation rubrics, runs pairwise comparisons via a judge model, and produces win-rate rankings with reports and charts. Supports checkpoint resume, incremental endpoint addition, and judge model hot-swap. Use when the user asks to compare, benchmark, or rank multiple models or agents on a custom task, or run an arena-style evaluation.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/auto-arena/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install auto-arena"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T09:40:18Z"}, "embedding_text": "auto-arena. Automatically evaluate and compare multiple AI models or agents without pre-existing test data. Generates test queries from a task description, collects responses from all target endpoints, auto-generates evaluation rubrics, runs pairwise comparisons via a judge model, and produces win-rate rankings with reports and charts. Supports checkpoint resume, incremental endpoint addition, and judge model hot-swap. Use when the user asks to compare, benchmark, or rank multiple models or agents on a custom task, or run an arena-style evaluation. Platforms: claude_code."} +{"id": "72d5ba050315ea473c9e1719e1ee9475efcb45f2a307520bc3aef980d1a1af4c", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-ai", "description": "Integrates Firebase AI Logic into Flutter apps. Use when setting up the firebase_ai plugin, calling Gemini models, handling AI service errors, or applying security and privacy considerations for AI fe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-ai. Integrates Firebase AI Logic into Flutter apps. Use when setting up the firebase_ai plugin, calling Gemini models, handling AI service errors, or applying security and privacy considerations for AI fe Platforms: claude_code."} +{"id": "e860c513c3c951401d52d52890e4a94909fdc14291c97272bfb676f47294129b", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "media-kit-page-generator", "description": "When the user wants to create, optimize, or audit media kit or press page. Also use when the user mentions \"media kit,\" \"press kit,\" \"press page,\" \"press resources,\" \"brand assets,\" \"logo download,\" \"press assets,\" \"media resources,\" or \"brand kit.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/media-kit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install media-kit-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "media-kit-page-generator. When the user wants to create, optimize, or audit media kit or press page. Also use when the user mentions \"media kit,\" \"press kit,\" \"press page,\" \"press resources,\" \"brand assets,\" \"logo download,\" \"press assets,\" \"media resources,\" or \"brand kit.\" Platforms: claude_code."} +{"id": "caa1047ab60583a51fe8b110282236d246e8635d80c8556c146c0443e8b3fa3c", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-scan-secrets", "description": "Ghost Security - Secrets and credentials scanner. Scans codebase for leaked API keys, tokens, passwords, and sensitive data. Detects hardcoded secrets and generates findings with severity and remediation guidance. Use when the user asks to check for leaked secrets, scan for credentials, find hardcoded API keys or passwords, detect exposed .env values, or audit code for sensitive data exposure.\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/scan-secrets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-scan-secrets"}, "quality": {"stars": 393, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-scan-secrets. Ghost Security - Secrets and credentials scanner. Scans codebase for leaked API keys, tokens, passwords, and sensitive data. Detects hardcoded secrets and generates findings with severity and remediation guidance. Use when the user asks to check for leaked secrets, scan for credentials, find hardcoded API keys or passwords, detect exposed .env values, or audit code for sensitive data exposure.\n Platforms: claude_code."} +{"id": "c3303ee09937c86687ad9982d4cc5d023f2caec004233634dba4b1b9364153be", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "creator-program", "description": "When the user wants to plan, implement, or optimize creator program strategy. Also use when the user mentions \"creator program,\" \"creator partnership,\" \"content co-creation,\" \"creator ambassador,\" \"creator economy,\" \"creator collaboration,\" \"UGC program,\" \"creator incentives,\" or \"creator community.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/creator-program/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install creator-program"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "creator-program. When the user wants to plan, implement, or optimize creator program strategy. Also use when the user mentions \"creator program,\" \"creator partnership,\" \"content co-creation,\" \"creator ambassador,\" \"creator economy,\" \"creator collaboration,\" \"UGC program,\" \"creator incentives,\" or \"creator community.\" Platforms: claude_code."} +{"id": "b84e6718db93af9f9ff4cf88be5737a2ada9cf20ca3bed399edbda5e57796c7f", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "parallel-cli", "description": "Optional vendor skill for Parallel CLI \u2014 agent-native web search, extraction, deep research, enrichment, FindAll, and monitoring. Prefer JSON output and non-interactive flows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/devops/cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "parallel-cli. Optional vendor skill for Parallel CLI \u2014 agent-native web search, extraction, deep research, enrichment, FindAll, and monitoring. Prefer JSON output and non-interactive flows. Platforms: linux, macos, windows."} +{"id": "71003fa5e5350a985127c974e5f10c4de65688dbdd4b15513c9f5c4b802dfd2f", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "frontend-design", "description": "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 inclu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "frontend-design. 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 inclu Platforms: claude_code."} +{"id": "440c3698bbaed781587749812a766866849e5fcde842a23ef43a8066b3f4a8ed", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "executing-an-implementation-plan", "description": "Use when executing implementation plans with independent tasks in the current session - dispatches fresh subagent for each task, reviews once per phase, loads phases just-in-time to minimize context u", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-plan-and-execute/skills/executing-an-implementation-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "executing-an-implementation-plan. Use when executing implementation plans with independent tasks in the current session - dispatches fresh subagent for each task, reviews once per phase, loads phases just-in-time to minimize context u Platforms: claude_code."} +{"id": "6169a8afcffec7356a5bd08f7cea9e1131ac27f30abf167b217925f62d703bf8", "repo_url": "https://github.com/railwayapp/railway-skills", "name": "central-station", "description": "This skill should be used when the user asks about Central Station threads, community discussions, support questions, feature requests, or wants to search Railway's community knowledge base. Use for q", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/railwayapp/railway-skills/blob/main/plugins/railway/skills/use-railway/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 280, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T06:07:24Z"}, "embedding_text": "central-station. This skill should be used when the user asks about Central Station threads, community discussions, support questions, feature requests, or wants to search Railway's community knowledge base. Use for q Platforms: claude_code."} +{"id": "a78b217b052af43fb2075bea900fcbde1fe3198dfd5db996644268fae3024b5b", "repo_url": "https://github.com/atopile/atopile", "name": "lsp", "description": "How the atopile Language Server works (pygls), how it builds per-document graphs for completion/hover/defs, and the invariants for keeping it fast and crash-proof.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/atopile/atopile/blob/main/.claude/skills/lsp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3412, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T02:58:22Z"}, "embedding_text": "lsp. How the atopile Language Server works (pygls), how it builds per-document graphs for completion/hover/defs, and the invariants for keeping it fast and crash-proof. Platforms: claude_code."} +{"id": "a114179db7ba1687acc803a3a8b7dd68951af41c560f79e8c3d24640d621fa63", "repo_url": "https://github.com/dennisonbertram/steal-react-component", "name": "steal-react-component", "description": "Extract and reconstruct React components from any production website using Chrome browser automation. Use when asked to steal, copy, extract, or reverse-engineer React components from a website.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dennisonbertram/steal-react-component/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 64, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-12T15:07:34Z"}, "embedding_text": "steal-react-component. Extract and reconstruct React components from any production website using Chrome browser automation. Use when asked to steal, copy, extract, or reverse-engineer React components from a website. Platforms: claude_code."} +{"id": "612ceacd15623ef6c8dd4b4119af77897f0740f679a61bdf7a54cd596a2dd546", "repo_url": "https://github.com/agent-sh/agentsys", "name": "validate-delivery", "description": "Use when user asks to \"validate delivery\", \"check readiness\", or \"verify completion\". Runs tests, build, and requirement checks with pass/fail instructions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/validate-delivery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "validate-delivery. Use when user asks to \"validate delivery\", \"check readiness\", or \"verify completion\". Runs tests, build, and requirement checks with pass/fail instructions. Platforms: claude_code."} +{"id": "9942062e1963476e8bb00580b25f0e50e61a4717d7006bd764396f375ccf3e4f", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "import", "description": "Import papers from external reference managers (Endnote XML/RIS, Zotero Web API or local SQLite), or attach a PDF to an existing paper. Handles PDF matching, MinerU conversion, metadata enrichment, an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/import/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "import. Import papers from external reference managers (Endnote XML/RIS, Zotero Web API or local SQLite), or attach a PDF to an existing paper. Handles PDF matching, MinerU conversion, metadata enrichment, an Platforms: claude_code."} +{"id": "7e43bd026168f929466863a7c24d3e89d5427b51ed543e0d4c9952c669fbcbd1", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-build-lifecycle", "description": "Track build processing, find latest builds, and clean up old builds with asc. Use when managing build retention or waiting on processing.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-build-lifecycle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-build-lifecycle"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-build-lifecycle. Track build processing, find latest builds, and clean up old builds with asc. Use when managing build retention or waiting on processing. Platforms: claude_code."} +{"id": "818c71b4425740216276ede95d975bab92dd8bd4e925cf5ba069a3a625b506e0", "repo_url": "https://github.com/redisearch/redisearch", "name": "lint", "description": "Check code quality and formatting before committing changes. Use this to verify your changes meet our coding standards.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/lint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "lint. Check code quality and formatting before committing changes. Use this to verify your changes meet our coding standards. Platforms: claude_code."} +{"id": "4853d4abf878232bd1f95f141c81f3bba49f1a7f4ea54c4a0289c8a3368d50c7", "repo_url": "https://github.com/mikker/steve", "name": "steve", "description": "Use the steve CLI to automate macOS apps via Accessibility APIs. Use when you need to drive Mac UI (apps, windows, menus, elements), run UI smoke tests, or script interactions using steve commands and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mikker/steve/blob/main/skills/steve/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 164, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-27T23:00:12Z"}, "embedding_text": "steve. Use the steve CLI to automate macOS apps via Accessibility APIs. Use when you need to drive Mac UI (apps, windows, menus, elements), run UI smoke tests, or script interactions using steve commands and Platforms: claude_code."} +{"id": "544420708bfc24decaf9a9c2704b1f8a6f6a8bcfbc03f213023500723ab70ded", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "setup", "description": "Initialize and diagnose the ScholarAIO environment. Run interactive setup wizard (bilingual EN/ZH) to install dependencies, create config files, and configure API keys. Run status check to see what's", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "setup. Initialize and diagnose the ScholarAIO environment. Run interactive setup wizard (bilingual EN/ZH) to install dependencies, create config files, and configure API keys. Run status check to see what's Platforms: claude_code."} +{"id": "48093a8e814681c97579dd6daac31475e78f93b7b6a9f6212eada1228b12d31c", "repo_url": "https://github.com/activepieces/activepieces", "name": "piece-builder", "description": "Builds Activepieces pieces (integrations) with actions and triggers. Use when the user asks to create a new piece, add actions to a piece, add triggers to a piece, or build an integration for a third-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/activepieces/activepieces/blob/main/.agents/skills/piece-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22910, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:13:57Z"}, "embedding_text": "piece-builder. Builds Activepieces pieces (integrations) with actions and triggers. Use when the user asks to create a new piece, add actions to a piece, add triggers to a piece, or build an integration for a third- Platforms: claude_code."} +{"id": "929d2e472216763dc5cc1fcf28085e22c08a586c5a71d297bb6b9e49dd4f92b9", "repo_url": "https://github.com/saadshahd/moo.md", "name": "gate", "description": "A structured verification framework that enforces evidence-based completion claims through workflow-specific checklists, preventing premature 'done' declarations in development work.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/saadshahd/moo.md/blob/main/hope/skills/delegate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 33, "skillhub_rank": "A", "skillhub_score": 7.9, "last_updated": "2026-06-21T18:24:46Z"}, "embedding_text": "gate. A structured verification framework that enforces evidence-based completion claims through workflow-specific checklists, preventing premature 'done' declarations in development work. Platforms: claude_code."} +{"id": "d2dfdfa70d1f119cef5617b887f526293757541f717f3e2c80c1bfd9b5893274", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "product-page-optimization", "description": "Generates A/B test plans and optimization checklists for your App Store product page \u2014 icon, screenshots, and app previews. Use when running Product Page Optimization tests or improving conversion rat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/product-page-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "product-page-optimization. Generates A/B test plans and optimization checklists for your App Store product page \u2014 icon, screenshots, and app previews. Use when running Product Page Optimization tests or improving conversion rat Platforms: claude_code."} +{"id": "bea6c9afb3fa768bb638912e31b7f38daf011524c173038a90597428d179f709", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "open-sets", "description": "Problem-solving strategies for open sets in topology", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/topology/open-sets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install open-sets"}, "quality": {"stars": 3823, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "open-sets. Problem-solving strategies for open sets in topology Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} +{"id": "636ee43a670f3c0f15be3ee2b778a098f54e95dbdbc743716e4ccd7742289d96", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-metadata-sync", "description": "Sync and validate App Store metadata and localizations with asc, including legacy metadata format migration. Use when updating metadata or translations.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-metadata-sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-metadata-sync"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-metadata-sync. Sync and validate App Store metadata and localizations with asc, including legacy metadata format migration. Use when updating metadata or translations. Platforms: claude_code."} +{"id": "73a31626958ecf82192fecdf0c7abd725042be52e446eb762cd54c98c873066a", "repo_url": "https://github.com/intellectronica/agent-skills", "name": "ultrathink", "description": "Display colorful ANSI art of the word \"ultrathink\". Use when the user says \"ultrathink\" or invokes /ultrathink.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/intellectronica/agent-skills/blob/main/skills/ultrathink/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 275, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-25T15:31:50Z"}, "embedding_text": "ultrathink. Display colorful ANSI art of the word \"ultrathink\". Use when the user says \"ultrathink\" or invokes /ultrathink. Platforms: claude_code."} +{"id": "e642ce4252392c8fb20f62722dbfce9758bfb577214816cce3938b584950a409", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "feedback-form", "description": "Generates an in-app feedback collection form with category selection, text input, optional screenshot attachment, device diagnostics, and smart routing \u2014 directing happy users to App Store reviews and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/feedback-form/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "feedback-form. Generates an in-app feedback collection form with category selection, text input, optional screenshot attachment, device diagnostics, and smart routing \u2014 directing happy users to App Store reviews and Platforms: claude_code."} +{"id": "090668a1a0edbbaca3a97b4ab7febef8677d503d8308f76a3a6ecb5db7d6f47b", "repo_url": "https://github.com/redisearch/redisearch", "name": "verify", "description": "Run full verification before committing or creating a PR. Use this when you want to create a PR.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "verify. Run full verification before committing or creating a PR. Use this when you want to create a PR. Platforms: claude_code."} +{"id": "f4637c18a7ca956fa8103a5aff687a2ea817bb6a8f697ed5ad7af8da2cc24aea", "repo_url": "https://github.com/microsoft/skills", "name": "wiki-vitepress", "description": "Packages generated wiki Markdown into a VitePress static site with dark theme, dark-mode Mermaid diagrams with click-to-zoom, and production build output. Use when the user wants to create a browsable website from generated wiki pages.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/deep-wiki/skills/wiki-vitepress/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wiki-vitepress"}, "quality": {"stars": 2600, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:47:24Z"}, "embedding_text": "wiki-vitepress. Packages generated wiki Markdown into a VitePress static site with dark theme, dark-mode Mermaid diagrams with click-to-zoom, and production build output. Use when the user wants to create a browsable website from generated wiki pages. Platforms: claude_code."} +{"id": "1f4ccc67c57289bc3fe6e341ee683cb5c058e80df23cae40bc42c5d0e076c7e8", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "marketplace-liquidity", "description": "Help users build and manage marketplace liquidity. Use when someone is working on a marketplace business, struggling with supply/demand balance, trying to improve match rates, or asking how to reach c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/marketplace-liquidity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "marketplace-liquidity. Help users build and manage marketplace liquidity. Use when someone is working on a marketplace business, struggling with supply/demand balance, trying to improve match rates, or asking how to reach c Platforms: claude_code."} +{"id": "84954b6b2733903d663f2cdd9c85a307ab33d1310198cce324d5bb72ea646786", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "running-effective-1-1s", "description": "Help users run effective one-on-one meetings. Use when someone is a new manager setting up 1:1s, struggling to make 1:1s productive, wants to improve career conversations with reports, or needs to han", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/running-effective-1-1s/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "running-effective-1-1s. Help users run effective one-on-one meetings. Use when someone is a new manager setting up 1:1s, struggling to make 1:1s productive, wants to improve career conversations with reports, or needs to han Platforms: claude_code."} +{"id": "145c07c2658ec70aa941462d2a72c01df5e40b3a87a7f58ed2484c4dffdf2b74", "repo_url": "https://github.com/matrixorigin/memoria", "name": "release", "description": "Cut a Memoria release. Version bump, CHANGELOG, CI workflows, Docker image. Use when publishing a new version.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matrixorigin/memoria/blob/main/skills/release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 288, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T04:00:20Z"}, "embedding_text": "release. Cut a Memoria release. Version bump, CHANGELOG, CI workflows, Docker image. Use when publishing a new version. Platforms: claude_code."} +{"id": "b53ca899958b4c840260add9a642bb9724d77bdb3faf42551b24067f3210115a", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "culture-craft", "description": "Designs team culture and sets standards of excellence using David Singleton (Stripe) and Dharmesh Shah (HubSpot) frameworks. Use when building teams, setting cultural values, creating rituals, or esta", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/culture-craft/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "culture-craft. Designs team culture and sets standards of excellence using David Singleton (Stripe) and Dharmesh Shah (HubSpot) frameworks. Use when building teams, setting cultural values, creating rituals, or esta Platforms: claude_code."} +{"id": "a428de624d13a4370f81df694c9312401656c9a7878a228daa944e2ed81d9f33", "repo_url": "https://github.com/ankitvgupta/mail-app", "name": "reviewloop", "description": "Iteratively improves a PR until all review bots (Greptile, Devin, and others) are satisfied with zero unresolved comments, then fixes any CI failures. Triggers reviews, fixes all actionable comments,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ankitvgupta/mail-app/blob/main/.claude/skills/reviewloop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 473, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T02:01:15Z"}, "embedding_text": "reviewloop. Iteratively improves a PR until all review bots (Greptile, Devin, and others) are satisfied with zero unresolved comments, then fixes any CI failures. Triggers reviews, fixes all actionable comments, Platforms: claude_code."} +{"id": "86b497871c621e8e341645cbbefeb533bd5ff653e30c3c716128be5ecc8f8c6b", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "organizational-design", "description": "Help users design effective organizational structures. Use when someone is thinking about team structure, deciding between functional vs. divisional models, planning a reorg, or figuring out how to st", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/organizational-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "organizational-design. Help users design effective organizational structures. Use when someone is thinking about team structure, deciding between functional vs. divisional models, planning a reorg, or figuring out how to st Platforms: claude_code."} +{"id": "947475ea26b4199ba60e8d649f57ef1a617449de5a35f02fc08864494bf56575", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "sales-compensation", "description": "Help users design sales compensation plans. Use when someone is hiring their first sales rep, restructuring sales comp, trying to align sales incentives with business goals, or dealing with comp plan", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/sales-compensation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "sales-compensation. Help users design sales compensation plans. Use when someone is hiring their first sales rep, restructuring sales comp, trying to align sales incentives with business goals, or dealing with comp plan Platforms: claude_code."} +{"id": "f96b245b38b9ac491bb2bec655e3be6825c195ca184d223a6587067a711f8973", "repo_url": "https://github.com/liveloveapp/hashbrown", "name": "ideate", "description": "Capture and document a new idea in this repo. Use when the user says things like \"help me brainstorm\", \"I have an idea\", or \"let's capture this for the future\" and wants it recorded in `design/ideas/`", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liveloveapp/hashbrown/blob/main/.codex/skills/ideate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 708, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-26T20:44:15Z"}, "embedding_text": "ideate. Capture and document a new idea in this repo. Use when the user says things like \"help me brainstorm\", \"I have an idea\", or \"let's capture this for the future\" and wants it recorded in `design/ideas/` Platforms: claude_code."} +{"id": "d9922f12908c184fe5557b7bc362978e94759732d98205486fc7844f0280950f", "repo_url": "https://github.com/eronred/aso-skills", "name": "keyword-research", "description": "When the user wants to discover, evaluate, or prioritize App Store keywords. Also use when the user mentions \"keyword research\", \"find keywords\", \"search volume\", \"keyword difficulty\", \"keyword ideas\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/keyword-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "keyword-research. When the user wants to discover, evaluate, or prioritize App Store keywords. Also use when the user mentions \"keyword research\", \"find keywords\", \"search volume\", \"keyword difficulty\", \"keyword ideas\" Platforms: claude_code."} +{"id": "aed1cd6aa822dd09f62e760fc171c1e2fe37b724c7c4db20013292cff248e290", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "influence-craft", "description": "Maps organizational power dynamics and builds influence without authority using Jeffrey Pfeffer's power frameworks. Use when getting buy-in for ideas, navigating company politics, managing up, or buil", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/influence-craft/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "influence-craft. Maps organizational power dynamics and builds influence without authority using Jeffrey Pfeffer's power frameworks. Use when getting buy-in for ideas, navigating company politics, managing up, or buil Platforms: claude_code."} +{"id": "05508c4b39e183ab91e32e0b834c27229befcb0b7aeb6a2e33a3357e8a6280d7", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "rebranding-strategy", "description": "When the user wants to define, audit, or apply brand strategy\u2014purpose, values, positioning, storytelling, voice, visual identity. Also use when the user mentions \"brand strategy,\" \"brand story,\" \"brand storytelling,\" \"brand voice,\" \"brand identity,\" \"brand guidelines,\" \"brand purpose,\" \"brand values,\" \"origin story,\" \"brand narrative,\" \"brand personality,\" or \"brand archetype.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/branding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rebranding-strategy"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "rebranding-strategy. When the user wants to define, audit, or apply brand strategy\u2014purpose, values, positioning, storytelling, voice, visual identity. Also use when the user mentions \"brand strategy,\" \"brand story,\" \"brand storytelling,\" \"brand voice,\" \"brand identity,\" \"brand guidelines,\" \"brand purpose,\" \"brand values,\" \"origin story,\" \"brand narrative,\" \"brand personality,\" or \"brand archetype.\" Platforms: claude_code."} +{"id": "712ca5e2b8f576638d08377c42078a91ac95c23e408737236c84fc69a9efc9b6", "repo_url": "https://github.com/significant-gravitas/autogpt", "name": "worktree-setup", "description": "Set up a new git worktree for parallel development. Creates the worktree, copies .env files, installs dependencies, generates Prisma client, and optionally starts the app (with port conflict resolutio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/significant-gravitas/autogpt/blob/master/.claude/skills/worktree/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 185063, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:52:27Z"}, "embedding_text": "worktree-setup. Set up a new git worktree for parallel development. Creates the worktree, copies .env files, installs dependencies, generates Prisma client, and optionally starts the app (with port conflict resolutio Platforms: claude_code."} +{"id": "9f62b999ee2ff2af602a9e02b3e6f12a52814811fa20ac42605fe846069ad6bb", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "ship-decisions", "description": "Guides \"ship or iterate?\" decisions using Shreyas Doshi's frameworks, Marty Cagan's shipping philosophy, and Tobi Lutke's reversible decision-making. Use when deciding if feature is ready, preventing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/ship-decisions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "ship-decisions. Guides \"ship or iterate?\" decisions using Shreyas Doshi's frameworks, Marty Cagan's shipping philosophy, and Tobi Lutke's reversible decision-making. Use when deciding if feature is ready, preventing Platforms: claude_code."} +{"id": "f39ea980e7ccae7efa0e375e24098c1be4bb743a644f00d9e3981e7bbd5b5d1e", "repo_url": "https://github.com/wiz-sec-public/sitf", "name": "attack-flow", "description": "Generate SITF-compliant attack flow JSON files from attack descriptions or incident reports. Use when analyzing supply chain attacks, breaches, or security incidents.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wiz-sec-public/sitf/blob/main/.claude/skills/attack-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install attack-flow"}, "quality": {"stars": 170, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T08:10:40Z"}, "embedding_text": "attack-flow. Generate SITF-compliant attack flow JSON files from attack descriptions or incident reports. Use when analyzing supply chain attacks, breaches, or security incidents. Platforms: claude_code."} +{"id": "7ccc15b228fd21090df8530f7eba5a24b559507975ffc636188413380ec8b9ba", "repo_url": "https://github.com/avifenesh/awesome-slash", "name": "enhance-plugins", "description": "Use when analyzing plugin structures, MCP tools, and plugin security patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avifenesh/awesome-slash/blob/main/.kiro/skills/enhance-plugins/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "enhance-plugins. Use when analyzing plugin structures, MCP tools, and plugin security patterns. Platforms: claude_code."} +{"id": "65ddefe33ecc2a2ee51401d41bb21211866cec371795568621c1496fa7062862", "repo_url": "https://github.com/dotnet/skills", "name": "eval-performance", "description": "Guide for diagnosing and improving MSBuild project evaluation performance. Only activate in MSBuild/.NET build context. Use when builds are slow before any compilation starts, when evaluation time is high in binlog analysis, or when dealing with expensive glob patterns and deep import chains. Covers evaluation phases, glob optimization, import chain analysis, and /pp preprocessing.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/eval-performance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install eval-performance"}, "quality": {"stars": 3455, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:58:53Z"}, "embedding_text": "eval-performance. Guide for diagnosing and improving MSBuild project evaluation performance. Only activate in MSBuild/.NET build context. Use when builds are slow before any compilation starts, when evaluation time is high in binlog analysis, or when dealing with expensive glob patterns and deep import chains. Covers evaluation phases, glob optimization, import chain analysis, and /pp preprocessing. Platforms: claude_code."} +{"id": "181b4703f510b412ba1954ca9310e833d918981aaf0ba159519ed6fd08783c31", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "executing-plans", "description": "Use when you have a written implementation plan to execute in a separate session with review checkpoints", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/executing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "executing-plans. Use when you have a written implementation plan to execute in a separate session with review checkpoints Platforms: claude_code."} +{"id": "4874198c7424b06617065aaa2d64a0dcb0dcd91b1dec645b991c6f9fdcaa538a", "repo_url": "https://github.com/dotnet/skills", "name": "crap-score", "description": "Calculates CRAP (Change Risk Anti-Patterns) score for .NET methods, classes, or files. Use when the user asks to assess test quality, identify risky untested code, compute CRAP scores, or evaluate whe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-test/skills/crap-score/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3455, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:58:53Z"}, "embedding_text": "crap-score. Calculates CRAP (Change Risk Anti-Patterns) score for .NET methods, classes, or files. Use when the user asks to assess test quality, identify risky untested code, compute CRAP scores, or evaluate whe Platforms: claude_code."} +{"id": "7deca0ae56dfe64519cb97954c6d6112701bcc433aa90a6eaca2134b434cca09", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-crash-triage", "description": "Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes, TestFlight crash reports, beta tester feedback, app hangs, disk writes, launch diagnostics, or wants a crash summary for a build or app.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-crash-triage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-crash-triage"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-crash-triage. Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes, TestFlight crash reports, beta tester feedback, app hangs, disk writes, launch diagnostics, or wants a crash summary for a build or app. Platforms: claude_code."} +{"id": "7a0bf3e79f1950dd7a68c9ee4827069af0d9e546cd3896e1b91b9e39337a4b6d", "repo_url": "https://github.com/roundtable02/tutor-skills", "name": "tutor", "description": "Transforms knowledge sources into an Obsidian StudyVault. Two modes: (1) Document Mode \u2014 PDF/text/web sources \u2192 study notes with practice questions. (2) Codebase Mode \u2014 source code project \u2192 onboarding vault for new developers. Mode is auto-detected based on project markers in CWD.\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "claude", "claude-code", "claude-skills", "skill", "skills", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/roundtable02/tutor-skills/blob/main/skills/tutor-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tutor"}, "quality": {"stars": 970, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-28T14:41:09Z"}, "embedding_text": "tutor. Transforms knowledge sources into an Obsidian StudyVault. Two modes: (1) Document Mode \u2014 PDF/text/web sources \u2192 study notes with practice questions. (2) Codebase Mode \u2014 source code project \u2192 onboarding vault for new developers. Mode is auto-detected based on project markers in CWD.\n Categories: agent-skills, claude, claude-code, claude-skills, skill, skills, skillsmp. Platforms: claude_code."} +{"id": "35faa1e9682d2153eed4a3a989226e048624d74f22693e71b53406ac31b0533a", "repo_url": "https://github.com/agent-sh/agentsys", "name": "enhance-agent-prompts", "description": "Use when improving agent prompts, frontmatter, and tool restrictions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/enhance-agent-prompts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "enhance-agent-prompts. Use when improving agent prompts, frontmatter, and tool restrictions. Platforms: claude_code."} +{"id": "4dcdc97523312fe4deb4da3be928821d1bf8a5402044295d3e1e10099d349e6e", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "agent-factory", "description": "Creates specialized worker agents dynamically from templates. Use when orchestrator needs to spawn task-specific workers for parallel execution. Handles agent lifecycle: create -> execute -> cleanup.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/agent-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "agent-factory. Creates specialized worker agents dynamically from templates. Use when orchestrator needs to spawn task-specific workers for parallel execution. Handles agent lifecycle: create -> execute -> cleanup. Platforms: claude_code."} +{"id": "44bcbf3874cd08a227403c6372bf520ad4d07359ee2141a6ea7dfa2596acc7ac", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "indie-business", "description": "Business fundamentals for indie app developers \u2014 LLC/entity setup, taxes, Apple Small Business Program, revenue tracking, hiring contractors, and financial planning for sustainability. Use when user a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/growth/indie-business/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "indie-business. Business fundamentals for indie app developers \u2014 LLC/entity setup, taxes, Apple Small Business Program, revenue tracking, hiring contractors, and financial planning for sustainability. Use when user a Platforms: claude_code."} +{"id": "d76315ffeb4a980fdaf95a4c2ec78f57349f24f324f9caa057e3f38a76ea8ff7", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "screenshot-automation", "description": "Generates an automated App Store screenshot pipeline with UI tests for screenshot capture, device framing, localized caption overlays, and multi-size batch export. Use when user wants automated screen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/screenshot-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "screenshot-automation. Generates an automated App Store screenshot pipeline with UI tests for screenshot capture, device framing, localized caption overlays, and multi-size batch export. Use when user wants automated screen Platforms: claude_code."} +{"id": "3785f0ee51bc26a9b1784e65a3e6431bcdeebae33d40687bcd2df2076dbd10dd", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "context-loader", "description": "Load project context efficiently for Conductor workflows. Use when starting work on a track, implementing features, or needing project context without consuming excessive tokens.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/context-loader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "context-loader. Load project context efficiently for Conductor workflows. Use when starting work on a track, implementing features, or needing project context without consuming excessive tokens. Platforms: claude_code."} +{"id": "9b441f545c1ba3c59a84f992021dd19d17dd7ba3bbc42cac1cd1a9998cd97e27", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "test-data-factory", "description": "Generate test fixture factories for your models. Builder pattern and static factories for zero-boilerplate test data. Use when tests need sample data setup.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/testing/test-data-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "test-data-factory. Generate test fixture factories for your models. Builder pattern and static factories for zero-boilerplate test data. Use when tests need sample data setup. Platforms: claude_code."} +{"id": "6fcf69b135b93e206713fb99ed0e3158dbccde01de4287f3f557c4218330c099", "repo_url": "https://github.com/agent-sh/agentsys", "name": "enhance-plugins", "description": "Use when analyzing plugin structures, MCP tools, and plugin security patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/enhance-plugins/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "enhance-plugins. Use when analyzing plugin structures, MCP tools, and plugin security patterns. Platforms: claude_code."} +{"id": "36926ad0ef829635a38d1462c0f9350462654c0cc9c57584f4bfb093b455e8c8", "repo_url": "https://github.com/letta-ai/lettabot", "name": "goplaces", "description": "Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/goplaces/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "goplaces. Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts. Platforms: claude_code."} +{"id": "a37dd9417bdc8e9edf5762e3452e45bc872eab681a89403de23b0381c9a81b59", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "watermark-engine", "description": "Generates a watermark overlay system for images and video with configurable positioning, opacity, tiling, and paywall integration for automatic removal on subscription or purchase. Use when user wants", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/watermark-engine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "watermark-engine. Generates a watermark overlay system for images and video with configurable positioning, opacity, tiling, and paywall integration for automatic removal on subscription or purchase. Use when user wants Platforms: claude_code."} +{"id": "440f4a9ebf95ee3db7dcad675a457ecfe223621c5cf42621fa5909bacb5a3f9b", "repo_url": "https://github.com/eronred/aso-skills", "name": "market-pulse", "description": "When the user wants a comprehensive App Store market overview, daily/weekly market briefing, or combined view of chart movements, trending keywords, featured apps, and new releases. Also use when the", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/market-pulse/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "market-pulse. When the user wants a comprehensive App Store market overview, daily/weekly market briefing, or combined view of chart movements, trending keywords, featured apps, and new releases. Also use when the Platforms: claude_code."} +{"id": "31b7eba23ac72380e96391a5d1dbd88608594e4368de0f9df96f1d9703de0e5f", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "solutions-page-generator", "description": "When the user wants to create, optimize, or audit solutions pages. Also use when the user mentions \"solutions,\" \"solutions page,\" \"by industry,\" \"industry solutions,\" \"by company size,\" \"SMB,\" \"enterprise,\" \"by outcome,\" \"business outcomes,\" or \"how we solve X.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/solutions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solutions-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "solutions-page-generator. When the user wants to create, optimize, or audit solutions pages. Also use when the user mentions \"solutions,\" \"solutions page,\" \"by industry,\" \"industry solutions,\" \"by company size,\" \"SMB,\" \"enterprise,\" \"by outcome,\" \"business outcomes,\" or \"how we solve X.\" Platforms: claude_code."} +{"id": "7d17c81a18572c56756a31d3608586b0446a395634594b1dd3a7e7bbbd10c3ea", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "paywall-generator", "description": "Generates StoreKit 2 subscription paywall with modern SwiftUI views. Use when user wants to add subscriptions, paywall, or in-app purchases.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/paywall-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "paywall-generator. Generates StoreKit 2 subscription paywall with modern SwiftUI views. Use when user wants to add subscriptions, paywall, or in-app purchases. Platforms: claude_code."} +{"id": "5122e5a44978393761d74a9785076447fc27d788e264078014f8882f441a8c76", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-revenuecat-catalog-sync", "description": "Reconcile App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages using asc and RevenueCat MCP. Use when setting up or syncing subscription catalogs across ASC and RevenueCat.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-revenuecat-catalog-sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-revenuecat-catalog-sync"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-revenuecat-catalog-sync. Reconcile App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages using asc and RevenueCat MCP. Use when setting up or syncing subscription catalogs across ASC and RevenueCat. Platforms: claude_code."} +{"id": "e4efc6198c9876d7ec7a8906ebf60f5f21d9b4ad2a2b0f4e89e4e13b4d3a661d", "repo_url": "https://github.com/pockebot/openpocket", "name": "clash-of-clans-play", "description": "Play Clash of Clans on mobile with autonomous tactical decisions. Use when the user asks to attack, farm resources, push trophies/rank, run Builder Base attacks, collect rewards, or manage daily villa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/clash-of-clans-play/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "clash-of-clans-play. Play Clash of Clans on mobile with autonomous tactical decisions. Use when the user asks to attack, farm resources, push trophies/rank, run Builder Base attacks, collect rewards, or manage daily villa Platforms: claude_code."} +{"id": "eeea79a0f1691049a645c0ab5b5132b303a15a4fca3ad9106204cac902939510", "repo_url": "https://github.com/pockebot/openpocket", "name": "uber-eats-order", "description": "Order food or groceries end-to-end in the Uber Eats consumer app. Use when the user asks to open Uber Eats, browse merchants, add items, customize options, apply promos, choose delivery or pickup, pla", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/uber-eats-order/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "uber-eats-order. Order food or groceries end-to-end in the Uber Eats consumer app. Use when the user asks to open Uber Eats, browse merchants, add items, customize options, apply promos, choose delivery or pickup, pla Platforms: claude_code."} +{"id": "e36ff2ee9709f89f1883474f119554f946e932ec5b62359c98859d75d9f2b54a", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "wordpress-publisher", "description": "Publish posts to WordPress. Use for: publish blog post, upload to WordPress, \u05e4\u05e8\u05e1\u05dd \u05d1\u05d1\u05dc\u05d5\u05d2.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/skills/wordpress-publisher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "wordpress-publisher. Publish posts to WordPress. Use for: publish blog post, upload to WordPress, \u05e4\u05e8\u05e1\u05dd \u05d1\u05d1\u05dc\u05d5\u05d2. Platforms: claude_code."} +{"id": "1e005e13674b4bcab9d93dfbfa191964c41dcbe4cc52b74a273dd95b519db34e", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "showcase-page-generator", "description": "When the user wants to create, optimize, or audit a showcase or gallery page for user-generated content. Also use when the user mentions \"showcase,\" \"gallery,\" \"user work,\" \"UGC,\" \"creator showcase,\" \"examples,\" or \"made with [product].\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/showcase/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install showcase-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "showcase-page-generator. When the user wants to create, optimize, or audit a showcase or gallery page for user-generated content. Also use when the user mentions \"showcase,\" \"gallery,\" \"user work,\" \"UGC,\" \"creator showcase,\" \"examples,\" or \"made with [product].\" Platforms: claude_code."} +{"id": "a9137c19720bd217903df2b547c22a4b8d8f0030129a2759101c34f58f1e92df", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "rejection-handler", "description": "Handle App Store rejections, prepare submissions to avoid common rejection reasons, write Resolution Center responses, and navigate the appeal process. Use when user's app was rejected, is preparing f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/app-store/rejection-handler/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "rejection-handler. Handle App Store rejections, prepare submissions to avoid common rejection reasons, write Resolution Center responses, and navigate the appeal process. Use when user's app was rejected, is preparing f Platforms: claude_code."} +{"id": "66723af8696932fc15d9ee0ca7b296c49dd041304cc6fdebd3042526c28a3046", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "cloudkit-sync", "description": "Generate CloudKit sync infrastructure using CKSyncEngine with conflict resolution, sharing, and account monitoring. Use when adding iCloud sync to an iOS/macOS app.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/cloudkit-sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "cloudkit-sync. Generate CloudKit sync infrastructure using CKSyncEngine with conflict resolution, sharing, and account monitoring. Use when adding iCloud sync to an iOS/macOS app. Platforms: claude_code."} +{"id": "35403511799b99a38727a23b905c3c0b1437a6ed553d31eca4f1c0763c761b8f", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-repurpose", "description": "Repurpose blog posts for social media, email, YouTube, Reddit, and LinkedIn. Generates Twitter/X threads, LinkedIn articles, YouTube scripts, Reddit discussion posts, email newsletter excerpts. Adapts tone for each platform. Use when user says \"repurpose\", \"blog repurpose\", \"share blog\", \"social media\", \"twitter thread\", \"linkedin post\", \"youtube script\", \"reddit post\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-repurpose/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-repurpose"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-repurpose. Repurpose blog posts for social media, email, YouTube, Reddit, and LinkedIn. Generates Twitter/X threads, LinkedIn articles, YouTube scripts, Reddit discussion posts, email newsletter excerpts. Adapts tone for each platform. Use when user says \"repurpose\", \"blog repurpose\", \"share blog\", \"social media\", \"twitter thread\", \"linkedin post\", \"youtube script\", \"reddit post\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "264d191230a68eb115dc87eae7059ba974ae26605afb6787d2b05c274d9d6242", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "apple-search-ads", "description": "Apple Search Ads campaign strategy for indie developers \u2014 paid acquisition, keyword bidding, budget planning, and ROAS optimization. Use when user asks about running ads, paid user acquisition, or App", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/app-store/apple-search-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "apple-search-ads. Apple Search Ads campaign strategy for indie developers \u2014 paid acquisition, keyword bidding, budget planning, and ROAS optimization. Use when user asks about running ads, paid user acquisition, or App Platforms: claude_code."} +{"id": "47d8b684eee9fa1ab3f94a996ba6ce5de0c31c4231ec32b307b15b5cecdf9df7", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "community-building", "description": "Build and engage a user community around your indie app. Covers platform selection, building in public strategy, content calendars for solo developers, and converting community members into advocates.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/growth/community-building/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "community-building. Build and engage a user community around your indie app. Covers platform selection, building in public strategy, content calendars for solo developers, and converting community members into advocates. Platforms: claude_code."} +{"id": "54d0755b08daafca6aa1ea503d84f480abeaa8307eee660aed2aa660337fe03e", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "tdd-feature", "description": "Red-green-refactor scaffold for building new features with TDD. Write failing tests first, then implement to pass. Use when building new features test-first.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/testing/tdd-feature/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "tdd-feature. Red-green-refactor scaffold for building new features with TDD. Write failing tests first, then implement to pass. Use when building new features test-first. Platforms: claude_code."} +{"id": "3b87c221731f96c905ada000867756ecaf90cd94a64c1e729a119eb9c629436a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "signup-login-page-generator", "description": "When the user wants to create, optimize, or audit signup and login pages. Also use when the user mentions \"signup page,\" \"login page,\" \"registration page,\" \"auth page,\" \"sign up form,\" \"create account,\" \"student discount at signup,\" or \"auth subdomain.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/signup-login/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install signup-login-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "signup-login-page-generator. When the user wants to create, optimize, or audit signup and login pages. Also use when the user mentions \"signup page,\" \"login page,\" \"registration page,\" \"auth page,\" \"sign up form,\" \"create account,\" \"student discount at signup,\" or \"auth subdomain.\" Platforms: claude_code."} +{"id": "e578d4b7149dafecf8a7113eac6a2d064c35f4e4ab75abb1a8b5d1bd2d45b1df", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "url-slug-generator", "description": "When the user wants to create, optimize, or validate URL slugs for content pages. Also use when the user mentions \"URL slug,\" \"URL path,\" \"blog URL,\" \"article URL,\" \"short URL,\" \"clean slug,\" \"permalink,\" \"slug optimization,\" \"URL structure,\" \"SEO-friendly URL,\" \"create URL slug,\" or \"SEO slug.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/utility/url-slug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install url-slug-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "url-slug-generator. When the user wants to create, optimize, or validate URL slugs for content pages. Also use when the user mentions \"URL slug,\" \"URL path,\" \"blog URL,\" \"article URL,\" \"short URL,\" \"clean slug,\" \"permalink,\" \"slug optimization,\" \"URL structure,\" \"SEO-friendly URL,\" \"create URL slug,\" or \"SEO slug.\" Platforms: claude_code."} +{"id": "989e30cf48c94b15ad89158d109d321bed8cb4ae4eadbeaf4ee51bea542befac", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "state-space-linearization", "description": "Linearizing nonlinear dynamics around operating points for control design.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/r2r-mpc-control/environment/skills/state-space-linearization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "state-space-linearization. Linearizing nonlinear dynamics around operating points for control design. Platforms: claude_code."} +{"id": "3f37a90049bce1319bf4493cf1753c246c75f7ab846d90e7679e5c6d352e3a99", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "context-driven-development", "description": "Use this skill when working with Conductor's context-driven development methodology, managing project context artifacts, or understanding the relationship between product.md, tech-stack.md, and workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/context-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "context-driven-development. Use this skill when working with Conductor's context-driven development methodology, managing project context artifacts, or understanding the relationship between product.md, tech-stack.md, and workfl Platforms: claude_code."} +{"id": "7d75c08f769df91441c65762ca607cb16bfc6a8009df3b24607ac6a1d2f8254d", "repo_url": "https://github.com/timescale/pg-aiguide", "name": "migrate-postgres-tables-to-hypertables", "description": "Use this skill to migrate identified PostgreSQL tables to Timescale/TimescaleDB hypertables with optimal configuration and validation.\n\n**Trigger when user asks to:**\n- Migrate or convert PostgreSQL tables to hypertables\n- Execute hypertable migration with minimal downtime\n- Plan blue-green migration for large tables\n- Validate hypertable migration success\n- Configure compression after migration\n\n**Prerequisites:** Tables already identified as candidates (use find-hypertable-candidates first if needed)\n\n**Keywords:** migrate to hypertable, convert table, Timescale, TimescaleDB, blue-green migration, in-place conversion, create_hypertable, migration validation, compression setup\n\nStep-by-step migration planning including: partition column selection, chunk interval calculation, PK/constraint handling, migration execution (in-place vs blue-green), and performance validation queries.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "ai-coding", "claude-code-plugin", "claude-code-plugins", "claude-code-plugins-marketplace", "claude-marketplace", "claude-plugin", "claude-skills", "docs", "documentation", "mcp", "mcp-server", "postgres", "postgresql", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/timescale/pg-aiguide/blob/main/skills/migrate-postgres-tables-to-hypertables/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install migrate-postgres-tables-to-hypertables"}, "quality": {"stars": 1768, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T15:10:07Z"}, "embedding_text": "migrate-postgres-tables-to-hypertables. Use this skill to migrate identified PostgreSQL tables to Timescale/TimescaleDB hypertables with optimal configuration and validation.\n\n**Trigger when user asks to:**\n- Migrate or convert PostgreSQL tables to hypertables\n- Execute hypertable migration with minimal downtime\n- Plan blue-green migration for large tables\n- Validate hypertable migration success\n- Configure compression after migration\n\n**Prerequisites:** Tables already identified as candidates (use find-hypertable-candidates first if needed)\n\n**Keywords:** migrate to hypertable, convert table, Timescale, TimescaleDB, blue-green migration, in-place conversion, create_hypertable, migration validation, compression setup\n\nStep-by-step migration planning including: partition column selection, chunk interval calculation, PK/constraint handling, migration execution (in-place vs blue-green), and performance validation queries. Categories: ai, ai-agents, ai-coding, claude-code-plugin, claude-code-plugins, claude-code-plugins-marketplace, claude-marketplace, claude-plugin, claude-skills, docs, documentation, mcp, mcp-server, postgres, postgresql, skills. Platforms: claude_code."} +{"id": "6cefddf9a2abc812cf7279860b955ffb9ce1616e10506d21338719a5919eba85", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-health-bot", "description": "Expert knowledge for Azure Health Bot development including best practices, decision making, architecture & design patterns, security, configuration, and integrations & coding patterns. Use when confi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-health-bot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-health-bot. Expert knowledge for Azure Health Bot development including best practices, decision making, architecture & design patterns, security, configuration, and integrations & coding patterns. Use when confi Platforms: claude_code."} +{"id": "f4d25bdb4cb8af21cc3cd22134e187451b0eb4d5c516e57eee471c74c600b124", "repo_url": "https://github.com/gerstep/cybos", "name": "browse", "description": "Discover trending topics and content ideas from social feeds for post creation. Use when scanning Twitter timeline or finding content inspiration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gerstep/cybos/blob/main/.claude/skills/Browse/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T09:47:18Z"}, "embedding_text": "browse. Discover trending topics and content ideas from social feeds for post creation. Use when scanning Twitter timeline or finding content inspiration. Platforms: claude_code."} +{"id": "a8f815224930f9261e13db864d4b682e951a75e286784aad468923b5223be62b", "repo_url": "https://github.com/heroui-inc/heroui", "name": "heroui-migration", "description": "HeroUI v2 to v3 migration guide for agents. Use when migrating HeroUI v2 apps to v3, upgrading components, or accessing migration documentation. Keywords: HeroUI migration, v2 to v3, migration guide,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heroui-inc/heroui/blob/v3/skills/heroui-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29676, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:02Z"}, "embedding_text": "heroui-migration. HeroUI v2 to v3 migration guide for agents. Use when migrating HeroUI v2 apps to v3, upgrading components, or accessing migration documentation. Keywords: HeroUI migration, v2 to v3, migration guide, Platforms: claude_code."} +{"id": "12a5b41854bdf5e5e1b17c5582241ea57ebeeba0604ba250ff952d79a91c3475", "repo_url": "https://github.com/inferencesh/skills", "name": "tools-ui", "description": "Tool lifecycle UI components for React/Next.js from ui.inference.sh.\nDisplay tool calls: pending, progress, approval required, results.\nCapabilities: tool status, progress indicators, approval flows,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inferencesh/skills/blob/main/ui/tools-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 555, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "tools-ui. Tool lifecycle UI components for React/Next.js from ui.inference.sh.\nDisplay tool calls: pending, progress, approval required, results.\nCapabilities: tool status, progress indicators, approval flows, Platforms: claude_code."} +{"id": "b170c0379b18c2a5c982d91c15d60140259d4d092b1e7a96600ecd68540fdbf4", "repo_url": "https://github.com/gerstep/cybos", "name": "gtd", "description": "Autonomous task execution from GTD.md items. Use when processing GTD tasks, call prep, outreach, or podcast preparation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gerstep/cybos/blob/main/.claude/skills/GTD/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T09:47:18Z"}, "embedding_text": "gtd. Autonomous task execution from GTD.md items. Use when processing GTD tasks, call prep, outreach, or podcast preparation. Platforms: claude_code."} +{"id": "b18cd2a5829b8ad97b09caabdfd4c55929a6d95e2e4ce54df8965689c6ac309a", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "receiving-code-review", "description": "Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/receiving-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "receiving-code-review. Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative Platforms: claude_code."} +{"id": "5e747c28b433d6c38b5e7ec08a742bf3c04a319a2771466b27f0b2e8d288c210", "repo_url": "https://github.com/ldayton/dippy", "name": "check-coverage", "description": "Ensure comprehensive test coverage for a CLI handler. Use when adding a new command or auditing existing handler coverage.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ldayton/dippy/blob/main/.claude/skills/check-coverage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 239, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T10:38:05Z"}, "embedding_text": "check-coverage. Ensure comprehensive test coverage for a CLI handler. Use when adding a new command or auditing existing handler coverage. Platforms: claude_code."} +{"id": "0578d23364f92f7c3cda051f420b21a9943a33cadc5ca7a7ebad222b5f178c44", "repo_url": "https://github.com/az9713/ai-co-writing-claude-skills", "name": "sales-email-sequence", "description": "Create high-converting email sequences for sales, launches, and nurture campaigns. Use when the user needs email sequences, drip campaigns, launch emails, or automated email workflows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/az9713/ai-co-writing-claude-skills/blob/main/.claude/skills/sales-email-sequence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T07:39:41Z"}, "embedding_text": "sales-email-sequence. Create high-converting email sequences for sales, launches, and nurture campaigns. Use when the user needs email sequences, drip campaigns, launch emails, or automated email workflows. Platforms: claude_code."} +{"id": "ffe6b389ad74ed82d21300b46785625ac87f9117722124b94e73ac194c560e4c", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "functional-core-imperative-shell", "description": "Use when writing or refactoring code, before creating files - enforces separation of pure business logic (Functional Core) from side effects (Imperative Shell) using FCIS pattern with mandatory file c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-basic-agents/skills/doing-a-simple-two-stage-fanout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "functional-core-imperative-shell. Use when writing or refactoring code, before creating files - enforces separation of pure business logic (Functional Core) from side effects (Imperative Shell) using FCIS pattern with mandatory file c Platforms: claude_code."} +{"id": "afbb34bb39b38ee6f64786ec5ba60d3410e487faa5ba517a2d8efd42b15aa099", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "top-banner-generator", "description": "When the user wants to add, optimize, or audit a top announcement bar or sticky banner. Also use when the user mentions \"announcement bar,\" \"top banner,\" \"sticky bar,\" \"promo banner,\" \"discount banner,\" \"student discount banner,\" \"header banner,\" \"announcement bar design,\" \"sticky header,\" \"promo bar,\" \"urgency banner,\" or \"lead capture bar.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/utility/top-banner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install top-banner-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "top-banner-generator. When the user wants to add, optimize, or audit a top announcement bar or sticky banner. Also use when the user mentions \"announcement bar,\" \"top banner,\" \"sticky bar,\" \"promo banner,\" \"discount banner,\" \"student discount banner,\" \"header banner,\" \"announcement bar design,\" \"sticky header,\" \"promo bar,\" \"urgency banner,\" or \"lead capture bar.\" Platforms: claude_code."} +{"id": "d5d9f00c3510845467bb6c513b0fd8628c504a9ebc7b37a6faae693bc27e743f", "repo_url": "https://github.com/paid-tw/skills", "name": "newebpay", "description": "Provides NewebPay integration overview and guides users to the appropriate skill. Use when starting NewebPay integration, setting up environment, or needing general guidance about \u85cd\u65b0\u91d1\u6d41.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paid-tw/skills/blob/main/plugins/newebpay/skills/newebpay-checkout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 260, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T01:10:18Z"}, "embedding_text": "newebpay. Provides NewebPay integration overview and guides users to the appropriate skill. Use when starting NewebPay integration, setting up environment, or needing general guidance about \u85cd\u65b0\u91d1\u6d41. Platforms: claude_code."} +{"id": "b47d25cd9d232c7b905adfe44a471253525742ab837532c2e189497939d3f959", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "firefox-browser", "description": "Control the user's Firefox browser with their logins and cookies intact. Use when you need to browse websites as the user, interact with authenticated pages, fill forms, click buttons, take screenshots, or get page content. (user)", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/1jehuang/firefox-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install firefox-browser"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "firefox-browser. Control the user's Firefox browser with their logins and cookies intact. Use when you need to browse websites as the user, interact with authenticated pages, fill forms, click buttons, take screenshots, or get page content. (user) Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "1196506fe771aba3bde3c874c04bca83a2e1abd3df90263800aecefe48358547", "repo_url": "https://github.com/anysoftkeyboard/anysoftkeyboard", "name": "create-unit-test", "description": "Create and run unit tests following the project's architecture and guidelines (Robolectric, naming, location).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anysoftkeyboard/anysoftkeyboard/blob/main/.claude/skills/create-unit-test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3324, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:36:12Z"}, "embedding_text": "create-unit-test. Create and run unit tests following the project's architecture and guidelines (Robolectric, naming, location). Platforms: claude_code."} +{"id": "2ca875a192b89c3ae4757ba93ac64dcc04aa758fc62846520a757596f5e04c20", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "features-page-generator", "description": "When the user wants to create, optimize, or audit features page content. Also use when the user mentions \"features page,\" \"product features,\" \"capabilities,\" \"what it does,\" \"feature list,\" \"feature comparison,\" \"product capabilities,\" or \"features section.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/features/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install features-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "features-page-generator. When the user wants to create, optimize, or audit features page content. Also use when the user mentions \"features page,\" \"product features,\" \"capabilities,\" \"what it does,\" \"feature list,\" \"feature comparison,\" \"product capabilities,\" or \"features section.\" Platforms: claude_code."} +{"id": "9dda7692fa0987ce9e4a953d9d811981b9feffc02c1d60b238b905633215b018", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "design-engineering", "description": "Stand up a Design Engineering practice (hybrid design+engineering) by producing a Design Engineering Execution Pack: charter, prototype\u2192production workflow, design-to-code contract, component delivery", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/design-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "design-engineering. Stand up a Design Engineering practice (hybrid design+engineering) by producing a Design Engineering Execution Pack: charter, prototype\u2192production workflow, design-to-code contract, component delivery Platforms: claude_code."} +{"id": "00cd6acbe50f7ba753ca7b12c660a8e9fdb69cc99d6721ccbbde75a88ae81561", "repo_url": "https://github.com/elevenlabs/skills", "name": "setup-api-key", "description": "Guides users through the process of setting up an ElevenLabs API key for use with ElevenLabs MCP tools. Use when the user needs to configure an ElevenLabs API key, when ElevenLabs tools fail due to mi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/elevenlabs/skills/blob/main/setup-api-key/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 344, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T23:56:04Z"}, "embedding_text": "setup-api-key. Guides users through the process of setting up an ElevenLabs API key for use with ElevenLabs MCP tools. Use when the user needs to configure an ElevenLabs API key, when ElevenLabs tools fail due to mi Platforms: claude_code."} +{"id": "bf546006fd8eda0335cf221c45ff955457023f880fc7c211d57e378b4dce3350", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "hk", "description": "Use when hk.pkl exists in project, hook output shows hk running, or working with git hooks in hk-managed projects. Also use when setting up, configuring, or troubleshooting hk git hooks.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/hk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hk"}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "hk. Use when hk.pkl exists in project, hook output shows hk running, or working with git hooks in hk-managed projects. Also use when setting up, configuring, or troubleshooting hk git hooks. Platforms: claude_code."} +{"id": "eeb188a48c79d28a954f70d0eaa694712720275ac59a002b6f06547fbc5061ef", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "agno", "description": "Agno AI agent framework. Use for building multi-agent systems, AgentOS runtime, MCP server integration, and agentic AI development.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/gno/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "agno. Agno AI agent framework. Use for building multi-agent systems, AgentOS runtime, MCP server integration, and agentic AI development. Platforms: claude_code."} +{"id": "b26111565f01e0a3183bd4a3dce48a7df44e22d9116491438acd63b8fe78a38f", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "flutter-app-architecture", "description": "Provides best practices for Flutter app architecture, including layered architecture, data flow, state management patterns, and extensibility guidelines.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/flutter-app-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "flutter-app-architecture. Provides best practices for Flutter app architecture, including layered architecture, data flow, state management patterns, and extensibility guidelines. Platforms: claude_code."} +{"id": "5246d774d5b92f8fd6a147ee738a31b1cb50362c2af1a36b60e3272e52c7b37f", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "managing-tech-debt", "description": "Help users manage technical debt strategically. Use when someone is dealing with legacy code, planning refactoring work, deciding between rewrites vs. incremental fixes, trying to get buy-in for tech", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/managing-tech-debt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "managing-tech-debt. Help users manage technical debt strategically. Use when someone is dealing with legacy code, planning refactoring work, deciding between rewrites vs. incremental fixes, trying to get buy-in for tech Platforms: claude_code."} +{"id": "9136bc342cb796793430bbb3d05c3ef795f8e3e167622e8d5f8961b64d76e579", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "gepetto", "description": "Creates detailed, sectionized implementation plans through research, stakeholder interviews, and multi-LLM review. Use when planning features that need thorough pre-implementation analysis.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/p/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "gepetto. Creates detailed, sectionized implementation plans through research, stakeholder interviews, and multi-LLM review. Use when planning features that need thorough pre-implementation analysis. Platforms: claude_code."} +{"id": "f1d269ff83f78380640cb00f6a5a1e544f8d9bea78c4849d7da5a433eee608a0", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "index", "description": "Rebuild FTS5 full-text search index or FAISS semantic vector index. Use when the user wants to update or rebuild search indexes after metadata changes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/index/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "index. Rebuild FTS5 full-text search index or FAISS semantic vector index. Use when the user wants to update or rebuild search indexes after metadata changes. Platforms: claude_code."} +{"id": "6256fb77e943387cb897a96cff8245bd88cd1fe120dee4b934f390d5f0197c41", "repo_url": "https://github.com/k-dense-ai/claude-scientific-skills", "name": "adaptyv", "description": "Cloud laboratory platform for automated protein testing and validation. Use when designing proteins and needing experimental validation including binding assays, expression testing, thermostability me", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/k-dense-ai/claude-scientific-skills/blob/main/skills/adaptyv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28990, "skillhub_rank": "A", "skillhub_score": 8.0, "last_updated": "2026-06-15T23:48:13Z"}, "embedding_text": "adaptyv. Cloud laboratory platform for automated protein testing and validation. Use when designing proteins and needing experimental validation including binding assays, expression testing, thermostability me Platforms: claude_code."} +{"id": "cc2f6ce8c62033e9a566c074adf9dc15553bc10b7280e9fe8a4a2f6b92ac931f", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "title-tag", "description": "When the user wants to optimize the title tag, page title, or SERP title. Also use when the user mentions \"title tag,\" \"meta title,\" \"page title,\" \"SEO title,\" \"SERP title,\" \"browser tab title,\" \"title optimization,\" \"headline for search,\" \"title too long,\" \"title tag length,\" \"duplicate title tags,\" or \"optimize title for CTR.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/title/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install title-tag"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "title-tag. When the user wants to optimize the title tag, page title, or SERP title. Also use when the user mentions \"title tag,\" \"meta title,\" \"page title,\" \"SEO title,\" \"SERP title,\" \"browser tab title,\" \"title optimization,\" \"headline for search,\" \"title too long,\" \"title tag length,\" \"duplicate title tags,\" or \"optimize title for CTR.\" Platforms: claude_code."} +{"id": "bb12a3cee0293a23c8009c011a907bab6f2eaac7278d686311e8d65b77802ea4", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-technical", "description": "Technical SEO audit across 9 categories: crawlability, indexability, security, URL structure, mobile, Core Web Vitals, structured data, JavaScript rendering, and IndexNow protocol. Use when user says \"technical SEO\", \"crawl issues\", \"robots.txt\", \"Core Web Vitals\", \"site speed\", or \"security headers\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-technical/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-technical"}, "quality": {"stars": 9433, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T17:30:25Z"}, "embedding_text": "seo-technical. Technical SEO audit across 9 categories: crawlability, indexability, security, URL structure, mobile, Core Web Vitals, structured data, JavaScript rendering, and IndexNow protocol. Use when user says \"technical SEO\", \"crawl issues\", \"robots.txt\", \"Core Web Vitals\", \"site speed\", or \"security headers\". Platforms: claude_code."} +{"id": "22b356539a3714306ef337d96682347d4636ee07ef64a1c059ac39d71f53ea2a", "repo_url": "https://github.com/shanraisshan/claude-code-best-practice", "name": "time-svg-creator", "description": "Creates an SVG time card showing the current time for Dubai. Writes the SVG to agent-teams/output/dubai-time.svg and updates agent-teams/output/output.md.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shanraisshan/claude-code-best-practice/blob/main/agent-teams/.claude/skills/time-svg-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 58523, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:07:06Z"}, "embedding_text": "time-svg-creator. Creates an SVG time card showing the current time for Dubai. Writes the SVG to agent-teams/output/dubai-time.svg and updates agent-teams/output/output.md. Platforms: claude_code."} +{"id": "25bfd310b9cef0c4c1e48bf9c362900a5bb126fea008ed6217a449eb832dacc4", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "codebase-visualizer", "description": "Generate an interactive tree visualization of your codebase. Use when exploring a new repo or understanding project structure.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/04-codebase-visualizer/.claude/skills/codebase-visualizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codebase-visualizer"}, "quality": {"stars": 863, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T11:11:17Z"}, "embedding_text": "codebase-visualizer. Generate an interactive tree visualization of your codebase. Use when exploring a new repo or understanding project structure. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} +{"id": "90b6c7dcbcb2dbe2ada414c89519a9dc3f064d9a55c8ab4daed13016326381a7", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "ingest", "description": "Ingest papers, patents, and documents from inbox into the knowledge base. Runs the pipeline to convert PDFs via MinerU (auto-splits long PDFs), Office files (DOCX/XLSX/PPTX) via MarkItDown, extract me", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/ingest-link/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "ingest. Ingest papers, patents, and documents from inbox into the knowledge base. Runs the pipeline to convert PDFs via MinerU (auto-splits long PDFs), Office files (DOCX/XLSX/PPTX) via MarkItDown, extract me Platforms: claude_code."} +{"id": "937a9d2e73a9b7b0a1a86fd54c83fb9ac895e0c246381369357050780d320b2d", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "statute-analysis-rafal-fryc", "description": "Guide for reading, interpreting, and applying statutes, regulations, and rules in legal and compliance contexts. Use when the user asks about (1) how to read and interpret statutes, regulations, or rules, (2) statutory interpretation methods and canons of construction, (3) understanding legislative intent, (4) applying statutes to specific legal situations, (5) extracting requirements from legal text, (6) distinguishing between different types of legal requirements, or (7) cross-jurisdictional compliance analysis.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/statute-analysis-rafal-fryc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install statute-analysis-rafal-fryc"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "statute-analysis-rafal-fryc. Guide for reading, interpreting, and applying statutes, regulations, and rules in legal and compliance contexts. Use when the user asks about (1) how to read and interpret statutes, regulations, or rules, (2) statutory interpretation methods and canons of construction, (3) understanding legislative intent, (4) applying statutes to specific legal situations, (5) extracting requirements from legal text, (6) distinguishing between different types of legal requirements, or (7) cross-jurisdictional compliance analysis. Platforms: claude_code."} +{"id": "697c861e9691034999a61f96a73bc938973d15d37905cdbbf04d2d7097a94c4b", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "design", "description": "Design system skills for modern Apple platform UI including Liquid Glass, animations, and visual design patterns. Use when implementing new design language features.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "design. Design system skills for modern Apple platform UI including Liquid Glass, animations, and visual design patterns. Use when implementing new design language features. Platforms: claude_code."} +{"id": "cbdcdd81d04db92715e9e05a4994446f490f7b15e2b06d463eaa5f2a6d6330f3", "repo_url": "https://github.com/johnrogers/claude-swift-engineering", "name": "swift-testing", "description": "Use when writing tests with Swift Testing (@Test,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnrogers/claude-swift-engineering/blob/main/plugins/swift-engineering/skills/swift-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 212, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T05:24:16Z"}, "embedding_text": "swift-testing. Use when writing tests with Swift Testing (@Test, Platforms: claude_code."} +{"id": "f4723b3c2800f83b5d133c328ae8b6f3e0c63a99e4b71e737d0b71735ffe643a", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "startup-pivoting", "description": "Help users decide when and how to pivot their startup. Use when someone is questioning their current direction, seeing poor traction, considering a major strategy change, or stuck in the pre-PMF stage", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/startup-pivoting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "startup-pivoting. Help users decide when and how to pivot their startup. Use when someone is questioning their current direction, seeing poor traction, considering a major strategy change, or stuck in the pre-PMF stage Platforms: claude_code."} +{"id": "303221d5d8a88ccee55ecb461e64280f4228c8bbfd269a18a10c2c745ec018ef", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "product-operations", "description": "Help users build and scale product operations functions. Use when someone is scaling a product team, struggling with cross-functional coordination, needs to standardize product processes, or wants to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/product-operations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "product-operations. Help users build and scale product operations functions. Use when someone is scaling a product team, struggling with cross-functional coordination, needs to standardize product processes, or wants to Platforms: claude_code."} +{"id": "520c9607c74c6a37772c2e5bb082401cbd581b450278bf395502d64315af8b04", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "release-review", "description": "Senior developer-level release review for macOS/iOS apps. Identifies security, privacy, UX, and distribution issues with actionable fixes. Use when preparing an app for release, want a critical review", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/release-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "release-review. Senior developer-level release review for macOS/iOS apps. Identifies security, privacy, UX, and distribution issues with actionable fixes. Use when preparing an app for release, want a critical review Platforms: claude_code."} +{"id": "c30fadc7f9d2e900e2afc6dc8840a110ab3644baa82bfb36e11116f45cba45cd", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "app-store", "description": "App Store optimization skills for descriptions, screenshots, keywords, and review responses. Use when user needs help with App Store presence, ASO, or customer communication.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/app-store/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "app-store. App Store optimization skills for descriptions, screenshots, keywords, and review responses. Use when user needs help with App Store presence, ASO, or customer communication. Platforms: claude_code."} +{"id": "9cc54ee02140d5771908d6674d9e6dbc03240a1df094a459fb093f67fb1e016d", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "market-research", "description": "Deep market analysis for iOS/macOS apps including market sizing (TAM/SAM/SOM), growth trends, market maturity, entry barriers, distribution channels, and revenue potential. Use when user asks for mark", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/product/market-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "market-research. Deep market analysis for iOS/macOS apps including market sizing (TAM/SAM/SOM), growth trends, market maturity, entry barriers, distribution channels, and revenue potential. Use when user asks for mark Platforms: claude_code."} +{"id": "57f92a4f4147cf92dcfca89f12e29d929907ea8855821cb0d790ac117d46cf49", "repo_url": "https://github.com/redisearch/redisearch", "name": "port-c-module", "description": "Guide for porting a C module to Rust. Use this when starting to port a C module to Rust.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/port-c-module/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "port-c-module. Guide for porting a C module to Rust. Use this when starting to port a C module to Rust. Platforms: claude_code."} +{"id": "9caafc7c4d6523455793a7a13f36109baed202db1d981816c824096247c9519c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "public-relations", "description": "When the user wants to plan PR, write a press release, or manage media relations. Also use when the user mentions \"public relations,\" \"PR,\" \"press release,\" \"media relations,\" \"news release,\" \"journalist,\" \"media coverage,\" \"product announcement,\" or \"earned media.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/public-relations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install public-relations"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "public-relations. When the user wants to plan PR, write a press release, or manage media relations. Also use when the user mentions \"public relations,\" \"PR,\" \"press release,\" \"media relations,\" \"news release,\" \"journalist,\" \"media coverage,\" \"product announcement,\" or \"earned media.\" Platforms: claude_code."} +{"id": "a9c9a08237d3f351536e9a3a12bb9670e0dc2b75937c7980e89fadd4360b70b4", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "pinterest-posts", "description": "When the user wants to create Pinterest Pins, optimize Pin descriptions, or grow Pinterest presence. Also use when the user mentions \"Pinterest,\" \"Pin,\" \"Pinterest SEO,\" \"Pinterest description,\" \"Pinterest board,\" or \"Pinterest marketing.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/pinterest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pinterest-posts"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "pinterest-posts. When the user wants to create Pinterest Pins, optimize Pin descriptions, or grow Pinterest presence. Also use when the user mentions \"Pinterest,\" \"Pin,\" \"Pinterest SEO,\" \"Pinterest description,\" \"Pinterest board,\" or \"Pinterest marketing.\" Platforms: claude_code."} +{"id": "111a87bb176a865593eb6aca2699d7e9853633c77f5963a1ccecdfdabdcd2d3e", "repo_url": "https://github.com/xuiltul/animaworks", "name": "tool-creator", "description": "Meta-skill for creating AnimaWorks Python tool modules with correct interfaces. Provides procedure for personal tools (animas/{name}/tools/), shared tools (common_tools/), ExternalToolDispatcher integ", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xuiltul/animaworks/blob/main/templates/en/common_skills/tool-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 241, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:10:59Z"}, "embedding_text": "tool-creator. Meta-skill for creating AnimaWorks Python tool modules with correct interfaces. Provides procedure for personal tools (animas/{name}/tools/), shared tools (common_tools/), ExternalToolDispatcher integ Platforms: claude_code."} +{"id": "716d03cc108de2b5c0ab477ff5c647b4b1fc953f88e04097ebeedc48cf44d0db", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "exp-driven-dev", "description": "Builds features with A/B testing in mind using Ronny Kohavi's frameworks and Netflix/Airbnb experimentation culture. Use when implementing feature flags, choosing metrics, designing experiments, or bu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/exp-driven-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "exp-driven-dev. Builds features with A/B testing in mind using Ronny Kohavi's frameworks and Netflix/Airbnb experimentation culture. Use when implementing feature flags, choosing metrics, designing experiments, or bu Platforms: claude_code."} +{"id": "d7ceeac84d1b8478d2593286a91806576fce1e08530b75d544d264af755f2e71", "repo_url": "https://github.com/qverisai/qverisai", "name": "qveris", "description": "Search for and execute third-party API tools via the QVeris MCP server, then generate production code that calls the QVeris REST API for tasks like fetching weather data, stock prices, or public datas", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/qverisai/qverisai/blob/main/skills/qveris-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 234, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T09:18:11Z"}, "embedding_text": "qveris. Search for and execute third-party API tools via the QVeris MCP server, then generate production code that calls the QVeris REST API for tasks like fetching weather data, stock prices, or public datas Platforms: claude_code."} +{"id": "fcef069bc63730efbfe891835ee5e35bd4ad6cb6ea62bf6c7610fd30d3e8cafb", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-resource-visualizer", "description": "Analyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources. USE FOR: create architecture diagram, visualize Azure resources, show resource relationships, generate Mermaid diagram, analyze resource group, diagram my resources, architecture visualization, resource topology, map Azure infrastructure DO NOT USE FOR: creating/modifying resources (use azure-deploy), security scanning (use azure-security), performance troubleshooting (use azure-diagnostics), code generation (use relevant service skill)", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-resource-visualizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-resource-visualizer"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-resource-visualizer. Analyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources. USE FOR: create architecture diagram, visualize Azure resources, show resource relationships, generate Mermaid diagram, analyze resource group, diagram my resources, architecture visualization, resource topology, map Azure infrastructure DO NOT USE FOR: creating/modifying resources (use azure-deploy), security scanning (use azure-security), performance troubleshooting (use azure-diagnostics), code generation (use relevant service skill) Platforms: claude_code."} +{"id": "63f6302ed128b26d9fc3f2a0ba4545931579ea57d85b3987626bfa979988ab77", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "privacy-manifests", "description": "Privacy manifest (PrivacyInfo.xcprivacy) implementation including required reason APIs, tracking domains, third-party SDK declarations, and App Tracking Transparency. Use when preparing apps for App S", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/security/privacy-manifests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "privacy-manifests. Privacy manifest (PrivacyInfo.xcprivacy) implementation including required reason APIs, tracking domains, third-party SDK declarations, and App Tracking Transparency. Use when preparing apps for App S Platforms: claude_code."} +{"id": "1e140245f743291ceb8dd4719eb92f85b357ad256dea17c8cf06566734f3ef53", "repo_url": "https://github.com/affaan-m/everything-claude-code", "name": "clickhouse-io", "description": "ClickHouse database patterns, query optimization, analytics, and data engineering best practices for high-performance analytical workloads.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/affaan-m/everything-claude-code/blob/main/docs/ja-JP/skills/ck/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 219443, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:55:54Z"}, "embedding_text": "clickhouse-io. ClickHouse database patterns, query optimization, analytics, and data engineering best practices for high-performance analytical workloads. Platforms: claude_code."} +{"id": "6f6d91cc9e1f2d10ddca3ba6a9e50d71ac7056197d333de3a4eebacf08a2002a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "analytics-tracking", "description": "When the user wants to set up, audit, or optimize analytics tracking (GA4, events, conversions). Also use when the user mentions \"Google Analytics,\" \"GA4,\" \"event tracking,\" \"conversions,\" \"attribution model,\" \"gtag,\" \"data layer,\" \"GA4 setup,\" \"conversion tracking,\" \"event setup,\" \"User ID tracking,\" or \"CTA attribution.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/analytics/tracking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install analytics-tracking"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "analytics-tracking. When the user wants to set up, audit, or optimize analytics tracking (GA4, events, conversions). Also use when the user mentions \"Google Analytics,\" \"GA4,\" \"event tracking,\" \"conversions,\" \"attribution model,\" \"gtag,\" \"data layer,\" \"GA4 setup,\" \"conversion tracking,\" \"event setup,\" \"User ID tracking,\" or \"CTA attribution.\" Platforms: claude_code."} +{"id": "242a5218f5fd2ccd20d053b5143bf5d34b9657677c4d5f517f47796f2373fbdd", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "modular-arithmetic", "description": "Problem-solving strategies for modular arithmetic in graph number theory", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/graph-number-theory/modular-arithmetic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install modular-arithmetic"}, "quality": {"stars": 3823, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "modular-arithmetic. Problem-solving strategies for modular arithmetic in graph number theory Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} +{"id": "825122b9f64229dcd1441b749b45ed1a7bd99dd7a8452e911c141222547793f0", "repo_url": "https://github.com/brianlovin/claude-config", "name": "chrome-webstore-release-blueprint", "description": "Guide a user end-to-end through setting up Chrome Web Store API release automation in any repository. Use when asked to walk someone through OAuth/CWS credential setup, refresh token creation, local/C", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianlovin/claude-config/blob/main/skills/chrome-webstore-release-blueprint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 353, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T17:52:51Z"}, "embedding_text": "chrome-webstore-release-blueprint. Guide a user end-to-end through setting up Chrome Web Store API release automation in any repository. Use when asked to walk someone through OAuth/CWS credential setup, refresh token creation, local/C Platforms: claude_code."} +{"id": "97329589b6c8632946e0f598ebaec72511637bf8edfe2453bd6c63f049116f9c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "youtube-seo", "description": "When the user wants to optimize YouTube videos for search, create video descriptions, or improve channel visibility. Also use when the user mentions \"YouTube SEO,\" \"YouTube description,\" \"YouTube tags,\" \"YouTube thumbnail,\" \"YouTube title,\" \"YouTube channel,\" or \"video SEO.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/youtube/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-seo"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "youtube-seo. When the user wants to optimize YouTube videos for search, create video descriptions, or improve channel visibility. Also use when the user mentions \"YouTube SEO,\" \"YouTube description,\" \"YouTube tags,\" \"YouTube thumbnail,\" \"YouTube title,\" \"YouTube channel,\" or \"video SEO.\" Platforms: claude_code."} +{"id": "911ed7d48c42efc2fa4d65874a80cd855b5564bb2ec053a932ac5817d7edc485", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "coding-guidelines", "description": "Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, modifying, or reviewing code \u2014 implementation tasks, code changes, refactoring, bug fixes, or feature development. Do NOT use for architecture design, documentation, or non-code tasks.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(development)/coding-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coding-guidelines"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "coding-guidelines. Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, modifying, or reviewing code \u2014 implementation tasks, code changes, refactoring, bug fixes, or feature development. Do NOT use for architecture design, documentation, or non-code tasks. Platforms: claude_code."} +{"id": "7193809e2943e2ca963d36bb900ab47627ec0347d5c4dced04160350ae4dbf88", "repo_url": "https://github.com/gadievron/raptor", "name": "Function Call Tracing", "description": "Instrument C/C++ with -finstrument-functions for execution tracing and Perfetto visualization", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gadievron/raptor/blob/main/.claude/skills/code-understanding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3032, "skillhub_rank": "A", "skillhub_score": 7.7, "last_updated": "2026-06-22T04:38:06Z"}, "embedding_text": "Function Call Tracing. Instrument C/C++ with -finstrument-functions for execution tracing and Perfetto visualization Platforms: claude_code."} +{"id": "3f7df9878112ce4b6290bab6edca9b600e96d993a4adb0345ae40e9b5348901d", "repo_url": "https://github.com/jjmartres/opencode", "name": "project-docs", "description": "Generate comprehensive, professional project documentation structures including README, ARCHITECTURE, USER_GUIDE, DEVELOPER_GUIDE, and CONTRIBUTING files. Use when the user requests project documentat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jjmartres/opencode/blob/main/opencode/skills/project-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-20T10:48:45Z"}, "embedding_text": "project-docs. Generate comprehensive, professional project documentation structures including README, ARCHITECTURE, USER_GUIDE, DEVELOPER_GUIDE, and CONTRIBUTING files. Use when the user requests project documentat Platforms: claude_code."} +{"id": "dc90364601105b3c4f499bc9e52b66b28790d56788e2eca7dd7d17a643cec72e", "repo_url": "https://github.com/redisearch/redisearch", "name": "check-rust-coverage", "description": "Check which Rust lines are not covered by Rust tests. Use this when you developed new Rust code and want to ensure it is tested.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/check-rust-coverage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "check-rust-coverage. Check which Rust lines are not covered by Rust tests. Use this when you developed new Rust code and want to ensure it is tested. Platforms: claude_code."} +{"id": "0b2a70a1a21678f8538be1931cb89e9ea65b42ef2646bd9e98e25434c9b9291a", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "linear", "description": "Manage Linear issues, projects, and teams via the GraphQL API. Create, update, search, and organize issues. Uses API key auth (no OAuth needed). All operations via curl \u2014 no dependencies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/autonomous-ai-agents/antigravity-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "linear. Manage Linear issues, projects, and teams via the GraphQL API. Create, update, search, and organize issues. Uses API key auth (no OAuth needed). All operations via curl \u2014 no dependencies. Platforms: linux, macos, windows."} +{"id": "031d897e568be12149362df031ab31f458dac85cbc1606ce4b291d51a85ae216", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "defense-in-depth", "description": "Use when invalid data causes failures deep in execution - validates at every layer data passes through to make bugs structurally impossible rather than temporarily fixed", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-house-style/skills/defense-in-depth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "defense-in-depth. Use when invalid data causes failures deep in execution - validates at every layer data passes through to make bugs structurally impossible rather than temporarily fixed Platforms: claude_code."} +{"id": "29249fcc20db50a4aaa3412ef23fdd43894c8ff152f56c6aeb7b861a6647ea9a", "repo_url": "https://github.com/shpigford/chops", "name": "setup", "description": "Get a new developer up and running with the Chops codebase \u2014 prerequisites, build, architecture, and common tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shpigford/chops/blob/main/.claude/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1422, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-29T00:33:16Z"}, "embedding_text": "setup. Get a new developer up and running with the Chops codebase \u2014 prerequisites, build, architecture, and common tasks. Platforms: claude_code."} +{"id": "0658379a12e7bf5afedee8b21be3609a6ead896c86d756ad132d1960fabd8084", "repo_url": "https://github.com/yizhiyanhua-ai/zimage-skill", "name": "zimage-skill", "description": "Generate images using ModelScope Z-Image-Turbo API. Use when user asks to generate, create, or make images, pictures, or illustrations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yizhiyanhua-ai/zimage-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T13:41:30Z"}, "embedding_text": "zimage-skill. Generate images using ModelScope Z-Image-Turbo API. Use when user asks to generate, create, or make images, pictures, or illustrations. Platforms: claude_code."} +{"id": "4210917ffceda9ae20033dfcf4a108d597a8dd7cba5e67c8ed04a90fd2296b99", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "social-media-content-repurposer", "description": "Convert content between platforms (blog to Twitter thread, article to LinkedIn post, etc.). Optimize for each platform's format, tone, and best practices. Use when user wants to adapt content for diff", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/content-repurposer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "social-media-content-repurposer. Convert content between platforms (blog to Twitter thread, article to LinkedIn post, etc.). Optimize for each platform's format, tone, and best practices. Use when user wants to adapt content for diff Platforms: claude_code."} +{"id": "d7f79c28883770c70227001c36b345b3f397f20e79992c5e2e504eb8cc2e719e", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "image-loading", "description": "Generates an image loading pipeline with memory/disk caching, deduplication, and a CachedAsyncImage SwiftUI view. Use when user wants image caching, lazy image loading, or a replacement for AsyncImage", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/image-loading/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "image-loading. Generates an image loading pipeline with memory/disk caching, deduplication, and a CachedAsyncImage SwiftUI view. Use when user wants image caching, lazy image loading, or a replacement for AsyncImage Platforms: claude_code."} +{"id": "4f6dc1d64ee752b0e70e470f70deb710143799cf3b9b6ce2c136700069c7b8b9", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "subscription-lifecycle", "description": "Generates StoreKit 2 subscription lifecycle management \u2014 grace periods, billing retry, offer codes, win-back offers, upgrade/downgrade paths, and subscription status monitoring. Use when user needs po", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/subscription-lifecycle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "subscription-lifecycle. Generates StoreKit 2 subscription lifecycle management \u2014 grace periods, billing retry, offer codes, win-back offers, upgrade/downgrade paths, and subscription status monitoring. Use when user needs po Platforms: claude_code."} +{"id": "70bbcd72a57c2fccad47e0fc5428a5718557091b0be0981b8ec6278a07a65f89", "repo_url": "https://github.com/htdt/godogen", "name": "godogen", "description": "This skill should be used when the user asks to \"make a game\", \"build a game\", \"generate a game\", or wants to generate or update a complete Godot game from a natural language description.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/htdt/godogen/blob/master/babylon/skills/godogen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3570, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T20:12:33Z"}, "embedding_text": "godogen. This skill should be used when the user asks to \"make a game\", \"build a game\", \"generate a game\", or wants to generate or update a complete Godot game from a natural language description. Platforms: claude_code."} +{"id": "c14b77af16b3c5a3ff428cc7182d1e44187fe3e031f2bcae40df7bed34bf31eb", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "verification-before-completion", "description": "Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-plan-and-execute/skills/verification-before-completion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "verification-before-completion. Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence Platforms: claude_code."} +{"id": "43ebbf53c7aa082d8a65bcc06e00382730cc4b5810a940174c5494bb7de7c76a", "repo_url": "https://github.com/redisearch/redisearch", "name": "run-rust-benchmarks", "description": "Run Rust benchmarks and compare performance with the C implementation. Use this when you work on migrating C code to Rust and want to ensure performance is not regressed.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/run-rust-benchmarks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "run-rust-benchmarks. Run Rust benchmarks and compare performance with the C implementation. Use this when you work on migrating C code to Rust and want to ensure performance is not regressed. Platforms: claude_code."} +{"id": "ce663cc796138afa5921134b9294aa7c330a312d44e731b89442f77d74301303", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "go", "description": "The single entry point to the Conductor system - state your goal and everything is handled automatically", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/go/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "go. The single entry point to the Conductor system - state your goal and everything is handled automatically Platforms: claude_code."} +{"id": "a67e80b16ca7608e483a630e4b1d385efe15a2f80ad646bbe8f67601367e2638", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "workspace", "description": "Manage workspace paper subsets \u2014 create workspaces, add/remove papers, search within a workspace, and export BibTeX. Workspaces are thin layers that reference papers in the main library by UUID. Use w", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/workspace/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "workspace. Manage workspace paper subsets \u2014 create workspaces, add/remove papers, search within a workspace, and export BibTeX. Workspaces are thin layers that reference papers in the main library by UUID. Use w Platforms: claude_code."} +{"id": "13d9c7b9058bbfe792b1f842635908436416f653b306f5522d3abb7f4afd94d8", "repo_url": "https://github.com/aahl/skills", "name": "edge-tts", "description": "Text-to-speech conversion using `uvx edge-tts` for generating audio from text. Use when (1) User requests audio/voice output with the \"tts\" trigger or keyword. (2) Content needs to be spoken rather than read (multitasking, accessibility, driving, cooking). (3) User wants a specific voice, speed, pitch, or format for TTS output.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/edge-tts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install edge-tts"}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T10:12:15Z"}, "embedding_text": "edge-tts. Text-to-speech conversion using `uvx edge-tts` for generating audio from text. Use when (1) User requests audio/voice output with the \"tts\" trigger or keyword. (2) Content needs to be spoken rather than read (multitasking, accessibility, driving, cooking). (3) User wants a specific voice, speed, pitch, or format for TTS output. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} +{"id": "455367ae9e63c8814b75d49e16210cd2dc61c67fd9d400d35946f08ebb544c80", "repo_url": "https://github.com/prefecthq/colin", "name": "using-colin", "description": "How to use Colin to compile agent skills from live sources. Use when working with Colin projects, templates, compilation, or skill management.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent", "agent-skills", "claude", "claude-skills", "context", "context-engineering", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prefecthq/colin/blob/main/src/colin/blueprints/mcp-guide/models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install using-colin"}, "quality": {"stars": 120, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-21T22:26:06Z"}, "embedding_text": "using-colin. How to use Colin to compile agent skills from live sources. Use when working with Colin projects, templates, compilation, or skill management. Categories: agent, agent-skills, claude, claude-skills, context, context-engineering, skills. Platforms: claude_code."} +{"id": "7a3cd67ceaa9c7b16f043c8120ad065b62e033eddc7b0992d65b10042c5872ed", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "export", "description": "Export papers from the knowledge base to standard citation formats (BibTeX, RIS, Markdown reference list) or export any Markdown content as a Word DOCX file. Supports exporting all papers, specific pa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/export/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "export. Export papers from the knowledge base to standard citation formats (BibTeX, RIS, Markdown reference list) or export any Markdown content as a Word DOCX file. Supports exporting all papers, specific pa Platforms: claude_code."} +{"id": "e1146d6cb5d64b14fe55513f2f60c8d9a533508f9a195ee6f87be8507fe83667", "repo_url": "https://github.com/nikiforovall/claude-code-rules", "name": "dotnet-verify", "description": "This skill should be used when working with Verify snapshot tests in .NET projects. Use when updating verified snapshots after intentional code changes, accepting new snapshots, discovering verify tes", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nikiforovall/claude-code-rules/blob/main/plugins/handbook-dotnet/skills/dotnet-verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 132, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T09:48:34Z"}, "embedding_text": "dotnet-verify. This skill should be used when working with Verify snapshot tests in .NET projects. Use when updating verified snapshots after intentional code changes, accepting new snapshots, discovering verify tes Platforms: claude_code."} +{"id": "0fc21541f94ddd89667135000d57350bbef441febaae2e67f97402812e7db716", "repo_url": "https://github.com/first-fluke/oh-my-agent", "name": "brainstorm", "description": "Design-first ideation that explores user intent, constraints, and approaches before any planning or implementation. Use for brainstorming, ideation, exploring concepts, and evaluating approaches.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/first-fluke/oh-my-agent/blob/main/.agents/skills/oma-brainstorm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1113, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:09:44Z"}, "embedding_text": "brainstorm. Design-first ideation that explores user intent, constraints, and approaches before any planning or implementation. Use for brainstorming, ideation, exploring concepts, and evaluating approaches. Platforms: claude_code."} +{"id": "64e88fc275645b0e64f4465b28fc55121efcf723962c8a685a43a1b2c112eaca", "repo_url": "https://github.com/almogbaku/debug-skill", "name": "debugging-code", "description": "Interactively debug source code \u2014 set breakpoints, step through execution line by line, inspect live variable state, evaluate expressions against the running program, and navigate the call stack to tr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/almogbaku/debug-skill/blob/master/skills/debugging-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 287, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-17T20:40:54Z"}, "embedding_text": "debugging-code. Interactively debug source code \u2014 set breakpoints, step through execution line by line, inspect live variable state, evaluate expressions against the running program, and navigate the call stack to tr Platforms: claude_code."} +{"id": "5aefc05c156148e07030fcd014154600be03bc1a8e03c238312d93f09dd572f6", "repo_url": "https://github.com/inline-chat/inline", "name": "branch-out", "description": "Isolate a subset of changes from a dirty local worktree (usually on main) into a clean feature branch, then commit, push, and open a PR. Use when the user asks to \"branch out\", \"isolate my changes\", \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inline-chat/inline/blob/main/.codex/skills/clear-worktree/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 673, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:34:38Z"}, "embedding_text": "branch-out. Isolate a subset of changes from a dirty local worktree (usually on main) into a clean feature branch, then commit, push, and open a PR. Use when the user asks to \"branch out\", \"isolate my changes\", \" Platforms: claude_code."} +{"id": "c494bc03e74a10b83079d800c4072f7f7401f5844e015663885807ecfa4c64b2", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-api-center", "description": "Expert knowledge for Azure Api Center development including best practices, security, configuration, integrations & coding patterns, and deployment. Use when automating API linting/registration, custo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-api-center/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-api-center. Expert knowledge for Azure Api Center development including best practices, security, configuration, integrations & coding patterns, and deployment. Use when automating API linting/registration, custo Platforms: claude_code."} +{"id": "c0f34a5021de5f31da272b8794974dcc6034994332812cafbe9f08c1e824dc0b", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-advisor", "description": "Expert knowledge for Azure Advisor development including best practices, decision making, limits & quotas, security, configuration, and integrations & coding patterns. Use when configuring Advisor ale", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-advisor. Expert knowledge for Azure Advisor development including best practices, decision making, limits & quotas, security, configuration, and integrations & coding patterns. Use when configuring Advisor ale Platforms: claude_code."} +{"id": "5e13e0566c436757713e82bd9b376c06b9522966bacb1e647a36538d574d0164", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "docx-editing-superdoc", "description": "R\u00e9daction d'assignations en r\u00e9f\u00e9r\u00e9 devant le tribunal de commerce ou des activit\u00e9s \u00e9conomiques pour le droit de communication d'un associ\u00e9. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger, pr\u00e9parer ou cr\u00e9er une assignation en r\u00e9f\u00e9r\u00e9 fond\u00e9e sur l'article L. 238-1 du code de commerce pour obtenir la communication forc\u00e9e de documents sociaux (comptes annuels, rapports de gestion, PV d'assembl\u00e9es, etc.) lorsqu'un dirigeant refuse ou fait obstruction \u00e0 la communication de ces documents \u00e0 un associ\u00e9.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/assignation-refere-communication-associe-selim-brihi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx-editing-superdoc"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "docx-editing-superdoc. R\u00e9daction d'assignations en r\u00e9f\u00e9r\u00e9 devant le tribunal de commerce ou des activit\u00e9s \u00e9conomiques pour le droit de communication d'un associ\u00e9. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger, pr\u00e9parer ou cr\u00e9er une assignation en r\u00e9f\u00e9r\u00e9 fond\u00e9e sur l'article L. 238-1 du code de commerce pour obtenir la communication forc\u00e9e de documents sociaux (comptes annuels, rapports de gestion, PV d'assembl\u00e9es, etc.) lorsqu'un dirigeant refuse ou fait obstruction \u00e0 la communication de ces documents \u00e0 un associ\u00e9. Platforms: claude_code."} +{"id": "aee8300b40c78cd2f8ce9ce60a5657bcb75f5a98e46ceed9728c6fcd8ffe95dd", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-auth", "description": "Integrates Firebase Authentication into Flutter apps. Use when setting up auth, managing auth state, implementing email/password or social sign-in, handling auth errors, managing users, or applying se", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-auth. Integrates Firebase Authentication into Flutter apps. Use when setting up auth, managing auth state, implementing email/password or social sign-in, handling auth errors, managing users, or applying se Platforms: claude_code."} +{"id": "6c39c9a7f406e4300ee877c58f44811cfee1a7b8b6e7b37bc7755ef2ac9a98e9", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "systematic-debugging", "description": "Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/systematic-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "systematic-debugging. Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes Platforms: claude_code."} +{"id": "c7dab6f824d415dc03df637832964086b8198f927f0d5321f19dc9c547340b93", "repo_url": "https://github.com/jobrunr/javaclaw", "name": "skill-creator", "description": "Create new skills, modify and improve existing skills for JavaClaw. Use when users want to create a skill from scratch, edit or improve an existing skill, or refine a skill's description so it trigger", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jobrunr/javaclaw/blob/main/workspace/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 694, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T08:46:31Z"}, "embedding_text": "skill-creator. Create new skills, modify and improve existing skills for JavaClaw. Use when users want to create a skill from scratch, edit or improve an existing skill, or refine a skill's description so it trigger Platforms: claude_code."} +{"id": "1e5479ebe246bb07cef3b7284bbfdf6b62f837007feffa20b4125433a7bc6103", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "solo-founder-gtm", "description": "When the user is a solo founder building their GTM motion, wants to scale without hiring, or needs to design an AI agent team for go-to-market. Also use when the user mentions 'solo founder,' 'one-person startup,' 'solopreneur,' 'bootstrapped,' 'no team,' 'AI agents as team,' 'scaling without hiring,' 'founder-led sales,' 'lean GTM,' 'one-person company,' or 'no employees.' This skill covers the complete solo founder GTM playbook from stack selection through agent team design, revenue-stage transitions, time allocation, and when to finally hire. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/solo-founder-gtm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solo-founder-gtm"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "solo-founder-gtm. When the user is a solo founder building their GTM motion, wants to scale without hiring, or needs to design an AI agent team for go-to-market. Also use when the user mentions 'solo founder,' 'one-person startup,' 'solopreneur,' 'bootstrapped,' 'no team,' 'AI agents as team,' 'scaling without hiring,' 'founder-led sales,' 'lean GTM,' 'one-person company,' or 'no employees.' This skill covers the complete solo founder GTM playbook from stack selection through agent team design, revenue-stage transitions, time allocation, and when to finally hire. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "655a517a05f83f64eafe58c4e53b82c07ad99a6cec09fa2b569c3bc21ee926b3", "repo_url": "https://github.com/distil-labs/distil-cli-skill", "name": "distil-cli", "description": "Train task-specific small language models (SLMs) using the Distil Labs CLI. Helps with data preparation, model training, and deployment.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/distil-labs/distil-cli-skill/blob/main/skills/distil-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 172, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T22:50:14Z"}, "embedding_text": "distil-cli. Train task-specific small language models (SLMs) using the Distil Labs CLI. Helps with data preparation, model training, and deployment. Platforms: claude_code."} +{"id": "e75d192442338ae4dfdaa9ea2f00451e298565cd73374038a332fd7cc03584f4", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-artifacts", "description": "Expert knowledge for Azure Artifacts development including best practices, decision making, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when managing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-artifact-signing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-artifacts. Expert knowledge for Azure Artifacts development including best practices, decision making, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when managing Platforms: claude_code."} +{"id": "d713d8cfbd689615629ec3546210f9c2e8a5baad64ee41d71e8a09e6024f7256", "repo_url": "https://github.com/evanca/flutter-ai-rules", "name": "firebase-messaging", "description": "Integrates Firebase Cloud Messaging (FCM) into Flutter apps. Use when setting up push notifications, handling foreground/background messages, managing permissions, working with FCM tokens, or configur", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/evanca/flutter-ai-rules/blob/main/skills/firebase-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 577, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:39:56Z"}, "embedding_text": "firebase-messaging. Integrates Firebase Cloud Messaging (FCM) into Flutter apps. Use when setting up push notifications, handling foreground/background messages, managing permissions, working with FCM tokens, or configur Platforms: claude_code."} +{"id": "8411bf3536053c97909c6d8230b67b85154776ad16657676df9835c77c245058", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-compilation-error-fixer", "description": "Two-phase compilation error fixer for Rust and TypeScript projects. Uses Cerebras LLM for bulk error reduction (95%+), followed by agent cleanup for remaining complex issues. Handles 20+ mechanical er", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-compilation-error-fixer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "A", "skillhub_score": 7.7, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-compilation-error-fixer. Two-phase compilation error fixer for Rust and TypeScript projects. Uses Cerebras LLM for bulk error reduction (95%+), followed by agent cleanup for remaining complex issues. Handles 20+ mechanical er Platforms: claude_code."} +{"id": "d2cdd71e86a35a295cca70817bd7ece74f9edb170136eb44a1976b185e61aeb7", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-business-process-tracking", "description": "Expert knowledge for Azure Business Process Tracking development including deployment. Use when creating CI/CD pipelines, automating builds, running tests, and deploying tracking solutions via DevOps", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-business-process-tracking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-business-process-tracking. Expert knowledge for Azure Business Process Tracking development including deployment. Use when creating CI/CD pipelines, automating builds, running tests, and deploying tracking solutions via DevOps Platforms: claude_code."} +{"id": "c661de2bd3ff5ef66bcf2551799456edfc393dfec5c2a9ac336d26aebc332197", "repo_url": "https://github.com/vercel-labs/agent-skills", "name": "vercel-react-best-practices", "description": "React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vercel-labs/agent-skills/blob/main/skills/react-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vercel-react-best-practices"}, "quality": {"stars": 28182, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T21:21:47Z"}, "embedding_text": "vercel-react-best-practices. React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements. Platforms: claude_code."} +{"id": "f9173bd5fa264a9432a920733ca2c6825a0e8ee141e5f5266afafddebacce935", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-blueprints", "description": "Expert knowledge for Azure Blueprints development including troubleshooting, architecture & design patterns, security, configuration, and integrations & coding patterns. Use when defining Azure Bluepr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-blueprints/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-blueprints. Expert knowledge for Azure Blueprints development including troubleshooting, architecture & design patterns, security, configuration, and integrations & coding patterns. Use when defining Azure Bluepr Platforms: claude_code."} +{"id": "72bb8cdc485e4b0533ce86ac28a41d8f80e350a0e1c7c5de8b0e984e68f4f6fb", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-cloud-hsm", "description": "Expert knowledge for Azure Cloud Hsm development including troubleshooting, best practices, limits & quotas, security, configuration, and integrations & coding patterns. Use when managing Cloud HSM cl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-cloud-hsm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-cloud-hsm. Expert knowledge for Azure Cloud Hsm development including troubleshooting, best practices, limits & quotas, security, configuration, and integrations & coding patterns. Use when managing Cloud HSM cl Platforms: claude_code."} +{"id": "5cb7557e1387d0cd04c46493c03ea86d36d1ea337921deb96ab9e415bf17fcf4", "repo_url": "https://github.com/paid-tw/skills", "name": "kryptogo-pay-query", "description": "Implements KryptoGO Payment query functionality for checking payment intent status and listing payment intents. Use when building order status checking, transaction verification, or payment confirmati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paid-tw/skills/blob/main/plugins/kryptogo-pay/skills/kryptogo-pay-query/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 260, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T01:10:18Z"}, "embedding_text": "kryptogo-pay-query. Implements KryptoGO Payment query functionality for checking payment intent status and listing payment intents. Use when building order status checking, transaction verification, or payment confirmati Platforms: claude_code."} +{"id": "9687a7c4e4c9095c23b5bf5a394ece310382248c48b613b0bfb4b95ff3cffd6c", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-industry", "description": "Expert knowledge for Azure Industry development including troubleshooting, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when managing Community Trainin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-active-directory-b2c/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-industry. Expert knowledge for Azure Industry development including troubleshooting, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when managing Community Trainin Platforms: claude_code."} +{"id": "20c3b9930c7afc83d20898a5e6c04e89b9a6f3af35aa969ffee87884c0344867", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "homepage-audit", "description": "Full conversion audit for any homepage or landing page. Use when someone asks to \"review my homepage,\" \"audit my landing page,\" \"why isn't my page converting,\" \"check my website,\" or wants feedback on their marketing page. Requires URL or screenshot before proceeding.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/homepage-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install homepage-audit"}, "quality": {"stars": 335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T12:37:28Z"}, "embedding_text": "homepage-audit. Full conversion audit for any homepage or landing page. Use when someone asks to \"review my homepage,\" \"audit my landing page,\" \"why isn't my page converting,\" \"check my website,\" or wants feedback on their marketing page. Requires URL or screenshot before proceeding. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} +{"id": "b6d36ad54da6a4516fce2c2d8303d2d292dc2954ad9378708c8cf5cd141c920c", "repo_url": "https://github.com/jezweb/claude-skills", "name": "seo-local-business", "description": "Generate complete SEO setup for local business websites \u2014 HTML head tags, JSON-LD LocalBusiness schema, robots.txt, sitemap.xml. Australian-optimised with +61 phone, ABN, suburb patterns.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/web-design/skills/seo-local-business/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-local-business"}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "seo-local-business. Generate complete SEO setup for local business websites \u2014 HTML head tags, JSON-LD LocalBusiness schema, robots.txt, sitemap.xml. Australian-optimised with +61 phone, ABN, suburb patterns. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} +{"id": "621a8354b56db4c8a43e8297d8053e53e893c278851bee23642b6bd655753f19", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "text-editing", "description": "Styled text display and rich text editing in SwiftUI using Text, AttributedString, and TextEditor with formatting controls. Use when implementing rich text editing or styled text display.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/swiftui/text-editing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "text-editing. Styled text display and rich text editing in SwiftUI using Text, AttributedString, and TextEditor with formatting controls. Use when implementing rich text editing or styled text display. Platforms: claude_code."} +{"id": "3ba84a8de929bb1ffb950d306f23a90d38e21850a03927321ceb35555ec86e00", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "shapely-compute", "description": "Computational geometry with Shapely - create geometries, boolean operations, measurements, predicates", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/shapely-compute/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install shapely-compute"}, "quality": {"stars": 3823, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "shapely-compute. Computational geometry with Shapely - create geometries, boolean operations, measurements, predicates Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} +{"id": "61259fb77246de0c4847e6bdbf92ba8fb0046272b044ea9ce1f668e15e57c278", "repo_url": "https://github.com/reactive/data-client", "name": "pr", "description": "Create a GitHub pull request from current working changes. Handles all git states - uncommitted changes, no branch, unpushed commits, etc. Analyzes diffs and changesets to generate a PR with filled-in", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reactive/data-client/blob/master/.cursor/skills/pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2031, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T12:17:38Z"}, "embedding_text": "pr. Create a GitHub pull request from current working changes. Handles all git states - uncommitted changes, no branch, unpushed commits, etc. Analyzes diffs and changesets to generate a PR with filled-in Platforms: claude_code."} +{"id": "06d0919c860848bf24dd0d9c3145faeb1dd44e6cf4194711379f54fd93166b69", "repo_url": "https://github.com/bfly123/claude_code_bridge", "name": "gask", "description": "Async via gask, end turn immediately; use only when user explicitly delegates to Gemini (ask/@gemini/let gemini/review); NOT for questions about Gemini itself.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bfly123/claude_code_bridge/blob/main/inherit_skills/claude_skills/ask/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3047, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T23:13:02Z"}, "embedding_text": "gask. Async via gask, end turn immediately; use only when user explicitly delegates to Gemini (ask/@gemini/let gemini/review); NOT for questions about Gemini itself. Platforms: claude_code."} +{"id": "ae527722a262980a20e23c16bd70a16ea08f19f11fb1f8202f0a531c3f0fb16a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "twitter-cards", "description": "When the user wants to design, optimize, or audit card layouts for content display. Also use when the user mentions \"card layout,\" \"card component,\" \"card grid,\" \"product cards,\" \"template cards,\" \"tool cards,\" \"feature cards,\" \"gallery cards,\" \"integration cards,\" or \"card design.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/layout/card/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install twitter-cards"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "twitter-cards. When the user wants to design, optimize, or audit card layouts for content display. Also use when the user mentions \"card layout,\" \"card component,\" \"card grid,\" \"product cards,\" \"template cards,\" \"tool cards,\" \"feature cards,\" \"gallery cards,\" \"integration cards,\" or \"card design.\" Platforms: claude_code."} +{"id": "42c6ec08947d5b53aa4bf351a196fdf2121b39edade327e2a9dcfbde81e2f27d", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "foundation-models", "description": "On-device LLM integration using Apple's Foundation Models framework. Use when implementing AI text generation, structured output, or tool calling.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/apple-intelligence/foundation-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "foundation-models. On-device LLM integration using Apple's Foundation Models framework. Use when implementing AI text generation, structured output, or tool calling. Platforms: claude_code."} +{"id": "0c0e89221c86279fb82bb899c4f0a88b84cc6a02a0c629a0d5506f7545f969fb", "repo_url": "https://github.com/everyinc/every-marketplace", "name": "agent-native-audit", "description": "Run comprehensive agent-native architecture review with scored principles", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/every-marketplace/blob/main/plugins/compound-engineering/skills/ce-agent-native-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:25:13Z"}, "embedding_text": "agent-native-audit. Run comprehensive agent-native architecture review with scored principles Platforms: claude_code."} +{"id": "3dd96b469e4d2ebd16b772ada55139fe073b6be709ddb0b2dfce2bf2c46f83db", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-wall-submit", "description": "Submit or update a Wall of Apps entry in the App-Store-Connect-CLI repository using `asc apps wall submit`. Use when the user says \"submit to wall of apps\", \"add my app to the wall\", or \"wall-of-apps\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-wall-submit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-wall-submit"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-wall-submit. Submit or update a Wall of Apps entry in the App-Store-Connect-CLI repository using `asc apps wall submit`. Use when the user says \"submit to wall of apps\", \"add my app to the wall\", or \"wall-of-apps\". Platforms: claude_code."} +{"id": "f99fd3282458a480e23b1c083f34ea642f8a0cfca97ee5d2920f0d3a2c8c034c", "repo_url": "https://github.com/coollabsio/coolify-docs", "name": "disabling-services", "description": "Hides or disables a service from the documentation listing while preserving the page for SEO and bookmarks. Use when deprecating services, marking services unavailable, adding disabled:true to List.vu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/coollabsio/coolify-docs/blob/v4.x/.claude/skills/disabling-services/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T02:08:02Z"}, "embedding_text": "disabling-services. Hides or disables a service from the documentation listing while preserving the page for SEO and bookmarks. Use when deprecating services, marking services unavailable, adding disabled:true to List.vu Platforms: claude_code."} +{"id": "4016a6fbd1c75ba5fffb3b9f7018ad3c03592581079be90c923e874ae3b5720c", "repo_url": "https://github.com/eronred/aso-skills", "name": "app-marketing-context", "description": "When the user wants to create or update their app marketing context document. Also use when the user mentions \"app context\", \"marketing brief\", \"app positioning\", or when starting any ASO or app marke", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/app-marketing-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "app-marketing-context. When the user wants to create or update their app marketing context document. Also use when the user mentions \"app context\", \"marketing brief\", \"app positioning\", or when starting any ASO or app marke Platforms: claude_code."} +{"id": "73545f037876381ec52622125295899c5f480c3ce953d91a1f6b6901558ee406", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "azure-verified-modules", "description": "Azure Verified Modules (AVM) requirements and best practices for developing certified Azure Terraform modules. Use when creating or reviewing Azure modules that need AVM certification.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/code-generation/skills/azure-verified-modules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-verified-modules"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "azure-verified-modules. Azure Verified Modules (AVM) requirements and best practices for developing certified Azure Terraform modules. Use when creating or reviewing Azure modules that need AVM certification. Platforms: claude_code."} +{"id": "1f7ace460d987a58ed83d472b9a8ffb4897b956612f0970f3a71de55a63efb5d", "repo_url": "https://github.com/jezweb/claude-skills", "name": "nemoclaw-setup", "description": "Install and configure NVIDIA NemoClaw (sandboxed OpenClaw agent platform) on Linux. Handles cloudflared tunnels, Docker cgroup fixes, OpenShell, sandbox creation, remote access via Cloudflare Tunnel,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/integrations/skills/nemoclaw-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "nemoclaw-setup. Install and configure NVIDIA NemoClaw (sandboxed OpenClaw agent platform) on Linux. Handles cloudflared tunnels, Docker cgroup fixes, OpenShell, sandbox creation, remote access via Cloudflare Tunnel, Platforms: claude_code."} +{"id": "edf6dce6d2e6ddf5dbf6dda4a384b12056b03729fb2d21aea303aef4933703dd", "repo_url": "https://github.com/iserter/laravel-claude-agents", "name": "laravel-tdd", "description": "Test-Driven Development specifically for Laravel applications using Pest PHP. Use when implementing any Laravel feature or bugfix - write the test first, watch it fail, write minimal code to pass.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iserter/laravel-claude-agents/blob/main/skills/laravel-tdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-19T22:26:25Z"}, "embedding_text": "laravel-tdd. Test-Driven Development specifically for Laravel applications using Pest PHP. Use when implementing any Laravel feature or bugfix - write the test first, watch it fail, write minimal code to pass. Platforms: claude_code."} +{"id": "b8cb6cac052da2fd3234d2e524d7acc63ba79a3d537c5daacf4fd44cf9224535", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "translation", "description": "When the user wants to translate content, create translation workflows, manage terminology, or optimize translation quality. Also use when the user mentions \"translate,\" \"translation,\" \"localization copy,\" \"glossary,\" \"terminology,\" \"style guide translation,\" \"machine translation,\" \"human translation,\" \"TMS,\" or \"multilingual content.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/translation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install translation"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "translation. When the user wants to translate content, create translation workflows, manage terminology, or optimize translation quality. Also use when the user mentions \"translate,\" \"translation,\" \"localization copy,\" \"glossary,\" \"terminology,\" \"style guide translation,\" \"machine translation,\" \"human translation,\" \"TMS,\" or \"multilingual content.\" Platforms: claude_code."} +{"id": "9d964338ff4de7d197881fd069a27f5fab702f4da15dad33f1ef95e8ee0f2c14", "repo_url": "https://github.com/spirimirror/libuipc", "name": "simulation-dev", "description": "General simulation development best practices for correctness, stability, and debuggability. Use when implementing or modifying simulation systems, solvers, constraints, or GPU kernels, especially for", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spirimirror/libuipc/blob/main/.cursor/skills/simulation-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:12:46Z"}, "embedding_text": "simulation-dev. General simulation development best practices for correctness, stability, and debuggability. Use when implementing or modifying simulation systems, solvers, constraints, or GPU kernels, especially for Platforms: claude_code."} +{"id": "003e3f441d123c35c4543e2c873d9ac908aba4bda76c7882e20fc58e0e785530", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "favicon-generator", "description": "When the user wants to implement, optimize, or audit favicon and app icons. Also use when the user mentions \"favicon,\" \"app icon,\" \"browser icon,\" \"touch icon,\" \"PWA icon,\" \"favicon sizes,\" \"apple-touch-icon,\" \"favicon.ico,\" \"site icon,\" or \"tab icon.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/branding/favicon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install favicon-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "favicon-generator. When the user wants to implement, optimize, or audit favicon and app icons. Also use when the user mentions \"favicon,\" \"app icon,\" \"browser icon,\" \"touch icon,\" \"PWA icon,\" \"favicon sizes,\" \"apple-touch-icon,\" \"favicon.ico,\" \"site icon,\" or \"tab icon.\" Platforms: claude_code."} +{"id": "1c44aeb26730c5e51debd030d77b0e5b44f9ea105d14e5bd102b5777f50c08d6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "keyword-research", "description": "When the user wants to research keywords, find target keywords, or analyze search intent. Also use when the user mentions \"keyword research,\" \"keyword tool,\" \"target keywords,\" \"search volume,\" \"search intent,\" \"keyword difficulty,\" \"topical map,\" \"keyword clustering,\" \"People Also Ask,\" \"Google autocomplete,\" \"autocomplete keywords,\" or \"alphabet method.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/keyword-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install keyword-research"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "keyword-research. When the user wants to research keywords, find target keywords, or analyze search intent. Also use when the user mentions \"keyword research,\" \"keyword tool,\" \"target keywords,\" \"search volume,\" \"search intent,\" \"keyword difficulty,\" \"topical map,\" \"keyword clustering,\" \"People Also Ask,\" \"Google autocomplete,\" \"autocomplete keywords,\" or \"alphabet method.\" Platforms: claude_code."} +{"id": "2122acff15e7bfac71ad0a92c7d8b76dffea6e1022059eb3a8faf12c6b00c151", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "open-graph", "description": "When the user wants to add or optimize Open Graph metadata for social sharing. Also use when the user mentions \"Open Graph,\" \"og:tags,\" \"og:title,\" \"og:image,\" \"og:description,\" \"Facebook preview,\" \"LinkedIn preview,\" or \"social share preview.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/open-graph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install open-graph"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "open-graph. When the user wants to add or optimize Open Graph metadata for social sharing. Also use when the user mentions \"Open Graph,\" \"og:tags,\" \"og:title,\" \"og:image,\" \"og:description,\" \"Facebook preview,\" \"LinkedIn preview,\" or \"social share preview.\" Platforms: claude_code."} +{"id": "77e254b2f1c731601ec52c3ea8ba75ede198c9a4eb197fbdd0f3bd752aa40746", "repo_url": "https://github.com/eronred/aso-skills", "name": "retention-optimization", "description": "When the user wants to reduce churn, improve user engagement, or increase lifetime value. Also use when the user mentions \"retention\", \"churn\", \"users leaving\", \"engagement\", \"DAU/MAU\", \"user activati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eronred/aso-skills/blob/main/skills/retention-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1516, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T15:35:23Z"}, "embedding_text": "retention-optimization. When the user wants to reduce churn, improve user engagement, or increase lifetime value. Also use when the user mentions \"retention\", \"churn\", \"users leaving\", \"engagement\", \"DAU/MAU\", \"user activati Platforms: claude_code."} +{"id": "99e261e096f07e121deeed56e5964cf557c592779cbde946b772d6202014ca0c", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "provider-resources", "description": "Implement Terraform Provider resources and data sources using the Plugin Framework. Use when developing CRUD operations, schema design, state management, and acceptance testing for provider resources.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/provider-development/skills/provider-resources/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install provider-resources"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "provider-resources. Implement Terraform Provider resources and data sources using the Plugin Framework. Use when developing CRUD operations, schema design, state management, and acceptance testing for provider resources. Platforms: claude_code."} +{"id": "801478731245ec3358d39c32331119ad2f6b8f817de0126da97e83beaa781afb", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "ai-ugc-ads", "description": "When the user wants to create UGC ad campaigns, recruit UGC creators, generate AI UGC content, or scale with user-generated content. Also use when the user mentions 'UGC,' 'user-generated content,' 'creator ads,' 'Spark Ads,' 'whitelisting,' 'AI UGC,' 'Arcads,' 'Creatify,' 'creator brief,' or 'UGC testing.' This skill covers the UGC growth framework from creator recruitment through AI-powered scaling. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/ai-ugc-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-ugc-ads"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "ai-ugc-ads. When the user wants to create UGC ad campaigns, recruit UGC creators, generate AI UGC content, or scale with user-generated content. Also use when the user mentions 'UGC,' 'user-generated content,' 'creator ads,' 'Spark Ads,' 'whitelisting,' 'AI UGC,' 'Arcads,' 'Creatify,' 'creator brief,' or 'UGC testing.' This skill covers the UGC growth framework from creator recruitment through AI-powered scaling. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "817cb545a3fe01cc102b09146fcbf82df9dfadad7d2991f9c2c4f47976614a22", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "affiliate-marketing", "description": "When the user wants to plan, implement, or optimize affiliate marketing strategy. Also use when the user mentions \"affiliate marketing,\" \"affiliate program strategy,\" \"CPS model,\" \"affiliate recruitment,\" \"commission structure,\" \"affiliate partners,\" \"affiliate network,\" \"affiliate tracking,\" \"affiliate commission,\" or \"partner marketing.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/affiliate-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install affiliate-marketing"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "affiliate-marketing. When the user wants to plan, implement, or optimize affiliate marketing strategy. Also use when the user mentions \"affiliate marketing,\" \"affiliate program strategy,\" \"CPS model,\" \"affiliate recruitment,\" \"commission structure,\" \"affiliate partners,\" \"affiliate network,\" \"affiliate tracking,\" \"affiliate commission,\" or \"partner marketing.\" Platforms: claude_code."} +{"id": "5f51a9372b5983f9e40480a6b54fa53e579ca47d9aa58106f7915bcfc8676fb0", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "blog-page-generator", "description": "When the user wants to create, optimize, or audit blog page structure and content. Also use when the user mentions \"blog page,\" \"blog index,\" \"blog layout,\" \"content hub,\" \"blog homepage,\" \"blog listing,\" \"subdomain vs subdirectory,\" \"blog structure,\" or \"blog SEO.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/blog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "blog-page-generator. When the user wants to create, optimize, or audit blog page structure and content. Also use when the user mentions \"blog page,\" \"blog index,\" \"blog layout,\" \"content hub,\" \"blog homepage,\" \"blog listing,\" \"subdomain vs subdirectory,\" \"blog structure,\" or \"blog SEO.\" Platforms: claude_code."} +{"id": "e4f88a12a4dcf50530a04b56434abee3692924d62875f2cf18d92be943e1843e", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "pdf-processing-anthropic", "description": "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.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/pdf-processing-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf-processing-anthropic"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "pdf-processing-anthropic. 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. Platforms: claude_code."} +{"id": "1090a227557e33c3d47c307a3e12d59d36dc5e36c5acc11cb4a18427fc794132", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "research-sources", "description": "When the user wants to find information sources for content ideation, competitor monitoring, or industry tracking. Also use when the user mentions \"research sources,\" \"information sources,\" \"content ideation,\" \"industry monitoring,\" \"competitor monitoring,\" \"market intelligence,\" \"content research,\" or \"topic research.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/research-sources/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install research-sources"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "research-sources. When the user wants to find information sources for content ideation, competitor monitoring, or industry tracking. Also use when the user mentions \"research sources,\" \"information sources,\" \"content ideation,\" \"industry monitoring,\" \"competitor monitoring,\" \"market intelligence,\" \"content research,\" or \"topic research.\" Platforms: claude_code."} +{"id": "6be00a63035e69dcef9bf15227aa51c9d633432f2b33262a0efd9491f0d135fb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "community-forum", "description": "When the user wants to promote via forums, communities, or invite users to join a community. Also use when the user mentions \"forum promotion,\" \"Indie Hacker,\" \"Hacker News,\" \"community growth,\" \"Discord promotion,\" \"vertical community,\" \"brand encyclopedia,\" \"Wikipedia,\" \"Quora,\" \"Reddit community,\" \"community building,\" \"forum marketing,\" or \"community invite.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/community/community-forum/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install community-forum"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "community-forum. When the user wants to promote via forums, communities, or invite users to join a community. Also use when the user mentions \"forum promotion,\" \"Indie Hacker,\" \"Hacker News,\" \"community growth,\" \"Discord promotion,\" \"vertical community,\" \"brand encyclopedia,\" \"Wikipedia,\" \"Quora,\" \"Reddit community,\" \"community building,\" \"forum marketing,\" or \"community invite.\" Platforms: claude_code."} +{"id": "c3406811390e39b3f37515bfb28630af2703c5eca16896ca8a0b2fd626dfed7a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "landing-page-generator", "description": "When the user wants to create, optimize, or audit campaign landing pages for paid ads or other traffic. Also use when the user mentions \"landing page,\" \"PPC landing page,\" \"SEM landing page,\" \"conversion page,\" \"campaign page,\" \"lead capture page,\" \"landing page optimization,\" \"LP conversion,\" \"single-page funnel,\" or \"squeeze page.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/landing-page/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install landing-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "landing-page-generator. When the user wants to create, optimize, or audit campaign landing pages for paid ads or other traffic. Also use when the user mentions \"landing page,\" \"PPC landing page,\" \"SEM landing page,\" \"conversion page,\" \"campaign page,\" \"lead capture page,\" \"landing page optimization,\" \"LP conversion,\" \"single-page funnel,\" or \"squeeze page.\" Platforms: claude_code."} +{"id": "3030567044fa97a87bd589baaef9ba3b3cd07572902ca80ef1db2f7ddfda131c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "image-optimization", "description": "When the user wants to optimize images for search engines and performance. Also use when the user mentions \"image SEO,\" \"alt text,\" \"image captions,\" \"figcaption,\" \"image optimization,\" \"WebP,\" \"lazy loading,\" \"LCP,\" \"image sitemap,\" \"responsive images,\" \"srcset,\" \"image format,\" or \"hero image optimization.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/image-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install image-optimization"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "image-optimization. When the user wants to optimize images for search engines and performance. Also use when the user mentions \"image SEO,\" \"alt text,\" \"image captions,\" \"figcaption,\" \"image optimization,\" \"WebP,\" \"lazy loading,\" \"LCP,\" \"image sitemap,\" \"responsive images,\" \"srcset,\" \"image format,\" or \"hero image optimization.\" Platforms: claude_code."} +{"id": "4817689d87296276556bd00f02bda5ca911048992b530478c692c901d5b8a3e6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "mobile-friendly", "description": "When the user wants to optimize for mobile-first indexing or fix mobile usability. Also use when the user mentions \"mobile-friendly,\" \"mobile-first indexing,\" \"mobile SEO,\" \"responsive design,\" \"mobile adaptation,\" \"mobile viewport,\" \"viewport meta,\" \"touch targets,\" \"font size mobile,\" \"AMP,\" or \"Accelerated Mobile Pages.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/mobile-friendly/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mobile-friendly"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "mobile-friendly. When the user wants to optimize for mobile-first indexing or fix mobile usability. Also use when the user mentions \"mobile-friendly,\" \"mobile-first indexing,\" \"mobile SEO,\" \"responsive design,\" \"mobile adaptation,\" \"mobile viewport,\" \"viewport meta,\" \"touch targets,\" \"font size mobile,\" \"AMP,\" or \"Accelerated Mobile Pages.\" Platforms: claude_code."} +{"id": "ee807cbb7d1dd66857885fc7a1e405c600a0a74c53a5366acdf00901998ecb94", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "core-ml", "description": "Core ML, Create ML, Vision framework, Natural Language framework, on-device ML integration. Use when user wants image classification, text analysis, object detection, sound classification, model optim", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/core-ml/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "core-ml. Core ML, Create ML, Vision framework, Natural Language framework, on-device ML integration. Use when user wants image classification, text analysis, object detection, sound classification, model optim Platforms: claude_code."} +{"id": "260f2aa006bbc5b5511a1eb8ae3c56a3dac1b93f9b27209d0da09549e08b3e4d", "repo_url": "https://github.com/bitsocialnet/seedit", "name": "translate", "description": "Add or update i18next translation keys across all language files by spawning translator subagents. Use when the user asks to add a new translation, update existing translations, translate text, or wor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bitsocialnet/seedit/blob/master/.claude/skills/translate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 420, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T10:34:27Z"}, "embedding_text": "translate. Add or update i18next translation keys across all language files by spawning translator subagents. Use when the user asks to add a new translation, update existing translations, translate text, or wor Platforms: claude_code."} +{"id": "36653020b5072118a1980e12538b0cd24f4f887263012b328fad10d2bf40eba0", "repo_url": "https://github.com/vercel-labs/next-skills", "name": "next-cache-components", "description": "Next.js 16 Cache Components - PPR, use cache directive, cacheLife, cacheTag, updateTag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vercel-labs/next-skills/blob/main/skills/next-cache-components/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 944, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T15:04:17Z"}, "embedding_text": "next-cache-components. Next.js 16 Cache Components - PPR, use cache directive, cacheLife, cacheTag, updateTag Platforms: claude_code."} +{"id": "0adc3975653ceae7a09da43d366f20ce89413bebae56f977635cd77bea3ce2df", "repo_url": "https://github.com/redisearch/redisearch", "name": "run-python-tests", "description": "Run end-to-end Python tests after making changes to verify correctness. Use this when you want to verify your changes from an end-to-end perspective, after ensuring the build and Rust tests pass.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/run-python-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "run-python-tests. Run end-to-end Python tests after making changes to verify correctness. Use this when you want to verify your changes from an end-to-end perspective, after ensuring the build and Rust tests pass. Platforms: claude_code."} +{"id": "6f5edcd3ea49875d981b337906806b1cefd5431fa2ad67b2d4a9feba69dfea85", "repo_url": "https://github.com/redisearch/redisearch", "name": "review-rust-docs", "description": "Review the documentation of a Rust crate to ensure it meets our requirements and standards. Use this when you have done changes to Rust code.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/review-rust-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "review-rust-docs. Review the documentation of a Rust crate to ensure it meets our requirements and standards. Use this when you have done changes to Rust code. Platforms: claude_code."} +{"id": "b5aa387cacc501ebb860eef4c115edc4c6813568690af3d86d13ef4c917e8f52", "repo_url": "https://github.com/tanweai/pua", "name": "loop", "description": "PUA Loop \u2014 autonomous iterative development with PUA pressure. Keeps running until task is done, no user interaction needed. Combines Ralph Loop iteration mechanism with PUA quality enforcement. Trigg", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tanweai/pua/blob/main/codex/pua-cancel-loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18373, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T15:15:16Z"}, "embedding_text": "loop. PUA Loop \u2014 autonomous iterative development with PUA pressure. Keeps running until task is done, no user interaction needed. Combines Ralph Loop iteration mechanism with PUA quality enforcement. Trigg Platforms: claude_code."} +{"id": "c31954552d4f0a05a3d35724110753902e9b6c0c997737ad3ec5814e36f4ab0d", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "agent-template-generator", "description": "Generates standardized agent profiles with built-in validation patterns and test-driven protocols. Automates agent creation by injecting validation hooks and success criteria checks, reducing setup ti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-agent-tooling/lib/generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "A", "skillhub_score": 7.6, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "agent-template-generator. Generates standardized agent profiles with built-in validation patterns and test-driven protocols. Automates agent creation by injecting validation hooks and success criteria checks, reducing setup ti Platforms: claude_code."} +{"id": "d6346c40bbf70cad4c3bf4a5bf539806c4aa383c83b6b3e075a7b964ef097f10", "repo_url": "https://github.com/matrixorigin/memoria", "name": "deployment", "description": "Deploy Memoria with Docker Compose or Kubernetes. Environment variables, multi-instance setup, security. Use when deploying or configuring Memoria.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matrixorigin/memoria/blob/main/skills/deployment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 288, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T04:00:20Z"}, "embedding_text": "deployment. Deploy Memoria with Docker Compose or Kubernetes. Environment variables, multi-instance setup, security. Use when deploying or configuring Memoria. Platforms: claude_code."} +{"id": "352a3b1340971920170d4b316771fdbe6b60481c201d75bca3fed50d97b97ff2", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "medium-posts", "description": "When the user wants to publish on Medium for parasite SEO, GEO, or content distribution. Also use when the user mentions \"Medium,\" \"Medium article,\" \"parasite SEO,\" \"Medium publishing,\" \"canonical Medium,\" or \"publish on Medium.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/medium/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install medium-posts"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "medium-posts. When the user wants to publish on Medium for parasite SEO, GEO, or content distribution. Also use when the user mentions \"Medium,\" \"Medium article,\" \"parasite SEO,\" \"Medium publishing,\" \"canonical Medium,\" or \"publish on Medium.\" Platforms: claude_code."} +{"id": "25ad35cd63b6f38da2947629378a2b870d7efc829de3cc82aca59b6a1a345a32", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "press-media", "description": "Get press coverage and media attention for your indie app. Covers press kit preparation, finding journalists/bloggers/YouTubers, pitch timing, embargo strategy, and story angles that get coverage. Use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/growth/press-media/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "press-media. Get press coverage and media attention for your indie app. Covers press kit preparation, finding journalists/bloggers/YouTubers, pitch timing, embargo strategy, and story angles that get coverage. Use Platforms: claude_code."} +{"id": "b9d91cade1b11976eadf21ac5057aa098c7c9f9cd6c60893c2bbe1e6c9f5bd3a", "repo_url": "https://github.com/waynesutton/markdown-site", "name": "robel-auth", "description": "Integrate and maintain Robelest Convex Auth in apps by always checking upstream before implementation. Use when adding auth setup, updating auth wiring, migrating between upstream patterns, or trouble", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/markdown-site/blob/main/.cursor/skills/robel-auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 621, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T14:56:54Z"}, "embedding_text": "robel-auth. Integrate and maintain Robelest Convex Auth in apps by always checking upstream before implementation. Use when adding auth setup, updating auth wiring, migrating between upstream patterns, or trouble Platforms: claude_code."} +{"id": "f88562d1ccea4a574d419c5e74c9424c08bb1a02a3cb5e8855b91a91b96000ad", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "platform-infrastructure", "description": "Help users build and scale internal platforms and technical infrastructure. Use when someone is deciding whether to build vs buy tooling, designing developer platforms, creating shared services, or ma", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/platform-infrastructure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "platform-infrastructure. Help users build and scale internal platforms and technical infrastructure. Use when someone is deciding whether to build vs buy tooling, designing developer platforms, creating shared services, or ma Platforms: claude_code."} +{"id": "1dd4ef8e7ac1c2dc65fac329032c255cfbd0d6c3f6f0baa8372cec5c1fd3a57d", "repo_url": "https://github.com/jvidalv/100cims", "name": "api", "description": "Use when working on the backend API (packages/api). Covers Elysia routes, Drizzle ORM, TypeBox schemas, JWT authentication, S3 uploads, Google Sheets logging, and the Next.js hybrid setup.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jvidalv/100cims/blob/main/.claude/skills/api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 75, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T11:40:56Z"}, "embedding_text": "api. Use when working on the backend API (packages/api). Covers Elysia routes, Drizzle ORM, TypeBox schemas, JWT authentication, S3 uploads, Google Sheets logging, and the Next.js hybrid setup. Platforms: claude_code."} +{"id": "171e62396c853518398544e3bf3553bdcf606014e3744dc9a61e376021beb6a8", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "evaluating-new-technology", "description": "Create a Technology Evaluation Pack (problem framing, options matrix, build vs buy, pilot plan, risk review, decision memo). Use for evaluating new tech, emerging technology, AI tools, vendor selectio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/evaluating-new-technology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "evaluating-new-technology. Create a Technology Evaluation Pack (problem framing, options matrix, build vs buy, pilot plan, risk review, decision memo). Use for evaluating new tech, emerging technology, AI tools, vendor selectio Platforms: claude_code."} +{"id": "1e94e92504c6c93a43ef5834698227f82b3e0e05c3a4537f91863949949a723b", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "energy-management", "description": "Help users manage their energy for sustained performance. Use when someone is feeling burned out, trying to find their zone of genius, scheduling for productivity, or identifying what drains vs energi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/energy-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "energy-management. Help users manage their energy for sustained performance. Use when someone is feeling burned out, trying to find their zone of genius, scheduling for productivity, or identifying what drains vs energi Platforms: claude_code."} +{"id": "0601abd58487400f4d688e277a8daaac71bba95b3896451cf5b7b0b6c27d6472", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "concurrency-patterns", "description": "Swift concurrency patterns including Swift 6.2 approachable concurrency, structured concurrency, actors, continuations, and migration. Use when reviewing or building async code, fixing data race error", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/swift/concurrency-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "concurrency-patterns. Swift concurrency patterns including Swift 6.2 approachable concurrency, structured concurrency, actors, continuations, and migration. Use when reviewing or building async code, fixing data race error Platforms: claude_code."} +{"id": "a209981367271e93cf636758b8a13ebe5774f92777f5011cde895e47daef60c0", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-schema", "description": "Generate complete JSON-LD schema markup for blog posts including BlogPosting, Person, Organization, BreadcrumbList, FAQPage, and ImageObject. Validates against Google requirements and warns about deprecated types. Use when user says \"schema\", \"blog schema\", \"json-ld\", \"structured data\", \"schema markup\", \"generate schema\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-schema/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-schema"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-schema. Generate complete JSON-LD schema markup for blog posts including BlogPosting, Person, Organization, BreadcrumbList, FAQPage, and ImageObject. Validates against Google requirements and warns about deprecated types. Use when user says \"schema\", \"blog schema\", \"json-ld\", \"structured data\", \"schema markup\", \"generate schema\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "99f8a1a13a33f1475f338c570117fdf3f2a4b606109158aa824fc25df3f45f0b", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "consent-flow", "description": "Generates GDPR/CCPA/DPDP privacy consent flows with granular category preferences, consent state persistence, audit logging, and ATT (App Tracking Transparency) integration. Use when user needs privac", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/consent-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "consent-flow. Generates GDPR/CCPA/DPDP privacy consent flows with granular category preferences, consent state persistence, audit logging, and ATT (App Tracking Transparency) integration. Use when user needs privac Platforms: claude_code."} +{"id": "022805e7415960c42773de60cab069331d1c2ffb0a03778826b995f71df6d6df", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "design-systems", "description": "Build or evolve a design system by producing a Design System Operating Pack: charter, token model (incl. depth/elevation), component inventory + roadmap, blockframe-to-component mapping, documentation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/design-systems/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "design-systems. Build or evolve a design system by producing a Design System Operating Pack: charter, token model (incl. depth/elevation), component inventory + roadmap, blockframe-to-component mapping, documentation Platforms: claude_code."} +{"id": "27b5c81e1835825eabd42a4d22e36006205311773a1fc7dd85a9c784b64ee730", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "referral-system", "description": "Generates referral/invite infrastructure with unique codes, deep link sharing, reward tracking, and fraud prevention. Use when user wants referral codes, invite friends flow, or viral growth mechanics", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/referral-system/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "referral-system. Generates referral/invite infrastructure with unique codes, deep link sharing, reward tracking, and fraud prevention. Use when user wants referral codes, invite friends flow, or viral growth mechanics Platforms: claude_code."} +{"id": "1652c1c3e884461b68f5ba14541cd9f7e849f82551e36cd40b1b2af545f6398b", "repo_url": "https://github.com/anton-abyzov/specweave", "name": "stripe-integration", "description": "This skill enables robust Stripe payment processing for PCI-compliant checkout flows, subscription billing, and secure payment handling, including webhooks, refunds, and customer management.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anton-abyzov/specweave/blob/develop/plugins/specweave/skills/ado-mapper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 148, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:28:45Z"}, "embedding_text": "stripe-integration. This skill enables robust Stripe payment processing for PCI-compliant checkout flows, subscription billing, and secure payment handling, including webhooks, refunds, and customer management. Platforms: claude_code."} +{"id": "929307b660c5c185ff82dc07d130c46fedb8f2917002d58c88ad4933de46c858", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "product-taste-intuition", "description": "Help users develop product taste and intuition. Use when someone wants to improve their product judgment, struggles to evaluate design quality, needs to make decisions without complete data, or wants", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/product-taste-intuition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "product-taste-intuition. Help users develop product taste and intuition. Use when someone wants to improve their product judgment, struggles to evaluate design quality, needs to make decisions without complete data, or wants Platforms: claude_code."} +{"id": "7d4bdf06d2b16d6725c4b9312fa1358fc6eff724e05615d136b87f7e9a923bbd", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "running-offsites", "description": "Help users plan and run effective team offsites. Use when someone is organizing a team retreat, planning a strategy offsite, trying to improve remote team cohesion, or preparing for quarterly planning", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/running-offsites/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "running-offsites. Help users plan and run effective team offsites. Use when someone is organizing a team retreat, planning a strategy offsite, trying to improve remote team cohesion, or preparing for quarterly planning Platforms: claude_code."} +{"id": "131dcd9d1e407996aa156bbac4ef4345ba7eb368a46339f1d2f465016eebf06c", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "privacy-policy", "description": "Generate privacy policies, terms of service, and EULAs for Apple platform apps. Detects data collection patterns, third-party SDKs, and generates region-specific legal documents with Apple Privacy Nut", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/legal/privacy-policy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "privacy-policy. Generate privacy policies, terms of service, and EULAs for Apple platform apps. Detects data collection patterns, third-party SDKs, and generates region-specific legal documents with Apple Privacy Nut Platforms: claude_code."} +{"id": "4091b8b3747060b62c12f0c66fc3721e5eda74822854aba3b1c41afd762fc8c0", "repo_url": "https://github.com/wshobson/agents", "name": "error-handling-patterns", "description": "Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling, designing APIs, or improving application reliability.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/developer-essentials/skills/error-handling-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install error-handling-patterns"}, "quality": {"stars": 37028, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:08:46Z"}, "embedding_text": "error-handling-patterns. Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling, designing APIs, or improving application reliability. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} +{"id": "0a02c57853b38b4a92f1800ebd9bebe6c266b5d7201391d74c16e3822c56a5f7", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "workplace-navigation", "description": "Handles difficult colleagues and resolves conflicts using frameworks from Anneka Gupta and workplace dynamics research. Use when dealing with blocking colleagues, toxic dynamics, or maintaining relati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/workplace-navigation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "workplace-navigation. Handles difficult colleagues and resolves conflicts using frameworks from Anneka Gupta and workplace dynamics research. Use when dealing with blocking colleagues, toxic dynamics, or maintaining relati Platforms: claude_code."} +{"id": "e6ceedee83e86b0640a2dd358b617c4654f0815149af2b35709dc04f849c99e0", "repo_url": "https://github.com/arto-app/arto", "name": "add-icon", "description": "Add a new Tabler icon to the project. Use when adding icons to the UI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arto-app/arto/blob/main/.claude/skills/add-icon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 229, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T17:15:35Z"}, "embedding_text": "add-icon. Add a new Tabler icon to the project. Use when adding icons to the UI. Platforms: claude_code."} +{"id": "ff58772b310db52aec310ab5d9da9e5c5fda8116ae787be4388e6a84dd0194b5", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "prioritization-craft", "description": "Applies prioritization frameworks including RICE, ICE, Value vs Effort, and Kano model. Use when prioritizing features, managing backlog, making tradeoffs, or saying no gracefully. Based on Shreyas Do", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/prioritization-craft/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "prioritization-craft. Applies prioritization frameworks including RICE, ICE, Value vs Effort, and Kano model. Use when prioritizing features, managing backlog, making tradeoffs, or saying no gracefully. Based on Shreyas Do Platforms: claude_code."} +{"id": "da048ec6a5285ce51871763fb84fd2f6eaef0377b11bf24f259aa9d436a4fbe0", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualisation. Use when working with spreadsheets (.xlsx, .xlsm, .csv, .tsv) for cre", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/documents/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualisation. Use when working with spreadsheets (.xlsx, .xlsm, .csv, .tsv) for cre Platforms: claude_code."} +{"id": "2a5e371d1c9b7ab4ca487979af446a750f99b289f920e098817597066d5f3645", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "negotiating-offers", "description": "Help users negotiate job offers and compensation. Use when someone is negotiating salary, equity, or other terms of a job offer, preparing for a compensation conversation, or asking how to ask for mor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/negotiating-offers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "negotiating-offers. Help users negotiate job offers and compensation. Use when someone is negotiating salary, equity, or other terms of a job offer, preparing for a compensation conversation, or asking how to ask for mor Platforms: claude_code."} +{"id": "31b3e6fc7193a80e5b072618af37a584b3adb78f08c5e19777898c21aca921b6", "repo_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop", "name": "orchestrator", "description": "Full orchestration workflow with Smart Memory-Driven context (v2.47), RLM-inspired routing (v2.46), and quality gates: clarify, smart memory search, classify 3D, plan, delegate, execute with parallel", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop/blob/main/.claude/skills/orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T11:32:56Z"}, "embedding_text": "orchestrator. Full orchestration workflow with Smart Memory-Driven context (v2.47), RLM-inspired routing (v2.46), and quality gates: clarify, smart memory search, classify 3D, plan, delegate, execute with parallel Platforms: claude_code."} +{"id": "88340c741e0d33481c0cf7adb6ddf919645ca824d7aa9068850aad3ceb5e8fc4", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "lapsed-user", "description": "Generates lapsed user detection and re-engagement screens with personalized return experiences, win-back offers, and inactivity tracking. Use when user wants to re-engage inactive users, detect lapsed", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/lapsed-user/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "lapsed-user. Generates lapsed user detection and re-engagement screens with personalized return experiences, win-back offers, and inactivity tracking. Use when user wants to re-engage inactive users, detect lapsed Platforms: claude_code."} +{"id": "2781bb37fe1cd7b1aab55946c1533f59bbf8b5cd1e577312cabeaaedbbaee8dc", "repo_url": "https://github.com/haddock-development/claude-reflect-system", "name": "python-project-creator", "description": "Creates Python projects with proper structure, virtual environments, and dependency management. Use when users request to create a new Python project, set up a Python development environment, or initialize a Python application with standard tooling.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/haddock-development/claude-reflect-system/blob/master/python-project-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-project-creator"}, "quality": {"stars": 145, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-17T09:53:59Z"}, "embedding_text": "python-project-creator. Creates Python projects with proper structure, virtual environments, and dependency management. Use when users request to create a new Python project, set up a Python development environment, or initialize a Python application with standard tooling. Platforms: claude_code."} +{"id": "e17c024a77be70f0f2dc0c6752124789868c278e1a3101edcc94e3cf0c3495d6", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "managing-timelines", "description": "Help users set and hit realistic deadlines. Use when someone is planning project timelines, struggling to hit deadlines, dealing with timeline pressure from stakeholders, or trying to improve estimati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/managing-timelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "managing-timelines. Help users set and hit realistic deadlines. Use when someone is planning project timelines, struggling to hit deadlines, dealing with timeline pressure from stakeholders, or trying to improve estimati Platforms: claude_code."} +{"id": "804e0539f4f93880fb921ebfe4ce94cc99089543aff00d931d2cfc25d18ea8ed", "repo_url": "https://github.com/gerstep/cybos", "name": "ddmemo", "description": "Generate comprehensive investment memos for cyber\u2022Fund investment committee decisions. Use when creating DD memos or investment analysis documents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gerstep/cybos/blob/main/.claude/skills/DDMemo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T09:47:18Z"}, "embedding_text": "ddmemo. Generate comprehensive investment memos for cyber\u2022Fund investment committee decisions. Use when creating DD memos or investment analysis documents. Platforms: claude_code."} +{"id": "6eb30a454c896a475c862983065f18990f714e762a59de9c14b7ff9b2e933c30", "repo_url": "https://github.com/redisearch/redisearch", "name": "build", "description": "Compile the project to verify changes build successfully. Use this to verify your changes build properly together with the complete project and dependencies, and make sure to use it before running end", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/build/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "build. Compile the project to verify changes build successfully. Use this to verify your changes build properly together with the complete project and dependencies, and make sure to use it before running end Platforms: claude_code."} +{"id": "1b60be46ce332e9c95ea2763a08e7d5e4bd3846d1f754c8589c87a99be80e57e", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "sql-optimization-patterns", "description": "Master SQL query optimization, indexing strategies, and EXPLAIN analysis to dramatically improve database performance and eliminate slow queries. Use when debugging slow queries, designing database sc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/sql-optimization-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "sql-optimization-patterns. Master SQL query optimization, indexing strategies, and EXPLAIN analysis to dramatically improve database performance and eliminate slow queries. Use when debugging slow queries, designing database sc Platforms: claude_code."} +{"id": "2f56ad6a05f201bc04a587d8d6765fdaa9847cf24528a7c32d6da2b275bf3720", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "brand-monitoring", "description": "When the user wants to monitor brand mentions, detect trademark infringement, or set up brand monitoring. Also use when the user mentions \"brand monitoring,\" \"brand watch,\" \"trademark watch,\" \"brand mentions,\" \"impersonation detection,\" \"counterfeit detection,\" or \"brand abuse monitoring.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/brand-monitoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-monitoring"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "brand-monitoring. When the user wants to monitor brand mentions, detect trademark infringement, or set up brand monitoring. Also use when the user mentions \"brand monitoring,\" \"brand watch,\" \"trademark watch,\" \"brand mentions,\" \"impersonation detection,\" \"counterfeit detection,\" or \"brand abuse monitoring.\" Platforms: claude_code."} +{"id": "e87e67765ebf43d22ddacc3af8badb64634adcde41c337cec087b5aad1be7c5c", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "testing-skills-with-subagents", "description": "Use when creating or editing skills, before deployment, to verify they work under pressure and resist rationalization - applies RED-GREEN-REFACTOR cycle to process documentation by running baseline wi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-extending-claude/skills/testing-skills-with-subagents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "testing-skills-with-subagents. Use when creating or editing skills, before deployment, to verify they work under pressure and resist rationalization - applies RED-GREEN-REFACTOR cycle to process documentation by running baseline wi Platforms: claude_code."} +{"id": "82f8a1cc5dee58990191bbc2ee8caa395499fe9f2dc504ee794a72801988eeb2", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "usability-testing", "description": "Plan, run, and synthesize usability tests and produce a Usability Test Pack (test plan, tasks/script, logistics, notes template, issue log, findings + recommendations). Use for usability test, user te", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/usability-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "usability-testing. Plan, run, and synthesize usability tests and produce a Usability Test Pack (test plan, tasks/script, logistics, notes template, issue log, findings + recommendations). Use for usability test, user te Platforms: claude_code."} +{"id": "6315ec6b69e6db524808f885034faa634f0c88eb2e89b1294e8cec22fca039f1", "repo_url": "https://github.com/chujianyun/skills", "name": "prompt-optimizer", "description": "Prompt engineering expert that helps users craft optimized prompts using 57 proven frameworks. Use when users want to optimize prompts, improve AI instructions, create better prompts for specific task", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/chujianyun/skills/blob/main/skills/prompt-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 648, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T02:04:14Z"}, "embedding_text": "prompt-optimizer. Prompt engineering expert that helps users craft optimized prompts using 57 proven frameworks. Use when users want to optimize prompts, improve AI instructions, create better prompts for specific task Platforms: claude_code."} +{"id": "9643d2408a8731d8599e1494a923cf526308c60f0af92ca8274fd212760c223a", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "metrics-frameworks", "description": "Defines right metrics using North Star framework, AARRR, and leading vs lagging indicators. Use when choosing metrics, instrumenting products, creating dashboards, or distinguishing vanity metrics fro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/metrics-frameworks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "metrics-frameworks. Defines right metrics using North Star framework, AARRR, and leading vs lagging indicators. Use when choosing metrics, instrumenting products, creating dashboards, or distinguishing vanity metrics fro Platforms: claude_code."} +{"id": "2623465e8b01962b22fd5a98e74d329058b473971e4022db8c1d84e6575641a9", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "geotoolbox", "description": "GeoToolbox PlaceDescriptor patterns with MapKit integration for location representation, geocoding, and multi-service place identifiers. Use when working with place descriptors, geocoding, or cross-se", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/mapkit/geotoolbox/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "geotoolbox. GeoToolbox PlaceDescriptor patterns with MapKit integration for location representation, geocoding, and multi-service place identifiers. Use when working with place descriptors, geocoding, or cross-se Platforms: claude_code."} +{"id": "985883dbed555b7a74a3d7b8352c94554f92c067761e686461007c0efee7fff0", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "api-documentation-writer", "description": "Generate comprehensive API documentation including endpoint descriptions, request/response examples, authentication guides, error codes, and SDKs. Creates OpenAPI/Swagger specs, REST API docs, and dev", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/api-documentation-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "api-documentation-writer. Generate comprehensive API documentation including endpoint descriptions, request/response examples, authentication guides, error codes, and SDKs. Creates OpenAPI/Swagger specs, REST API docs, and dev Platforms: claude_code."} +{"id": "a748929b5ae3eeee2c327b302aa661421512264c957b0fb1841d1bc95aedd28f", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "playwright-patterns", "description": "Use when writing Playwright automation code, building web scrapers, or creating E2E tests - provides best practices for selector strategies, waiting patterns, and robust automation that minimizes flak", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-playwright/skills/playwright-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "playwright-patterns. Use when writing Playwright automation code, building web scrapers, or creating E2E tests - provides best practices for selector strategies, waiting patterns, and robust automation that minimizes flak Platforms: claude_code."} +{"id": "4b5499aa83bb8b070da1caaae8beb70c85da09cd43adb1ef322b553d825c43e6", "repo_url": "https://github.com/letta-ai/lettabot", "name": "video-frames", "description": "Extract frames or short clips from videos using ffmpeg.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/video-frames/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "video-frames. Extract frames or short clips from videos using ffmpeg. Platforms: claude_code."} +{"id": "7478f01152ce59cf6860b3816273ca448bcb38a037d9fea93a7f2c28609d6b84", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "faiss", "description": "Facebook's library for efficient similarity search and clustering of dense vectors. Supports billions of vectors, GPU acceleration, and various index types (Flat, IVF, HNSW). Use for fast k-NN search,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/faiss/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "faiss. Facebook's library for efficient similarity search and clustering of dense vectors. Supports billions of vectors, GPU acceleration, and various index types (Flat, IVF, HNSW). Use for fast k-NN search, Platforms: linux, macos."} +{"id": "50534b6c07cbaf27a6e5a6969a4be07ad3f4a9ea0117e7d82fec6e6294d05ebc", "repo_url": "https://github.com/openhands/skills", "name": "npm", "description": "Handle npm package installation in non-interactive environments by piping confirmations. Use when installing Node.js packages that require user confirmation prompts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openhands/skills/blob/main/skills/npm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:56:03Z"}, "embedding_text": "npm. Handle npm package installation in non-interactive environments by piping confirmations. Use when installing Node.js packages that require user confirmation prompts. Platforms: claude_code."} +{"id": "af095912306b5a0f7e4ed764b00c7b846a67a2c2869f6db3e73478ca05d54f64", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "html-to-pdf", "description": "Convert HTML to PDF with pixel-perfect rendering and excellent Hebrew/RTL support. Use when the user asks to 'convert HTML to PDF', 'generate PDF from HTML', 'create PDF from webpage', 'export to PDF'", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/skills/html-to-pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "html-to-pdf. Convert HTML to PDF with pixel-perfect rendering and excellent Hebrew/RTL support. Use when the user asks to 'convert HTML to PDF', 'generate PDF from HTML', 'create PDF from webpage', 'export to PDF' Platforms: claude_code."} +{"id": "cec7e0275e40fbfd63fef99a564b81274d7e789654c6ed678965c94f99192261", "repo_url": "https://github.com/pwafire/pwafire", "name": "dev", "description": "Develop and maintain the PWAFire PWA utilities library. Use when working on pwafire package, adding PWA APIs, fixing modules, writing tests, or contributing to the PWAFire codebase.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pwafire/pwafire/blob/main/.cursor/skills/dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 209, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T00:50:43Z"}, "embedding_text": "dev. Develop and maintain the PWAFire PWA utilities library. Use when working on pwafire package, adding PWA APIs, fixing modules, writing tests, or contributing to the PWAFire codebase. Platforms: claude_code."} +{"id": "f27d9e9970f03a766b76f82656e609fed73360cb2ce43f2fea007ffc4df673e2", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "enrich", "description": "Enrich paper metadata using LLM extraction. Extract table of contents (TOC), conclusions (L3), and backfill abstracts. Use when the user wants to extract conclusions, build TOC, or backfill missing ab", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/enrich/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "enrich. Enrich paper metadata using LLM extraction. Extract table of contents (TOC), conclusions (L3), and backfill abstracts. Use when the user wants to extract conclusions, build TOC, or backfill missing ab Platforms: claude_code."} +{"id": "4ac6d000e48ebe95f564a2393e21b49bb8ab149c6c95344f76f5c7e330891a09", "repo_url": "https://github.com/letta-ai/skills", "name": "morph-warpgrep", "description": "Integration guide for Morph's WarpGrep (fast agentic code search) and Fast Apply (10,500 tok/s code editing). Use when building coding agents that need fast, accurate code search or need to apply AI-generated edits to code efficiently. Particularly useful for large codebases, deep logic queries, bug tracing, and code path analysis.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/skills/blob/main/tools/morph-warpgrep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install morph-warpgrep"}, "quality": {"stars": 121, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:17:12Z"}, "embedding_text": "morph-warpgrep. Integration guide for Morph's WarpGrep (fast agentic code search) and Fast Apply (10,500 tok/s code editing). Use when building coding agents that need fast, accurate code search or need to apply AI-generated edits to code efficiently. Particularly useful for large codebases, deep logic queries, bug tracing, and code path analysis. Platforms: claude_code."} +{"id": "3d0a834e4a5069ee59c136b56ff02757f9003f1eb592943b78b3097d674cfa25", "repo_url": "https://github.com/kevmoo/dash_skills", "name": "dart-package-maintenance", "description": "Guidelines for maintaining external Dart packages, covering versioning,\npublishing workflows, and pull request management. Use when updating Dart\npackages, preparing for a release, or managing collabo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevmoo/dash_skills/blob/main/skills/dart-package-maintenance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 138, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T08:00:20Z"}, "embedding_text": "dart-package-maintenance. Guidelines for maintaining external Dart packages, covering versioning,\npublishing workflows, and pull request management. Use when updating Dart\npackages, preparing for a release, or managing collabo Platforms: claude_code."} +{"id": "e4ee08c623a213c2bc91e49e352fd9a2b9395ee35245c66013815700b8d3016d", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "macos-development", "description": "Comprehensive macOS development guidance including Swift 6+, SwiftUI, SwiftData, architecture patterns, AppKit bridging, and macOS 26 Tahoe APIs. Use for macOS code review, best practices, UI review,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/macos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "macos-development. Comprehensive macOS development guidance including Swift 6+, SwiftUI, SwiftData, architecture patterns, AppKit bridging, and macOS 26 Tahoe APIs. Use for macOS code review, best practices, UI review, Platforms: claude_code."} +{"id": "864b899eb1aba70bcf195fa2d9959757aad914bdcd768a90eb0243a6e89cf23f", "repo_url": "https://github.com/aahl/skills", "name": "zai-tts", "description": "Text-to-speech conversion using GLM-TTS service via the `uvx zai-tts` command for generating audio from text. Use when (1) User requests audio/voice output with the \"tts\" trigger or keyword. (2) Content needs to be spoken rather than read (multitasking, accessibility, podcast, driving, cooking). (3) Using pre-cloned voices for speech.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/zai-tts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zai-tts"}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T10:12:15Z"}, "embedding_text": "zai-tts. Text-to-speech conversion using GLM-TTS service via the `uvx zai-tts` command for generating audio from text. Use when (1) User requests audio/voice output with the \"tts\" trigger or keyword. (2) Content needs to be spoken rather than read (multitasking, accessibility, podcast, driving, cooking). (3) Using pre-cloned voices for speech. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} +{"id": "9361fd902e806922f9c94a1f60d10cd7cab33f7a8a2d020f104d62c82f94e4b2", "repo_url": "https://github.com/packmindhub/packmind", "name": "doc-audit", "description": "Audit Packmind end-user documentation (apps/doc/) for broken links, outdated CLI references, non-existent concepts, misleading information, and missing coverage. Produces a structured markdown report", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/packmindhub/packmind/blob/main/.claude/skills/cli-e2e-test-authoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:14:12Z"}, "embedding_text": "doc-audit. Audit Packmind end-user documentation (apps/doc/) for broken links, outdated CLI references, non-existent concepts, misleading information, and missing coverage. Produces a structured markdown report Platforms: claude_code."} +{"id": "83b39794a61e2039d249a19cb6bed964b6891309e34abef7968bb06471f311b9", "repo_url": "https://github.com/lylo/pagecord", "name": "ci", "description": "Run the CI pipeline locally (brakeman, rubocop, importmap audit, tests). Use when asked to run CI, check code quality, or verify code before pushing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lylo/pagecord/blob/main/.agents/skills/ci/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 176, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:53:29Z"}, "embedding_text": "ci. Run the CI pipeline locally (brakeman, rubocop, importmap audit, tests). Use when asked to run CI, check code quality, or verify code before pushing. Platforms: claude_code."} +{"id": "171e42cc46e2d0dc7c0b1ef19afef16aaff3fa25fca70a127556125df435bba3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "eeat-signals", "description": "When the user wants to improve E-E-A-T, add trust signals, or optimize for expertise and authority. Also use when the user mentions \"E-E-A-T,\" \"E-E-A-T signals,\" \"experience expertise authority trust,\" \"author bio,\" \"YMYL,\" \"trust signals,\" \"expertise signals,\" \"authority signals,\" \"citations,\" \"references,\" or \"credibility.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/eeat-signals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install eeat-signals"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "eeat-signals. When the user wants to improve E-E-A-T, add trust signals, or optimize for expertise and authority. Also use when the user mentions \"E-E-A-T,\" \"E-E-A-T signals,\" \"experience expertise authority trust,\" \"author bio,\" \"YMYL,\" \"trust signals,\" \"expertise signals,\" \"authority signals,\" \"citations,\" \"references,\" or \"credibility.\" Platforms: claude_code."} +{"id": "58c3a1d70b788ccb148e87bdf6e67a2de2c1a8a4609db0fd2d1c5c393310ac22", "repo_url": "https://github.com/zscole/model-hierarchy-skill", "name": "model-hierarchy", "description": "Cost-optimize AI agent operations by routing tasks to appropriate models based on complexity. Use this skill when: (1) deciding which model to use for a task, (2) spawning sub-agents, (3) considering cost efficiency, (4) the current model feels like overkill for the task. Triggers: \"model routing\", \"cost optimization\", \"which model\", \"too expensive\", \"spawn agent\".\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zscole/model-hierarchy-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install model-hierarchy"}, "quality": {"stars": 341, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T16:55:41Z"}, "embedding_text": "model-hierarchy. Cost-optimize AI agent operations by routing tasks to appropriate models based on complexity. Use this skill when: (1) deciding which model to use for a task, (2) spawning sub-agents, (3) considering cost efficiency, (4) the current model feels like overkill for the task. Triggers: \"model routing\", \"cost optimization\", \"which model\", \"too expensive\", \"spawn agent\".\n Platforms: claude_code."} +{"id": "5cb6bb12c8889bfe63b0adecd5332bd29e7f3a7f9295be3a7699d8449a90caa5", "repo_url": "https://github.com/minimax-ai/skills", "name": "ios-application-dev", "description": "iOS application development guide covering UIKit, SnapKit, and SwiftUI. Includes touch targets, safe areas, navigation patterns, Dynamic Type, Dark Mode, accessibility, collection views, common UI com", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/skills/ios-application-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "ios-application-dev. iOS application development guide covering UIKit, SnapKit, and SwiftUI. Includes touch targets, safe areas, navigation patterns, Dynamic Type, Dark Mode, accessibility, collection views, common UI com Platforms: claude_code."} +{"id": "88cbd98f0eb3c09f41e156da5c447585781fd4b8188427e036d3d71da83014eb", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "create-adr", "description": "Creates a NEW Architectural Decision Record (ADR) documenting a specific architectural decision. Use when the user requests \"Create ADR for [topic]\", \"Document decision about [topic]\", \"Write ADR for", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/skills/create-adr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T18:12:57Z"}, "embedding_text": "create-adr. Creates a NEW Architectural Decision Record (ADR) documenting a specific architectural decision. Use when the user requests \"Create ADR for [topic]\", \"Document decision about [topic]\", \"Write ADR for Platforms: claude_code."} +{"id": "33da3d87822db51c31119a4e0cd5f4dffba36fdbaab4fbda275d19be530825aa", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-elastic-san", "description": "Expert knowledge for Azure Elastic SAN development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, and integration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-elastic-san/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-elastic-san. Expert knowledge for Azure Elastic SAN development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, and integration Platforms: claude_code."} +{"id": "d7e202ea976de12c7b691241b45ce25ea900e3f008908fcf5559b0cb657934b5", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "open-source-strategy", "description": "When the user wants open source strategy, OSS commercialization, or open source growth. Also use when the user mentions \"open source strategy,\" \"OSS strategy,\" \"open source commercialization,\" \"open source to paid,\" \"open core,\" \"COSS,\" \"commercial open source,\" \"GitHub stars strategy,\" \"DevHunt,\" \"open source marketing,\" \"open source growth,\" \"Llama,\" \"Dify,\" \"Cursor,\" \"open source business model,\" or \"developer tools directory.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/open-source/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install open-source-strategy"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "open-source-strategy. When the user wants open source strategy, OSS commercialization, or open source growth. Also use when the user mentions \"open source strategy,\" \"OSS strategy,\" \"open source commercialization,\" \"open source to paid,\" \"open core,\" \"COSS,\" \"commercial open source,\" \"GitHub stars strategy,\" \"DevHunt,\" \"open source marketing,\" \"open source growth,\" \"Llama,\" \"Dify,\" \"Cursor,\" \"open source business model,\" or \"developer tools directory.\" Platforms: claude_code."} +{"id": "cc73ba515f37cc41a1f11a1dd2947a9ee033f4f4c0fad61e94102c4de702f8ac", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-scan-code", "description": "Ghost Security - SAST code scanner. Finds security vulnerabilities in source code by planning and executing targeted scans for issues like SQL injection, XSS, BOLA, BFLA, SSRF, and other OWASP categories. Supports applications (backend, frontend, mobile) and libraries (prototype pollution, unsafe deserialization, ReDoS, path traversal, zip slip). Use when the user asks for a code security audit, SAST scan, vulnerability scan of source code, or wants to find security flaws in a codebase or library.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/scan-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-scan-code"}, "quality": {"stars": 393, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-scan-code. Ghost Security - SAST code scanner. Finds security vulnerabilities in source code by planning and executing targeted scans for issues like SQL injection, XSS, BOLA, BFLA, SSRF, and other OWASP categories. Supports applications (backend, frontend, mobile) and libraries (prototype pollution, unsafe deserialization, ReDoS, path traversal, zip slip). Use when the user asks for a code security audit, SAST scan, vulnerability scan of source code, or wants to find security flaws in a codebase or library. Platforms: claude_code."} +{"id": "5c2fe8f5cfb2dba2fb9f763d49755830e2aa0cdf5b796fe9684bd2b232c79267", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-data-share", "description": "Expert knowledge for Azure Data Share development including troubleshooting, decision making, security, configuration, and deployment. Use when estimating Data Share costs, managing invitations/RBAC,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-data-share/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-data-share. Expert knowledge for Azure Data Share development including troubleshooting, decision making, security, configuration, and deployment. Use when estimating Data Share costs, managing invitations/RBAC, Platforms: claude_code."} +{"id": "76b31825f6d83a7fea84415051d48b906b8891e105b1edf54478fa9f4e286f35", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "meta-description", "description": "When the user wants to optimize the meta description or meta tag description. Also use when the user mentions \"meta description,\" \"meta desc,\" \"page description,\" \"SEO description,\" \"search snippet,\" \"SERP description,\" \"description tag,\" \"snippet for search,\" \"meta description length,\" \"rewrite meta description,\" or \"description not showing.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/description/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install meta-description"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "meta-description. When the user wants to optimize the meta description or meta tag description. Also use when the user mentions \"meta description,\" \"meta desc,\" \"page description,\" \"SEO description,\" \"search snippet,\" \"SERP description,\" \"description tag,\" \"snippet for search,\" \"meta description length,\" \"rewrite meta description,\" or \"description not showing.\" Platforms: claude_code."} +{"id": "cdb1d0726fed5b6bec1d9bc13a2ca950856a81483f8d823f0c840cf1f18d5be5", "repo_url": "https://github.com/hkuds/nanobot", "name": "cron", "description": "Schedule reminders and recurring tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hkuds/nanobot/blob/main/nanobot/skills/cron/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44523, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:46:48Z"}, "embedding_text": "cron. Schedule reminders and recurring tasks. Platforms: claude_code."} +{"id": "451b27a510578e4f9a9857fb3d9b09c14824e0adac97fe414b16f08b3c71a9cb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "multi-domain-brand-seo", "description": "When the user wants to optimize brand search for a company with multiple domains (e.g. parent company.com vs product.ai). Ensure the parent/company domain ranks first for brand queries. Also use when the user mentions \"brand search,\" \"multi-domain SEO,\" \"company domain first,\" \"parent vs product domain,\" \"hub-spoke domain,\" \"brand SERP control,\" or \"differentiate company and product domains.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/domain/multi-domain-brand-seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install multi-domain-brand-seo"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "multi-domain-brand-seo. When the user wants to optimize brand search for a company with multiple domains (e.g. parent company.com vs product.ai). Ensure the parent/company domain ranks first for brand queries. Also use when the user mentions \"brand search,\" \"multi-domain SEO,\" \"company domain first,\" \"parent vs product domain,\" \"hub-spoke domain,\" \"brand SERP control,\" or \"differentiate company and product domains.\" Platforms: claude_code."} +{"id": "e705eb513001bffba519b4226831c7a695e13a1e8e238809a242596c3a041fdc", "repo_url": "https://github.com/react-native-vibe-code/react-native-vibe-code-sdk", "name": "prd", "description": "Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan thi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/react-native-vibe-code/react-native-vibe-code-sdk/blob/main/.claude/skills/prd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 202, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-13T16:16:56Z"}, "embedding_text": "prd. Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan thi Platforms: claude_code."} +{"id": "53f7eaa41c6dd1a840ce3d660e532fce6af6da897e47169a70f5cccd699f9c73", "repo_url": "https://github.com/taylorhuston/local-life-manager", "name": "issue", "description": "Create standalone work items (TASK, BUG, or SPIKE) with AI-assisted type detection. Use when you need to track work that needs doing, exploration needed, or something broken.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/taylorhuston/local-life-manager/blob/main/.claude/skills/issue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T16:00:30Z"}, "embedding_text": "issue. Create standalone work items (TASK, BUG, or SPIKE) with AI-assisted type detection. Use when you need to track work that needs doing, exploration needed, or something broken. Platforms: claude_code."} +{"id": "d4bca0c590564918cae2fab4a20d7ff2760378f0d44d21ce1cdc6c2d8e08dbd0", "repo_url": "https://github.com/jeffallan/claude-skills", "name": "code-documenter", "description": "Generates, formats, and validates technical documentation \u2014 including docstrings, OpenAPI/Swagger specs, JSDoc annotations, doc portals, and user guides. Use when adding docstrings to functions or classes, creating API documentation, building documentation sites, or writing tutorials and user guides. Invoke for OpenAPI/Swagger specs, JSDoc, doc portals, getting started guides.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agents", "claude", "claude-code", "claude-marketplace", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffallan/claude-skills/blob/main/skills/code-documenter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-documenter"}, "quality": {"stars": 10110, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T13:35:05Z"}, "embedding_text": "code-documenter. Generates, formats, and validates technical documentation \u2014 including docstrings, OpenAPI/Swagger specs, JSDoc annotations, doc portals, and user guides. Use when adding docstrings to functions or classes, creating API documentation, building documentation sites, or writing tutorials and user guides. Invoke for OpenAPI/Swagger specs, JSDoc, doc portals, getting started guides. Categories: ai-agents, claude, claude-code, claude-marketplace, claude-skills. Platforms: claude_code."} +{"id": "1c97f450fbdabea6ce5fe40ff56e41106794c66446d889e117718893f52f0c84", "repo_url": "https://github.com/glebis/claude-skills", "name": "github-gist", "description": "Publish files or Obsidian notes as GitHub Gists. Use when user wants to share code/notes publicly, create quick shareable snippets, or publish markdown to GitHub. Triggers include \"publish as gist\", \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/github-gist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "github-gist. Publish files or Obsidian notes as GitHub Gists. Use when user wants to share code/notes publicly, create quick shareable snippets, or publish markdown to GitHub. Triggers include \"publish as gist\", \" Platforms: claude_code."} +{"id": "3048a7111ad3e01eee38dc2fbe41d0a7cc2e7ce8256a72335cb07603ab23c8fc", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "feedback-page-generator", "description": "When the user wants to create, optimize, or audit a feedback or roadmap page. Also use when the user mentions \"feedback page,\" \"roadmap,\" \"feature requests,\" \"vote on features,\" \"Canny,\" \"UserVoice,\" or \"product feedback.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/feedback/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install feedback-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "feedback-page-generator. When the user wants to create, optimize, or audit a feedback or roadmap page. Also use when the user mentions \"feedback page,\" \"roadmap,\" \"feature requests,\" \"vote on features,\" \"Canny,\" \"UserVoice,\" or \"product feedback.\" Platforms: claude_code."} +{"id": "d7106120c5e7dbdac43a86fb09dcb90d1d40752c682dfadf49a704491a69af96", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-dedicated-hsm", "description": "Expert knowledge for Azure Dedicated HSM development including troubleshooting, decision making, architecture & design patterns, security, and deployment. Use when sizing HSM clusters, configuring VNe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-dedicated-hsm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-dedicated-hsm. Expert knowledge for Azure Dedicated HSM development including troubleshooting, decision making, architecture & design patterns, security, and deployment. Use when sizing HSM clusters, configuring VNe Platforms: claude_code."} +{"id": "197c344f9a8372bcc8e90b383e4739d4be4f51cf1a0b824b5f8897d9f298d394", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "faq-page-generator", "description": "When the user wants to create, optimize, or audit FAQ page content. Also use when the user mentions \"FAQ page,\" \"frequently asked questions,\" \"help page,\" \"Q&A page,\" \"FAQ schema,\" \"FAQ section,\" \"common questions,\" \"FAQ SEO,\" \"accordion FAQ,\" \"People Also Ask,\" \"PAA,\" \"People Also Search For,\" \"PASF,\" \"FAQ rich results,\" or \"FAQ for GEO.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/faq/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install faq-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "faq-page-generator. When the user wants to create, optimize, or audit FAQ page content. Also use when the user mentions \"FAQ page,\" \"frequently asked questions,\" \"help page,\" \"Q&A page,\" \"FAQ schema,\" \"FAQ section,\" \"common questions,\" \"FAQ SEO,\" \"accordion FAQ,\" \"People Also Ask,\" \"PAA,\" \"People Also Search For,\" \"PASF,\" \"FAQ rich results,\" or \"FAQ for GEO.\" Platforms: claude_code."} +{"id": "9e79ef06bc77722b35cb0e3db7db6629ef1dcf1d433f27e9073165c52114c6ee", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "app-clip", "description": "Generates App Clip targets with invocation URL handling, lightweight experiences, and full app upgrade prompts. Use when user wants NFC/QR/Safari banner invocation, instant app experiences, or App Cli", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/app-clip/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "app-clip. Generates App Clip targets with invocation URL handling, lightweight experiences, and full app upgrade prompts. Use when user wants NFC/QR/Safari banner invocation, instant app experiences, or App Cli Platforms: claude_code."} +{"id": "c00e2e7520edbbe252d506be476c34658f5619cbb8d0e39c1c8e0b8c65630098", "repo_url": "https://github.com/jellydn/my-ai-tools", "name": "prd", "description": "Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan thi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jellydn/my-ai-tools/blob/main/skills/prd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 84, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:26:12Z"}, "embedding_text": "prd. Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan thi Platforms: claude_code."} +{"id": "a00f208125b79f091bab8b31bb976d4a89b0d026841c6a6ec4e704b9622409c6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "masonry", "description": "When the user wants to design, optimize, or audit masonry (Pinterest-style) layouts for content display. Also use when the user mentions \"masonry layout,\" \"masonry grid,\" \"Pinterest layout,\" \"waterfall layout,\" \"brick layout,\" \"varying height grid,\" \"gallery layout,\" or \"masonry SEO.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/layout/masonry/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install masonry"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "masonry. When the user wants to design, optimize, or audit masonry (Pinterest-style) layouts for content display. Also use when the user mentions \"masonry layout,\" \"masonry grid,\" \"Pinterest layout,\" \"waterfall layout,\" \"brick layout,\" \"varying height grid,\" \"gallery layout,\" or \"masonry SEO.\" Platforms: claude_code."} +{"id": "0d9bd0015e718723e8acda1cf7031b55125a60517729d5bff4c15c1a935af38f", "repo_url": "https://github.com/googleworkspace/cli", "name": "recipe-copy-sheet-for-new-month", "description": "Duplicate a Google Sheets template tab for a new month of tracking.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/recipe-copy-sheet-for-new-month/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recipe-copy-sheet-for-new-month"}, "quality": {"stars": 27196, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T17:06:34Z"}, "embedding_text": "recipe-copy-sheet-for-new-month. Duplicate a Google Sheets template tab for a new month of tracking. Platforms: claude_code."} +{"id": "db7b1ccffe8e22dbed441fcfe90c904d6b746e1e856b92399a7d159ed5526d67", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "using-generic-agents", "description": "Use to decide what kind of generic agent you should use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-basic-agents/skills/using-generic-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "using-generic-agents. Use to decide what kind of generic agent you should use Platforms: claude_code."} +{"id": "e3d822247e1662bba8582d7cfd9ba6acb657834ac587e506edccf791af52f4de", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "app-extensions", "description": "Generates app extension infrastructure for Share Extensions, Action Extensions, Keyboard Extensions, and Safari Web Extensions with data sharing via App Groups. Use when user wants to add a share exte", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/app-extensions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "app-extensions. Generates app extension infrastructure for Share Extensions, Action Extensions, Keyboard Extensions, and Safari Web Extensions with data sharing via App Groups. Use when user wants to add a share exte Platforms: claude_code."} +{"id": "39072fd46bda7381cf057c66b460394e02930d5984e9c21cb3b588513db41c88", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "promoted-iap", "description": "Generates Promoted In-App Purchase setup with StoreKit 2 product configuration, paywall integration, and App Store product page display. Use when setting up promoted purchases that appear on the App S", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/promoted-iap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "promoted-iap. Generates Promoted In-App Purchase setup with StoreKit 2 product configuration, paywall integration, and App Store product page display. Use when setting up promoted purchases that appear on the App S Platforms: claude_code."} +{"id": "fb6699bc68964cf3e0f5e7eddb55c6d95279782ddcd8c72168be6554658f04e4", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "migration-patterns", "description": "Migration guides for CoreData to SwiftData, UIKit to SwiftUI, ObservableObject to @Observable, XCTest to Swift Testing, Objective-C to Swift, and StoreKit 1 to StoreKit 2. Use when migrating between A", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/ios/migration-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "migration-patterns. Migration guides for CoreData to SwiftData, UIKit to SwiftUI, ObservableObject to @Observable, XCTest to Swift Testing, Objective-C to Swift, and StoreKit 1 to StoreKit 2. Use when migrating between A Platforms: claude_code."} +{"id": "3193b534318013a8f8bbcd64a5fc2fa3ad0bba247804171e4d4d763fdc325deb", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "doc-sync", "description": "Keeps IdeaVim documentation in sync with code changes. Use this skill when you need to verify documentation accuracy after code changes, or when checking if documentation (in doc/, README.md, CONTRIBU", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xsero/docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install doc-sync"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "doc-sync. Keeps IdeaVim documentation in sync with code changes. Use this skill when you need to verify documentation accuracy after code changes, or when checking if documentation (in doc/, README.md, CONTRIBU Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "4d6f99b63207cb4e84c71f5e4a38634ec0dc3231687e9c7cea470139f74cdbd3", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "spotlight-indexing", "description": "Generates Core Spotlight indexing infrastructure for making app content searchable via system Spotlight with rich attributes and deep link integration. Use when user wants to index content for Spotlig", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/spotlight-indexing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "spotlight-indexing. Generates Core Spotlight indexing infrastructure for making app content searchable via system Spotlight with rich attributes and deep link integration. Use when user wants to index content for Spotlig Platforms: claude_code."} +{"id": "490edc0836d91d402fba302c2c0d57d34d541f8b69002dcd97558f75542606d1", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "in-app-events", "description": "Generates In-App Event metadata templates for App Store Connect \u2014 event names, descriptions, badge types, image specs, and deep link configuration. Use when creating events for App Store visibility, e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/in-app-events/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "in-app-events. Generates In-App Event metadata templates for App Store Connect \u2014 event names, descriptions, badge types, image specs, and deep link configuration. Use when creating events for App Store visibility, e Platforms: claude_code."} +{"id": "a71d038571884a03add57a5c333edb2be2f2c7c0182aeef2be21deb49df18967", "repo_url": "https://github.com/timescale/pg-aiguide", "name": "find-hypertable-candidates", "description": "Use this skill to analyze an existing PostgreSQL database and identify which tables should be converted to Timescale/TimescaleDB hypertables.\n\n**Trigger when user asks to:**\n- Analyze database tables for hypertable conversion potential\n- Identify time-series or event tables in an existing schema\n- Evaluate if a table would benefit from Timescale/TimescaleDB\n- Audit PostgreSQL tables for migration to Timescale/TimescaleDB/TigerData\n- Score or rank tables for hypertable candidacy\n\n\n**Keywords:** hypertable candidate, table analysis, migration assessment, Timescale, TimescaleDB, time-series detection, insert-heavy tables, event logs, audit tables\n\nProvides SQL queries to analyze table statistics, index patterns, and query patterns. Includes scoring criteria (8+ points = good candidate) and pattern recognition for IoT, events, transactions, and sequential data.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "ai-coding", "claude-code-plugin", "claude-code-plugins", "claude-code-plugins-marketplace", "claude-marketplace", "claude-plugin", "claude-skills", "docs", "documentation", "mcp", "mcp-server", "postgres", "postgresql", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/timescale/pg-aiguide/blob/main/skills/find-hypertable-candidates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install find-hypertable-candidates"}, "quality": {"stars": 1768, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T15:10:07Z"}, "embedding_text": "find-hypertable-candidates. Use this skill to analyze an existing PostgreSQL database and identify which tables should be converted to Timescale/TimescaleDB hypertables.\n\n**Trigger when user asks to:**\n- Analyze database tables for hypertable conversion potential\n- Identify time-series or event tables in an existing schema\n- Evaluate if a table would benefit from Timescale/TimescaleDB\n- Audit PostgreSQL tables for migration to Timescale/TimescaleDB/TigerData\n- Score or rank tables for hypertable candidacy\n\n\n**Keywords:** hypertable candidate, table analysis, migration assessment, Timescale, TimescaleDB, time-series detection, insert-heavy tables, event logs, audit tables\n\nProvides SQL queries to analyze table statistics, index patterns, and query patterns. Includes scoring criteria (8+ points = good candidate) and pattern recognition for IoT, events, transactions, and sequential data. Categories: ai, ai-agents, ai-coding, claude-code-plugin, claude-code-plugins, claude-code-plugins-marketplace, claude-marketplace, claude-plugin, claude-skills, docs, documentation, mcp, mcp-server, postgres, postgresql, skills. Platforms: claude_code."} +{"id": "0a182d08334f90a4521432c3c9ab1f7412298318ab7fbca128d2af325d564876", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "homepage-generator", "description": "When the user wants to create, optimize, or audit homepage content and structure. Also use when the user mentions \"homepage,\" \"landing page,\" \"main page,\" \"home page,\" \"hero section,\" \"above the fold,\" \"home page design,\" \"landing page optimization,\" \"homepage conversion,\" or \"homepage structure.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/brand/home/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install homepage-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "homepage-generator. When the user wants to create, optimize, or audit homepage content and structure. Also use when the user mentions \"homepage,\" \"landing page,\" \"main page,\" \"home page,\" \"hero section,\" \"above the fold,\" \"home page design,\" \"landing page optimization,\" \"homepage conversion,\" or \"homepage structure.\" Platforms: claude_code."} +{"id": "0fe119489545d8af70c69029a8297165c2be0760edcfb1539a10a5bff1ad554f", "repo_url": "https://github.com/systeminit/swamp", "name": "github-pr", "description": "Create and manage GitHub pull requests. Supports both jujutsu (jj) and git\nversion control. Use when submitting PRs, checking PR status, fixing review\nfeedback, or merging PRs. Triggers on \"submit pr\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/systeminit/swamp/blob/main/.claude/skills/github-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 448, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:28:07Z"}, "embedding_text": "github-pr. Create and manage GitHub pull requests. Supports both jujutsu (jj) and git\nversion control. Use when submitting PRs, checking PR status, fixing review\nfeedback, or merging PRs. Triggers on \"submit pr\" Platforms: claude_code."} +{"id": "ed413ef28566436603a6e05b4f560949ade2136969f294aef2b467eb43e21331", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-contacts-data", "description": "Handle contacts, calendar, files, and notification data delegation from Human Phone. Covers data export, push to Agent Phone, and app import flows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-contacts-data/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-contacts-data. Handle contacts, calendar, files, and notification data delegation from Human Phone. Covers data export, push to Agent Phone, and app import flows. Platforms: claude_code."} +{"id": "7917b150e2f091747f7d2a368776d3034ec4245586b47b52cb42221c7e4728dc", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "product-taste-intuition", "description": "Build stronger product taste + intuition as a PM by running a Taste Calibration Sprint (benchmark set, product critique notes, intuition\u2192hypothesis log, validation plan, practice loop). Use for \u201cprodu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/product-taste-intuition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "product-taste-intuition. Build stronger product taste + intuition as a PM by running a Taste Calibration Sprint (benchmark set, product critique notes, intuition\u2192hypothesis log, validation plan, practice loop). Use for \u201cprodu Platforms: claude_code."} +{"id": "78ae4f7a58e4889f1117c37ed56f7320cfeea6bce8c4e69b71324077a5494f2d", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "vibe-coding", "description": "Turn an idea into a functional, demo-ready prototype using AI-assisted \u201cvibe coding\u201d (timeboxed build loop, prompt pack, build plan, demo script, and safety checks). Use for rapid prototyping and prov", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/vibe-coding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "vibe-coding. Turn an idea into a functional, demo-ready prototype using AI-assisted \u201cvibe coding\u201d (timeboxed build loop, prompt pack, build plan, demo script, and safety checks). Use for rapid prototyping and prov Platforms: claude_code."} +{"id": "c43ddb734344dd6dcd91855601bb0b0737cc752a1ab82518385d323f0f0d7b2d", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "toolbars", "description": "Modern SwiftUI toolbar patterns including customizable toolbars, search integration, transition effects, and platform-specific behavior. Use when implementing or customizing toolbars in SwiftUI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/swiftui/toolbars/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "toolbars. Modern SwiftUI toolbar patterns including customizable toolbars, search integration, transition effects, and platform-specific behavior. Use when implementing or customizing toolbars in SwiftUI. Platforms: claude_code."} +{"id": "4d370ef7ee13ca8025335c3fc10fbb486ca726059d08e517c933c5300d5ea75c", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-qr", "description": "Handle QR code scanning delegation from Human Phone. Covers QR scan result retrieval and application in login, payment, and linking flows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-qr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-qr. Handle QR code scanning delegation from Human Phone. Covers QR scan result retrieval and application in login, payment, and linking flows. Platforms: claude_code."} +{"id": "1d08b35fa4cf3e2b8564af61f89f3a1d0f81b66a5c2ded0e6b8c9072548fabb0", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-oauth", "description": "Handle account login credential delegation from Human Phone. Covers username/password entry, social sign-in walls, and multi-step login flows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-oauth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-oauth. Handle account login credential delegation from Human Phone. Covers username/password entry, social sign-in walls, and multi-step login flows. Platforms: claude_code."} +{"id": "4a0e215a2fcbf982b4263752df46eefa8f489b7e42e9e164b4d25ea5fa79ffd7", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "background-processing", "description": "Generates background processing infrastructure with BGTaskScheduler, background refresh, background downloads, and silent push handling. Use when user needs background tasks, periodic refresh, backgro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/background-processing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "background-processing. Generates background processing infrastructure with BGTaskScheduler, background refresh, background downloads, and silent push handling. Use when user needs background tasks, periodic refresh, backgro Platforms: claude_code."} +{"id": "31be78f404630acb8cdd66f5cbe600a1c6cb705eb040317ce3df56dd4f0e7e48", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "analyzing-user-feedback", "description": "Analyze user/customer feedback and produce a User Feedback Analysis Pack (source inventory, normalized feedback table, taxonomy/codebook, themes + evidence, recommendations, and feedback loop). Use fo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/analyzing-user-feedback/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "analyzing-user-feedback. Analyze user/customer feedback and produce a User Feedback Analysis Pack (source inventory, normalized feedback table, taxonomy/codebook, themes + evidence, recommendations, and feedback loop). Use fo Platforms: claude_code."} +{"id": "7c89a444641c0144e6b0464eb4c6f0e75625fac6262c1eeda129db4e14bea590", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "changelog-page-generator", "description": "When the user wants to create, optimize, or structure a changelog or release notes page. Also use when the user mentions \"changelog,\" \"release notes,\" \"what's new,\" \"updates,\" \"product updates,\" \"version history,\" or \"changelog.yourdomain.com.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/changelog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install changelog-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "changelog-page-generator. When the user wants to create, optimize, or structure a changelog or release notes page. Also use when the user mentions \"changelog,\" \"release notes,\" \"what's new,\" \"updates,\" \"product updates,\" \"version history,\" or \"changelog.yourdomain.com.\" Platforms: claude_code."} +{"id": "3ffc3b9e7bc657116b9c74164b01809c19c9e8e8c81a0c258668ca2d42d6c818", "repo_url": "https://github.com/sickn33/antigravity-awesome-skills", "name": "agent-tool-builder", "description": "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...", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sickn33/antigravity-awesome-skills/blob/main/plugins/antigravity-awesome-skills-claude/skills/agent-tool-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:06:23Z"}, "embedding_text": "agent-tool-builder. 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... Platforms: claude_code."} +{"id": "31dd7b84ae81245b1391b29e55aabd7fa748d7d356decdd30bee8a8161db32e0", "repo_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop", "name": "codex-cli", "description": "OpenAI Codex CLI orchestration for AI-assisted development using gpt-5.2-codex model. Capabilities: code generation, refactoring, automated editing, parallel task execution, session management, code r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop/blob/main/.claude/skills/codex-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T11:32:56Z"}, "embedding_text": "codex-cli. OpenAI Codex CLI orchestration for AI-assisted development using gpt-5.2-codex model. Capabilities: code generation, refactoring, automated editing, parallel task execution, session management, code r Platforms: claude_code."} +{"id": "25fa9ac4b653fe46ee301f13586f4bb722c5f24ed950ba7e60e6559e376c47fb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "local-seo", "description": "When the user wants to optimize for local search, set up Google Business Profile, or build local citations. Also use when the user mentions \"local SEO,\" \"Google Business Profile,\" \"Google Maps,\" \"NAP,\" \"citations,\" \"local search,\" \"local business,\" or \"service area.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/local/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install local-seo"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "local-seo. When the user wants to optimize for local search, set up Google Business Profile, or build local citations. Also use when the user mentions \"local SEO,\" \"Google Business Profile,\" \"Google Maps,\" \"NAP,\" \"citations,\" \"local search,\" \"local business,\" or \"service area.\" Platforms: claude_code."} +{"id": "a2f08d97b032bf4b1be8afead50ae05508aef3a04e7871352ddc197edb20c734", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "groups", "description": "Problem-solving strategies for groups in abstract algebra", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/abstract-algebra/groups/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install groups"}, "quality": {"stars": 3823, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "groups. Problem-solving strategies for groups in abstract algebra Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} +{"id": "f2a0c04b1da87dc0ea6f62e447859c84e1ae31869a7bc0ed808f4245503c3682", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "legal-page-generator", "description": "When the user wants to create, optimize, or structure legal pages (Privacy, Terms, etc.). Also use when the user mentions \"privacy policy,\" \"terms of service,\" \"legal pages,\" \"cookie policy,\" \"terms and conditions,\" \"legal footer,\" \"legal section,\" \"compliance pages,\" or \"legal requirements.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/legal/legal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install legal-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "legal-page-generator. When the user wants to create, optimize, or structure legal pages (Privacy, Terms, etc.). Also use when the user mentions \"privacy policy,\" \"terms of service,\" \"legal pages,\" \"cookie policy,\" \"terms and conditions,\" \"legal footer,\" \"legal section,\" \"compliance pages,\" or \"legal requirements.\" Platforms: claude_code."} +{"id": "55bfd8be16064fa87b34a406314228739a099086821c2df766d6758a841b72e7", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "math-model-selector", "description": "Routes problems to appropriate mathematical frameworks using expert heuristics", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/math-model-selector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install math-model-selector"}, "quality": {"stars": 3823, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "math-model-selector. Routes problems to appropriate mathematical frameworks using expert heuristics Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} +{"id": "9d3132c147341acfb0be5a8f6681fd49a73490ecf52905cbccea5b713e413de9", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "onboarding-new-hires", "description": "Help users onboard new team members effectively. Use when someone is planning onboarding for a new hire, starting a new job themselves, designing a first-90-days plan, or trying to ramp up new employe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/onboarding-new-hires/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "onboarding-new-hires. Help users onboard new team members effectively. Use when someone is planning onboarding for a new hire, starting a new job themselves, designing a first-90-days plan, or trying to ramp up new employe Platforms: claude_code."} +{"id": "a8d903bc4370c03aa89e97a80ad08bd0611b190d7a5e6d878b6ef3475933af4e", "repo_url": "https://github.com/microsoft/skills", "name": "azure-storage-blob-py", "description": "Azure Blob Storage SDK for Python. Use for uploading, downloading, listing blobs, managing containers, and blob lifecycle.\nTriggers: \"blob storage\", \"BlobServiceClient\", \"ContainerClient\", \"BlobClient\", \"upload blob\", \"download blob\".\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-python/skills/azure-storage-blob-py/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-storage-blob-py"}, "quality": {"stars": 2600, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:47:24Z"}, "embedding_text": "azure-storage-blob-py. Azure Blob Storage SDK for Python. Use for uploading, downloading, listing blobs, managing containers, and blob lifecycle.\nTriggers: \"blob storage\", \"BlobServiceClient\", \"ContainerClient\", \"BlobClient\", \"upload blob\", \"download blob\".\n Platforms: claude_code."} +{"id": "6e762d6976caf2f7f741524117d1c4daecf6f4562c4e817e10cb4322fd9bd1d9", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "product-development", "description": "End-to-end product development for iOS/macOS apps. Covers market research, competitive analysis, PRD generation, architecture specs, UX design, implementation guides, testing, and App Store release. U", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/product/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "product-development. End-to-end product development for iOS/macOS apps. Covers market research, competitive analysis, PRD generation, architecture specs, UX design, implementation guides, testing, and App Store release. U Platforms: claude_code."} +{"id": "d501e2e300367ba55d142d37ab9cc09135f474e007fa060c47414e8cb3db7b3e", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "security", "description": "Security review and guidance for iOS, macOS, and watchOS apps. Covers secure storage, biometric authentication, network security, and platform-specific patterns. Use when implementing security feature", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "security. Security review and guidance for iOS, macOS, and watchOS apps. Covers secure storage, biometric authentication, network security, and platform-specific patterns. Use when implementing security feature Platforms: claude_code."} +{"id": "381498d026456c7c837e496b8217cab4a4d34716eccd6870c269ae3a012b9cdc", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "playwright-ci-caching", "description": "Cache Playwright browser binaries in CI/CD pipelines (GitHub Actions, Azure DevOps) to avoid 1-2 minute download overhead on every build.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/playwright-ci-caching/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install playwright-ci-caching"}, "quality": {"stars": 1024, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T01:02:32Z"}, "embedding_text": "playwright-ci-caching. Cache Playwright browser binaries in CI/CD pipelines (GitHub Actions, Azure DevOps) to avoid 1-2 minute download overhead on every build. Platforms: claude_code."} +{"id": "84b29a009841cfd536f786c33fb69da42aedf95539953ba39a2c7c8708de4161", "repo_url": "https://github.com/karanjot786/agent-skills-cli", "name": "deep-researcher", "description": "Performs comprehensive, multi-layered research on any topic with structured analysis and synthesis of information from multiple sources. Use when the user needs thorough investigation, market research, technical deep-dives, due diligence, or comprehensive analysis on any subject.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "ai", "ai-agents", "antigravity", "claude-code", "claude-skills", "cli", "cursor", "developer-tools", "github-copilot", "llm", "marketplace", "openai", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/karanjot786/agent-skills-cli/blob/main/skills/deep-researcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deep-researcher"}, "quality": {"stars": 162, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T08:02:45Z"}, "embedding_text": "deep-researcher. Performs comprehensive, multi-layered research on any topic with structured analysis and synthesis of information from multiple sources. Use when the user needs thorough investigation, market research, technical deep-dives, due diligence, or comprehensive analysis on any subject. Categories: agent-skills, ai, ai-agents, antigravity, claude-code, claude-skills, cli, cursor, developer-tools, github-copilot, llm, marketplace, openai, typescript. Platforms: claude_code."} +{"id": "5b67141470aa26e86109f4df6e99c55d68d6f9312b4295d5821fad9e755e4c7c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "grokipedia-recommendations", "description": "When the user wants to add recommendations, links, or content to Grokipedia. Also use when the user mentions \"Grokipedia,\" \"GEO wiki,\" \"AI encyclopedia,\" \"suggest Grokipedia article,\" \"Grokipedia citation,\" \"Grokipedia listing,\" \"AI search citation,\" \"GEO visibility,\" or \"Grokipedia optimization.\" For parasite SEO strategy, use parasite-seo.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/grokipedia/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install grokipedia-recommendations"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "grokipedia-recommendations. When the user wants to add recommendations, links, or content to Grokipedia. Also use when the user mentions \"Grokipedia,\" \"GEO wiki,\" \"AI encyclopedia,\" \"suggest Grokipedia article,\" \"Grokipedia citation,\" \"Grokipedia listing,\" \"AI search citation,\" \"GEO visibility,\" or \"Grokipedia optimization.\" For parasite SEO strategy, use parasite-seo. Platforms: claude_code."} +{"id": "378c2c8473dfeb9830fdbf40fd4a770dfee12c16a003a7af02139d138109ca0f", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "matrices", "description": "Problem-solving strategies for matrices in linear algebra", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/linear-algebra/matrices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matrices"}, "quality": {"stars": 3823, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "matrices. Problem-solving strategies for matrices in linear algebra Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} +{"id": "7b8c2a9c84641a9ae011096045606cb37bb5d61be767e32e3ff3d51c7bfd5260", "repo_url": "https://github.com/matrixorigin/memoria", "name": "architecture", "description": "Memoria codebase structure, workspace layout, key traits, database tables, config patterns, and testing conventions. Use when navigating or modifying Memoria code.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matrixorigin/memoria/blob/main/skills/architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 288, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T04:00:20Z"}, "embedding_text": "architecture. Memoria codebase structure, workspace layout, key traits, database tables, config patterns, and testing conventions. Use when navigating or modifying Memoria code. Platforms: claude_code."} +{"id": "d4ca661d113c4f618c92250c61454d09325a3ab9e7fadf62486415a1aefdec71", "repo_url": "https://github.com/jimliu/baoyu-skills", "name": "baoyu-translate", "description": "Translates articles and documents between languages with three modes - quick (direct), normal (analyze then translate), and refined (analyze, translate, review, polish). Supports custom glossaries and terminology consistency via EXTEND.md. Use when user asks to \"translate\", \"\u7ffb\u8bd1\", \"\u7cbe\u7ffb\", \"translate article\", \"translate to Chinese/English\", \"\u6539\u6210\u4e2d\u6587\", \"\u6539\u6210\u82f1\u6587\", \"convert to Chinese\", \"localize\", \"\u672c\u5730\u5316\", or needs any document translation. Also triggers for \"refined translation\", \"\u7cbe\u7ec6\u7ffb\u8bd1\", \"proofread translation\", \"\u5feb\u901f\u7ffb\u8bd1\", \"\u5feb\u7ffb\", \"\u8fd9\u7bc7\u6587\u7ae0\u7ffb\u8bd1\u4e00\u4e0b\", or when a URL or file is provided with translation intent.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "claude-skills", "codex-skills", "openclaw-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jimliu/baoyu-skills/blob/main/skills/baoyu-translate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install baoyu-translate"}, "quality": {"stars": 22165, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T04:02:10Z"}, "embedding_text": "baoyu-translate. Translates articles and documents between languages with three modes - quick (direct), normal (analyze then translate), and refined (analyze, translate, review, polish). Supports custom glossaries and terminology consistency via EXTEND.md. Use when user asks to \"translate\", \"\u7ffb\u8bd1\", \"\u7cbe\u7ffb\", \"translate article\", \"translate to Chinese/English\", \"\u6539\u6210\u4e2d\u6587\", \"\u6539\u6210\u82f1\u6587\", \"convert to Chinese\", \"localize\", \"\u672c\u5730\u5316\", or needs any document translation. Also triggers for \"refined translation\", \"\u7cbe\u7ec6\u7ffb\u8bd1\", \"proofread translation\", \"\u5feb\u901f\u7ffb\u8bd1\", \"\u5feb\u7ffb\", \"\u8fd9\u7bc7\u6587\u7ae0\u7ffb\u8bd1\u4e00\u4e0b\", or when a URL or file is provided with translation intent. Categories: agent-skills, claude-skills, codex-skills, openclaw-skills. Platforms: claude_code."} +{"id": "4d85477a3f72720c9c5d9a5ab4130958a8233e364937c97fe127934bcd215be3", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "paper-writing", "description": "Assist with writing sections of a research paper (Introduction, Related Work, Method, Results, Discussion, Conclusion). Leverages workspace papers for citations and evidence. Use when the user wants h", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/paper-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "paper-writing. Assist with writing sections of a research paper (Introduction, Related Work, Method, Results, Discussion, Conclusion). Leverages workspace papers for citations and evidence. Use when the user wants h Platforms: claude_code."} +{"id": "102e14618955a5941179876bd14ed6e10e25150f98e2f1ab56d145614ca47042", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "fine-tuning-openvla-oft", "description": "Fine-tunes and evaluates OpenVLA-OFT and OpenVLA-OFT+ policies for robot action generation with continuous action heads, LoRA adaptation, and FiLM conditioning on LIBERO simulation and ALOHA real-worl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/18-multimodal/openvla-oft/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 9933, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "fine-tuning-openvla-oft. Fine-tunes and evaluates OpenVLA-OFT and OpenVLA-OFT+ policies for robot action generation with continuous action heads, LoRA adaptation, and FiLM conditioning on LIBERO simulation and ALOHA real-worl Platforms: claude_code."} +{"id": "97f7c97de15af30a591cdebc447e5dc01e6a7280058c8d3e03997060a3413e95", "repo_url": "https://github.com/agent-sh/agentsys", "name": "drift-analysis", "description": "Use when the user asks about plan drift, reality check, comparing docs to code, project state analysis, roadmap alignment, implementation gaps, or needs guidance on identifying discrepancies between d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/drift-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "drift-analysis. Use when the user asks about plan drift, reality check, comparing docs to code, project state analysis, roadmap alignment, implementation gaps, or needs guidance on identifying discrepancies between d Platforms: claude_code."} +{"id": "1e926cb1ead5fc92a77be589c4511d090381c33d78020a88a43ae75e575b02b3", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "attributed-string", "description": "AttributedString patterns for rich text formatting, alignment, selection, and SwiftUI integration. Use when working with styled text, text editing, or AttributedString APIs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/foundation/attributed-string/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "attributed-string. AttributedString patterns for rich text formatting, alignment, selection, and SwiftUI integration. Use when working with styled text, text editing, or AttributedString APIs. Platforms: claude_code."} +{"id": "e433faf235f00e9eb14b6cc764014cb72657c16e1dc28acba508072f65ef5dfe", "repo_url": "https://github.com/secondsky/claude-skills", "name": "mobile-app-testing", "description": "Mobile app testing with unit tests, UI automation, performance testing. Use for test infrastructure, E2E tests, testing standards, or encountering test framework setup, device farms, flaky tests, platform-specific test errors.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/mobile-app-testing/skills/mobile-app-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mobile-app-testing"}, "quality": {"stars": 178, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:27:15Z"}, "embedding_text": "mobile-app-testing. Mobile app testing with unit tests, UI automation, performance testing. Use for test infrastructure, E2E tests, testing standards, or encountering test framework setup, device farms, flaky tests, platform-specific test errors. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} +{"id": "da80404a4c0b3ed4eb6d7b96751ad1b785206fe94781247a2a4ad48aff37d189", "repo_url": "https://github.com/aojdevstudio/finance-guru", "name": "fin-guru-learner-profile", "description": "Build and manage learner profiles for Finance Guru teaching and onboarding. Progressive profiling with ADHD-aware assessment and personalized learning paths.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aojdevstudio/finance-guru/blob/main/.claude/skills/fin-guru-learner-profile/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 309, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T14:29:45Z"}, "embedding_text": "fin-guru-learner-profile. Build and manage learner profiles for Finance Guru teaching and onboarding. Progressive profiling with ADHD-aware assessment and personalized learning paths. Platforms: claude_code."} +{"id": "cb34c8074f62ccb8a65b148cb3fbcd60ea20a0a42620d1709cd315fdcd8e7950", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "wardley", "description": "Wardley Mapping strategic analysis\u2014map value chains against evolution to reveal build vs buy decisions and competitive dynamics. Use for technology strategy or investment decisions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/wardley/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "wardley. Wardley Mapping strategic analysis\u2014map value chains against evolution to reveal build vs buy decisions and competitive dynamics. Use for technology strategy or investment decisions. Platforms: claude_code."} +{"id": "bdb979b1f87c2fe6d218c389f2256b2724687bb11bda684d806a124762981045", "repo_url": "https://github.com/matrixorigin/memoria", "name": "api-reference", "description": "Memoria REST API endpoints, request/response formats, auth, rate limits. Use when calling or implementing API endpoints.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matrixorigin/memoria/blob/main/skills/api-reference/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 288, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T04:00:20Z"}, "embedding_text": "api-reference. Memoria REST API endpoints, request/response formats, auth, rate limits. Use when calling or implementing API endpoints. Platforms: claude_code."} +{"id": "0d55fbcdf9e71a4420ae66f301d3e14353b21ee24a76a90eae72b296960a5ee6", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "ssh-penetration-testing", "description": "This skill should be used when the user asks to \"pentest SSH services\", \"enumerate SSH configurations\", \"brute force SSH credentials\", \"exploit SSH vulnerabilities\", \"perform SSH tunneling\", or \"audit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/fix-erlang-ssh-cve/environment/skills/ssh-penetration-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "ssh-penetration-testing. This skill should be used when the user asks to \"pentest SSH services\", \"enumerate SSH configurations\", \"brute force SSH credentials\", \"exploit SSH vulnerabilities\", \"perform SSH tunneling\", or \"audit Platforms: claude_code."} +{"id": "a089c0d19b3d95f6b8fc29ad28b541445b0dd058a52e88459fddd119839be438", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-swiftui-layout", "description": "Use when layouts need to adapt to different screen sizes, iPad multitasking, or iOS 26 free-form windows \u2014 decision trees for ViewThatFits vs AnyLayout vs onGeometryChange, size class limitations, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-swift/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 989, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:59:11Z"}, "embedding_text": "axiom-swiftui-layout. Use when layouts need to adapt to different screen sizes, iPad multitasking, or iOS 26 free-form windows \u2014 decision trees for ViewThatFits vs AnyLayout vs onGeometryChange, size class limitations, and Platforms: claude_code."} +{"id": "0da7f22a0d16a930d48ef4adef02b4ccc121773ac0611db43de90e271deb401d", "repo_url": "https://github.com/letta-ai/lettabot", "name": "trello", "description": "Manage Trello boards, lists, and cards via the Trello REST API.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/trello/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "trello. Manage Trello boards, lists, and cards via the Trello REST API. Platforms: claude_code."} +{"id": "d827bc411eee189dfb2e189f30758d303a6891f0214e79a55212b19dda0b9423", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "slack-gif-creator", "description": "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 G", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/slack-gif-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "slack-gif-creator. 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 G Platforms: claude_code."} +{"id": "3fabb2b4b491d48e2ac7a1a9d9770e3172abc7a1be9593b665a39a8be4957a7a", "repo_url": "https://github.com/letta-ai/lettabot", "name": "blogwatcher", "description": "Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/blogwatcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "blogwatcher. Monitor blogs and RSS/Atom feeds for updates using the blogwatcher CLI. Platforms: claude_code."} +{"id": "0d9c8d67bee2f4b70d32484a69689e3e6e067ff97459efbc73ae50e1b5d7bf5b", "repo_url": "https://github.com/stickerdaniel/linkedin-mcp-server", "name": "triage-reviews", "description": "Fetch PR review comments, verify each against real code/docs, fix valid issues, commit and push", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/stickerdaniel/linkedin-mcp-server/blob/main/.agents/skills/triage-reviews/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2466, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:49:00Z"}, "embedding_text": "triage-reviews. Fetch PR review comments, verify each against real code/docs, fix valid issues, commit and push Platforms: claude_code."} +{"id": "8247337716fb950d89d951fc31cbe7b5bb4ac12885f19189b41ced699159dec7", "repo_url": "https://github.com/pockebot/openpocket", "name": "solitaire-play", "description": "Play Klondike Solitaire in mobile solitaire apps. Use when the user asks to play/solve/win solitaire, needs move-by-move card decisions, or asks for solitaire operation guidance on phone UI (tap, swip", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/solitaire-play/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "solitaire-play. Play Klondike Solitaire in mobile solitaire apps. Use when the user asks to play/solve/win solitaire, needs move-by-move card decisions, or asks for solitaire operation guidance on phone UI (tap, swip Platforms: claude_code."} +{"id": "ffcc3662446757e3a9274f3f42dc7aab79978510237ab0f73bbba16b96c10778", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "technical-spec", "description": "Defines environment variables, architecture design, and build/test commands. Use when configuring environment or designing architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/frontend-technical-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technical-spec"}, "quality": {"stars": 220, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T03:07:36Z"}, "embedding_text": "technical-spec. Defines environment variables, architecture design, and build/test commands. Use when configuring environment or designing architecture. Platforms: claude_code."} +{"id": "76c0fd7960f549450f4ec35ebb3ad51f0ccb136c0fcd1952cdb5fd6e11c4a798", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-container-apps", "description": "Expert knowledge for Azure Container Apps development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-container-apps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-container-apps. Expert knowledge for Azure Container Apps development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations Platforms: claude_code."} +{"id": "d121ed44bb349c095f1956ca4ae6e95e518ce6c3aad6f2697a8fa91842c2028e", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "data-leakage-detection", "description": "Detect sensitive information disclosure via escalating dialogue probes. Covers system prompt extraction, credential/API key leakage, PII, and internal configuration exposure.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/agent-scan/prompt/skills/data-leakage-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install data-leakage-detection"}, "quality": {"stars": 3948, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:28:01Z"}, "embedding_text": "data-leakage-detection. Detect sensitive information disclosure via escalating dialogue probes. Covers system prompt extraction, credential/API key leakage, PII, and internal configuration exposure. Platforms: claude_code."} +{"id": "fee4de2030255608423778a6ca45671ce8c529b30e9c5ed9011093db912b6975", "repo_url": "https://github.com/albumentations-team/albumentationsx", "name": "benchmark", "description": "Run performance benchmarks for transform changes. Use when the user asks to benchmark, measure performance, compare speed, or when changes affect apply methods, functional layer, get_params, or core p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/albumentations-team/albumentationsx/blob/main/.codex/skills/benchmark/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 487, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:30:19Z"}, "embedding_text": "benchmark. Run performance benchmarks for transform changes. Use when the user asks to benchmark, measure performance, compare speed, or when changes affect apply methods, functional layer, get_params, or core p Platforms: claude_code."} +{"id": "545be0fa4a94aacb3de606ebc0762b75b4be9d532f8b95f0f6bb48d97a6415bc", "repo_url": "https://github.com/yeachan-heo/oh-my-claudecode", "name": "research", "description": "Orchestrate parallel scientist agents for comprehensive research with AUTO mode", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yeachan-heo/oh-my-claudecode/blob/main/skills/autoresearch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36737, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T12:59:43Z"}, "embedding_text": "research. Orchestrate parallel scientist agents for comprehensive research with AUTO mode Platforms: claude_code."} +{"id": "7733810a1b2437817c64ace96275dc91fd1b666a270e414e96480d11839bfb70", "repo_url": "https://github.com/coollabsio/coolify-docs", "name": "renaming-services", "description": "Renames a service documentation file and updates all references across docs/services/, List.vue, and nginx/redirects.conf. Use when renaming services, changing service slugs, fixing camelCase to kebab", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/coollabsio/coolify-docs/blob/v4.x/.claude/skills/renaming-services/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T02:08:02Z"}, "embedding_text": "renaming-services. Renames a service documentation file and updates all references across docs/services/, List.vue, and nginx/redirects.conf. Use when renaming services, changing service slugs, fixing camelCase to kebab Platforms: claude_code."} +{"id": "79145c61a9969082f3c3e4f8d2d589d1f7d759b338a4894fefdb87323f34376b", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "evaluating-candidates", "description": "Make an evidence-based hiring decision and produce a Candidate Evaluation Decision Pack (criteria + scorecard, signal log, work sample/trial plan + rubric, reference check script + summary, decision m", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/evaluating-candidates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "evaluating-candidates. Make an evidence-based hiring decision and produce a Candidate Evaluation Decision Pack (criteria + scorecard, signal log, work sample/trial plan + rubric, reference check script + summary, decision m Platforms: claude_code."} +{"id": "6a5b0fddc73278a9fb7d3c6a3bc3d74de8c42a8f566a55a10c040ee53aa4ac0e", "repo_url": "https://github.com/openakita/openakita", "name": "obra/superpowers@using-superpowers", "description": "Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openakita/openakita/blob/main/examples/plugins/obsidian-kb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1825, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T07:01:07Z"}, "embedding_text": "obra/superpowers@using-superpowers. Use when starting any conversation - establishes how to find and use skills, requiring Skill tool invocation before ANY response including clarifying questions Platforms: claude_code."} +{"id": "320f6c11c25f20058a2617fa1301b5543deee1d8a99d23b5758486ff99cafd1d", "repo_url": "https://github.com/garden-co/jazz", "name": "spec", "description": "Implement features using Spec Driven Development (SDD) workflow. Creates design and task documents with approval gates.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/garden-co/jazz/blob/main/.agents/skills/analyze-local-telemetry/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 111, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:01:37Z"}, "embedding_text": "spec. Implement features using Spec Driven Development (SDD) workflow. Creates design and task documents with approval gates. Platforms: claude_code."} +{"id": "286d595f2a8eb263c8a496aeb08e177e78ff037a2049b76352d4f5a91ef1c809", "repo_url": "https://github.com/wshobson/agents", "name": "bash-defensive-patterns", "description": "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.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/shell-scripting/skills/bash-defensive-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bash-defensive-patterns"}, "quality": {"stars": 37028, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:08:46Z"}, "embedding_text": "bash-defensive-patterns. 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. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} +{"id": "46a52b6774d2b0a346dd16208aa49c511ac6495670515e5fe63a8172e3f86d44", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "content-marketing", "description": "When the user wants to plan content marketing across channels, define content types and formats, or create a content repurposing strategy. Also use when the user mentions \"content marketing strategy,\" \"content types,\" \"content formats,\" \"content repurposing,\" \"content calendar,\" \"content mix,\" \"owned content,\" \"content distribution,\" \"content funnel,\" or \"content planning across channels.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/content-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-marketing"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "content-marketing. When the user wants to plan content marketing across channels, define content types and formats, or create a content repurposing strategy. Also use when the user mentions \"content marketing strategy,\" \"content types,\" \"content formats,\" \"content repurposing,\" \"content calendar,\" \"content mix,\" \"owned content,\" \"content distribution,\" \"content funnel,\" or \"content planning across channels.\" Platforms: claude_code."} +{"id": "a9c64ccb28cc1e99a510756e2485c3abd5946ad6555ee048f4b5f5c7ba454735", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "trust-badges-generator", "description": "When the user wants to add or optimize trust badges, \"Trusted by\" logos, security seals, or social proof elements. Also use when the user mentions \"trust badges,\" \"trusted by,\" \"security badges,\" \"payment logos,\" \"social proof,\" \"trust seals,\" \"SSL badge,\" \"customer logos,\" \"as seen in,\" or \"trust signals.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/conversion/trust-badges/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install trust-badges-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "trust-badges-generator. When the user wants to add or optimize trust badges, \"Trusted by\" logos, security seals, or social proof elements. Also use when the user mentions \"trust badges,\" \"trusted by,\" \"security badges,\" \"payment logos,\" \"social proof,\" \"trust seals,\" \"SSL badge,\" \"customer logos,\" \"as seen in,\" or \"trust signals.\" Platforms: claude_code."} +{"id": "a7f875a48f564cd140faeffd302b7ef81f83c4b5ba28020b770b033978938c81", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "navigation-menu-generator", "description": "When the user wants to design, optimize, or audit site navigation menus. Also use when the user mentions \"navigation,\" \"nav menu,\" \"header menu,\" \"site structure,\" \"menu design,\" \"navbar,\" \"main menu,\" \"mega menu,\" \"dropdown menu,\" \"mobile menu,\" or \"hamburger menu.\" For breadcrumbs, use breadcrumb-generator.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/navigation/navigation-menu/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install navigation-menu-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "navigation-menu-generator. When the user wants to design, optimize, or audit site navigation menus. Also use when the user mentions \"navigation,\" \"nav menu,\" \"header menu,\" \"site structure,\" \"menu design,\" \"navbar,\" \"main menu,\" \"mega menu,\" \"dropdown menu,\" \"mobile menu,\" or \"hamburger menu.\" For breadcrumbs, use breadcrumb-generator. Platforms: claude_code."} +{"id": "d0c9b35cc6e7339ee988cbd52ecfce89bf608f7bf858c18fad8cb266cad48b9d", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "page-metadata", "description": "When the user wants to optimize meta tags other than title, description, Open Graph, or Twitter Cards. Also use when the user mentions \"hreflang,\" \"meta robots,\" \"viewport,\" \"charset,\" \"canonical meta,\" \"other meta tags,\" \"meta robots noindex,\" \"meta robots nofollow,\" \"hreflang tags,\" \"viewport meta,\" or \"meta charset.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/metadata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install page-metadata"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "page-metadata. When the user wants to optimize meta tags other than title, description, Open Graph, or Twitter Cards. Also use when the user mentions \"hreflang,\" \"meta robots,\" \"viewport,\" \"charset,\" \"canonical meta,\" \"other meta tags,\" \"meta robots noindex,\" \"meta robots nofollow,\" \"hreflang tags,\" \"viewport meta,\" or \"meta charset.\" Platforms: claude_code."} +{"id": "32be242984376e96410ebeee319959f8ed36add5b11ac662f976419d1dac5939", "repo_url": "https://github.com/coleam00/custom-agent-with-skills", "name": "weather", "description": "Get weather information for locations using Open-Meteo API. Use when user asks about weather, temperature, or forecasts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/coleam00/custom-agent-with-skills/blob/main/skills/weather/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T18:32:27Z"}, "embedding_text": "weather. Get weather information for locations using Open-Meteo API. Use when user asks about weather, temperature, or forecasts. Platforms: claude_code."} +{"id": "c9c2665f4c4e89134cb6801a27af39981de7ec963c475f053b511ff144db8c3f", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "app-ads", "description": "When the user wants to run app install ads, user acquisition (UA), or promote mobile apps. Also use when the user mentions \"app ads,\" \"app install ads,\" \"UA,\" \"user acquisition,\" \"Google App Campaigns,\" \"Apple Search Ads,\" \"ASA,\" \"UAC,\" \"App Store ads,\" \"Play Store ads,\" \"CPI,\" or \"app promotion.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/formats/app-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install app-ads"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "app-ads. When the user wants to run app install ads, user acquisition (UA), or promote mobile apps. Also use when the user mentions \"app ads,\" \"app install ads,\" \"UA,\" \"user acquisition,\" \"Google App Campaigns,\" \"Apple Search Ads,\" \"ASA,\" \"UAC,\" \"App Store ads,\" \"Play Store ads,\" \"CPI,\" or \"app promotion.\" Platforms: claude_code."} +{"id": "fc46bee7f1df381d8b3f0280a7cc3fe90fb73c847cb4e2f4582c450d338979b1", "repo_url": "https://github.com/hoodini/ai-agents-skills", "name": "aws-strands", "description": "Build AI agents with Strands Agents SDK. Use when developing model-agnostic agents, implementing ReAct patterns, creating multi-agent systems, or building production agents on AWS. Triggers on Strands", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hoodini/ai-agents-skills/blob/master/skills/aws-strands/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 233, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T13:29:17Z"}, "embedding_text": "aws-strands. Build AI agents with Strands Agents SDK. Use when developing model-agnostic agents, implementing ReAct patterns, creating multi-agent systems, or building production agents on AWS. Triggers on Strands Platforms: claude_code."} +{"id": "69994dc405eab45179715c337d5689a428b43b5e3decc4a35f6e1f84a63027e5", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "distribution-channels", "description": "When the user wants to plan product distribution via marketplaces, app stores, or third-party platforms. Also use when the user mentions \"distribution channels,\" \"marketplace listing,\" \"app store listing,\" \"Figma plugin,\" \"Chrome extension marketplace,\" \"AWS Marketplace,\" \"Shopify app,\" \"GPTs store,\" \"app distribution,\" or \"third-party marketplace.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/distribution/distribution-channels/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install distribution-channels"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "distribution-channels. When the user wants to plan product distribution via marketplaces, app stores, or third-party platforms. Also use when the user mentions \"distribution channels,\" \"marketplace listing,\" \"app store listing,\" \"Figma plugin,\" \"Chrome extension marketplace,\" \"AWS Marketplace,\" \"Shopify app,\" \"GPTs store,\" \"app distribution,\" or \"third-party marketplace.\" Platforms: claude_code."} +{"id": "e2becebba25619272954ef8b9091153fe89e95a60c587cf8e8e64d8cd68ec8ca", "repo_url": "https://github.com/managedcode/storage", "name": "mcaf-devex", "description": "Improve developer experience for multi-component solutions: onboarding, F5 contract, cross-platform tasks, local inner loop, and reproducible setup. Use when the repo is hard to run, debug, test, or o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/managedcode/storage/blob/main/.codex/skills/mcaf-devex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 134, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-07T18:48:56Z"}, "embedding_text": "mcaf-devex. Improve developer experience for multi-component solutions: onboarding, F5 contract, cross-platform tasks, local inner loop, and reproducible setup. Use when the repo is hard to run, debug, test, or o Platforms: claude_code."} +{"id": "02f93af6608e37548ea3aee126ae9f710fe95bea4b03d2db51a75380bed86113", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "customer-stories-page-generator", "description": "When the user wants to create, optimize, or audit customer stories or case study pages. Also use when the user mentions \"case studies,\" \"customer stories,\" \"success stories,\" \"testimonials page,\" \"case study,\" \"customer proof,\" \"social proof page,\" or \"results page.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/customer-stories/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install customer-stories-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "customer-stories-page-generator. When the user wants to create, optimize, or audit customer stories or case study pages. Also use when the user mentions \"case studies,\" \"customer stories,\" \"success stories,\" \"testimonials page,\" \"case study,\" \"customer proof,\" \"social proof page,\" or \"results page.\" Platforms: claude_code."} +{"id": "e33c6aa18d486e851a18544f94660f459e997eb2c795a72ecf340dfb20a107f1", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "ue", "description": "UE (user experience engineering) skill for defining end-to-end user experience behavior and interaction logic. Use for tasks like flow design, interaction models, state machines, error recovery, input validation, usability heuristics, accessibility, and turning UX intent into testable acceptance criteria for implementation.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/UE/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ue"}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "ue. UE (user experience engineering) skill for defining end-to-end user experience behavior and interaction logic. Use for tasks like flow design, interaction models, state machines, error recovery, input validation, usability heuristics, accessibility, and turning UX intent into testable acceptance criteria for implementation. Platforms: claude_code."} +{"id": "622c981f1ffa1ce0e1c09520962fdc1938224ac45bad381c92072f21d30b6825", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "seo-monitoring", "description": "When the user wants to build an SEO data analysis system, monitor indexing/traffic/keywords/backlinks, or set up benchmarks. Also use when the user mentions \"SEO data analysis,\" \"SEO monitoring,\" \"article database,\" \"traffic benchmark,\" \"penalty recovery,\" \"SEO work document,\" \"SEO dashboard,\" \"keyword tracking,\" \"ranking monitoring,\" \"indexing report,\" or \"backlink monitoring.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/analytics/seo/seo-monitoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-monitoring"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "seo-monitoring. When the user wants to build an SEO data analysis system, monitor indexing/traffic/keywords/backlinks, or set up benchmarks. Also use when the user mentions \"SEO data analysis,\" \"SEO monitoring,\" \"article database,\" \"traffic benchmark,\" \"penalty recovery,\" \"SEO work document,\" \"SEO dashboard,\" \"keyword tracking,\" \"ranking monitoring,\" \"indexing report,\" or \"backlink monitoring.\" Platforms: claude_code."} +{"id": "f7f57593972c90945672bd8f3b289955a0d3c200b39eedada52f0b2e11473e21", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "display-ads", "description": "When the user wants to run display, banner, or ad network campaigns. Also use when the user mentions \"display ads,\" \"banner ads,\" \"ad network,\" \"ad alliance,\" \"programmatic display,\" \"native ads,\" or \"retargeting display.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/formats/display-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install display-ads"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "display-ads. When the user wants to run display, banner, or ad network campaigns. Also use when the user mentions \"display ads,\" \"banner ads,\" \"ad network,\" \"ad alliance,\" \"programmatic display,\" \"native ads,\" or \"retargeting display.\" Platforms: claude_code."} +{"id": "78b42b03f49715194d51c4055c549d3e8deeb6f7d0ff3d1f2010cb0152dc4792", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "gcal", "description": "Google Calendar CLI for listing calendars, managing events, and checking availability. Use when you need to view, create, update, or delete calendar events, check free/busy status, or list calendars.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/l/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "gcal. Google Calendar CLI for listing calendars, managing events, and checking availability. Use when you need to view, create, update, or delete calendar events, check free/busy status, or list calendars. Platforms: claude_code."} +{"id": "d83c21ce4ad3c2f8c0f05c477e46b35f16450e85c14f75cb7b8be1516c7e54b6", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "growth", "description": "Growth skills for indie Apple developers \u2014 user acquisition, analytics interpretation, press/media outreach, community building, and indie business operations. Use when user asks about growing their a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/growth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "growth. Growth skills for indie Apple developers \u2014 user acquisition, analytics interpretation, press/media outreach, community building, and indie business operations. Use when user asks about growing their a Platforms: claude_code."} +{"id": "69bb70de7c0bfac2b4f5434cc6dd58fe411faedbc932b3fff25ef74c6e0c9833", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "apple-intelligence", "description": "Apple Intelligence skills for on-device AI features including Foundation Models, Visual Intelligence, and intelligent assistants. Use when implementing AI-powered features.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/apple-intelligence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "apple-intelligence. Apple Intelligence skills for on-device AI features including Foundation Models, Visual Intelligence, and intelligent assistants. Use when implementing AI-powered features. Platforms: claude_code."} +{"id": "ca0290ae4c6f1b216fab39eda5372ba303d3588413f51d685c192c1b4b9c6766", "repo_url": "https://github.com/antiwork/gumroad", "name": "commit", "description": "Stage and commit changes with a clear, concise commit message.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antiwork/gumroad/blob/main/.agents/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 9272, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:00:28Z"}, "embedding_text": "commit. Stage and commit changes with a clear, concise commit message. Platforms: claude_code."} +{"id": "cfc689f57d2c8ca883f810730b3f27dad4c2f23a585ac2873de034cd8b2c2ef0", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "about-page-generator", "description": "When the user wants to create, optimize, or audit About page content. Also use when the user mentions \"about page,\" \"about us,\" \"company story,\" \"our team,\" \"about section,\" \"company overview,\" \"brand story,\" \"team page,\" or \"who we are.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/brand/about/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install about-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "about-page-generator. When the user wants to create, optimize, or audit About page content. Also use when the user mentions \"about page,\" \"about us,\" \"company story,\" \"our team,\" \"about section,\" \"company overview,\" \"brand story,\" \"team page,\" or \"who we are.\" Platforms: claude_code."} +{"id": "b9e00071e7883ce7a79e27830106ed102d101c326589c4c62e52a84a55aa22dc", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "resources-page-generator", "description": "When the user wants to create, optimize, or audit resources page or content hub. Also use when the user mentions \"resources page,\" \"resource center,\" \"content hub,\" \"learning center,\" \"resource library,\" \"downloads,\" \"templates,\" \"guides,\" or \"resource hub.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/resources/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install resources-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "resources-page-generator. When the user wants to create, optimize, or audit resources page or content hub. Also use when the user mentions \"resources page,\" \"resource center,\" \"content hub,\" \"learning center,\" \"resource library,\" \"downloads,\" \"templates,\" \"guides,\" or \"resource hub.\" Platforms: claude_code."} +{"id": "c72b26e714f938ad954feaa3392739bd0976a406fb9dedf0ef233a5a88fcaaf6", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "cursor-webhooks", "description": "Receive and verify Cursor Cloud Agent webhooks. Use when setting up Cursor webhook handlers, debugging signature verification, or handling Cloud Agent status change events (ERROR, FINISHED).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/cursor-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "cursor-webhooks. Receive and verify Cursor Cloud Agent webhooks. Use when setting up Cursor webhook handlers, debugging signature verification, or handling Cloud Agent status change events (ERROR, FINISHED). Platforms: claude_code."} +{"id": "e3d409f161ba1c781638c31ffd9a2afb0ad7caabdbdbb93a0bd313f16febf8e0", "repo_url": "https://github.com/partme-ai/full-stack-skills", "name": "koa", "description": "Provides comprehensive guidance for Koa.js framework including middleware, context, async/await patterns, and application structure. Use when the user asks about Koa, needs to create Koa applications,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 520, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T18:10:11Z"}, "embedding_text": "koa. Provides comprehensive guidance for Koa.js framework including middleware, context, async/await patterns, and application structure. Use when the user asks about Koa, needs to create Koa applications, Platforms: claude_code."} +{"id": "46d5637d6828edd83ad781992b016f0d4745ccce541d3564804270525620d950", "repo_url": "https://github.com/vstorm-co/pydantic-deepagents", "name": "test-generator", "description": "Generate pytest test cases for Python functions and classes", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vstorm-co/pydantic-deepagents/blob/main/examples/full_app/skills/test-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 888, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T22:19:44Z"}, "embedding_text": "test-generator. Generate pytest test cases for Python functions and classes Platforms: claude_code."} +{"id": "2310be01d21feb1ed168b666b7d830e9d1c38f1a05b6202f06ba21bdaa7647bf", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "investigating-a-codebase", "description": "Use when planning or designing features and need to understand current codebase state, find existing patterns, or verify assumptions about what exists; when design makes assumptions about file locatio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-research-agents/skills/investigating-a-codebase/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "investigating-a-codebase. Use when planning or designing features and need to understand current codebase state, find existing patterns, or verify assumptions about what exists; when design makes assumptions about file locatio Platforms: claude_code."} +{"id": "d764133953684e15931756d53984ba269181787ac05d8868292d783a7227e04f", "repo_url": "https://github.com/yeachan-heo/oh-my-claudecode", "name": "hud", "description": "Configure HUD display options (layout, presets, display elements)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yeachan-heo/oh-my-claudecode/blob/main/skills/hud/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36737, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T12:59:43Z"}, "embedding_text": "hud. Configure HUD display options (layout, presets, display elements) Platforms: claude_code."} +{"id": "8830ab1e40925c210f8f9516cde8dde6f7991a64c9c79310b027234ec0a3c55b", "repo_url": "https://github.com/robertguss/claude-skills", "name": "book-idea-validator", "description": "Stress-test book concepts against existing research before committing to architecture. Use when the user has a Book Concept Document ready for validation, wants to verify their thesis is defensible, n", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/non-fiction-book-factory/book-idea-validator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "book-idea-validator. Stress-test book concepts against existing research before committing to architecture. Use when the user has a Book Concept Document ready for validation, wants to verify their thesis is defensible, n Platforms: claude_code."} +{"id": "0e2e99b2f0e7a269dac55b88f1e27a62d8a63ca1306837479d70d697abb62c42", "repo_url": "https://github.com/hiromaily/go-crypto-wallet", "name": "devops", "description": "CI/CD and DevOps workflow. Use when modifying GitHub Actions, Docker configurations, or compose files.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hiromaily/go-crypto-wallet/blob/main/.claude/skills/devops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 127, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T10:36:10Z"}, "embedding_text": "devops. CI/CD and DevOps workflow. Use when modifying GitHub Actions, Docker configurations, or compose files. Platforms: claude_code."} +{"id": "89e422c155ae1bb8c6c73d71cfdcc3eadbe789d588b3530388b8a3fc537a4a65", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "feynman", "description": "Feynman Technique for deep learning\u2014explain a concept simply, identify gaps, fill them, then refine. Use when learning something new, testing understanding, or preparing to teach.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/feynman/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "feynman. Feynman Technique for deep learning\u2014explain a concept simply, identify gaps, fill them, then refine. Use when learning something new, testing understanding, or preparing to teach. Platforms: claude_code."} +{"id": "6baba4573be72188bd60b6204725ae7d5b5c2e6b4270bbbb33d4b2d06eab5121", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "frontend-code-review", "description": "Trigger when the user requests a review of frontend files (e.g., `.tsx`, `.ts`, `.js`). Support both pending-change reviews and focused file reviews while applying the checklist rules.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/frontend-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-code-review"}, "quality": {"stars": 752, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:57:09Z"}, "embedding_text": "frontend-code-review. Trigger when the user requests a review of frontend files (e.g., `.tsx`, `.ts`, `.js`). Support both pending-change reviews and focused file reviews while applying the checklist rules. Platforms: claude_code."} +{"id": "982e17dfeb184519b046154e64e2bffe1d04f7bd2f120587605d2263d5fb9cc7", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "inbound-lead-qualifier", "description": "Analyze inbound leads (form fills, demo requests) and score based on ICP fit, intent, and urgency. Auto-generates qualification questions, routes to right rep, and suggests personalized first touch. U", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/inbound-lead-qualifier/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "inbound-lead-qualifier. Analyze inbound leads (form fills, demo requests) and score based on ICP fit, intent, and urgency. Auto-generates qualification questions, routes to right rep, and suggests personalized first touch. U Platforms: claude_code."} +{"id": "c01fd11e5d83d862dcc7454fd7c2ce7a77fc6353c60b3535ac6afa8b03928ba2", "repo_url": "https://github.com/sugarforever/01coder-agent-skills", "name": "diagram-to-image", "description": "Convert Mermaid diagrams and Markdown tables to images (PNG/SVG) for platforms that don't support rich formatting. Use when user asks to \"convert to image\", \"export as PNG\", \"make this an image\", or h", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sugarforever/01coder-agent-skills/blob/main/skills/diagram-to-image/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 120, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:52:39Z"}, "embedding_text": "diagram-to-image. Convert Mermaid diagrams and Markdown tables to images (PNG/SVG) for platforms that don't support rich formatting. Use when user asks to \"convert to image\", \"export as PNG\", \"make this an image\", or h Platforms: claude_code."} +{"id": "918c30439e870c2b1570bf8a817224fa3aea2d22b8ffca46559714ed9321f213", "repo_url": "https://github.com/udecode/better-convex", "name": "toast", "description": "Toast notifications with Sonner for user feedback. Use for success/error messages, async operation feedback, and temporary notifications. Always use when using Sonner.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/udecode/better-convex/blob/main/.agents/skills/toast/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 425, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T18:43:47Z"}, "embedding_text": "toast. Toast notifications with Sonner for user feedback. Use for success/error messages, async operation feedback, and temporary notifications. Always use when using Sonner. Platforms: claude_code."} +{"id": "a62782761e2f6a3a13273a593c6a4ba3262749aad6a51652986874007b998b67", "repo_url": "https://github.com/team-attention/hoyeon", "name": "deep-interview", "description": "\"/deep-interview\", \"deep interview\", \"interview me\", \"clarify requirements\",\n\"\uc694\uad6c\uc0ac\ud56d \uc815\ub9ac\", \"\uc778\ud130\ubdf0\", \"\ub525 \uc778\ud130\ubdf0\", \"\ubb58 \ub9cc\ub4e4\uc5b4\uc57c \ud560\uc9c0 \ubaa8\ub974\uaca0\uc5b4\",\n\"\uc694\uad6c\uc0ac\ud56d\uc774 \ubd88\uba85\ud655\", \"\uc544\uc774\ub514\uc5b4 \uad6c\uccb4\ud654\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/codex/skills/hoyeon-blueprint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "deep-interview. \"/deep-interview\", \"deep interview\", \"interview me\", \"clarify requirements\",\n\"\uc694\uad6c\uc0ac\ud56d \uc815\ub9ac\", \"\uc778\ud130\ubdf0\", \"\ub525 \uc778\ud130\ubdf0\", \"\ubb58 \ub9cc\ub4e4\uc5b4\uc57c \ud560\uc9c0 \ubaa8\ub974\uaca0\uc5b4\",\n\"\uc694\uad6c\uc0ac\ud56d\uc774 \ubd88\uba85\ud655\", \"\uc544\uc774\ub514\uc5b4 \uad6c\uccb4\ud654\" Platforms: claude_code."} +{"id": "2d2f5203f07e6c07f1381e12603b0437f4e220f43933914151eacde6679bde31", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "employee-generated-content", "description": "When the user wants to plan, implement, or optimize employee-generated content (EGC) or employee advocacy. Also use when the user mentions \"EGC,\" \"employee advocacy,\" \"employee content,\" \"internal brand ambassadors,\" \"employee social media,\" \"employee advocacy program,\" \"staff advocacy,\" \"LinkedIn employee posts,\" or \"brand ambassador program.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/owned/employee-generated-content/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install employee-generated-content"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "employee-generated-content. When the user wants to plan, implement, or optimize employee-generated content (EGC) or employee advocacy. Also use when the user mentions \"EGC,\" \"employee advocacy,\" \"employee content,\" \"internal brand ambassadors,\" \"employee social media,\" \"employee advocacy program,\" \"staff advocacy,\" \"LinkedIn employee posts,\" or \"brand ambassador program.\" Platforms: claude_code."} +{"id": "ad7a9ae589c2a86d0ab768a1cb743de5e46c209c5dd030f88e60047be785c0e0", "repo_url": "https://github.com/udecode/better-convex", "name": "convex", "description": "ALWAYS use this skill when working with convex or better-convex. Covers the common end-to-end feature path using cRPC + ORM + auth + React, with setup/bootstrap and niche depth in references.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/udecode/better-convex/blob/main/.agents/skills/convex-release-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 425, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T18:43:47Z"}, "embedding_text": "convex. ALWAYS use this skill when working with convex or better-convex. Covers the common end-to-end feature path using cRPC + ORM + auth + React, with setup/bootstrap and niche depth in references. Platforms: claude_code."} +{"id": "a53c2e8524b60481de819f99cb411c2873152553f2a62594fe955dc4a4ca21e9", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "managing-tech-debt", "description": "Manage technical debt by producing a Tech Debt Management Pack (debt register, scoring/prioritization, refactor vs rewrite decision memo, incremental paydown plan, migration/rollback plan, metrics, an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/managing-tech-debt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "managing-tech-debt. Manage technical debt by producing a Tech Debt Management Pack (debt register, scoring/prioritization, refactor vs rewrite decision memo, incremental paydown plan, migration/rollback plan, metrics, an Platforms: claude_code."} +{"id": "c14e103278929353ec1ab6e08ad33eb6b82f1d8f7d2bb52b775812a992125606", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "permission-priming", "description": "Generates pre-permission priming screens that explain benefits before showing iOS system permission dialogs. Use when user wants to increase permission grant rates, add pre-permission screens, or expl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/permission-priming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "permission-priming. Generates pre-permission priming screens that explain benefits before showing iOS system permission dialogs. Use when user wants to increase permission grant rates, add pre-permission screens, or expl Platforms: claude_code."} +{"id": "f31fe4845a66454cf6f3b7e93155c5c4072aaeb7f3dcf0289125a29dde7897b6", "repo_url": "https://github.com/letta-ai/lettabot", "name": "apple-notes", "description": "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 folde", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/apple-notes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "apple-notes. 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 folde Platforms: claude_code."} +{"id": "ea9efa1a573b39ca209d599863d1416d359cd92d7b07b1af18a58a0188ccf80e", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "navigation-patterns", "description": "SwiftUI navigation architecture patterns including NavigationStack, NavigationSplitView, TabView, programmatic navigation, and custom transitions. Use when reviewing or building navigation, fixing nav", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/ios/navigation-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "navigation-patterns. SwiftUI navigation architecture patterns including NavigationStack, NavigationSplitView, TabView, programmatic navigation, and custom transitions. Use when reviewing or building navigation, fixing nav Platforms: claude_code."} +{"id": "e9afeb1635999367a0db3f227dd0f566920c969e8efce7ab63168d21196e4560", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "podcast-marketing", "description": "When the user wants to plan, create, or market a podcast. Also use when the user mentions \"podcast,\" \"podcast strategy,\" \"podcast SEO,\" \"show notes,\" \"podcast distribution,\" \"Spotify podcast,\" \"Apple Podcasts,\" \"podcast discoverability,\" \"PodcastEpisode schema,\" or \"podcast repurposing.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/podcast/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install podcast-marketing"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "podcast-marketing. When the user wants to plan, create, or market a podcast. Also use when the user mentions \"podcast,\" \"podcast strategy,\" \"podcast SEO,\" \"show notes,\" \"podcast distribution,\" \"Spotify podcast,\" \"Apple Podcasts,\" \"podcast discoverability,\" \"PodcastEpisode schema,\" or \"podcast repurposing.\" Platforms: claude_code."} +{"id": "ffe46483eea8bac3a51894bb89b5783c7a05ec896ad0ffff17e2299add557759", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "partnership-bd", "description": "Create a Partnership & BD Execution Pack (partner thesis, target list + scoring, outreach kit, scalable offer + negotiation guardrails, and launch plan). Use for partnerships, business development (BD", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/partnership-bd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "partnership-bd. Create a Partnership & BD Execution Pack (partner thesis, target list + scoring, outreach kit, scalable offer + negotiation guardrails, and launch plan). Use for partnerships, business development (BD Platforms: claude_code."} +{"id": "775fc3457687bef7c9884092c4fcf47824ac534a01f24d2568f5c1809c6a571b", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "usability-testing", "description": "Help users conduct effective usability testing. Use when someone is planning user tests, designing prototype validation, preparing usability studies, or trying to understand why users struggle with th", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/usability-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "usability-testing. Help users conduct effective usability testing. Use when someone is planning user tests, designing prototype validation, preparing usability studies, or trying to understand why users struggle with th Platforms: claude_code."} +{"id": "8a137fb5dc53830571a13eb9775b3f6d61bf0edc0347c772e94de72a0937e7f6", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "force-update", "description": "Generates a minimum version enforcement system with hard-block and soft-prompt update flows, App Store redirect, and remote config or App Store lookup for version checks. Use when user wants force upd", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/force-update/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "force-update. Generates a minimum version enforcement system with hard-block and soft-prompt update flows, App Store redirect, and remote config or App Store lookup for version checks. Use when user wants force upd Platforms: claude_code."} +{"id": "956298422450d425626725f8f8fe7a7875a3952bac0e4f6cbd94a1f9b3c8bb59", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "music-generator", "description": "Generate AI music with ElevenLabs Music API. Use for: background music, soundtracks, jingles, theme songs, instrumental tracks, AI music composition.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/music-generator/skills/music-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "music-generator. Generate AI music with ElevenLabs Music API. Use for: background music, soundtracks, jingles, theme songs, instrumental tracks, AI music composition. Platforms: claude_code."} +{"id": "9f05fd5de78b2ba08745cf6b5cab6fb4ffd3db058b42e1e6708e462972781894", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "analytics-interpretation", "description": "Interpret app metrics and make data-driven decisions. Covers DAU/MAU, retention, LTV, ARPU, App Store Connect analytics, AARRR funnel analysis, cohort analysis, and diagnostic decision trees. Use when", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/growth/analytics-interpretation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "analytics-interpretation. Interpret app metrics and make data-driven decisions. Covers DAU/MAU, retention, LTV, ARPU, App Store Connect analytics, AARRR funnel analysis, cohort analysis, and diagnostic decision trees. Use when Platforms: claude_code."} +{"id": "27b3c4765e880321901de8f24985561c927d7e021a430505297f6ad3043aa8d4", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "tech-blog", "description": "Write technical blog posts with source code analysis OR doc-driven research. Use when user wants to explain system internals, architecture, implementation details, or technical concepts with citations", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/og/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "tech-blog. Write technical blog posts with source code analysis OR doc-driven research. Use when user wants to explain system internals, architecture, implementation details, or technical concepts with citations Platforms: claude_code."} +{"id": "81c2a96cf2b0d65132d095429901c3e45cdd86fe4eef9799fee413d02231dd50", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "youtube-uploader", "description": "Upload videos to YouTube with title, description, tags. Use for: youtube upload, publish video, share on youtube.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/youtube-uploader/skills/youtube-uploader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "youtube-uploader. Upload videos to YouTube with title, description, tags. Use for: youtube upload, publish video, share on youtube. Platforms: claude_code."} +{"id": "e8f7fd31aaede9428e20afabf3b76cb89ff9efa7b5d292146f0f1473edb2b0f0", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "toc-generator", "description": "When the user wants to add, optimize, or audit table of contents (TOC) for long-form content. Also use when the user mentions \"TOC,\" \"table of contents,\" \"table of contents for article,\" \"article TOC,\" \"jump links,\" \"content outline,\" \"article navigation,\" \"in-page navigation,\" \"add TOC to blog,\" or \"TOC for long content.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/navigation/toc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install toc-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "toc-generator. When the user wants to add, optimize, or audit table of contents (TOC) for long-form content. Also use when the user mentions \"TOC,\" \"table of contents,\" \"table of contents for article,\" \"article TOC,\" \"jump links,\" \"content outline,\" \"article navigation,\" \"in-page navigation,\" \"add TOC to blog,\" or \"TOC for long content.\" Platforms: claude_code."} +{"id": "1f63d7b4c3fce9d78d2adfb55e33daca1ee44f2232143f4dc0a5c427455dc8fe", "repo_url": "https://github.com/intellectronica/agent-skills", "name": "here-be-git", "description": "Initialise a git repository with optional agent commit instructions and .gitignore. Use when users say \"here be git\", \"init git\", \"initialise git\", or otherwise indicate they want to set up version co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/intellectronica/agent-skills/blob/main/skills/here-be-git/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 275, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-25T15:31:50Z"}, "embedding_text": "here-be-git. Initialise a git repository with optional agent commit instructions and .gitignore. Use when users say \"here be git\", \"init git\", \"initialise git\", or otherwise indicate they want to set up version co Platforms: claude_code."} +{"id": "b74419f65afd8a414e70bbfe15c719c3d6d61c5deab60645ba86abde3c181090", "repo_url": "https://github.com/rohitg00/kubectl-mcp-server", "name": "k8s-backup", "description": "Kubernetes backup and restore with Velero. Use when creating backups, restoring applications, managing disaster recovery, or migrating workloads between clusters.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohitg00/kubectl-mcp-server/blob/main/kubernetes-skills/claude/k8s-backup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 915, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T22:37:48Z"}, "embedding_text": "k8s-backup. Kubernetes backup and restore with Velero. Use when creating backups, restoring applications, managing disaster recovery, or migrating workloads between clusters. Platforms: claude_code."} +{"id": "42a675a6b4130ed3a85d4eb21d0ae8f1ecc0702c5d82310ad36d5a8eda46be23", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "glossary-page-generator", "description": "When the user wants to create, optimize, or audit glossary page content and structure. Also use when the user mentions \"glossary,\" \"definitions,\" \"terminology,\" \"industry terms,\" \"glossary page,\" \"term definitions,\" \"vocabulary,\" \"glossary SEO,\" or \"definition page.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/glossary/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install glossary-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "glossary-page-generator. When the user wants to create, optimize, or audit glossary page content and structure. Also use when the user mentions \"glossary,\" \"definitions,\" \"terminology,\" \"industry terms,\" \"glossary page,\" \"term definitions,\" \"vocabulary,\" \"glossary SEO,\" or \"definition page.\" Platforms: claude_code."} +{"id": "8ef07766afb737b0d7419a8510d00fb55508795c8e61bae49fb69e33d15190c3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "indie-hacker-strategy", "description": "When the user wants indie hacker or bootstrapping founder strategy\u2014growth, channels, Build in Public, or solo founder tactics. Also use when the user mentions \"indie hacker,\" \"indie developer,\" \"bootstrapping,\" \"bootstrapped founder,\" \"solo founder,\" \"Build in Public,\" \"scratch your own itch,\" \"Micro-SaaS,\" \"first 100 users,\" or \"solo company.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/indie-hacker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install indie-hacker-strategy"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "indie-hacker-strategy. When the user wants indie hacker or bootstrapping founder strategy\u2014growth, channels, Build in Public, or solo founder tactics. Also use when the user mentions \"indie hacker,\" \"indie developer,\" \"bootstrapping,\" \"bootstrapped founder,\" \"solo founder,\" \"Build in Public,\" \"scratch your own itch,\" \"Micro-SaaS,\" \"first 100 users,\" or \"solo company.\" Platforms: claude_code."} +{"id": "3eafaef10d3f77df4e3dd0f087c0fd7027b8feb7ac30755c9b40c2c376b52aa8", "repo_url": "https://github.com/arvorco/relentless", "name": "prd", "description": "Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan thi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arvorco/relentless/blob/main/.claude/skills/prd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 97, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-25T14:10:06Z"}, "embedding_text": "prd. Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan thi Platforms: claude_code."} +{"id": "565a6d9f3e909a0962eac7b9d55014e7885327563c1c1526a2fded0f8b6b8111", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "running-design-reviews", "description": "Help users run effective design reviews and critiques. Use when someone is giving design feedback, establishing design review processes, struggling to evaluate designs, or wants to improve how their t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/running-design-reviews/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "running-design-reviews. Help users run effective design reviews and critiques. Use when someone is giving design feedback, establishing design review processes, struggling to evaluate designs, or wants to improve how their t Platforms: claude_code."} +{"id": "ade5f4a29555bac91c252b81c6c8280159266b444ff4c118d5f37613d9942da1", "repo_url": "https://github.com/intellectronica/agent-skills", "name": "promptify", "description": "Transform user requests into detailed, precise prompts for AI models. Use when users say \"promptify\", \"promptify this\", or explicitly request prompt engineering or improvement of their request for bet", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/intellectronica/agent-skills/blob/main/skills/promptify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 275, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-25T15:31:50Z"}, "embedding_text": "promptify. Transform user requests into detailed, precise prompts for AI models. Use when users say \"promptify\", \"promptify this\", or explicitly request prompt engineering or improvement of their request for bet Platforms: claude_code."} +{"id": "5f740eefaae83287d822894d69a5ebd417b9701ec2a9d46b1704af40996b09a1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "heading-structure", "description": "When the user wants to optimize heading structure (H1-H6), fix heading hierarchy, or improve content structure. Also use when the user mentions \"H1,\" \"heading,\" \"heading hierarchy,\" \"content structure,\" \"H2,\" \"H3,\" \"heading tags,\" \"heading SEO,\" \"multiple H1,\" or \"heading structure.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/heading/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install heading-structure"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "heading-structure. When the user wants to optimize heading structure (H1-H6), fix heading hierarchy, or improve content structure. Also use when the user mentions \"H1,\" \"heading,\" \"heading hierarchy,\" \"content structure,\" \"H2,\" \"H3,\" \"heading tags,\" \"heading SEO,\" \"multiple H1,\" or \"heading structure.\" Platforms: claude_code."} +{"id": "51c5bd5405f4211cb9a5c9af9fe83e061031631f0036e566c2717b79f4d5b831", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "linkedin-ads", "description": "When the user wants to set up, optimize, or manage LinkedIn Ads. Also use when the user mentions \"LinkedIn Ads,\" \"LinkedIn Campaign Manager,\" \"Sponsored Content,\" \"LinkedIn Lead Gen Forms,\" \"job title targeting,\" \"company targeting,\" or \"B2B paid ads.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/linkedin-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install linkedin-ads"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "linkedin-ads. When the user wants to set up, optimize, or manage LinkedIn Ads. Also use when the user mentions \"LinkedIn Ads,\" \"LinkedIn Campaign Manager,\" \"Sponsored Content,\" \"LinkedIn Lead Gen Forms,\" \"job title targeting,\" \"company targeting,\" or \"B2B paid ads.\" Platforms: claude_code."} +{"id": "64074931e775b9e631fc01f3e7d614d4dfd2b4a03f7e37c62eced76354a70470", "repo_url": "https://github.com/automagik-dev/genie", "name": "work", "description": "Execute an approved wish plan \u2014 orchestrate subagents per task group with fix loops, validation, and review handoff.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/work/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "work. Execute an approved wish plan \u2014 orchestrate subagents per task group with fix loops, validation, and review handoff. Platforms: claude_code."} +{"id": "3d3a31f896a182a4c92ba7d6bcf4a6a83319caf27cf4ff7f662f009e529442a3", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "git-worktrees", "description": "Parallel development workflow using git worktrees. Prepares isolated worktree directories and executes tasks across multiple workspaces for concurrent feature development. Use when user wants parallel", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/developer/skills/devtools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "git-worktrees. Parallel development workflow using git worktrees. Prepares isolated worktree directories and executes tasks across multiple workspaces for concurrent feature development. Use when user wants parallel Platforms: claude_code."} +{"id": "774c03badc8bef0161a8fd0a9f886149bc642d3049092da61ee6bb8779f02eb9", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "sentencepiece", "description": "Language-independent tokenizer treating text as raw Unicode. Supports BPE and Unigram algorithms. Fast (50k sentences/sec), lightweight (6MB memory), deterministic vocabulary. Used by T5, ALBERT, XLNet, mBART. Train on raw text without pre-tokenization. Use when you need multilingual support, CJK languages, or reproducible tokenization.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/02-tokenization/sentencepiece/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sentencepiece"}, "quality": {"stars": 9933, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "sentencepiece. Language-independent tokenizer treating text as raw Unicode. Supports BPE and Unigram algorithms. Fast (50k sentences/sec), lightweight (6MB memory), deterministic vocabulary. Used by T5, ALBERT, XLNet, mBART. Train on raw text without pre-tokenization. Use when you need multilingual support, CJK languages, or reproducible tokenization. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} +{"id": "825357f592fc623f249ac22d3bdc0ade4399c2c925a9aef49b3e0b0fbf59e270", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "eos-usage", "description": "Strunk & White grammar review using the 11 elementary rules from \"Elements of Style\" Chapter I. Use when checking mechanics, punctuation, and grammatical correctness.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/eos-usage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "eos-usage. Strunk & White grammar review using the 11 elementary rules from \"Elements of Style\" Chapter I. Use when checking mechanics, punctuation, and grammatical correctness. Platforms: claude_code."} +{"id": "37d7c1ca777dcb48667a23411b60b505eef5cd03537f32f0a4a988dc0cfc615e", "repo_url": "https://github.com/ankitvgupta/mail-app", "name": "take-screenshots", "description": "Capture screenshots of the Exo Electron app workflows using Playwright in demo mode. Use when the user asks for screenshots, workflow documentation, or visual captures of the app.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ankitvgupta/mail-app/blob/main/.claude/skills/take-screenshots/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 473, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T02:01:15Z"}, "embedding_text": "take-screenshots. Capture screenshots of the Exo Electron app workflows using Playwright in demo mode. Use when the user asks for screenshots, workflow documentation, or visual captures of the app. Platforms: claude_code."} +{"id": "cf55c72f72b4325172b0ac91a30a8f2cc1349e7fd218e94aa77745814a0d8fc2", "repo_url": "https://github.com/team-attention/hoyeon", "name": "dev-scan", "description": "Collect diverse opinions on technical topics from developer communities. Use for \"developer reactions\", \"community opinions\" requests. Aggregates Reddit, HN, Dev.to, Lobsters, ProductHunt, etc.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/codex/skills/hoyeon-dev-scan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "dev-scan. Collect diverse opinions on technical topics from developer communities. Use for \"developer reactions\", \"community opinions\" requests. Aggregates Reddit, HN, Dev.to, Lobsters, ProductHunt, etc. Platforms: claude_code."} +{"id": "35aac9e3e59a395e4156e96761a3c56e49d16d28f232ac17f7a703cb6aa6c218", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-repo-context", "description": "Scans directory structure, detects projects, maps dependencies, and documents code organization into a repo.md file. Use when the user needs a codebase overview, project structure map, or repository context before security analysis.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/repo-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-repo-context"}, "quality": {"stars": 393, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-repo-context. Scans directory structure, detects projects, maps dependencies, and documents code organization into a repo.md file. Use when the user needs a codebase overview, project structure map, or repository context before security analysis. Platforms: claude_code."} +{"id": "d229bb31803eb8a229cbe5df2723ed3a01fce06acb7dcd9a10996ff31991d4af", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "eisenhower", "description": "Eisenhower Matrix prioritization categorizing tasks by urgency and importance into Do, Schedule, Delegate, Eliminate quadrants. Use for task prioritization, time management, or when overwhelmed.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/eisenhower/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "eisenhower. Eisenhower Matrix prioritization categorizing tasks by urgency and importance into Do, Schedule, Delegate, Eliminate quadrants. Use for task prioritization, time management, or when overwhelmed. Platforms: claude_code."} +{"id": "74a6f8830faae049c26d6593a59107892f65e8e01d7c21600c44f63e2806dd94", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "socratic", "description": "Socratic questioning to examine beliefs, uncover assumptions, and develop deeper understanding. Use to challenge thinking, evaluate proposals, or teach without lecturing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/socratic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "socratic. Socratic questioning to examine beliefs, uncover assumptions, and develop deeper understanding. Use to challenge thinking, evaluate proposals, or teach without lecturing. Platforms: claude_code."} +{"id": "583286413698912e937d6f5c4d31e3f39940fec17cbf088ac41b732ed6ba772a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "programmatic-seo", "description": "When the user wants to create SEO pages at scale using templates and data. Also use when the user mentions \"programmatic SEO,\" \"programmatic SEO pages,\" \"template pages,\" \"scale content,\" \"location pages,\" \"city pages,\" \"comparison pages at scale,\" \"X vs Y pages,\" \"integration pages,\" \"pages from data,\" \"automated landing pages,\" or \"programmatic landing pages.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/programmatic-seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install programmatic-seo"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "programmatic-seo. When the user wants to create SEO pages at scale using templates and data. Also use when the user mentions \"programmatic SEO,\" \"programmatic SEO pages,\" \"template pages,\" \"scale content,\" \"location pages,\" \"city pages,\" \"comparison pages at scale,\" \"X vs Y pages,\" \"integration pages,\" \"pages from data,\" \"automated landing pages,\" or \"programmatic landing pages.\" Platforms: claude_code."} +{"id": "fedbbd001680a19762a12fe1ed2842182c91860c26f1ad16bc4aef878f22f148", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "5whys", "description": "Five Whys root cause analysis. Iteratively asks \"why\" to drill past symptoms to underlying causes. Use for debugging, investigating failures, or understanding why something went wrong.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/5whys/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "5whys. Five Whys root cause analysis. Iteratively asks \"why\" to drill past symptoms to underlying causes. Use for debugging, investigating failures, or understanding why something went wrong. Platforms: claude_code."} +{"id": "2f15fceb5498eee3da5cb7b48d1103d12a14d4463086b7cac09502fc3dc63140", "repo_url": "https://github.com/joshcirre/instruckt-laravel", "name": "instruckt", "description": "Visual feedback from users via in-browser annotations. Activates when the user pastes UI feedback markdown starting with '# UI Feedback', when annotations or visual feedback are mentioned, or when you", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joshcirre/instruckt-laravel/blob/main/resources/boost/skills/instruckt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 173, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T21:45:32Z"}, "embedding_text": "instruckt. Visual feedback from users via in-browser annotations. Activates when the user pastes UI feedback markdown starting with '# UI Feedback', when annotations or visual feedback are mentioned, or when you Platforms: claude_code."} +{"id": "a9cab8c4fd3e737c0639fcdb7f1cfcb3f4022b692aeaa06bdf44927ad519373a", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "tensorrt-llm", "description": "Optimizes LLM inference with NVIDIA TensorRT for maximum throughput and lowest latency. Use for production deployment on NVIDIA GPUs (A100/H100), when you need 10-100x faster inference than PyTorch, o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/tensorrt-llm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "tensorrt-llm. Optimizes LLM inference with NVIDIA TensorRT for maximum throughput and lowest latency. Use for production deployment on NVIDIA GPUs (A100/H100), when you need 10-100x faster inference than PyTorch, o Platforms: linux, macos."} +{"id": "b07d8a52d6ae61613d3ffffb66bf4dbf6cef76f77633c96e0a770a44ddc83dd3", "repo_url": "https://github.com/dinerojs/dinero.js", "name": "vercel-react-best-practices", "description": "React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patter", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dinerojs/dinero.js/blob/main/.agents/skills/vercel-react-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6758, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:39:32Z"}, "embedding_text": "vercel-react-best-practices. React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patter Platforms: claude_code."} +{"id": "fb19db04020e60f5c24843e4a7244b7c7532106c7ccc376ec23ff9df3fac8136", "repo_url": "https://github.com/automagik-dev/genie", "name": "reviewer", "description": "Reviews criteria compliance AND code quality in one pass. Returns SHIP or FIX-FIRST with severity-tagged findings.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "reviewer. Reviews criteria compliance AND code quality in one pass. Returns SHIP or FIX-FIRST with severity-tagged findings. Platforms: claude_code."} +{"id": "3140bea35032d5d8c713679032fb0d09e1884ab615f75eada6b79088d0cb0d20", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-proxy", "description": "Starts and controls the reaper MITM proxy to capture, inspect, search, and replay HTTP/HTTPS traffic between clients and servers. Capabilities include starting/stopping the proxy scoped to specific domains, viewing captured request/response logs, searching traffic by method/path/status/host, and inspecting full raw HTTP entries for security analysis. Use when the user asks to \"start the proxy\", \"capture traffic\", \"intercept requests\", \"inspect HTTP traffic\", \"search captured requests\", or \"view request/response\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/proxy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-proxy"}, "quality": {"stars": 393, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-proxy. Starts and controls the reaper MITM proxy to capture, inspect, search, and replay HTTP/HTTPS traffic between clients and servers. Capabilities include starting/stopping the proxy scoped to specific domains, viewing captured request/response logs, searching traffic by method/path/status/host, and inspecting full raw HTTP entries for security analysis. Use when the user asks to \"start the proxy\", \"capture traffic\", \"intercept requests\", \"inspect HTTP traffic\", \"search captured requests\", or \"view request/response\". Platforms: claude_code."} +{"id": "4df4114af4ed2d54fbade39cbbc1281c89ae38a84771282ce1ded4093b7ea73d", "repo_url": "https://github.com/joeseesun/qiaomu-x-article-publisher", "name": "x-article-publisher", "description": "Publish Markdown articles to X (Twitter) Articles editor with proper formatting. Use when user wants to publish a Markdown file/URL to X Articles, or mentions \"publish to X\", \"post article to Twitter\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joeseesun/qiaomu-x-article-publisher/blob/main/qiaomu-x-article-publisher-github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 75, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T07:02:53Z"}, "embedding_text": "x-article-publisher. Publish Markdown articles to X (Twitter) Articles editor with proper formatting. Use when user wants to publish a Markdown file/URL to X Articles, or mentions \"publish to X\", \"post article to Twitter\" Platforms: claude_code."} +{"id": "76018fef6781f3b85dbd67789fa3d38a7c80f80aab18e486b29e47981e45d140", "repo_url": "https://github.com/minimax-ai/skills", "name": "minimax-xlsx", "description": "Open, create, read, analyze, edit, or validate Excel/spreadsheet files (.xlsx, .xlsm, .csv, .tsv). Use when the user asks to create, build, modify, analyze, read, validate, or format any Excel spreads", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/skills/minimax-xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "minimax-xlsx. Open, create, read, analyze, edit, or validate Excel/spreadsheet files (.xlsx, .xlsm, .csv, .tsv). Use when the user asks to create, build, modify, analyze, read, validate, or format any Excel spreads Platforms: claude_code."} +{"id": "71ede48425da6e7749c6cac154ebc4817b59bb53f211afd388c4e10a6a311f06", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-resource-lookup", "description": "List, find, and show Azure resources. Answers \"list my VMs\", \"show my storage accounts\", \"list websites\", \"find container apps\", \"what resources do I have\", and similar queries for any Azure resource type. USE FOR: list resources, list virtual machines, list VMs, list storage accounts, list websites, list web apps, list container apps, show resources, find resources, what resources do I have, list resources in resource group, list resources in subscription, find resources by tag, find orphaned resources, resource inventory, count resources by type, cross-subscription resource query, Azure Resource Graph, resource discovery, list container registries, list SQL servers, list Key Vaults, show resource groups, list app services, find resources across subscriptions, find unattached disks, tag analysis. DO NOT USE FOR: deploying resources (use azure-deploy), creating or modifying resources, cost optimization (use azure-cost-optimization), writing application code, non-Azure clouds.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-resource-lookup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-resource-lookup"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-resource-lookup. List, find, and show Azure resources. Answers \"list my VMs\", \"show my storage accounts\", \"list websites\", \"find container apps\", \"what resources do I have\", and similar queries for any Azure resource type. USE FOR: list resources, list virtual machines, list VMs, list storage accounts, list websites, list web apps, list container apps, show resources, find resources, what resources do I have, list resources in resource group, list resources in subscription, find resources by tag, find orphaned resources, resource inventory, count resources by type, cross-subscription resource query, Azure Resource Graph, resource discovery, list container registries, list SQL servers, list Key Vaults, show resource groups, list app services, find resources across subscriptions, find unattached disks, tag analysis. DO NOT USE FOR: deploying resources (use azure-deploy), creating or modifying resources, cost optimization (use azure-cost-optimization), writing application code, non-Azure clouds. Platforms: claude_code."} +{"id": "83af44f42b232cf7f78f2dc9fedec1ab008e94ba51ea31c6582142a593a09609", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "expansion-retention", "description": "When the user wants to reduce churn, build expansion revenue, automate customer success, or optimize net revenue retention. Also use when the user mentions 'churn,' 'retention,' 'expansion revenue,' 'upsell,' 'NRR,' 'net revenue retention,' 'customer success,' 'land and expand,' 'closed-lost,' or 'renewal.' This skill covers expansion and retention systems from usage triggers through automated customer success. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/expansion-retention/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install expansion-retention"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "expansion-retention. When the user wants to reduce churn, build expansion revenue, automate customer success, or optimize net revenue retention. Also use when the user mentions 'churn,' 'retention,' 'expansion revenue,' 'upsell,' 'NRR,' 'net revenue retention,' 'customer success,' 'land and expand,' 'closed-lost,' or 'renewal.' This skill covers expansion and retention systems from usage triggers through automated customer success. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "8f7d1c849f25d1419cfe43d2af65e23fa750c9a20f6ceeb6dc341b614f767c9d", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "strategic-pm", "description": "Shifts thinking from tactical to strategic using Anneka Gupta's frameworks for becoming more strategic. Use when escaping feature factory, moving from output to outcomes, or communicating strategic va", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/strategic-pm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "strategic-pm. Shifts thinking from tactical to strategic using Anneka Gupta's frameworks for becoming more strategic. Use when escaping feature factory, moving from output to outcomes, or communicating strategic va Platforms: claude_code."} +{"id": "2e4cfe27d6799e43169a532ebf8bdc02864d654a687a66c4488765c2c2186c3d", "repo_url": "https://github.com/shuvonsec/claude-bug-bounty", "name": "report-writing", "description": "Bug bounty report writing for H1/Bugcrowd/Intigriti/Immunefi \u2014 report templates, human tone guidelines, impact-first writing, CVSS 3.1 scoring, title formula, impact statement formula, severity decisi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shuvonsec/claude-bug-bounty/blob/main/skills/report-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3468, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T09:58:47Z"}, "embedding_text": "report-writing. Bug bounty report writing for H1/Bugcrowd/Intigriti/Immunefi \u2014 report templates, human tone guidelines, impact-first writing, CVSS 3.1 scoring, title formula, impact statement formula, severity decisi Platforms: claude_code."} +{"id": "a14710472bb3b5a41bd06beb30d36c35ed63c8a295e20070cfffc777d626ffb1", "repo_url": "https://github.com/robertguss/claude-skills", "name": "handoff", "description": "Create a structured session handoff document for continuity across sessions. Use when ending a work session, switching contexts, or before a break. Captures decisions, progress, code changes, and next", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/handoff/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "handoff. Create a structured session handoff document for continuity across sessions. Use when ending a work session, switching contexts, or before a break. Captures decisions, progress, code changes, and next Platforms: claude_code."} +{"id": "cf0c3abc03d06bc80a1c642d1ddf4bddad93c49e48824eb2bd2c1f7a371d1410", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "milestone-celebration", "description": "Generates achievement celebration UI with confetti animations, badge unlocks, progress milestones, haptic feedback, and optional share-to-social. Use when user wants to celebrate achievements, show co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/milestone-celebration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "milestone-celebration. Generates achievement celebration UI with confetti animations, badge unlocks, progress milestones, haptic feedback, and optional share-to-social. Use when user wants to celebrate achievements, show co Platforms: claude_code."} +{"id": "138e5d290ab46e033aab2ac6e71e4739ab5502b220a472e91192831bc14551ac", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "eos-style", "description": "Strunk & White style review using the 21 reminders from \"Elements of Style\" Chapter V. Use when editing prose, reviewing drafts, or improving writing clarity and tone.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/eos-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "eos-style. Strunk & White style review using the 21 reminders from \"Elements of Style\" Chapter V. Use when editing prose, reviewing drafts, or improving writing clarity and tone. Platforms: claude_code."} +{"id": "5e69c9cf5cb15029e46dc15057ddcf71f8e8364157c6d17882adef5b4e76291b", "repo_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop", "name": "compact", "description": "Manually trigger context save when auto-compact fails in VSCode/Cursor extensions. Use when context is high and you need to preserve state before starting fresh.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop/blob/main/.claude/skills/adr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T11:32:56Z"}, "embedding_text": "compact. Manually trigger context save when auto-compact fails in VSCode/Cursor extensions. Use when context is high and you need to preserve state before starting fresh. Platforms: claude_code."} +{"id": "00e7388e9959cb19b37116003a862b72a4f16267b4afc90cfe6814b2d7621613", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "andrew-kane-gem-writer", "description": "Write Ruby gems following Andrew Kane's proven patterns and philosophy. Use when creating new Ruby gems, refactoring existing gems, designing gem APIs, or when the user wants clean, minimal, production-ready Ruby library code. Triggers on requests like \"create a gem\", \"write a Ruby library\", \"design a gem API\", or mentions of Andrew Kane's style.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/andrew-kane-gem-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install andrew-kane-gem-writer"}, "quality": {"stars": 240, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T19:30:43Z"}, "embedding_text": "andrew-kane-gem-writer. Write Ruby gems following Andrew Kane's proven patterns and philosophy. Use when creating new Ruby gems, refactoring existing gems, designing gem APIs, or when the user wants clean, minimal, production-ready Ruby library code. Triggers on requests like \"create a gem\", \"write a Ruby library\", \"design a gem API\", or mentions of Andrew Kane's style. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} +{"id": "b48223f468a804378249032aa9a2c6f6342a982f855cbdfc8f174fd1a982e152", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-location", "description": "Handle GPS location delegation from Human Phone. Covers coordinate injection on emulators and manual coordinate usage on real devices.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-location/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-location. Handle GPS location delegation from Human Phone. Covers coordinate injection on emulators and manual coordinate usage on real devices. Platforms: claude_code."} +{"id": "210c00da505a0c22c1029228b7902dc1f7090ad35a40ad4a201152561d193934", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-camera", "description": "Handle camera photo capture delegation from Human Phone. Covers single photo capture, push to Agent Phone, and app file picker navigation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-camera/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-camera. Handle camera photo capture delegation from Human Phone. Covers single photo capture, push to Agent Phone, and app file picker navigation. Platforms: claude_code."} +{"id": "d60a549bba54f1b22f9c1dbb932e65a9e6548d6ea97e5bdc329ace868980bbf7", "repo_url": "https://github.com/alec-c4/claude-skills-rails-dev", "name": "rails-technical-writer", "description": "Technical documentation specialist for Rails projects. Use when writing README files, API documentation, setup guides, architectural decisions, code comments, or user-facing documentation. Focuses on", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-28T08:32:30Z"}, "embedding_text": "rails-technical-writer. Technical documentation specialist for Rails projects. Use when writing README files, API documentation, setup guides, architectural decisions, code comments, or user-facing documentation. Focuses on Platforms: claude_code."} +{"id": "c60034b920202a01acdb31d8cabeb8d361aaa1fce1a4fe07e79c09af7df120f0", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-sms-2fa", "description": "Handle SMS verification codes and 2FA TOTP codes from Human Phone. Covers OTP entry, code verification, and multi-factor authentication flows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-sms-2fa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-sms-2fa. Handle SMS verification codes and 2FA TOTP codes from Human Phone. Covers OTP entry, code verification, and multi-factor authentication flows. Platforms: claude_code."} +{"id": "27d571840c68db0a086de1382c21c9ff3df70f2b6694b88dbac9db435db99727", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "enterprise-artifact-search", "description": "Multi-hop evidence search + structured extraction over enterprise artifact datasets (docs/chats/meetings/PRs/URLs). Strong disambiguation to prevent cross-product leakage; returns JSON-ready entities", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/enterprise-information-search/environment/skills/enterprise-artifact-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "enterprise-artifact-search. Multi-hop evidence search + structured extraction over enterprise artifact datasets (docs/chats/meetings/PRs/URLs). Strong disambiguation to prevent cross-product leakage; returns JSON-ready entities Platforms: claude_code."} +{"id": "751d68729b5f5a5515a658e0e72a09a972cd2b9d2e902e7621fb637fa5c401eb", "repo_url": "https://github.com/avivk5498/the-claude-protocol", "name": "create-beads-orchestration", "description": "Bootstrap lean multi-agent orchestration with beads task tracking. Use for projects needing agent delegation without heavy MCP overhead.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avivk5498/the-claude-protocol/blob/main/.claude/skills/create-beads-orchestration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 182, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T09:45:34Z"}, "embedding_text": "create-beads-orchestration. Bootstrap lean multi-agent orchestration with beads task tracking. Use for projects needing agent delegation without heavy MCP overhead. Platforms: claude_code."} +{"id": "3c76939b7ccc439781e63ee6e6f70836031f52deeea79eea33bb6bac96606153", "repo_url": "https://github.com/agentmc15/polymarket-trader", "name": "trading-strategies", "description": "Framework for developing, testing, and deploying trading strategies for prediction markets. Use when creating new strategies, implementing signals, or building backtesting logic.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentmc15/polymarket-trader/blob/main/.claude/skills/trading-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T20:37:47Z"}, "embedding_text": "trading-strategies. Framework for developing, testing, and deploying trading strategies for prediction markets. Use when creating new strategies, implementing signals, or building backtesting logic. Platforms: claude_code."} +{"id": "4ca47c2d902b6049b3c434ee5d8814bf3c7952740f6ec7a2c9365995699a068f", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "measuring-product-market-fit", "description": "Measure product-market fit (PMF) and produce a PMF Measurement Pack (Sean Ellis \u201cvery disappointed\u201d survey, retention/usage evidence, reference-customer signals, and an action plan). Use for growth te", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/measuring-product-market-fit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "measuring-product-market-fit. Measure product-market fit (PMF) and produce a PMF Measurement Pack (Sean Ellis \u201cvery disappointed\u201d survey, retention/usage evidence, reference-customer signals, and an action plan). Use for growth te Platforms: claude_code."} +{"id": "e082ac82fcc66e425914826923adc9672735c8fb60756cc724f82b2adc3a1227", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "statistical-analysis", "description": "Structured pipeline for statistical analysis deliverables \u2014 SPSS, R, Python. Covers reliability, chi-square, correlation, regression, assumption checking, and client-ready reporting.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/research/statistical-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "statistical-analysis. Structured pipeline for statistical analysis deliverables \u2014 SPSS, R, Python. Covers reliability, chi-square, correlation, regression, assumption checking, and client-ready reporting. Platforms: claude_code."} +{"id": "e0adf285db8fe547b6eb44fece16b331095f6ee836ef588590a92d927aec69d5", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "pmf-strategy", "description": "When the user wants to validate product-market fit, measure PMF, or plan before scaling. Also use when the user mentions \"PMF,\" \"product-market fit,\" \"product market fit,\" \"Sean Ellis test,\" \"very disappointed,\" \"vitamin vs painkiller,\" \"PMF validation,\" \"premature scaling,\" or \"validate before scale.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/pmf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pmf-strategy"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "pmf-strategy. When the user wants to validate product-market fit, measure PMF, or plan before scaling. Also use when the user mentions \"PMF,\" \"product-market fit,\" \"product market fit,\" \"Sean Ellis test,\" \"very disappointed,\" \"vitamin vs painkiller,\" \"PMF validation,\" \"premature scaling,\" or \"validate before scale.\" Platforms: claude_code."} +{"id": "c79627ba90f3f03a8f77a6cd1b3bc338b56c60d8ada77b66c33725e8fd946450", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-photos", "description": "Handle photo album selection delegation from Human Phone. Covers single and multi-photo selection, push to Agent Phone, and gallery picker navigation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-photos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-photos. Handle photo album selection delegation from Human Phone. Covers single and multi-photo selection, push to Agent Phone, and gallery picker navigation. Platforms: claude_code."} +{"id": "beb0dc2de30ea894db19ddf8d1f0e857e2a32b46d157040c920d37393c05d3e8", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-biometric", "description": "Handle biometric authentication delegation (fingerprint, face recognition) when the Agent Phone lacks biometric hardware.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-biometric/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-biometric. Handle biometric authentication delegation (fingerprint, face recognition) when the Agent Phone lacks biometric hardware. Platforms: claude_code."} +{"id": "405012bc556b60da423de4e0d06467c4f9cbbcdd7e67ac256ab90894401d401c", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-payment", "description": "Handle payment card delegation from Human Phone. Covers credit/debit card number, expiry, CVC entry in checkout flows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-payment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-payment. Handle payment card delegation from Human Phone. Covers credit/debit card number, expiry, CVC entry in checkout flows. Platforms: claude_code."} +{"id": "5c61bbd9b598d5a95efca0229e4017668ab2d48ee27f78729083c547d49af7eb", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-iot-edge", "description": "Expert knowledge for Azure IoT Edge development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & cod", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-iot-edge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-iot-edge. Expert knowledge for Azure IoT Edge development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & cod Platforms: claude_code."} +{"id": "be9df10dd677fea3f4f4c2b7ac79d9a6b7d526ada19e0a066b87d0f2882454da", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "backlink-analysis", "description": "When the user wants to analyze backlinks, audit link profile, or identify link issues. Also use when the user mentions \"backlink analysis,\" \"backlink audit,\" \"referring domains,\" \"toxic links,\" \"link profile,\" or \"disavow file.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/off-page/backlink-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install backlink-analysis"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "backlink-analysis. When the user wants to analyze backlinks, audit link profile, or identify link issues. Also use when the user mentions \"backlink analysis,\" \"backlink audit,\" \"referring domains,\" \"toxic links,\" \"link profile,\" or \"disavow file.\" Platforms: claude_code."} +{"id": "29f9714b010a524c862765da765dabd6c8bd14de886521c188e5d28a1b981e55", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "working-with-spreadsheets", "description": "Creates and edits Excel spreadsheets with formulas, formatting, and financial modeling standards.\nUse when working with .xlsx files, financial models, data analysis, or formula-heavy spreadsheets.\nCov", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/working-with-spreadsheets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "working-with-spreadsheets. Creates and edits Excel spreadsheets with formulas, formatting, and financial modeling standards.\nUse when working with .xlsx files, financial models, data analysis, or formula-heavy spreadsheets.\nCov Platforms: claude_code."} +{"id": "43c2ba60977e6cf259a072a62d7ed357d7e5dfbdc8fdbcb243ab37658adbf351", "repo_url": "https://github.com/minimax-ai/skills", "name": "slide-making-skill", "description": "Implement single-slide PowerPoint pages with PptxGenJS. Use when writing or fixing slide JS files: dimensions, positioning, text/image/chart APIs, styling rules, and export expectations for native .pp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/plugins/pptx-plugin/skills/slide-making-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "slide-making-skill. Implement single-slide PowerPoint pages with PptxGenJS. Use when writing or fixing slide JS files: dimensions, positioning, text/image/chart APIs, styling rules, and export expectations for native .pp Platforms: claude_code."} +{"id": "6c7989c7a53de3422fb970bdb4c00f164bc9df1f4d3548ba3c22e7c565357208", "repo_url": "https://github.com/jezweb/claude-skills", "name": "onboarding-ux", "description": "Audit and generate in-app user guidance \u2014 onboarding flows, empty states, tooltips, feature tours, contextual help, defaults, and inline hints. Browses the app to find where new users would get stuck,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/dev-tools/skills/onboarding-ux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "onboarding-ux. Audit and generate in-app user guidance \u2014 onboarding flows, empty states, tooltips, feature tours, contextual help, defaults, and inline hints. Browses the app to find where new users would get stuck, Platforms: claude_code."} +{"id": "996c5e3a2f179e73e556229fabdb4b6f9c2527410b800bcbf03d4d8c6aa58608", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "building-with-llms", "description": "Help users build effective AI applications. Use when someone is building with LLMs, writing prompts, designing AI features, implementing RAG, creating agents, running evals, or trying to improve AI ou", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/building-with-llms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "building-with-llms. Help users build effective AI applications. Use when someone is building with LLMs, writing prompts, designing AI features, implementing RAG, creating agents, running evals, or trying to improve AI ou Platforms: claude_code."} +{"id": "11acc20acbc07134198318f5acf3a1142a38445b045b6a9b0d3b8077bf8a0e7b", "repo_url": "https://github.com/redisearch/redisearch", "name": "write-rust-tests", "description": "Write Rust tests to verify correctness of Rust code. Use this when you want to write Rust tests.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/write-rust-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "write-rust-tests. Write Rust tests to verify correctness of Rust code. Use this when you want to write Rust tests. Platforms: claude_code."} +{"id": "80509257be1aeb63e4fd7b09e04f332e1aecb6d8780c3f42fd47aa70dd87807b", "repo_url": "https://github.com/snyk/snyk-intellij-plugin", "name": "commit", "description": "Prepare and commit code changes with full verification, pre-commit checks, and tests. Runs verification skill, fixes issues using TDD, executes all test suites, and creates atomic commits. Use when re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/snyk/snyk-intellij-plugin/blob/master/.cursor/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 67, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T07:40:53Z"}, "embedding_text": "commit. Prepare and commit code changes with full verification, pre-commit checks, and tests. Runs verification skill, fixes issues using TDD, executes all test suites, and creates atomic commits. Use when re Platforms: claude_code."} +{"id": "6e66e4cfd6ee1fd1583a39827cab702bc2acc9238a08a5081feeb4ce0d2697a1", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "translate-video", "description": "Translate video subtitles to any language with native-quality refinement. Full pipeline: transcribe \u2192 translate \u2192 refine \u2192 embed RTL-safe subtitles. Use for: translate video, \u05ea\u05e8\u05d2\u05dd \u05e1\u05e8\u05d8\u05d5\u05df, video transla", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/translate-video/skills/translate-video/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "translate-video. Translate video subtitles to any language with native-quality refinement. Full pipeline: transcribe \u2192 translate \u2192 refine \u2192 embed RTL-safe subtitles. Use for: translate video, \u05ea\u05e8\u05d2\u05dd \u05e1\u05e8\u05d8\u05d5\u05df, video transla Platforms: claude_code."} +{"id": "0a4460b19b950977ea14ccac769c89113af6b4ba908683258874ff1f9bad4bf5", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "agent-scan-guard", "description": "Use when you need to run security checks for MCP and agent workflows before merging changes in shared repositories.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/fixtures/pass/multi/global/skills/agent-scan-guard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "agent-scan-guard. Use when you need to run security checks for MCP and agent workflows before merging changes in shared repositories. Platforms: claude_code."} +{"id": "25710d06e58248abf0507bc0e24c6328d475e32e3bbb4ccd5addff4d1c61bec4", "repo_url": "https://github.com/jellydn/my-ai-tools", "name": "ralph", "description": "Convert PRDs to prd.json format for the Ralph autonomous agent system. Use when you have an existing PRD and need to convert it to Ralph's JSON format. Triggers on: convert this prd, turn this into ra", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jellydn/my-ai-tools/blob/main/skills/ralph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 84, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:26:12Z"}, "embedding_text": "ralph. Convert PRDs to prd.json format for the Ralph autonomous agent system. Use when you have an existing PRD and need to convert it to Ralph's JSON format. Triggers on: convert this prd, turn this into ra Platforms: claude_code."} +{"id": "33464db91728d26afbdd2cc368d5dbb21da53e75d08d198a8ce898c71a2361fa", "repo_url": "https://github.com/congdon1207/agents.md", "name": "research", "description": "Use when you need to research, analyze, and plan technical solutions that are scalable, secure, and maintainable.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "research. Use when you need to research, analyze, and plan technical solutions that are scalable, secure, and maintainable. Platforms: claude_code."} +{"id": "8257d3aaebaa7f3a59131bc7f6c5bcf93c812bdba40ea5c62a498103df7891ab", "repo_url": "https://github.com/redisearch/redisearch", "name": "rust-review", "description": "Review Rust code changes for unsafe correctness, documentation quality, and C-to-Rust porting fidelity. Use this when you want to review Rust changes before merging.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/rust-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "rust-review. Review Rust code changes for unsafe correctness, documentation quality, and C-to-Rust porting fidelity. Use this when you want to review Rust changes before merging. Platforms: claude_code."} +{"id": "ef88d515a9bd9e107404e5ee269fab58a9de1fc57056e153a8d3907a5d1125d0", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "github-gh", "description": "Interact with GitHub using the `gh` CLI. Use when managing issues, PRs, workflow runs, or advanced API queries via `gh issue`, `gh pr`, `gh run`, and `gh api`.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/.agents/skills/github-gh/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "github-gh. Interact with GitHub using the `gh` CLI. Use when managing issues, PRs, workflow runs, or advanced API queries via `gh issue`, `gh pr`, `gh run`, and `gh api`. Platforms: claude_code."} +{"id": "e57a3493bee603851ec325a2097cd5ed382e4adad3a09e4d347d65e62dfd10bd", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "citations", "description": "View top-cited papers ranking and refetch citation counts from APIs. Use when the user asks about highly cited papers, citation rankings, or wants to update citation data.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/citations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "citations. View top-cited papers ranking and refetch citation counts from APIs. Use when the user asks about highly cited papers, citation rankings, or wants to update citation data. Platforms: claude_code."} +{"id": "de0444af5f1746e634298d21f509ccbb065ecb97d85b338cf88648dc6a08e787", "repo_url": "https://github.com/pockebot/openpocket", "name": "human-auth-microphone", "description": "Handle microphone audio recording delegation from Human Phone. Covers audio capture, push to Agent Phone, and audio file usage in apps.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/human-auth-microphone/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "human-auth-microphone. Handle microphone audio recording delegation from Human Phone. Covers audio capture, push to Agent Phone, and audio file usage in apps. Platforms: claude_code."} +{"id": "6fd69d6d0d15938e72ec2769d7224243c060a1069d2de5999869c137dbb59b46", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "database-schema-designer", "description": "Design optimized database schemas for SQL and NoSQL databases including tables, relationships, indexes, and constraints. Creates ERD diagrams, migration scripts, and data modeling best practices. Use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/database-schema-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "database-schema-designer. Design optimized database schemas for SQL and NoSQL databases including tables, relationships, indexes, and constraints. Creates ERD diagrams, migration scripts, and data modeling best practices. Use Platforms: claude_code."} +{"id": "22f446874b570f2566c092280c77916d8fa3c2a4e7c3a2f1ee06660c211dd3ab", "repo_url": "https://github.com/breaking-brake/cc-wf-studio", "name": "jira-driven-planning", "description": "Jira\u30c1\u30b1\u30c3\u30c8\u306e\u8981\u4ef6\u3068Confluence\u306e\u95a2\u9023\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u57fa\u306b\u3001Frontend/Backend/Infrastructure\u306b\u5206\u5272\u3057\u305f\u5b9f\u88c5\u8a08\u753b\u3092\u7b56\u5b9a\u3059\u308b\u30d7\u30e9\u30f3\u30cb\u30f3\u30b0\u30b9\u30ad\u30eb\u3002Jira\u30c1\u30b1\u30c3\u30c8\u60c5\u5831\u3068Confluence\u691c\u7d22\u7d50\u679c\u304c\u524d\u6bb5\u3067\u53d6\u5f97\u6e08\u307f\u3067\u3042\u308b\u3053\u3068\u3092\u524d\u63d0\u3068\u3057\u3001\u69cb\u9020\u5316\u3055\u308c\u305f\u5b9f\u88c5\u8a08\u753b\u3092\u51fa\u529b\u3059\u308b\u3002\u300c\u30d7\u30e9\u30f3\u30cb\u30f3\u30b0\u300d\u300c\u5b9f\u88c5\u8a08\u753b\u7b56\u5b9a\u300d\u300c\u30bf\u30b9\u30af\u5206\u5272\u300d\u306a\u3069\u306e\u6587\u8108\u3067\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/breaking-brake/cc-wf-studio/blob/main/.claude/skills/jira-driven-planning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5134, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T02:04:36Z"}, "embedding_text": "jira-driven-planning. Jira\u30c1\u30b1\u30c3\u30c8\u306e\u8981\u4ef6\u3068Confluence\u306e\u95a2\u9023\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u57fa\u306b\u3001Frontend/Backend/Infrastructure\u306b\u5206\u5272\u3057\u305f\u5b9f\u88c5\u8a08\u753b\u3092\u7b56\u5b9a\u3059\u308b\u30d7\u30e9\u30f3\u30cb\u30f3\u30b0\u30b9\u30ad\u30eb\u3002Jira\u30c1\u30b1\u30c3\u30c8\u60c5\u5831\u3068Confluence\u691c\u7d22\u7d50\u679c\u304c\u524d\u6bb5\u3067\u53d6\u5f97\u6e08\u307f\u3067\u3042\u308b\u3053\u3068\u3092\u524d\u63d0\u3068\u3057\u3001\u69cb\u9020\u5316\u3055\u308c\u305f\u5b9f\u88c5\u8a08\u753b\u3092\u51fa\u529b\u3059\u308b\u3002\u300c\u30d7\u30e9\u30f3\u30cb\u30f3\u30b0\u300d\u300c\u5b9f\u88c5\u8a08\u753b\u7b56\u5b9a\u300d\u300c\u30bf\u30b9\u30af\u5206\u5272\u300d\u306a\u3069\u306e\u6587\u8108\u3067\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "06e4af2360f4b55f7ca77868b16c6ed4d30bf12443f7ec276f7273a435106862", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "nemo-curator", "description": "GPU-accelerated data curation for LLM training. Supports text/image/video/audio. Features fuzzy deduplication (16\u00d7 faster), quality filtering (30+ heuristics), semantic deduplication, PII redaction, N", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/nemo-curator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "nemo-curator. GPU-accelerated data curation for LLM training. Supports text/image/video/audio. Features fuzzy deduplication (16\u00d7 faster), quality filtering (30+ heuristics), semantic deduplication, PII redaction, N Platforms: linux, macos."} +{"id": "eaa576352b4e5cdd685bd929fd8a1193e93f8ce10993790f29ddeaff940ba3d8", "repo_url": "https://github.com/systeminit/swamp", "name": "swamp-troubleshooting", "description": "Navigate swamp source code to trace error origins, identify execution flows, inspect internal data structures, and understand CLI behavior when --help is insufficient. Use this skill whenever somethin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/systeminit/swamp/blob/main/.claude/skills/swamp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 448, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:28:07Z"}, "embedding_text": "swamp-troubleshooting. Navigate swamp source code to trace error origins, identify execution flows, inspect internal data structures, and understand CLI behavior when --help is insufficient. Use this skill whenever somethin Platforms: claude_code."} +{"id": "0eecf0e1cc0b1997b74301d572825fd786c399ab088feace4922ce1e19abeff7", "repo_url": "https://github.com/matlab/skills", "name": "matlab-live-script", "description": "Create MATLAB plain text Live Scripts (.m files) following specific formatting rules. Use when generating MATLAB scripts, educational MATLAB content, Live Scripts, or when the user requests .m files w", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matlab/skills/blob/main/demos/embedded-ai-deployment/skills/embedded-ai-deployment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T00:56:22Z"}, "embedding_text": "matlab-live-script. Create MATLAB plain text Live Scripts (.m files) following specific formatting rules. Use when generating MATLAB scripts, educational MATLAB content, Live Scripts, or when the user requests .m files w Platforms: claude_code."} +{"id": "c5b2f8a927d8c23914c7a7016d8cc8b20ccba42cb74bcd1147e033b51dfd669a", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "lead-research-assistant", "description": "\u901a\u8fc7\u5206\u6790\u60a8\u7684\u4e1a\u52a1\u3001\u641c\u7d22\u76ee\u6807\u516c\u53f8\u5e76\u63d0\u4f9b\u53ef\u884c\u7684\u8054\u7cfb\u7b56\u7565\uff0c\u4e3a\u60a8\u7684\u4ea7\u54c1\u6216\u670d\u52a1\u8bc6\u522b\u9ad8\u8d28\u91cf\u6f5c\u5728\u5ba2\u6237\u3002\u975e\u5e38\u9002\u5408\u9500\u552e\u3001\u4e1a\u52a1\u5f00\u53d1\u548c\u8425\u9500\u4e13\u4e1a\u4eba\u58eb\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/lead-research-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "lead-research-assistant. \u901a\u8fc7\u5206\u6790\u60a8\u7684\u4e1a\u52a1\u3001\u641c\u7d22\u76ee\u6807\u516c\u53f8\u5e76\u63d0\u4f9b\u53ef\u884c\u7684\u8054\u7cfb\u7b56\u7565\uff0c\u4e3a\u60a8\u7684\u4ea7\u54c1\u6216\u670d\u52a1\u8bc6\u522b\u9ad8\u8d28\u91cf\u6f5c\u5728\u5ba2\u6237\u3002\u975e\u5e38\u9002\u5408\u9500\u552e\u3001\u4e1a\u52a1\u5f00\u53d1\u548c\u8425\u9500\u4e13\u4e1a\u4eba\u58eb\u3002 Platforms: claude_code."} +{"id": "dbf3eb77b0b56ff85f30adbdc8c05a80ed76147b483aec47753d38bd094d60cc", "repo_url": "https://github.com/az9713/ai-co-writing-claude-skills", "name": "thought-leadership", "description": "Create thought leadership content including long-form articles, essays, and opinion pieces. Use when the user needs authoritative content, wants to establish expertise, or needs to articulate a unique", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/az9713/ai-co-writing-claude-skills/blob/main/.claude/skills/thought-leadership/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T07:39:41Z"}, "embedding_text": "thought-leadership. Create thought leadership content including long-form articles, essays, and opinion pieces. Use when the user needs authoritative content, wants to establish expertise, or needs to articulate a unique Platforms: claude_code."} +{"id": "f42a5efd9b69ff9f49c5682011981c6ccfd7e4db979c0c3f96d16665cbef12a8", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "create-rfc", "description": "Creates structured Request for Comments (RFC) documents for proposing and deciding on significant changes. Use when the user says \"write an RFC\", \"create a proposal\", \"I need to propose a change\", \"draft an RFC\", \"document a decision\", or needs stakeholder alignment before making a major technical or process decision. Do NOT use for TDDs/implementation docs (use technical-design-doc-creator instead), README files, or general documentation.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(creation)/create-rfc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-rfc"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "create-rfc. Creates structured Request for Comments (RFC) documents for proposing and deciding on significant changes. Use when the user says \"write an RFC\", \"create a proposal\", \"I need to propose a change\", \"draft an RFC\", \"document a decision\", or needs stakeholder alignment before making a major technical or process decision. Do NOT use for TDDs/implementation docs (use technical-design-doc-creator instead), README files, or general documentation. Platforms: claude_code."} +{"id": "2b992be67bd9dcd06b243e059b76f295fa372dbd12f8f3fed2000e7e684fc835", "repo_url": "https://github.com/wshobson/agents", "name": "gitops-workflow", "description": "Implement GitOps workflows with ArgoCD and Flux for automated, declarative Kubernetes deployments with continuous reconciliation. Use when implementing GitOps practices, automating Kubernetes deployments, or setting up declarative infrastructure management.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/kubernetes-operations/skills/gitops-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gitops-workflow"}, "quality": {"stars": 37028, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:08:46Z"}, "embedding_text": "gitops-workflow. Implement GitOps workflows with ArgoCD and Flux for automated, declarative Kubernetes deployments with continuous reconciliation. Use when implementing GitOps practices, automating Kubernetes deployments, or setting up declarative infrastructure management. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} +{"id": "d6829c03f910e125aee44d428e5fc56b9c08498a54f2e19d8037314d637e9a5b", "repo_url": "https://github.com/williamfiset/algorithms", "name": "algorithms-education", "description": "Skills and conventions for an educational algorithms and data structures repository. Use this skill whenever working on algorithm implementations, data structure code, LeetCode-style problems, graph t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/williamfiset/algorithms/blob/master/.claude/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18652, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T22:50:09Z"}, "embedding_text": "algorithms-education. Skills and conventions for an educational algorithms and data structures repository. Use this skill whenever working on algorithm implementations, data structure code, LeetCode-style problems, graph t Platforms: claude_code."} +{"id": "73e94e270a68405dbe2fd7a9e64085440d11721a87ff291e2338e551e4dc340e", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "journey-mapping", "description": "User and customer journey mapping for experience analysis. Creates journey maps with touchpoints, emotions, pain points, and opportunity identification.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/journey-mapping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "journey-mapping. User and customer journey mapping for experience analysis. Creates journey maps with touchpoints, emotions, pain points, and opportunity identification. Platforms: claude_code."} +{"id": "6e142ea18541190529f7f5ec4fb082ba0b456a656b166913bd034035715cf44d", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "content-optimization", "description": "When the user wants to optimize content for SEO\u2014word count, H2 keywords, keyword density, multimedia, tables, lists. Also use when the user mentions \"content length,\" \"word count,\" \"keyword stuffing,\" \"H2 keywords,\" \"keyword density,\" \"tables,\" \"bullet points,\" or \"content structure.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/content-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-optimization"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "content-optimization. When the user wants to optimize content for SEO\u2014word count, H2 keywords, keyword density, multimedia, tables, lists. Also use when the user mentions \"content length,\" \"word count,\" \"keyword stuffing,\" \"H2 keywords,\" \"keyword density,\" \"tables,\" \"bullet points,\" or \"content structure.\" Platforms: claude_code."} +{"id": "b302903d74a74ae79d422e88cc589bb52bc89c2986b4b34d231365cfb1bc0e32", "repo_url": "https://github.com/googleworkspace/cli", "name": "recipe-sync-contacts-to-sheet", "description": "Export Google Contacts directory to a Google Sheets spreadsheet.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/recipe-sync-contacts-to-sheet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recipe-sync-contacts-to-sheet"}, "quality": {"stars": 27196, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T17:06:34Z"}, "embedding_text": "recipe-sync-contacts-to-sheet. Export Google Contacts directory to a Google Sheets spreadsheet. Platforms: claude_code."} +{"id": "88bce76ee7c27896ed216917bfc70acb0cabdba61306bea5883acd27a5ad8f7c", "repo_url": "https://github.com/piebald-ai/splitrail", "name": "new-analyzer", "description": "Guide for adding a new AI coding agent analyzer to Splitrail. Use when implementing support for a new tool like Copilot, Cline, or similar.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/piebald-ai/splitrail/blob/main/.claude/skills/new-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 208, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:24:42Z"}, "embedding_text": "new-analyzer. Guide for adding a new AI coding agent analyzer to Splitrail. Use when implementing support for a new tool like Copilot, Cline, or similar. Platforms: claude_code."} +{"id": "e7217313c7dd7bf0860c806321938389875f33c955537030d97f7346d1038d88", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "managing-imposter-syndrome", "description": "Manage imposter syndrome at work and produce an Imposter Syndrome Management Pack (trigger & pattern map, reframes, evidence bank, experiment plan, support scripts, maintenance routine). Use for self-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/managing-imposter-syndrome/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "managing-imposter-syndrome. Manage imposter syndrome at work and produce an Imposter Syndrome Management Pack (trigger & pattern map, reframes, evidence bank, experiment plan, support scripts, maintenance routine). Use for self- Platforms: claude_code."} +{"id": "bf06d067b98bd4caf2f9bd713728dfff1c699058fc6596a2f07a87e85964359b", "repo_url": "https://github.com/piebald-ai/splitrail", "name": "tui", "description": "Guide for Splitrail's terminal UI and file watching. Use when modifying the TUI, stats display, or real-time update logic.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/piebald-ai/splitrail/blob/main/.claude/skills/tui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 208, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:24:42Z"}, "embedding_text": "tui. Guide for Splitrail's terminal UI and file watching. Use when modifying the TUI, stats display, or real-time update logic. Platforms: claude_code."} +{"id": "aa0f11d0696c171d37eff90ea7f8d88473394661ea7e24e62e9f8cd2bc4a7377", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "researching-on-the-internet", "description": "Use when planning features and need current API docs, library patterns, or external knowledge; when testing hypotheses about technology choices or claims; when verifying assumptions before design deci", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-research-agents/skills/researching-on-the-internet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "researching-on-the-internet. Use when planning features and need current API docs, library patterns, or external knowledge; when testing hypotheses about technology choices or claims; when verifying assumptions before design deci Platforms: claude_code."} +{"id": "f99b1debf99cf91900ba38a4caa760426209450104e06c1e0aa88c8c9df7ce00", "repo_url": "https://github.com/digi-uw/openelis-global-2", "name": "playwright", "description": "Playwright planning, test authoring, auditing, and debugging skill for OpenELIS with source-first investigation, runtime evidence checks, stable selector policy, project-registration validation, and p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/digi-uw/openelis-global-2/blob/develop/.ai/skills/playwright/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 228, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:59:28Z"}, "embedding_text": "playwright. Playwright planning, test authoring, auditing, and debugging skill for OpenELIS with source-first investigation, runtime evidence checks, stable selector policy, project-registration validation, and p Platforms: claude_code."} +{"id": "d2d890fd6c2da91e5fff5ddd4eae175da85d49e631728a35400aae26befa4763", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "positioning-messaging", "description": "Create a Positioning & Messaging Pack (positioning statement, messaging hierarchy, value proposition, tagline/headlines, copy set, validation plan). Use for positioning, messaging, value prop, tagline", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/positioning-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "positioning-messaging. Create a Positioning & Messaging Pack (positioning statement, messaging hierarchy, value proposition, tagline/headlines, copy set, validation plan). Use for positioning, messaging, value prop, tagline Platforms: claude_code."} +{"id": "80a05f63d0b3d43785ef93b90cd6692f4ce75b534bdd83796001f1dc10f5440e", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "competitor-research", "description": "When the user wants to analyze competitors for SEO, content, backlinks, or positioning. Also use when the user mentions \"competitor analysis,\" \"competitor research,\" \"competitor keywords,\" \"competitor backlinks,\" \"link gap,\" \"content gap,\" \"competitor content,\" \"competitive analysis,\" or \"competitor comparison.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/competitor-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install competitor-research"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "competitor-research. When the user wants to analyze competitors for SEO, content, backlinks, or positioning. Also use when the user mentions \"competitor analysis,\" \"competitor research,\" \"competitor keywords,\" \"competitor backlinks,\" \"link gap,\" \"content gap,\" \"competitor content,\" \"competitive analysis,\" or \"competitor comparison.\" Platforms: claude_code."} +{"id": "a3b0d33819ba9153c3161d6bb8396c959506182161e2e5df1cd76d4ac2d22df9", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-reverse", "description": "Provides reverse engineering techniques for CTF challenges. Use when analyzing binaries, game clients, obfuscated code, esoteric languages, custom VMs, anti-debugging, WASM, .NET, APK, Python bytecode, Ghidra, GDB, radare2, or extracting flags from compiled executables.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-reverse/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-reverse"}, "quality": {"stars": 2483, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:13:28Z"}, "embedding_text": "ctf-reverse. Provides reverse engineering techniques for CTF challenges. Use when analyzing binaries, game clients, obfuscated code, esoteric languages, custom VMs, anti-debugging, WASM, .NET, APK, Python bytecode, Ghidra, GDB, radare2, or extracting flags from compiled executables. Platforms: claude_code."} +{"id": "988bf82b87f90651ca287bf17e4046628f59e25ec6a7fcbb380966bccebb79d1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "seo-audit", "description": "When the user wants to run an SEO audit, technical SEO audit, or site health check. Also use when the user mentions \"SEO audit,\" \"technical audit,\" \"site audit,\" \"crawl audit,\" \"indexing audit,\" \"SEO health,\" or \"fix SEO issues.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/structure/seo-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-audit"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "seo-audit. When the user wants to run an SEO audit, technical SEO audit, or site health check. Also use when the user mentions \"SEO audit,\" \"technical audit,\" \"site audit,\" \"crawl audit,\" \"indexing audit,\" \"SEO health,\" or \"fix SEO issues.\" Platforms: claude_code."} +{"id": "a2bd4174edd9cc332ce1bf7b46c907b8a25ba3deca676cebf360c697ec5724bf", "repo_url": "https://github.com/bfly123/claude_code_bridge", "name": "opend", "description": "Fetch the latest reply from OpenCode (shorthand: oc) storage via the `opend` CLI. Use only when the user explicitly asks to view the OpenCode/oc reply/response (e.g. \"\u770b\u4e0b oc \u56de\u590d/\u8f93\u51fa\"); do not run proacti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bfly123/claude_code_bridge/blob/main/dev_tools/skills/ccb-github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3047, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T23:13:02Z"}, "embedding_text": "opend. Fetch the latest reply from OpenCode (shorthand: oc) storage via the `opend` CLI. Use only when the user explicitly asks to view the OpenCode/oc reply/response (e.g. \"\u770b\u4e0b oc \u56de\u590d/\u8f93\u51fa\"); do not run proacti Platforms: claude_code."} +{"id": "8816baebcde6b52c0c28d876fb257f36a3490d36091875fca679004d59638ba3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "breadcrumb-generator", "description": "When the user wants to add, optimize, or audit breadcrumb navigation. Also use when the user mentions \"breadcrumbs,\" \"breadcrumb trail,\" \"breadcrumb nav,\" \"breadcrumb links,\" \"path navigation,\" \"site breadcrumb,\" \"BreadcrumbList schema,\" \"location-based breadcrumb,\" \"attribute-based breadcrumb,\" \"site hierarchy display,\" \"add breadcrumbs,\" or \"breadcrumb SEO.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/navigation/breadcrumb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install breadcrumb-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "breadcrumb-generator. When the user wants to add, optimize, or audit breadcrumb navigation. Also use when the user mentions \"breadcrumbs,\" \"breadcrumb trail,\" \"breadcrumb nav,\" \"breadcrumb links,\" \"path navigation,\" \"site breadcrumb,\" \"BreadcrumbList schema,\" \"location-based breadcrumb,\" \"attribute-based breadcrumb,\" \"site hierarchy display,\" \"add breadcrumbs,\" or \"breadcrumb SEO.\" Platforms: claude_code."} +{"id": "e6a36d58be1aa68b12f120ff78495d4b395207c4f7670c80f52ac663742be2b7", "repo_url": "https://github.com/skilluse/skilluse", "name": "epic", "description": "Create and manage Epics - collections of related issues for major feature areas. Use when starting a new project(big feature), organizing work into themes, or adding reference documents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skilluse/skilluse/blob/main/.claude/skills/epic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T16:23:26Z"}, "embedding_text": "epic. Create and manage Epics - collections of related issues for major feature areas. Use when starting a new project(big feature), organizing work into themes, or adding reference documents. Platforms: claude_code."} +{"id": "6f0a2a7e7e7f08ea1c404aeddeb72f299f32f6ae5e18a6bf6d6ef7076a2cdf46", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "domain-architecture", "description": "When the user wants to decide domain structure for multiple products or brands\u2014subfolder vs subdomain vs independent domain. Also use when the user mentions \"subfolder vs subdomain,\" \"subdirectory vs subdomain,\" \"multiple products domain,\" \"multiple websites,\" \"brand architecture,\" \"branded house,\" \"house of brands,\" \"where to host product,\" \"domain structure,\" or \"hub-spoke domain.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/domain/domain-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install domain-architecture"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "domain-architecture. When the user wants to decide domain structure for multiple products or brands\u2014subfolder vs subdomain vs independent domain. Also use when the user mentions \"subfolder vs subdomain,\" \"subdirectory vs subdomain,\" \"multiple products domain,\" \"multiple websites,\" \"brand architecture,\" \"branded house,\" \"house of brands,\" \"where to host product,\" \"domain structure,\" or \"hub-spoke domain.\" Platforms: claude_code."} +{"id": "87dfaf67bf0c7a31d038bbd8623d0707c334d5f183489acf7160cd53b6722fe9", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "hookdeck-event-gateway", "description": "Hookdeck Event Gateway \u2014 webhook infrastructure that replaces your queue. Use when receiving webhooks and need guaranteed delivery, automatic retries, replay, rate limiting, filtering, or observabilit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/hookdeck-event-gateway-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "hookdeck-event-gateway. Hookdeck Event Gateway \u2014 webhook infrastructure that replaces your queue. Use when receiving webhooks and need guaranteed delivery, automatic retries, replay, rate limiting, filtering, or observabilit Platforms: claude_code."} +{"id": "d503e42bf33f3c0c10a8dd697df60ac930894fa11529846896977d4a80748934", "repo_url": "https://github.com/moosegoose0701/skill-compose", "name": "invoice-organizer", "description": "Automatically organizes invoices and receipts for tax preparation by reading messy files, extracting key information, renaming them consistently, and sorting them into logical folders. Turns hours of", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moosegoose0701/skill-compose/blob/main/seed_skills/invoice-organizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T08:01:19Z"}, "embedding_text": "invoice-organizer. Automatically organizes invoices and receipts for tax preparation by reading messy files, extracting key information, renaming them consistently, and sorting them into logical folders. Turns hours of Platforms: claude_code."} +{"id": "d34f1c89579ebdbf5ffa567c6085048848b47200cb1a5016d6b97191bcc1efd1", "repo_url": "https://github.com/jykim/claude-obsidian-skills", "name": "obsidian-mermaid", "description": "Create Obsidian-compatible Mermaid diagrams. Prefer square layouts (TB + subgraph LR), avoid markdown in labels. Use when creating flowcharts, sequence diagrams, or any Mermaid diagrams in markdown fi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jykim/claude-obsidian-skills/blob/main/obsidian-mermaid/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T22:15:25Z"}, "embedding_text": "obsidian-mermaid. Create Obsidian-compatible Mermaid diagrams. Prefer square layouts (TB + subgraph LR), avoid markdown in labels. Use when creating flowcharts, sequence diagrams, or any Mermaid diagrams in markdown fi Platforms: claude_code."} +{"id": "a21708a00d4b5a2c487ca474905086b80a6ae6e22b8e54fe53c702219ff7b6e3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "popup-generator", "description": "When the user wants to add, optimize, or audit popups or modals for lead capture or offers. Also use when the user mentions \"popup,\" \"modal,\" \"lightbox,\" \"overlay,\" \"exit-intent,\" \"popup form,\" \"modal design,\" \"lead popup,\" \"popup timing,\" or \"popup triggers.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/conversion/popup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install popup-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "popup-generator. When the user wants to add, optimize, or audit popups or modals for lead capture or offers. Also use when the user mentions \"popup,\" \"modal,\" \"lightbox,\" \"overlay,\" \"exit-intent,\" \"popup form,\" \"modal design,\" \"lead popup,\" \"popup timing,\" or \"popup triggers.\" Platforms: claude_code."} +{"id": "30148aa68236af27dae076bfcb025b0ab176f366a3b6ace8f55d64773e91b0a9", "repo_url": "https://github.com/mckinsey/agents-at-scale-ark", "name": "ark-documentation", "description": "Guidance for structuring Ark documentation using the Diataxis framework. Use this skill when creating new docs, deciding where content belongs, reviewing documentation PRs, or restructuring existing d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mckinsey/agents-at-scale-ark/blob/main/.claude/skills/documentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 399, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:54:57Z"}, "embedding_text": "ark-documentation. Guidance for structuring Ark documentation using the Diataxis framework. Use this skill when creating new docs, deciding where content belongs, reviewing documentation PRs, or restructuring existing d Platforms: claude_code."} +{"id": "33c98139086d15b260d12a3e61e431cf53c097dc802fd850a5d4f8c9ce4e03f2", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-localize-metadata", "description": "Automatically translate and sync App Store metadata (description, keywords, what's new, subtitle) to multiple languages using LLM translation and asc CLI. Use when asked to localize an app's App Store listing, translate app descriptions, or add new languages to App Store Connect.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-localize-metadata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-localize-metadata"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-localize-metadata. Automatically translate and sync App Store metadata (description, keywords, what's new, subtitle) to multiple languages using LLM translation and asc CLI. Use when asked to localize an app's App Store listing, translate app descriptions, or add new languages to App Store Connect. Platforms: claude_code."} +{"id": "1c1033c9f5b42920730c05f51cbbc86d84baef72ff6234bbca1d61ecdd3864c6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "contest-page-generator", "description": "When the user wants to create, optimize, or audit a giveaway, contest, or promotional campaign page. Also use when the user mentions \"giveaway,\" \"contest,\" \"sweepstakes,\" \"promo,\" \"Gleam,\" \"Woobox,\" or \"viral campaign.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/contest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install contest-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "contest-page-generator. When the user wants to create, optimize, or audit a giveaway, contest, or promotional campaign page. Also use when the user mentions \"giveaway,\" \"contest,\" \"sweepstakes,\" \"promo,\" \"Gleam,\" \"Woobox,\" or \"viral campaign.\" Platforms: claude_code."} +{"id": "37be3050492e2577a152244b60071bbd9427313a0f1ff3b3e59b48a76b290b28", "repo_url": "https://github.com/camoa/claude-skills", "name": "diagram-generator", "description": "Use when visualizing architecture - generates Mermaid diagrams for data flow, service relationships, or entity structures", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/alignment-reader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "diagram-generator. Use when visualizing architecture - generates Mermaid diagrams for data flow, service relationships, or entity structures Platforms: claude_code."} +{"id": "4fe67021ddb994c2c0dc97eb5e8be6d04d5a1ee9a4a0f69e02c2ea964042e252", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "docx-processing-openai", "description": "Toolkit for comprehensive document reading, editing, and creation with visual quality control. Use to work with Word documents (.docx files) for: (1) Reading or extracting content from existing DOCX files, (2) Creating new Word documents with professional formatting, (3) Editing documents requiring precise typography and layout, or any other DOCX reading or generation tasks.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/docx-processing-openai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx-processing-openai"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "docx-processing-openai. Toolkit for comprehensive document reading, editing, and creation with visual quality control. Use to work with Word documents (.docx files) for: (1) Reading or extracting content from existing DOCX files, (2) Creating new Word documents with professional formatting, (3) Editing documents requiring precise typography and layout, or any other DOCX reading or generation tasks. Platforms: claude_code."} +{"id": "277bd4467033e3ef03544ab80cdcbdfc6cbb720c891bb6b1c1099a8fff3dc32b", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "entity-seo", "description": "When the user wants to optimize for entity recognition, Knowledge Graph, or entity-based SEO. Also use when the user mentions \"entity SEO,\" \"entity optimization,\" \"Knowledge Graph,\" \"Knowledge Panel,\" \"entity signals,\" \"brand entity,\" \"entity linking,\" \"entity relationships,\" or \"entity-first content.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/entity-seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install entity-seo"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "entity-seo. When the user wants to optimize for entity recognition, Knowledge Graph, or entity-based SEO. Also use when the user mentions \"entity SEO,\" \"entity optimization,\" \"Knowledge Graph,\" \"Knowledge Panel,\" \"entity signals,\" \"brand entity,\" \"entity linking,\" \"entity relationships,\" or \"entity-first content.\" Platforms: claude_code."} +{"id": "bfe9f70cc9a1911f97e16178d58f99bd7d2fb95cb15585555a03717f37eabdd1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "integrations-page-generator", "description": "When the user wants to create, optimize, or audit integrations, plugins, or extensions pages. Also use when the user mentions \"integrations page,\" \"plugins,\" \"extensions,\" \"add-ons,\" \"API integrations,\" \"connect with X,\" or \"marketplace.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/integrations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install integrations-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "integrations-page-generator. When the user wants to create, optimize, or audit integrations, plugins, or extensions pages. Also use when the user mentions \"integrations page,\" \"plugins,\" \"extensions,\" \"add-ons,\" \"API integrations,\" \"connect with X,\" or \"marketplace.\" Platforms: claude_code."} +{"id": "7e01ec27513269a90f32307103392e2b0da192c6d21ea2aeecb820fb1998d192", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "article-content", "description": "When the user wants to write, generate, or create article content\u2014blog post body, long-form content, how-to guide, listicle. Also use when the user mentions \"write article,\" \"article content,\" \"blog post content,\" \"article body,\" \"long-form content creation,\" \"generate article,\" \"article draft,\" \"how-to guide content,\" \"listicle content,\" \"information gain,\" or \"content density.\" For article page structure, schema, and SEO metadata, use article-page-generator. For ad copy, landing page copy, or CTAs, use copywriting.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/article/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install article-content"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "article-content. When the user wants to write, generate, or create article content\u2014blog post body, long-form content, how-to guide, listicle. Also use when the user mentions \"write article,\" \"article content,\" \"blog post content,\" \"article body,\" \"long-form content creation,\" \"generate article,\" \"article draft,\" \"how-to guide content,\" \"listicle content,\" \"information gain,\" or \"content density.\" For article page structure, schema, and SEO metadata, use article-page-generator. For ad copy, landing page copy, or CTAs, use copywriting. Platforms: claude_code."} +{"id": "c6edebb71c3ebf9aec573115433182d3cd777a6b967f8ca641b75b9d37b77eba", "repo_url": "https://github.com/blueberrycongee/termcanvas", "name": "code-review", "description": "Structured code review skill. Use when asked to \"review this code\", \"review this PR\", \"check this diff\", or when acting as a Hydra evaluator. Runs a multi-pass review with specialist focus areas and c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blueberrycongee/termcanvas/blob/main/skills/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 327, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T23:40:31Z"}, "embedding_text": "code-review. Structured code review skill. Use when asked to \"review this code\", \"review this PR\", \"check this diff\", or when acting as a Hydra evaluator. Runs a multi-pass review with specialist focus areas and c Platforms: claude_code."} +{"id": "414facb094ccad77737a41a94bf76350b0822df89e257bd281c71acb1db4f3af", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "migration-page-generator", "description": "When the user wants to create, optimize, or audit migration guides for users switching from competitors. Also use when the user mentions \"migration guide,\" \"migrate from X,\" \"switch to [product],\" \"import from X,\" or \"data migration.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install migration-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "migration-page-generator. When the user wants to create, optimize, or audit migration guides for users switching from competitors. Also use when the user mentions \"migration guide,\" \"migrate from X,\" \"switch to [product],\" \"import from X,\" or \"data migration.\" Platforms: claude_code."} +{"id": "2fe5e3de111cfaef3acab7f8414228f47a8602026926fbcf7bf6ecbf3b19cb3e", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "cta-generator", "description": "When the user wants to design, optimize, or audit call-to-action (CTA) buttons. Also use when the user mentions \"CTA,\" \"call to action,\" \"button design,\" \"conversion button,\" \"primary action,\" \"CTA copy,\" \"button text,\" \"CTA placement,\" \"conversion CTA,\" or \"action button.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/conversion/cta/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cta-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "cta-generator. When the user wants to design, optimize, or audit call-to-action (CTA) buttons. Also use when the user mentions \"CTA,\" \"call to action,\" \"button design,\" \"conversion button,\" \"primary action,\" \"CTA copy,\" \"button text,\" \"CTA placement,\" \"conversion CTA,\" or \"action button.\" Platforms: claude_code."} +{"id": "4d9afbe42d7f7dfaedc5485b46735dbc0c436bc318edc5abf0b44b068ea6fb67", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "youtube-ads", "description": "When the user wants to run YouTube ads, set up TrueView or Bumper campaigns, or optimize video ad creative. Also use when the user mentions \"YouTube ads,\" \"TrueView,\" \"Bumper ads,\" \"YouTube Discovery,\" \"video ads,\" \"YouTube campaign,\" or \"in-feed ads.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/youtube-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-ads"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "youtube-ads. When the user wants to run YouTube ads, set up TrueView or Bumper campaigns, or optimize video ad creative. Also use when the user mentions \"YouTube ads,\" \"TrueView,\" \"Bumper ads,\" \"YouTube Discovery,\" \"video ads,\" \"YouTube campaign,\" or \"in-feed ads.\" Platforms: claude_code."} +{"id": "8a75e209cb0114769805d52fbf905f48bf4fd25f598e6f06e8b80652e5f98308", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "robots-txt", "description": "When the user wants to create X (Twitter) post copy, threads, or optimize for X platform. Also use when the user mentions \"X post,\" \"X thread,\" \"Twitter post,\" \"Twitter thread,\" \"tweet,\" \"tweet copy,\" \"thread,\" \"X marketing,\" \"X content,\" \"post to X,\" \"create X post,\" or \"X post copy.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/x/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robots-txt"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "robots-txt. When the user wants to create X (Twitter) post copy, threads, or optimize for X platform. Also use when the user mentions \"X post,\" \"X thread,\" \"Twitter post,\" \"Twitter thread,\" \"tweet,\" \"tweet copy,\" \"thread,\" \"X marketing,\" \"X content,\" \"post to X,\" \"create X post,\" or \"X post copy.\" Platforms: claude_code."} +{"id": "6fd7ceda50ea71d760278f6e7e0e2a704edf3d25c4999e1cfa1e7232c7865653", "repo_url": "https://github.com/hmislk/hmis", "name": "ui-guidelines", "description": "HMIS UI development guidelines for JSF/XHTML pages. Use when creating or modifying XHTML pages, PrimeFaces components, page layouts, forms, buttons, panels, datatables, or any frontend/UI work. Covers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hmislk/hmis/blob/development/.claude/skills/ui-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 219, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:38:35Z"}, "embedding_text": "ui-guidelines. HMIS UI development guidelines for JSF/XHTML pages. Use when creating or modifying XHTML pages, PrimeFaces components, page layouts, forms, buttons, panels, datatables, or any frontend/UI work. Covers Platforms: claude_code."} +{"id": "ffd4c4cfcfb29cf8b6ebd09a4dea67c8b94b6ea892cff3afad0be3de7b1620b0", "repo_url": "https://github.com/st0012/ruby-skills", "name": "ruby-resource-map", "description": "Use when working in a Ruby project - provides authoritative sources for documentation, typing, and tooling", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/st0012/ruby-skills/blob/master/plugins/ruby-skills/skills/ruby-resource-map/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 119, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T22:00:03Z"}, "embedding_text": "ruby-resource-map. Use when working in a Ruby project - provides authoritative sources for documentation, typing, and tooling Platforms: claude_code."} +{"id": "63d9ccbb8b213c8535806cdb5f29d435eeaacc700975b98f0d289e084cd8da81", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "refund-page-generator", "description": "When the user wants to create or optimize a refund or return policy page. Also use when the user mentions \"refund policy,\" \"return policy,\" \"money-back guarantee,\" \"returns and refunds,\" \"refund page,\" \"return process,\" \"refund terms,\" or \"satisfaction guarantee.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/legal/refund/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refund-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "refund-page-generator. When the user wants to create or optimize a refund or return policy page. Also use when the user mentions \"refund policy,\" \"return policy,\" \"money-back guarantee,\" \"returns and refunds,\" \"refund page,\" \"return process,\" \"refund terms,\" or \"satisfaction guarantee.\" Platforms: claude_code."} +{"id": "38f21ff22c57294b88f31396163d698b8599a3b2960d03128f001628e366c797", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "press-coverage-page-generator", "description": "When the user wants to create a press coverage page, \"As Seen In\" section, or media mentions aggregation. Also use when the user mentions \"press coverage,\" \"media mentions,\" \"as seen in,\" \"as featured in,\" \"in the news,\" \"press mentions,\" \"media coverage page,\" or \"trusted by publications.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/press-coverage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install press-coverage-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "press-coverage-page-generator. When the user wants to create a press coverage page, \"As Seen In\" section, or media mentions aggregation. Also use when the user mentions \"press coverage,\" \"media mentions,\" \"as seen in,\" \"as featured in,\" \"in the news,\" \"press mentions,\" \"media coverage page,\" or \"trusted by publications.\" Platforms: claude_code."} +{"id": "2f52aa00a9935894044ee0ce38c576a22e663f3ff65412d7e390f9f20e0e0df8", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "pricing-strategy", "description": "When the user wants to create, optimize, or audit pricing page content and structure. Also use when the user mentions \"pricing page,\" \"pricing table,\" \"plans,\" \"subscription,\" \"pricing plans,\" \"pricing tiers,\" \"pricing comparison,\" \"SaaS pricing,\" \"enterprise pricing,\" \"API pricing,\" \"contact sales,\" \"pricing in nav,\" \"public pricing,\" \"hide pricing,\" or \"pricing objection handling.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/pricing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pricing-strategy"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "pricing-strategy. When the user wants to create, optimize, or audit pricing page content and structure. Also use when the user mentions \"pricing page,\" \"pricing table,\" \"plans,\" \"subscription,\" \"pricing plans,\" \"pricing tiers,\" \"pricing comparison,\" \"SaaS pricing,\" \"enterprise pricing,\" \"API pricing,\" \"contact sales,\" \"pricing in nav,\" \"public pricing,\" \"hide pricing,\" or \"pricing objection handling.\" Platforms: claude_code."} +{"id": "13d6e090e7093dd5f18f762ff1675dc8a345a8eda0e63af7975f86dc676771b4", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "content-strategy", "description": "When the user wants to plan content for SEO, create content calendar, or build topic clusters. Also use when the user mentions \"content strategy,\" \"content plan,\" \"topic clusters,\" \"pillar content,\" \"pillar page,\" \"cluster articles,\" \"editorial calendar,\" \"content hub,\" \"content planning,\" \"content clusters,\" \"topic cluster strategy,\" \"content strategy for SEO,\" or \"content calendar.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/content-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-strategy"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "content-strategy. When the user wants to plan content for SEO, create content calendar, or build topic clusters. Also use when the user mentions \"content strategy,\" \"content plan,\" \"topic clusters,\" \"pillar content,\" \"pillar page,\" \"cluster articles,\" \"editorial calendar,\" \"content hub,\" \"content planning,\" \"content clusters,\" \"topic cluster strategy,\" \"content strategy for SEO,\" or \"content calendar.\" Platforms: claude_code."} +{"id": "c55a5058be2dd2950642f0be52f821f491839022a1155a0fb2d1a0228537e1a8", "repo_url": "https://github.com/resciencelab/opc-skills", "name": "nanobanana", "description": "Generate and edit images using Google Gemini 3 Pro Image (Nano Banana Pro). Supports text-to-image, image editing, various aspect ratios, and high-resolution output (2K/4K). Use when user wants to generate images, create images, use Gemini image generation, or do AI image generation.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/resciencelab/opc-skills/blob/main/skills/nanobanana/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nanobanana"}, "quality": {"stars": 937, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:48:56Z"}, "embedding_text": "nanobanana. Generate and edit images using Google Gemini 3 Pro Image (Nano Banana Pro). Supports text-to-image, image editing, various aspect ratios, and high-resolution output (2K/4K). Use when user wants to generate images, create images, use Gemini image generation, or do AI image generation. Platforms: claude_code."} +{"id": "cbe6338cefbb47fb5a32eca96123826da6cadd079a90430531773a81d93d7adb", "repo_url": "https://github.com/ehmo/platform-design-skills", "name": "visionos-design-guidelines", "description": "Apple Human Interface Guidelines for Apple Vision Pro. Use when building spatial computing apps, implementing eye/hand input, or designing immersive experiences. Triggers on tasks involving visionOS,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ehmo/platform-design-skills/blob/main/skills/visionos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 397, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T05:13:32Z"}, "embedding_text": "visionos-design-guidelines. Apple Human Interface Guidelines for Apple Vision Pro. Use when building spatial computing apps, implementing eye/hand input, or designing immersive experiences. Triggers on tasks involving visionOS, Platforms: claude_code."} +{"id": "1e8b92eecdce4690861d07b6e23e9263343cf9e1f948321f4ab633b7b6f43ff2", "repo_url": "https://github.com/anombyte93/claude-session-init", "name": "stop", "description": "Gracefully close, pause, or verify a session: harvest promotable content, save progress, archive soul purpose, settle AtlasCoin bounty. Use when user says /stop, wrap up, done for the day, finishing u", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anombyte93/claude-session-init/blob/main/skills/stop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 88, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-26T05:51:54Z"}, "embedding_text": "stop. Gracefully close, pause, or verify a session: harvest promotable content, save progress, archive soul purpose, settle AtlasCoin bounty. Use when user says /stop, wrap up, done for the day, finishing u Platforms: claude_code."} +{"id": "4ccf584e8650e307715d52005529960c971bc4f38c510d6c31e8184f074696d2", "repo_url": "https://github.com/first-fluke/oh-my-agent", "name": "orchestrator", "description": "Automated multi-agent orchestrator that spawns CLI subagents in parallel, coordinates via MCP Memory, and monitors progress. Use for orchestration, parallel execution, and automated multi-agent workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/first-fluke/oh-my-agent/blob/main/.agents/skills/oma-orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1113, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:09:44Z"}, "embedding_text": "orchestrator. Automated multi-agent orchestrator that spawns CLI subagents in parallel, coordinates via MCP Memory, and monitors progress. Use for orchestration, parallel execution, and automated multi-agent workfl Platforms: claude_code."} +{"id": "b3971b1d04e78976008f52ce18f91a8259a3cf4435fc9b0a411275f55a93e605", "repo_url": "https://github.com/brianlovin/claude-config", "name": "fix-sentry-issues", "description": "Use Sentry MCP to discover, triage, and fix production issues with root-cause analysis. Use when asked to fix Sentry issues, triage production errors, investigate error spikes, or clean up Sentry nois", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianlovin/claude-config/blob/main/skills/fix-sentry-issues/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 353, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T17:52:51Z"}, "embedding_text": "fix-sentry-issues. Use Sentry MCP to discover, triage, and fix production issues with root-cause analysis. Use when asked to fix Sentry issues, triage production errors, investigate error spikes, or clean up Sentry nois Platforms: claude_code."} +{"id": "129c789e0e960c60e151f5e0548f220b90d23e652e7da3022e34a5b301e101a4", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-graphql", "description": "Detect GraphQL injection vulnerabilities in a codebase using a three-phase approach: recon (confirm GraphQL usage and find unsafe operation document assembly sites), batched verify (trace user input t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-graphql/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-graphql. Detect GraphQL injection vulnerabilities in a codebase using a three-phase approach: recon (confirm GraphQL usage and find unsafe operation document assembly sites), batched verify (trace user input t Platforms: claude_code."} +{"id": "2a4f6f6aa8c76b61549b4fbda33f344f6a3a7775ec796140ba62f17c9dec0bf9", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "list-members", "description": "Displays the roster of architecture team members with their specialties and expertise areas. Use when the user asks \"Who's on the architecture team?\", \"List architecture members\", \"Show me the archite", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/skills/list-members/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T18:12:57Z"}, "embedding_text": "list-members. Displays the roster of architecture team members with their specialties and expertise areas. Use when the user asks \"Who's on the architecture team?\", \"List architecture members\", \"Show me the archite Platforms: claude_code."} +{"id": "33be1a26e4199c7cc2e2fff77723496de5aee42e5f7c00d05b597ec739dee84c", "repo_url": "https://github.com/dicklesworthstone/flywheel_connectors", "name": "apr", "description": "Run APR (Automated Plan Reviser) workflow for FCP specification refinement. Use when asked to run APR, revision rounds, spec review, integrate GPT feedback, or harmonize docs. Handles Oracle remote se", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/flywheel_connectors/blob/main/.claude/skills/apr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 81, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T23:32:08Z"}, "embedding_text": "apr. Run APR (Automated Plan Reviser) workflow for FCP specification refinement. Use when asked to run APR, revision rounds, spec review, integrate GPT feedback, or harmonize docs. Handles Oracle remote se Platforms: claude_code."} +{"id": "a120a5738df13e2d4ff940d88caefad34decb9c79fbb7df6d4791049b52f7544", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-report", "description": "Ghost Security \u2014 combined security report. Aggregates findings from all scan skills (scan-deps, scan-secrets, scan-code) into a single prioritized report focused on the highest risk, highest confidence issues. Use when the user requests a security overview, vulnerability summary, full security audit, or combined scan results.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-report"}, "quality": {"stars": 393, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-report. Ghost Security \u2014 combined security report. Aggregates findings from all scan skills (scan-deps, scan-secrets, scan-code) into a single prioritized report focused on the highest risk, highest confidence issues. Use when the user requests a security overview, vulnerability summary, full security audit, or combined scan results. Platforms: claude_code."} +{"id": "356a24abd1227bfb86353b757979c3c616f1cecde84bb8935622972e95b52a66", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-ide-support", "description": "Improves IDE autocomplete and static analysis in Kirby projects with PHPDoc hints and Kirby IDE helper generation. Use when types are missing or IDE support is degraded.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-ide-support/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-ide-support. Improves IDE autocomplete and static analysis in Kirby projects with PHPDoc hints and Kirby IDE helper generation. Use when types are missing or IDE support is degraded. Platforms: claude_code."} +{"id": "65ecff992456e57269106b28934f8ccb693e59b2d1a95eb5f4c5a95460aa51f2", "repo_url": "https://github.com/elie222/inbox-zero", "name": "test-feature", "description": "End-to-end feature testing \u2014 browser QA, API verification, eval tests, or any combination. Covers browser interactions (via agent-browser CLI), Google Workspace operations (gws CLI), API calls, and LL", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/elie222/inbox-zero/blob/main/.claude/skills/test-feature/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11387, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T20:46:33Z"}, "embedding_text": "test-feature. End-to-end feature testing \u2014 browser QA, API verification, eval tests, or any combination. Covers browser interactions (via agent-browser CLI), Google Workspace operations (gws CLI), API calls, and LL Platforms: claude_code."} +{"id": "73767be2f44da0d8f79949cc24de8ce84ce00042ecc8939592f1f8de359038a7", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "tech-contract-negotiation-patrick-munro", "description": "Guide to negotiating technology services agreements, professional services contracts, and commercial B2B transactions. Provides three-position frameworks (provider-favorable, balanced, client-favorable), deal-size tactics, objection handling templates, and concession roadmaps. Use when: (1) Developing negotiation strategies for SaaS, cloud, or managed services agreements, (2) Preparing position papers and fallback positions, (3) Responding to counterparty objections and demands, (4) Creating concession roadmaps that protect critical interests, (5) Assessing tactics based on deal value and leverage, or (6) Structuring balanced outcomes for liability, IP, payment, SLA, or warranty provisions.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/tech-contract-negotiation-patrick-munro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tech-contract-negotiation-patrick-munro"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "tech-contract-negotiation-patrick-munro. Guide to negotiating technology services agreements, professional services contracts, and commercial B2B transactions. Provides three-position frameworks (provider-favorable, balanced, client-favorable), deal-size tactics, objection handling templates, and concession roadmaps. Use when: (1) Developing negotiation strategies for SaaS, cloud, or managed services agreements, (2) Preparing position papers and fallback positions, (3) Responding to counterparty objections and demands, (4) Creating concession roadmaps that protect critical interests, (5) Assessing tactics based on deal value and leverage, or (6) Structuring balanced outcomes for liability, IP, payment, SLA, or warranty provisions. Platforms: claude_code."} +{"id": "d8bd4acb44b87d8c14c5700e80db022d45e8e223c47e3d69278db7f679dd5ac4", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "writing-plans", "description": "Use when you have a spec or requirements for a multi-step task, before touching code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/writing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "writing-plans. Use when you have a spec or requirements for a multi-step task, before touching code Platforms: claude_code."} +{"id": "3d9dd9e206cdea92aa71cd2f9873303c98d430d394cf3608660fe0b112b54011", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "trading-risk-gate", "description": "Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/decision/trading-risk-gate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "trading-risk-gate. Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance. Platforms: claude_code."} +{"id": "4feaa9f895644cdd455291f14968f38dcc99947d7386f27950cd02a091cef268", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-energy-data-services", "description": "Expert knowledge for Azure Energy Data Services development including troubleshooting, decision making, architecture & design patterns, security, configuration, integrations & coding patterns, and dep", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-energy-data-services/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-energy-data-services. Expert knowledge for Azure Energy Data Services development including troubleshooting, decision making, architecture & design patterns, security, configuration, integrations & coding patterns, and dep Platforms: claude_code."} +{"id": "b1355c57247c40368eb7a7a174ed863967cff431b07d7ef1a6bba9b967c2d726", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "subagent-driven-development", "description": "Use when executing implementation plans with independent tasks in the current session", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/subagent-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "subagent-driven-development. Use when executing implementation plans with independent tasks in the current session Platforms: claude_code."} +{"id": "6fe5212995125a606e66137101b9e2a4262381a82265c678b210e2ee4e3b7172", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-firewall-manager", "description": "Expert knowledge for Azure Firewall Manager development including best practices, decision making, security, and configuration. Use when managing DDoS plans, WAF policies, DNS proxy/FQDN rules, IP Gro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-firewall-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-firewall-manager. Expert knowledge for Azure Firewall Manager development including best practices, decision making, security, and configuration. Use when managing DDoS plans, WAF policies, DNS proxy/FQDN rules, IP Gro Platforms: claude_code."} +{"id": "8073b50ecce81ef2012ac401230d6880cc7584194bcff0f1cdd964f2184b2e0b", "repo_url": "https://github.com/sanyuan0704/sanyuan-skills", "name": "code-review-expert", "description": "Expert code review of current git changes with a senior engineer lens. Detects SOLID violations, security risks, and proposes actionable improvements.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanyuan0704/sanyuan-skills/blob/main/skills/code-review-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T07:21:45Z"}, "embedding_text": "code-review-expert. Expert code review of current git changes with a senior engineer lens. Detects SOLID violations, security risks, and proposes actionable improvements. Platforms: claude_code."} +{"id": "760e707a8a7d077941b0700002423235aaaeadb562872bb3793de3ba50060aa9", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "verification-before-completion", "description": "Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/verification-before-completion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "verification-before-completion. Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence Platforms: claude_code."} +{"id": "92f6ccbb582cf6f658439b5827ecef80e652b792f5717ddbd5d7ac1163664d67", "repo_url": "https://github.com/aojdevstudio/finance-guru", "name": "fin-guru-compliance-review", "description": "Execute comprehensive compliance reviews for Finance Guru deliverables. Validates disclaimers, data handling, risk disclosures, and regulatory positioning.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aojdevstudio/finance-guru/blob/main/.claude/skills/fin-guru-compliance-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 309, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T14:29:45Z"}, "embedding_text": "fin-guru-compliance-review. Execute comprehensive compliance reviews for Finance Guru deliverables. Validates disclaimers, data handling, risk disclosures, and regulatory positioning. Platforms: claude_code."} +{"id": "2cad28d0f0d841a5aeb54fd61db0e2d89fde9ba79e8e5d730034e90947215b2d", "repo_url": "https://github.com/aojdevstudio/finance-guru", "name": "fin-guru-strategize", "description": "Develop comprehensive portfolio strategies from quantitative analysis. Integrates margin, dividend, and cash-flow tactics into actionable wealth-building plans.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aojdevstudio/finance-guru/blob/main/.claude/skills/fin-guru-strategize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 309, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T14:29:45Z"}, "embedding_text": "fin-guru-strategize. Develop comprehensive portfolio strategies from quantitative analysis. Integrates margin, dividend, and cash-flow tactics into actionable wealth-building plans. Platforms: claude_code."} +{"id": "23242d312c974de344328de6e0e5f2e5c7039067d91614b5e6a0515166bef593", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "evaluating-new-technology", "description": "Help users evaluate emerging technologies. Use when someone is assessing new tools, making build vs buy decisions, evaluating AI vendors, or deciding on technical architecture.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/evaluating-new-technology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "evaluating-new-technology. Help users evaluate emerging technologies. Use when someone is assessing new tools, making build vs buy decisions, evaluating AI vendors, or deciding on technical architecture. Platforms: claude_code."} +{"id": "bff5453e171edc7c632bff7bdafc50addf2644ec756fb3fb9effc4d60e2e3451", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "timezone-tools", "description": "Get current time in any timezone and convert times between timezones. Use when working with time, dates, timezones, scheduling across regions, or when user mentions specific cities/regions for time qu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/timezone-tools/skills/timezone-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "timezone-tools. Get current time in any timezone and convert times between timezones. Use when working with time, dates, timezones, scheduling across regions, or when user mentions specific cities/regions for time qu Platforms: claude_code."} +{"id": "9be4a45b15ad8cfa84610eb656d9e2aa21a9cfa935cf206cffff805d2d61e330", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "setup", "description": "Use when installing, updating, or troubleshooting the dasel v3 binary \u2014 runs the install script, verifies installation, and diagnoses PATH and download issues", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/dasel/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "setup. Use when installing, updating, or troubleshooting the dasel v3 binary \u2014 runs the install script, verifies installation, and diagnoses PATH and download issues Platforms: claude_code."} +{"id": "dda44970383c1630a78490de833c952c6dcbdc951016cad2c06cd3f7439afc1d", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "atomic-execution", "description": "Executes tasks in isolated states using atomic XML execution plans (GSD pattern).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/coding/atomic-execution/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "atomic-execution. Executes tasks in isolated states using atomic XML execution plans (GSD pattern). Platforms: claude_code."} +{"id": "a9fb3509e5bcfa846f68be863a902e76b19c53fd0d7f0f548929d8250c47d80c", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "pdf-processing-openai", "description": "Toolkit for comprehensive PDF reading, reviwing, and creation with visual quality control. Use to work with PDFs (.pdf files) for: (1) Reading or extracting content from existing PDFs, (2) Creating new PDF documents with professional formatting, (3) Generating reports, documents, or layouts that require precise typography and design, or any other PDF reading or generation tasks.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/pdf-processing-openai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf-processing-openai"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "pdf-processing-openai. Toolkit for comprehensive PDF reading, reviwing, and creation with visual quality control. Use to work with PDFs (.pdf files) for: (1) Reading or extracting content from existing PDFs, (2) Creating new PDF documents with professional formatting, (3) Generating reports, documents, or layouts that require precise typography and design, or any other PDF reading or generation tasks. Platforms: claude_code."} +{"id": "ac89283378f867d0d732a06cf12fec790e087d0eef6bec61c84a4dd8d0cc30ea", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-automation", "description": "Expert knowledge for Azure Automation development including troubleshooting, best practices, decision making, limits & quotas, security, configuration, integrations & coding patterns, and deployment.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-automation. Expert knowledge for Azure Automation development including troubleshooting, best practices, decision making, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Platforms: claude_code."} +{"id": "6e77b2b3d94e885a2d884ff3d12c0a5096d927b4d242e70f06acf40892ac8947", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-project-tour", "description": "Maps a Kirby project using Kirby MCP tools/resources, including roots, templates, snippets, controllers, models, blueprints, plugins, runtime status, and key config. Use when a user wants a project ov", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-project-tour/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-project-tour. Maps a Kirby project using Kirby MCP tools/resources, including roots, templates, snippets, controllers, models, blueprints, plugins, runtime status, and key config. Use when a user wants a project ov Platforms: claude_code."} +{"id": "02176953b7ad4304787c8d0bcf343d5df8cc265fc5db7a81f212f3274c326673", "repo_url": "https://github.com/figma/mcp-server-guide", "name": "figma-create-design-system-rules", "description": "Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/figma/mcp-server-guide/blob/main/skills/figma-code-connect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1650, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T08:45:01Z"}, "embedding_text": "figma-create-design-system-rules. Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelin Platforms: claude_code."} +{"id": "c51c839f3d7b786b2e74d83239060eaa7d920a01772fb2773a55da432ddd857c", "repo_url": "https://github.com/wsimmonds/claude-nextjs-skills", "name": "nextjs-client-cookie-pattern", "description": "Pattern for client components calling server actions to set cookies in Next.js. Covers the two-file pattern of a client component with user interaction (onClick, form submission) that calls a server a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wsimmonds/claude-nextjs-skills/blob/main/nextjs-client-cookie-pattern/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-24T11:05:39Z"}, "embedding_text": "nextjs-client-cookie-pattern. Pattern for client components calling server actions to set cookies in Next.js. Covers the two-file pattern of a client component with user interaction (onClick, form submission) that calls a server a Platforms: claude_code."} +{"id": "f6156a985f92583a89e8317c2f0a71874d041de03c6e763d28eae9b1f6c6eaa6", "repo_url": "https://github.com/agentmc15/polymarket-trader", "name": "polymarket-api", "description": "Deep integration guide for Polymarket's CLOB API, Gamma API, and on-chain data. Use when building trading functionality, fetching market data, or implementing order execution.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentmc15/polymarket-trader/blob/main/.claude/skills/polymarket-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T20:37:47Z"}, "embedding_text": "polymarket-api. Deep integration guide for Polymarket's CLOB API, Gamma API, and on-chain data. Use when building trading functionality, fetching market data, or implementing order execution. Platforms: claude_code."} +{"id": "fa96b08b505ab8bfb1f9dd465c836d58e13f89b48993016662efb1bffc3bd092", "repo_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin", "name": "automating-powerpoint", "description": "Automates Microsoft PowerPoint via JXA with AppleScript dictionary discovery. Use when asked to \"automate PowerPoint presentations\", \"create slides programmatically\", \"JXA PowerPoint scripting\", or \"e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin/blob/main/plugins/automating-mac-apps-plugin/skills/automating-powerpoint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T23:41:11Z"}, "embedding_text": "automating-powerpoint. Automates Microsoft PowerPoint via JXA with AppleScript dictionary discovery. Use when asked to \"automate PowerPoint presentations\", \"create slides programmatically\", \"JXA PowerPoint scripting\", or \"e Platforms: claude_code."} +{"id": "51a1ab7fdc2ad7a43eb6af9d31df998e7bd8123f654979be16890dad6625c3bf", "repo_url": "https://github.com/cranot/roam-code", "name": "roam", "description": "Codebase comprehension via roam-code CLI. Use when exploring codebases, planning modifications, debugging failures, assessing PR risk, or checking architecture health. Triggers on: understanding proje", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cranot/roam-code/blob/main/skills/roam/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 485, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:11:52Z"}, "embedding_text": "roam. Codebase comprehension via roam-code CLI. Use when exploring codebases, planning modifications, debugging failures, assessing PR risk, or checking architecture health. Triggers on: understanding proje Platforms: claude_code."} +{"id": "107d5459b2f0ba40fa47aeb8806e27319d513a0c8062731cedf2955810ece949", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "delegating-work", "description": "Create a Delegation Pack (delegation brief, decision rights, context handoff, check-in cadence, review plan, debrief). Use for delegation, letting go, empowering reports, and avoiding micromanagement.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/delegating-work/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "delegating-work. Create a Delegation Pack (delegation brief, decision rights, context handoff, check-in cadence, review plan, debrief). Use for delegation, letting go, empowering reports, and avoiding micromanagement. Platforms: claude_code."} +{"id": "b4eccdfb77e88ef7fb799c3858fa04cddff480c07f51b0bf77f0e1085da33067", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "testing", "description": "TDD and testing skills for iOS/macOS apps. Covers characterization tests, TDD workflows, test contracts, snapshot tests, and test infrastructure. Use for test-driven development, adding tests to exist", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/product/beta-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "testing. TDD and testing skills for iOS/macOS apps. Covers characterization tests, TDD workflows, test contracts, snapshot tests, and test infrastructure. Use for test-driven development, adding tests to exist Platforms: claude_code."} +{"id": "0ec92fb792a022f9252ac0531ca878dead318d96e778e40dbccbd585713a1363", "repo_url": "https://github.com/shuvonsec/claude-bug-bounty", "name": "web2-recon", "description": "Web2 recon pipeline \u2014 subdomain enumeration (subfinder, Chaos API, assetfinder), live host discovery (dnsx, httpx), URL crawling (katana, waybackurls, gau), directory fuzzing (ffuf), JS analysis (Link", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shuvonsec/claude-bug-bounty/blob/main/skills/web2-recon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3468, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T09:58:47Z"}, "embedding_text": "web2-recon. Web2 recon pipeline \u2014 subdomain enumeration (subfinder, Chaos API, assetfinder), live host discovery (dnsx, httpx), URL crawling (katana, waybackurls, gau), directory fuzzing (ffuf), JS analysis (Link Platforms: claude_code."} +{"id": "22cd316dc54da1607298bbe9724e61000d172972ec456daa5daa4b0cde69694d", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "product-led-sales", "description": "Create a Product-Led Sales Motion Pack (PQL/PQA definition, usage-signal spec + routing/SLA, sales outreach playbook, instrumentation plan, and pilot/scale plan). Use for product-led sales, sales-assi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/product-led-sales/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "product-led-sales. Create a Product-Led Sales Motion Pack (PQL/PQA definition, usage-signal spec + routing/SLA, sales outreach playbook, instrumentation plan, and pilot/scale plan). Use for product-led sales, sales-assi Platforms: claude_code."} +{"id": "76cb1d69840974818040b68842c7bf81d3714fa7c5ab063e5e8741618f1b0be8", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "conversion-psychology", "description": "Psychology of conversion for sponsored content. Includes emotional triggers, social proof, scarcity, urgency, and persuasion principles for video marketing. Auto-activates when discussing conversions,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/conversion-psychology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "conversion-psychology. Psychology of conversion for sponsored content. Includes emotional triggers, social proof, scarcity, urgency, and persuasion principles for video marketing. Auto-activates when discussing conversions, Platforms: claude_code."} +{"id": "e8d4236cb2890db80d5aa83d578d9511e04103110ff53b8de0424db36035d0eb", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "competitive-analysis", "description": "Produce a Competitive Analysis Pack (competitive alternatives map, competitor landscape, differentiation & positioning hypotheses, battlecards, monitoring plan). Use for competitor research, competiti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/competitive-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "competitive-analysis. Produce a Competitive Analysis Pack (competitive alternatives map, competitor landscape, differentiation & positioning hypotheses, battlecards, monitoring plan). Use for competitor research, competiti Platforms: claude_code."} +{"id": "eb232296014060b9ec0bcb60028246be6871ae4838e5d6bdfd18693baaacb90c", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-misc", "description": "Provides miscellaneous CTF challenge techniques. Use for encoding puzzles, RF/SDR signal processing, Python/bash jails, DNS exploitation, unicode steganography, floating-point tricks, QR codes, audio challenges, Z3 constraint solving, Kubernetes RBAC, WASM game patching, esoteric languages, game theory, commitment schemes, combinatorial games, or challenges that don't fit other categories.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-misc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-misc"}, "quality": {"stars": 2483, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:13:28Z"}, "embedding_text": "ctf-misc. Provides miscellaneous CTF challenge techniques. Use for encoding puzzles, RF/SDR signal processing, Python/bash jails, DNS exploitation, unicode steganography, floating-point tricks, QR codes, audio challenges, Z3 constraint solving, Kubernetes RBAC, WASM game patching, esoteric languages, game theory, commitment schemes, combinatorial games, or challenges that don't fit other categories. Platforms: claude_code."} +{"id": "eeeba764e5c3da6db66ad9b889f1490bfd72dfe4b96d96046291000b6a8fef79", "repo_url": "https://github.com/johnrogers/claude-swift-engineering", "name": "foundation-models", "description": "Use when implementing on-device AI with Apple's Foundation Models framework (iOS 26+), building summarization/extraction/classification features, or using @Generable for type-safe structured output.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnrogers/claude-swift-engineering/blob/main/plugins/swift-engineering/skills/foundation-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 212, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T05:24:16Z"}, "embedding_text": "foundation-models. Use when implementing on-device AI with Apple's Foundation Models framework (iOS 26+), building summarization/extraction/classification features, or using @Generable for type-safe structured output. Platforms: claude_code."} +{"id": "b80376c9c0545bef5e914fae66c98def7cdc148d5de2d5e3352dfafb6bf7d434", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "meeting-insights-analyzer", "description": "\u5206\u6790\u4f1a\u8bae\u8bb0\u5f55\u548c\u5f55\u97f3\uff0c\u4ee5\u53d1\u73b0\u884c\u4e3a\u6a21\u5f0f\u3001\u6c9f\u901a\u6d1e\u5bdf\u548c\u53ef\u884c\u7684\u53cd\u9988\u3002\u8bc6\u522b\u60a8\u4f55\u65f6\u907f\u514d\u51b2\u7a81\u3001\u4f7f\u7528\u586b\u5145\u8bcd\u3001\u4e3b\u5bfc\u5bf9\u8bdd\u6216\u9519\u8fc7\u503e\u542c\u7684\u673a\u4f1a\u3002\u975e\u5e38\u9002\u5408\u5bfb\u6c42\u63d0\u9ad8\u6c9f\u901a\u548c\u9886\u5bfc\u6280\u80fd\u7684\u4e13\u4e1a\u4eba\u58eb\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/meeting-insights-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "meeting-insights-analyzer. \u5206\u6790\u4f1a\u8bae\u8bb0\u5f55\u548c\u5f55\u97f3\uff0c\u4ee5\u53d1\u73b0\u884c\u4e3a\u6a21\u5f0f\u3001\u6c9f\u901a\u6d1e\u5bdf\u548c\u53ef\u884c\u7684\u53cd\u9988\u3002\u8bc6\u522b\u60a8\u4f55\u65f6\u907f\u514d\u51b2\u7a81\u3001\u4f7f\u7528\u586b\u5145\u8bcd\u3001\u4e3b\u5bfc\u5bf9\u8bdd\u6216\u9519\u8fc7\u503e\u542c\u7684\u673a\u4f1a\u3002\u975e\u5e38\u9002\u5408\u5bfb\u6c42\u63d0\u9ad8\u6c9f\u901a\u548c\u9886\u5bfc\u6280\u80fd\u7684\u4e13\u4e1a\u4eba\u58eb\u3002 Platforms: claude_code."} +{"id": "30dc25226438ed0ecab4d217ab9531d8758ee118dd4e65adbab093392e5a6ffc", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-edit-safety", "description": "Provides file backup before editing and validation hooks after changes. Captures file state for potential revert, validates modifications through a pipeline, and integrates backup and validation into", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-edit-safety/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "A", "skillhub_score": 7.2, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-edit-safety. Provides file backup before editing and validation hooks after changes. Captures file state for potential revert, validates modifications through a pipeline, and integrates backup and validation into Platforms: claude_code."} +{"id": "d1624343f22bf170e0845ad4e810748549e4a0b1da41b3241fc3839f166fb220", "repo_url": "https://github.com/automagik-dev/genie", "name": "docs", "description": "Dispatch docs subagent to audit, generate, and validate documentation against the codebase.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "docs. Dispatch docs subagent to audit, generate, and validate documentation against the codebase. Platforms: claude_code."} +{"id": "78348c00ea27acd043cc216d4caa555f225dada293bf6b17084c6c259b2c2073", "repo_url": "https://github.com/milady-ai/milaidy", "name": "integration-dod-map", "description": "Build a complete integration inventory and a measurable Definition of Done\ngraph for the repo, including dependency mapping, coverage status, and a\nprioritized missing-work backlog.\n\nUse when: you nee", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:28:32Z"}, "embedding_text": "integration-dod-map. Build a complete integration inventory and a measurable Definition of Done\ngraph for the repo, including dependency mapping, coverage status, and a\nprioritized missing-work backlog.\n\nUse when: you nee Platforms: claude_code."} +{"id": "dd033ea331a8b58037545b2e31e8d841d37c93039073cd8cf81eba31da1917bf", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "biomni", "description": "Autonomous biomedical AI agent framework for executing complex research tasks across genomics, drug discovery, molecular biology, and clinical analysis. Use this skill when conducting multi-step biomedical research including CRISPR screening design, single-cell RNA-seq analysis, ADMET prediction, GWAS interpretation, rare disease diagnosis, or lab protocol optimization. Leverages LLM reasoning with code execution and integrated biomedical databases.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/biomni/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install biomni"}, "quality": {"stars": 240, "skillhub_rank": "A", "skillhub_score": 7.9, "last_updated": "2026-04-30T19:30:43Z"}, "embedding_text": "biomni. Autonomous biomedical AI agent framework for executing complex research tasks across genomics, drug discovery, molecular biology, and clinical analysis. Use this skill when conducting multi-step biomedical research including CRISPR screening design, single-cell RNA-seq analysis, ADMET prediction, GWAS interpretation, rare disease diagnosis, or lab protocol optimization. Leverages LLM reasoning with code execution and integrated biomedical databases. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} +{"id": "f947bc3067a490aa0df46e6b9339a9570913b1df18773c681af4a9ae300d10d3", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "user-onboarding", "description": "Help users design effective product onboarding. Use when someone is creating first-user experiences, trying to improve activation rates, designing the first 30 seconds of product usage, or working on", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/user-onboarding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "user-onboarding. Help users design effective product onboarding. Use when someone is creating first-user experiences, trying to improve activation rates, designing the first 30 seconds of product usage, or working on Platforms: claude_code."} +{"id": "9d6be9504f8a16caa2c0311e926681235f28f19fba5e532d6a3f17a0b40adf3c", "repo_url": "https://github.com/aojdevstudio/finance-guru", "name": "formula-protection", "description": "Prevent accidental modification of sacred spreadsheet formulas in Google Sheets Portfolio Tracker. Blocks edits to GOOGLEFINANCE formulas, calculated columns, and total rows. Allows only IFERROR wrapp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aojdevstudio/finance-guru/blob/main/.claude/skills/formula-protection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 309, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T14:29:45Z"}, "embedding_text": "formula-protection. Prevent accidental modification of sacred spreadsheet formulas in Google Sheets Portfolio Tracker. Blocks edits to GOOGLEFINANCE formulas, calculated columns, and total rows. Allows only IFERROR wrapp Platforms: claude_code."} +{"id": "6d41ca12adbb563ea9e647cb534d0381abc9c06eb072ac1bd54a3784cba496a5", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "refactoring-dbt-models", "description": "Safely refactors dbt models with downstream impact analysis. Use when restructuring dbt models for:\n(1) Task mentions \"refactor\", \"restructure\", \"extract\", \"split\", \"break into\", or \"reorganize\"\n(2) Extracting CTEs to intermediate models or creating macros\n(3) Modifying model logic that has downstream consumers\n(4) Renaming columns, changing types, or reorganizing model dependencies\nAnalyzes all downstream dependencies BEFORE making changes.", "source": ["skillhub", "topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/altimateai/data-engineering-skills/blob/main/skills/dbt/refactoring-dbt-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refactoring-dbt-models"}, "quality": {"stars": 104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T13:06:51Z"}, "embedding_text": "refactoring-dbt-models. Safely refactors dbt models with downstream impact analysis. Use when restructuring dbt models for:\n(1) Task mentions \"refactor\", \"restructure\", \"extract\", \"split\", \"break into\", or \"reorganize\"\n(2) Extracting CTEs to intermediate models or creating macros\n(3) Modifying model logic that has downstream consumers\n(4) Renaming columns, changing types, or reorganizing model dependencies\nAnalyzes all downstream dependencies BEFORE making changes. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} +{"id": "79f7af4abd68ba0d1fdf01b4bcb886b513fd715cc5e78680ed96c7ebab4e2e97", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "create-adr", "description": "Creates Architecture Decision Records (ADRs) to document significant architectural choices and their rationale for future team members. Use when the user says \"write an ADR\", \"document this decision\", \"record why we chose X\", \"add an architecture decision record\", \"create an ADR for\", or wants to capture the reasoning behind a technical choice so the team understands it later. Do NOT use when the decision hasn't been made yet (use create-rfc instead), for implementation planning (use technical-design-doc-creator), or for general documentation.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(creation)/create-adr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-adr"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "create-adr. Creates Architecture Decision Records (ADRs) to document significant architectural choices and their rationale for future team members. Use when the user says \"write an ADR\", \"document this decision\", \"record why we chose X\", \"add an architecture decision record\", \"create an ADR for\", or wants to capture the reasoning behind a technical choice so the team understands it later. Do NOT use when the decision hasn't been made yet (use create-rfc instead), for implementation planning (use technical-design-doc-creator), or for general documentation. Platforms: claude_code."} +{"id": "d87a67917f7796f93b3eec7299dabe0cb03f8006011b0db672408af1927ad587", "repo_url": "https://github.com/scunning1975/mixtapetools", "name": "split-pdf", "description": "Download, split, and deeply read academic PDFs. Use when asked to read, review, or summarize an academic paper. Splits PDFs into 4-page chunks, reads them in small batches, and produces structured rea", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scunning1975/mixtapetools/blob/main/.claude/skills/split-pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T14:25:51Z"}, "embedding_text": "split-pdf. Download, split, and deeply read academic PDFs. Use when asked to read, review, or summarize an academic paper. Splits PDFs into 4-page chunks, reads them in small batches, and produces structured rea Platforms: claude_code."} +{"id": "a7c8719564243ead7ba66aa9cdf204681577a67112b83e43714a2f6a62455673", "repo_url": "https://github.com/everyinc/every-marketplace", "name": "slfg", "description": "Full autonomous engineering workflow using swarm mode for parallel execution", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/every-marketplace/blob/main/plugins/compound-engineering/skills/lfg/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:25:13Z"}, "embedding_text": "slfg. Full autonomous engineering workflow using swarm mode for parallel execution Platforms: claude_code."} +{"id": "5eca33afa009c9b2634ecfaf871a35ae5e1a473f092e883bca82e3cb753e2d84", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "code-review-pro", "description": "Comprehensive code review covering security vulnerabilities, performance bottlenecks, best practices, and refactoring opportunities. Use when user requests code review, security audit, or performance", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/code-review-pro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "code-review-pro. Comprehensive code review covering security vulnerabilities, performance bottlenecks, best practices, and refactoring opportunities. Use when user requests code review, security audit, or performance Platforms: claude_code."} +{"id": "4843c9a6608f71a39f635965c39ba5b1396071379022d87580a29b2d721772c1", "repo_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin", "name": "automating-keynote", "description": "Automates Apple Keynote using JXA with AppleScript dictionary discovery. Use when asked to \"create Keynote presentations\", \"automate slide decks\", \"JXA Keynote scripting\", or \"generate presentations p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin/blob/main/plugins/automating-mac-apps-plugin/skills/automating-keynote/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T23:41:11Z"}, "embedding_text": "automating-keynote. Automates Apple Keynote using JXA with AppleScript dictionary discovery. Use when asked to \"create Keynote presentations\", \"automate slide decks\", \"JXA Keynote scripting\", or \"generate presentations p Platforms: claude_code."} +{"id": "efb040aa87ea2a1c976a083b04f97eba2c2818ca807393d1046dd5b3fcc2e224", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "benchmarking", "description": "Benchmarking and competitive analysis techniques. Compares performance, processes, and practices against industry standards, competitors, and best-in-class organizations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/benchmarking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "benchmarking. Benchmarking and competitive analysis techniques. Compares performance, processes, and practices against industry standards, competitors, and best-in-class organizations. Platforms: claude_code."} +{"id": "b020cbb6a6c14f14d4801c9e5627ff0d71a57317ef02853eff0611d5c3b4186a", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "webapp-testing", "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behaviour, capturing browser screenshots, and viewing browser", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/developer/skills/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "webapp-testing. Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behaviour, capturing browser screenshots, and viewing browser Platforms: claude_code."} +{"id": "3c01294b94c717ad61b97a1cf2c19f7732b47b6f3247a5917dfd768cf7dad2ac", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "orchestration-patterns", "description": "Agentic orchestration patterns for long-running tasks. Implements evidence-based delivery and Simon Willison's agent loop. Use when managing multi-step implementation work, coordinating subagents, orc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/orchestration-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "orchestration-patterns. Agentic orchestration patterns for long-running tasks. Implements evidence-based delivery and Simon Willison's agent loop. Use when managing multi-step implementation work, coordinating subagents, orc Platforms: claude_code."} +{"id": "00318f71a738f55382f70ad6ae2ace29a6057258f0363dc269ca6808dcf223c5", "repo_url": "https://github.com/az9713/ai-co-writing-claude-skills", "name": "how-to-guide", "description": "Create comprehensive how-to guides and tutorials. Use when the user needs step-by-step instructional content, tutorials, documentation, or educational guides.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/az9713/ai-co-writing-claude-skills/blob/main/.claude/skills/how-to-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T07:39:41Z"}, "embedding_text": "how-to-guide. Create comprehensive how-to guides and tutorials. Use when the user needs step-by-step instructional content, tutorials, documentation, or educational guides. Platforms: claude_code."} +{"id": "ab1503f112464455a1f15fc8c34c571ec291d06d762a9d139b7dedb48bc3e6a8", "repo_url": "https://github.com/minimax-ai/skills", "name": "frontend-dev", "description": "Full-stack frontend development combining premium UI design, cinematic animations,\nAI-generated media assets, persuasive copywriting, and visual art. Builds complete,\nvisually striking web pages with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/skills/frontend-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "frontend-dev. Full-stack frontend development combining premium UI design, cinematic animations,\nAI-generated media assets, persuasive copywriting, and visual art. Builds complete,\nvisually striking web pages with Platforms: claude_code."} +{"id": "11893d606e9e3f3a0176853a8b038a2519e7c255366f2a39e8e7054d4d8254e8", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "migrating-sql-to-dbt", "description": "Converts legacy SQL to modular dbt models. Use when migrating SQL to dbt for:\n(1) Converting stored procedures, views, or raw SQL files to dbt models\n(2) Task mentions \"migrate\", \"convert\", \"legacy SQL\", \"transform to dbt\", or \"modernize\"\n(3) Breaking monolithic queries into modular layers (discovers project conventions first)\n(4) Porting existing data pipelines or ETL to dbt patterns\nChecks for existing models/sources, builds and validates layer by layer.", "source": ["skillhub", "topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/altimateai/data-engineering-skills/blob/main/skills/dbt/migrating-sql-to-dbt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install migrating-sql-to-dbt"}, "quality": {"stars": 104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T13:06:51Z"}, "embedding_text": "migrating-sql-to-dbt. Converts legacy SQL to modular dbt models. Use when migrating SQL to dbt for:\n(1) Converting stored procedures, views, or raw SQL files to dbt models\n(2) Task mentions \"migrate\", \"convert\", \"legacy SQL\", \"transform to dbt\", or \"modernize\"\n(3) Breaking monolithic queries into modular layers (discovers project conventions first)\n(4) Porting existing data pipelines or ETL to dbt patterns\nChecks for existing models/sources, builds and validates layer by layer. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} +{"id": "3ce155b25191bd708572bac4e2d7e9dc712d166f61ee02a07603a7c813aef334", "repo_url": "https://github.com/stackloklabs/toolhive", "name": "toolhive-cli-user", "description": "Guide for using ToolHive CLI (thv) to run and manage MCP servers. Use when running, listing, stopping, building, or configuring MCP servers locally. Covers server lifecycle, registry browsing, secrets", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/stackloklabs/toolhive/blob/main/skills/toolhive-cli-user/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1898, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T22:51:29Z"}, "embedding_text": "toolhive-cli-user. Guide for using ToolHive CLI (thv) to run and manage MCP servers. Use when running, listing, stopping, building, or configuring MCP servers locally. Covers server lifecycle, registry browsing, secrets Platforms: claude_code."} +{"id": "a2e69d8f6fbd1d6fa13d6e03d39bc6524b531da0741df0fe6e1d6d6da1144006", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "a11y-audit", "description": "Accessibility audit skill for scanning, fixing, and verifying WCAG 2.2 Level A and AA compliance across React, Next.js, Vue, Angular, Svelte, and plain HTML codebases. Use when auditing accessibility,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/a11y-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "a11y-audit. Accessibility audit skill for scanning, fixing, and verifying WCAG 2.2 Level A and AA compliance across React, Next.js, Vue, Angular, Svelte, and plain HTML codebases. Use when auditing accessibility, Platforms: claude_code."} +{"id": "a5067c11a760385b8e527e22943e42c54d0d2068cef33e911667b927f5dd9ebd", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "finance-skills", "description": "Financial analyst agent skill and plugin for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. Ratio analysis, DCF valuation, budget variance, rolling forecasts. 4 Python tools (stdlib-only).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/finance-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "finance-skills. Financial analyst agent skill and plugin for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. Ratio analysis, DCF valuation, budget variance, rolling forecasts. 4 Python tools (stdlib-only). Platforms: claude_code."} +{"id": "d91a8092a5494d5e91f17e57b1abeace544eab861813bfa4349facaa234965e8", "repo_url": "https://github.com/waynesutton/markdown-site", "name": "write", "description": "Writing style guide for technical content, social media, blog posts, READMEs, git commits, and developer documentation. Optimized to avoid AI detection patterns. Use when writing any content beyond co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/markdown-site/blob/main/.claude/write/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 621, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T14:56:54Z"}, "embedding_text": "write. Writing style guide for technical content, social media, blog posts, READMEs, git commits, and developer documentation. Optimized to avoid AI detection patterns. Use when writing any content beyond co Platforms: claude_code."} +{"id": "d859a22d8eb87291f5fd0554419200e85192c9cd5fa70df1321658a4a4e79981", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "decision-frameworks", "description": "Structures difficult decisions using Annie Duke's probabilistic thinking and Ben Horowitz's hard decisions frameworks. Use when facing tough choices, applying expected value thinking, or reducing deci", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/decision-frameworks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "decision-frameworks. Structures difficult decisions using Annie Duke's probabilistic thinking and Ben Horowitz's hard decisions frameworks. Use when facing tough choices, applying expected value thinking, or reducing deci Platforms: claude_code."} +{"id": "ec062b2c4b86b13d0c5ba28cc0dfae30ae8631091be4d34393bbf6ba6744f6b1", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-files", "description": "Expert knowledge for Azure Files development including best practices, decision making, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when configuring A", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-files/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-files. Expert knowledge for Azure Files development including best practices, decision making, limits & quotas, security, configuration, integrations & coding patterns, and deployment. Use when configuring A Platforms: claude_code."} +{"id": "9bbf0d2fb8027e3827c67c8d1019e236c73b00ce92b658c6b89eb66648a42a95", "repo_url": "https://github.com/tomkrikorian/visionosagents", "name": "shadergraph-editor", "description": "Create and edit ShaderGraph and RealityKit material networks in .usda files. Use when manually editing USD ASCII files to build, modify, or troubleshoot materials, shader nodes, and connections for Re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tomkrikorian/visionosagents/blob/main/skills/shadergraph-editor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T00:27:41Z"}, "embedding_text": "shadergraph-editor. Create and edit ShaderGraph and RealityKit material networks in .usda files. Use when manually editing USD ASCII files to build, modify, or troubleshoot materials, shader nodes, and connections for Re Platforms: claude_code."} +{"id": "bdd2c24ef1dda9ea19fe0cedf0c219af9cee9e194893c1e935c983d82f4599ac", "repo_url": "https://github.com/openhands/skills", "name": "releasenotes", "description": "Generate formatted changelogs from git history since the last release tag. Use when preparing release notes that categorize changes into breaking changes, features, fixes, and other sections.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openhands/skills/blob/main/plugins/release-notes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:56:03Z"}, "embedding_text": "releasenotes. Generate formatted changelogs from git history since the last release tag. Use when preparing release notes that categorize changes into breaking changes, features, fixes, and other sections. Platforms: claude_code."} +{"id": "d9a0e0fa815c08e87c2511fad5a9379dc0534586c35ac3db14e63a461e39aae5", "repo_url": "https://github.com/spirimirror/libuipc", "name": "fix-issue", "description": "Fix a GitHub issue with proper branch, testing, and PR workflow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spirimirror/libuipc/blob/main/.cursor/skills/fix-issue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:12:46Z"}, "embedding_text": "fix-issue. Fix a GitHub issue with proper branch, testing, and PR workflow Platforms: claude_code."} +{"id": "09d41007f30fbd012e7a6b73234409fe14a9c0babccdc8011e85fb69b44d7c55", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "template-page-generator", "description": "When the user wants to design template pages\u2014aggregation (gallery/hub) or detail (individual template). Also use when the user mentions \"template page,\" \"template gallery,\" \"template hub,\" \"template detail page,\" \"template marketplace,\" \"programmatic template,\" \"CMS templates,\" \"design templates,\" \"vibe coding templates,\" \"UI templates,\" \"template for users to use,\" or \"template + data pages.\" Covers both SEO (programmatic scale) and user-facing (browse \u2192 use \u2192 customize) template pages.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/template-page/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install template-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "template-page-generator. When the user wants to design template pages\u2014aggregation (gallery/hub) or detail (individual template). Also use when the user mentions \"template page,\" \"template gallery,\" \"template hub,\" \"template detail page,\" \"template marketplace,\" \"programmatic template,\" \"CMS templates,\" \"design templates,\" \"vibe coding templates,\" \"UI templates,\" \"template for users to use,\" or \"template + data pages.\" Covers both SEO (programmatic scale) and user-facing (browse \u2192 use \u2192 customize) template pages. Platforms: claude_code."} +{"id": "7c9a993b070a9f71cb2fae18671c691a085790f95e5662d17a5bc125e1e08758", "repo_url": "https://github.com/brianlovin/claude-config", "name": "workflow", "description": "Workflow orchestration for complex coding tasks. Use for ANY non-trivial task (3+ steps or architectural decisions) to enforce planning, subagent strategy, self-improvement, verification, elegance, an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianlovin/claude-config/blob/main/skills/workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 353, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T17:52:51Z"}, "embedding_text": "workflow. Workflow orchestration for complex coding tasks. Use for ANY non-trivial task (3+ steps or architectural decisions) to enforce planning, subagent strategy, self-improvement, verification, elegance, an Platforms: claude_code."} +{"id": "b921e3bf61c2f3f27a45d53cc0e105e4add2446fc97869df1d23773debc9c7f6", "repo_url": "https://github.com/github/gh-aw-firewall", "name": "recompile-workflows", "description": "Regenerate and post-process all agentic workflows. Use when gh-aw is updated, workflow .md files change, or when asked to recompile/regenerate workflows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/gh-aw-firewall/blob/main/.claude/skills/recompile-workflows/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:27:40Z"}, "embedding_text": "recompile-workflows. Regenerate and post-process all agentic workflows. Use when gh-aw is updated, workflow .md files change, or when asked to recompile/regenerate workflows. Platforms: claude_code."} +{"id": "6b47082a6e3137c57deff9a2ec05462dac5a964a8c134cd300df6f8710281064", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "atlassian-templates", "description": "Atlassian Template and Files Creator/Modifier expert for creating, modifying, and managing Jira and Confluence templates, blueprints, custom layouts, reusable components, and standardized content stru", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/TEMPLATE/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "atlassian-templates. Atlassian Template and Files Creator/Modifier expert for creating, modifying, and managing Jira and Confluence templates, blueprints, custom layouts, reusable components, and standardized content stru Platforms: claude_code."} +{"id": "f353ac566a9a59f57294f324cd3c6e984f3ba60f3b16f28036b96b2d95155514", "repo_url": "https://github.com/prowler-cloud/prowler", "name": "react-19", "description": "React 19 patterns with React Compiler. Trigger: When writing React 19 components/hooks in .tsx (React Compiler rules, hook patterns, refs as props). If using Next.js App Router/Server Actions, also us", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prowler-cloud/prowler/blob/master/skills/react-19/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14022, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:20:01Z"}, "embedding_text": "react-19. React 19 patterns with React Compiler. Trigger: When writing React 19 components/hooks in .tsx (React Compiler rules, hook patterns, refs as props). If using Next.js App Router/Server Actions, also us Platforms: claude_code."} +{"id": "850b76e691252c341172a9ef563d175330416f727a3349cf87cb99cf53d52473", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "run-acceptance-tests", "description": "Guide for running acceptance tests for a Terraform provider. Use this when asked to run an acceptance test or to run a test with the prefix `TestAcc`.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/provider-development/skills/run-acceptance-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install run-acceptance-tests"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "run-acceptance-tests. Guide for running acceptance tests for a Terraform provider. Use this when asked to run an acceptance test or to run a test with the prefix `TestAcc`. Platforms: claude_code."} +{"id": "8e323365a3010d0c5410a4f04058492542b1c39b9ed7493f819f2941e419216f", "repo_url": "https://github.com/moonbit-community/fastcc", "name": "moonbit-lang", "description": "MoonBit language reference and coding conventions. Use when writing MoonBit code, asking about syntax, or encountering MoonBit-specific errors. Covers error handling, FFI, async, and common pitfalls.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moonbit-community/fastcc/blob/main/.codex/skills/moonbit-lang-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T15:22:48Z"}, "embedding_text": "moonbit-lang. MoonBit language reference and coding conventions. Use when writing MoonBit code, asking about syntax, or encountering MoonBit-specific errors. Covers error handling, FFI, async, and common pitfalls. Platforms: claude_code."} +{"id": "dae4e3ecbc4052fd13eab7a4de67c3d4a64fe515bd20c7ed04203a659e150b81", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "pragmatic-guard", "description": "Enables and configures Pragmatic Guard Mode (YAGNI Enforcement) to prevent over-engineering. Use when the user requests \"Enable pragmatic mode\", \"Turn on YAGNI enforcement\", \"Activate simplicity guard", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/skills/pragmatic-guard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T18:12:57Z"}, "embedding_text": "pragmatic-guard. Enables and configures Pragmatic Guard Mode (YAGNI Enforcement) to prevent over-engineering. Use when the user requests \"Enable pragmatic mode\", \"Turn on YAGNI enforcement\", \"Activate simplicity guard Platforms: claude_code."} +{"id": "4d8ab310725bf4203898f1fbc44aee0a1437e396aa658a651a621e15ee744f3b", "repo_url": "https://github.com/coleam00/second-brain-skills", "name": "mcp-client", "description": "Universal MCP client for connecting to any MCP server with progressive disclosure. Wraps MCP servers as skills to avoid context window bloat from tool definitions. Use when interacting with external MCP servers (Zapier, Sequential Thinking, GitHub, filesystem, etc.), listing available tools, or executing MCP tool calls. Triggers on requests like \"connect to Zapier\", \"use MCP server\", \"list MCP tools\", \"call Zapier action\", \"use sequential thinking\", or any MCP server interaction.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/coleam00/second-brain-skills/blob/main/.claude/skills/mcp-client/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-client"}, "quality": {"stars": 778, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T15:50:47Z"}, "embedding_text": "mcp-client. Universal MCP client for connecting to any MCP server with progressive disclosure. Wraps MCP servers as skills to avoid context window bloat from tool definitions. Use when interacting with external MCP servers (Zapier, Sequential Thinking, GitHub, filesystem, etc.), listing available tools, or executing MCP tool calls. Triggers on requests like \"connect to Zapier\", \"use MCP server\", \"list MCP tools\", \"call Zapier action\", \"use sequential thinking\", or any MCP server interaction. Platforms: claude_code."} +{"id": "0a8b3986dedcaae5aa7f8b5edd5fe1572a59d6bac53f97cdef99151a97e3333b", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "mcp-builder", "description": "Build MCP (Model Context Protocol) servers in TypeScript or Python. Use when creating custom tools, resources, or prompts that extend AI assistant capabilities via MCP.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/backend/mcp-builder-microsoft/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "mcp-builder. Build MCP (Model Context Protocol) servers in TypeScript or Python. Use when creating custom tools, resources, or prompts that extend AI assistant capabilities via MCP. Platforms: claude_code."} +{"id": "336423aed475c45c5546028ffbc28f02405fb2f4c3bab25cafdd3b4867acc568", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-bastion", "description": "Expert knowledge for Azure Bastion development including troubleshooting, best practices, decision making, architecture & design patterns, security, configuration, and integrations & coding patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-bastion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-bastion. Expert knowledge for Azure Bastion development including troubleshooting, best practices, decision making, architecture & design patterns, security, configuration, and integrations & coding patterns. Platforms: claude_code."} +{"id": "18f224300b91700f1a1999cb10cb3254b2c302db9610770ed716ee132f319017", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "financial-analyzing", "description": "Analyze financial data, calculate financial ratios, and generate analysis reports. Use when the user asks about revenue, costs, profits, margins, ROI, financial metrics, or needs financial analysis of a company or project.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/03-financial-skill/.claude/skills/financial-analyzing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install financial-analyzing"}, "quality": {"stars": 863, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T11:11:17Z"}, "embedding_text": "financial-analyzing. Analyze financial data, calculate financial ratios, and generate analysis reports. Use when the user asks about revenue, costs, profits, margins, ROI, financial metrics, or needs financial analysis of a company or project. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} +{"id": "4420ee7c53901f21eb427bf269d4e7e6ed69ecc68c2927a7a1356a806b2f3451", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "user-stories", "description": "Write INVEST-compliant user stories with Given-When-Then acceptance criteria. Use when writing user stories, creating acceptance criteria, or during /design Step 4.", "source": ["skillhub", "topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/user-stories/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install user-stories"}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T09:20:28Z"}, "embedding_text": "user-stories. Write INVEST-compliant user stories with Given-When-Then acceptance criteria. Use when writing user stories, creating acceptance criteria, or during /design Step 4. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} +{"id": "4a5797de2b01da5d429c05456279d6fa94815390138a6c07151164b202600914", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "testing-dbt-models", "description": "Adds schema tests and data quality validation to dbt models. Use when working with dbt tests for:\n(1) Adding or modifying tests in schema.yml files\n(2) Task mentions \"test\", \"validate\", \"data quality\", \"unique\", \"not_null\", or \"accepted_values\"\n(3) Ensuring data integrity - primary keys, foreign keys, relationships\n(4) Debugging test failures or understanding why dbt test failed\nMatches existing project test patterns and YAML style before adding new tests.", "source": ["skillhub", "topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/altimateai/data-engineering-skills/blob/main/skills/dbt/testing-dbt-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-dbt-models"}, "quality": {"stars": 104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T13:06:51Z"}, "embedding_text": "testing-dbt-models. Adds schema tests and data quality validation to dbt models. Use when working with dbt tests for:\n(1) Adding or modifying tests in schema.yml files\n(2) Task mentions \"test\", \"validate\", \"data quality\", \"unique\", \"not_null\", or \"accepted_values\"\n(3) Ensuring data integrity - primary keys, foreign keys, relationships\n(4) Debugging test failures or understanding why dbt test failed\nMatches existing project test patterns and YAML style before adding new tests. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} +{"id": "5e9a7ece40b9f400ac72d754a96087b5c7852739fde1f2a1969e3d056466eb6e", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "azure-bgp", "description": "Analyze and resolve BGP oscillation and BGP route leaks in Azure Virtual WAN\u2013style hub-and-spoke topologies (and similar cloud-managed BGP environments). Detect preference cycles, identify valley-free", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/azure-bgp-oscillation-route-leak/environment/skills/azure-bgp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "azure-bgp. Analyze and resolve BGP oscillation and BGP route leaks in Azure Virtual WAN\u2013style hub-and-spoke topologies (and similar cloud-managed BGP environments). Detect preference cycles, identify valley-free Platforms: claude_code."} +{"id": "9b1554229121eec1202be8a471cbae6baefc5d35e0a4fa641218f7e7c49d89b5", "repo_url": "https://github.com/pockebot/openpocket", "name": "device-file-search", "description": "Locate and verify files on Android storage before upload/share, especially latest edited photos or videos.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pockebot/openpocket/blob/main/skills/device-file-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 832, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T03:12:19Z"}, "embedding_text": "device-file-search. Locate and verify files on Android storage before upload/share, especially latest edited photos or videos. Platforms: claude_code."} +{"id": "78d1b6ba2ddaf4d0907b498c81a11660886ba906ee4946fc963305ad4cab2c5e", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "brainstorming", "description": "Use when creating or developing anything, before writing code or implementation plans - refines rough ideas into fully-formed designs through structured Socratic questioning, alternative exploration,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-plan-and-execute/skills/brainstorming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "brainstorming. Use when creating or developing anything, before writing code or implementation plans - refines rough ideas into fully-formed designs through structured Socratic questioning, alternative exploration, Platforms: claude_code."} +{"id": "8bad47ebfb79a4e677fb02459b2288b871f7612f1c8bb2adb3c93797c2868d98", "repo_url": "https://github.com/wsimmonds/claude-nextjs-skills", "name": "nextjs-pathname-id-fetch", "description": "Focused pattern for fetching data using URL parameters in Next.js. Covers creating dynamic routes ([id], [slug]) and accessing route parameters in server components to fetch data from APIs. Use when b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wsimmonds/claude-nextjs-skills/blob/main/nextjs-pathname-id-fetch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-24T11:05:39Z"}, "embedding_text": "nextjs-pathname-id-fetch. Focused pattern for fetching data using URL parameters in Next.js. Covers creating dynamic routes ([id], [slug]) and accessing route parameters in server components to fetch data from APIs. Use when b Platforms: claude_code."} +{"id": "bd7482d49bf87733da22c2614bdd442de5b48b3a0832c6b51473f9dda2c7a528", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "prompts-chat", "description": "\uc2a4\ud0ac/\ud504\ub86c\ud504\ud2b8 \ud0d0\uc0c9 \ubc0f \uac80\uc0c9 \ud1b5\ud569 \uc2a4\ud0ac. \uc0ac\uc6a9\uc790\uac00 \uc2a4\ud0ac \uc124\uce58, \ud504\ub86c\ud504\ud2b8 \uac80\uc0c9, \ud504\ub86c\ud504\ud2b8 \uac1c\uc120\uc744 \uc694\uccad\ud560 \ub54c \ud65c\uc131\ud654.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/prompts-chat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install prompts-chat"}, "quality": {"stars": 752, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:57:09Z"}, "embedding_text": "prompts-chat. \uc2a4\ud0ac/\ud504\ub86c\ud504\ud2b8 \ud0d0\uc0c9 \ubc0f \uac80\uc0c9 \ud1b5\ud569 \uc2a4\ud0ac. \uc0ac\uc6a9\uc790\uac00 \uc2a4\ud0ac \uc124\uce58, \ud504\ub86c\ud504\ud2b8 \uac80\uc0c9, \ud504\ub86c\ud504\ud2b8 \uac1c\uc120\uc744 \uc694\uccad\ud560 \ub54c \ud65c\uc131\ud654. Platforms: claude_code."} +{"id": "28839b6935f33165e6d822a2d7c999146b98c860df92ecc133e703d9e5b67a96", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "deslop", "description": "Remove AI-generated code slop from a branch. Use when cleaning up AI-generated code, removing unnecessary comments, defensive checks, or type casts. Checks diff against main and fixes style inconsistencies.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/deslop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deslop"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "deslop. Remove AI-generated code slop from a branch. Use when cleaning up AI-generated code, removing unnecessary comments, defensive checks, or type casts. Checks diff against main and fixes style inconsistencies. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "a1af8a798eaf45114f0a471d0bd6d4603b3c04ec6c090ab8d58601ca85b1d5b4", "repo_url": "https://github.com/motoya0118/pavlok_cli_agent", "name": "pavlok", "description": "Send a Pavlok stimulus via the Pavlok API using scripts/pavlok.py. Use when you need to trigger vibe/beep/zap with a numeric value in this repo and print the API response.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/motoya0118/pavlok_cli_agent/blob/main/.codex/skills/pavlok/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 72, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-09T12:24:31Z"}, "embedding_text": "pavlok. Send a Pavlok stimulus via the Pavlok API using scripts/pavlok.py. Use when you need to trigger vibe/beep/zap with a numeric value in this repo and print the API response. Platforms: claude_code."} +{"id": "0d4c22309d60656ce34d1710372d60e3ec4d6895335ec5ddbe9e7b2d3a21c2d7", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "vm", "description": "QCOW2 virtual machine management using libvirt. Creates VMs from pre-built\nimages downloaded from R2 CDN with cloud-init customization. Supports SSH,\nVNC, and virtiofs home directory sharing. Use when users need to create,\nmanage, or connect to bazzite-ai VMs.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/vm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vm"}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "vm. QCOW2 virtual machine management using libvirt. Creates VMs from pre-built\nimages downloaded from R2 CDN with cloud-init customization. Supports SSH,\nVNC, and virtiofs home directory sharing. Use when users need to create,\nmanage, or connect to bazzite-ai VMs. Platforms: claude_code."} +{"id": "971983253622d951a6b621abd04580705cd0e2e4c81e4f213fc85f134e4aec73", "repo_url": "https://github.com/analogjs/angular-skills", "name": "angular-tooling", "description": "Use Angular CLI and development tools effectively in Angular v20+ projects. Use for project setup, code generation, building, testing, and configuration. Triggers on creating new projects, generating", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/analogjs/angular-skills/blob/main/skills/angular-tooling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 597, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T20:56:35Z"}, "embedding_text": "angular-tooling. Use Angular CLI and development tools effectively in Angular v20+ projects. Use for project setup, code generation, building, testing, and configuration. Triggers on creating new projects, generating Platforms: claude_code."} +{"id": "6269ab9d913928a9cffadf10eb504856201a0dc2bd902d8db08ffff4780f96c2", "repo_url": "https://github.com/blueberrycongee/termcanvas", "name": "qa", "description": "QA testing skill with real browser automation. Use when asked to \"test this site\", \"QA this page\", \"check for visual bugs\", \"verify the deploy\", or when a Hydra evaluator needs to validate UI changes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blueberrycongee/termcanvas/blob/main/skills/skills/qa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 327, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T23:40:31Z"}, "embedding_text": "qa. QA testing skill with real browser automation. Use when asked to \"test this site\", \"QA this page\", \"check for visual bugs\", \"verify the deploy\", or when a Hydra evaluator needs to validate UI changes. Platforms: claude_code."} +{"id": "ead13733497ac2f4a74cf53dac6bb4a02013e1635500238dfb90dee1d6f75076", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "edge-concept-synthesizer", "description": "Abstract detector tickets and hints into reusable edge concepts with thesis, invalidation signals, and strategy playbooks before strategy design/export.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/edge-concept-synthesizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "edge-concept-synthesizer. Abstract detector tickets and hints into reusable edge concepts with thesis, invalidation signals, and strategy playbooks before strategy design/export. Platforms: claude_code."} +{"id": "7b14cfa786084a02a4520254849cb5cf194b6b981d9d1e6021b3db806fc6990f", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "xlsx-processing-openai", "description": "Toolkit for comprehensive Spreadsheet reading, creation, editing, and analysis with visual quality control. Use to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing tabular data, (3) Modifying existing spreadsheets while preserving formulas, (4) Building financial models with proper formatting, (5) Data visualization with in-sheet charts, or any other spreadsheet tasks.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/xlsx-processing-openai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx-processing-openai"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "xlsx-processing-openai. Toolkit for comprehensive Spreadsheet reading, creation, editing, and analysis with visual quality control. Use to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing tabular data, (3) Modifying existing spreadsheets while preserving formulas, (4) Building financial models with proper formatting, (5) Data visualization with in-sheet charts, or any other spreadsheet tasks. Platforms: claude_code."} +{"id": "38aefe316e5d496106715ef03a7224b2b677b5bf4cef5da434d7aebfd04abd63", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "stripe-webhooks", "description": "Receive and verify Stripe webhooks. Use when setting up Stripe webhook handlers, debugging signature verification, or handling payment events like payment_intent.succeeded, customer.subscription.creat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/stripe-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "stripe-webhooks. Receive and verify Stripe webhooks. Use when setting up Stripe webhook handlers, debugging signature verification, or handling payment events like payment_intent.succeeded, customer.subscription.creat Platforms: claude_code."} +{"id": "1eabcb2e32b46ae9af96b54716938affbe79bc6a80818280beaec7469c4e4b76", "repo_url": "https://github.com/exboys/skilllite", "name": "data-analysis", "description": "Analyze CSV/JSON data with statistics, filtering, and aggregation. Powered by pandas and numpy.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/exboys/skilllite/blob/main/.skills/data-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 157, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:36:11Z"}, "embedding_text": "data-analysis. Analyze CSV/JSON data with statistics, filtering, and aggregation. Powered by pandas and numpy. Platforms: claude_code."} +{"id": "389332518f5c569292cfb9d28934a52d2c9bb1ddb55651a0cc142108bff754c7", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "embed-subtitles", "description": "Burn subtitles onto videos using FFmpeg. Use for: hardcode subtitles, embed captions, video subtitling.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/embed-subtitles/skills/embed-subtitles/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "embed-subtitles. Burn subtitles onto videos using FFmpeg. Use for: hardcode subtitles, embed captions, video subtitling. Platforms: claude_code."} +{"id": "e4baea7569158c14011314e3eacef8dbe666e405510438656d9fb4e527eb8d6e", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "email-marketing", "description": "When the user wants to plan email marketing, EDM, newsletter strategy, or email deliverability. Also use when the user mentions \"email marketing,\" \"EDM,\" \"newsletter,\" \"SPF,\" \"DKIM,\" \"DMARC,\" \"email deliverability,\" \"email content strategy,\" \"email campaigns,\" \"newsletter strategy,\" \"email automation,\" or \"cold email.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/owned/email-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install email-marketing"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "email-marketing. When the user wants to plan email marketing, EDM, newsletter strategy, or email deliverability. Also use when the user mentions \"email marketing,\" \"EDM,\" \"newsletter,\" \"SPF,\" \"DKIM,\" \"DMARC,\" \"email deliverability,\" \"email content strategy,\" \"email campaigns,\" \"newsletter strategy,\" \"email automation,\" or \"cold email.\" Platforms: claude_code."} +{"id": "a7d511b345bcf13fd897b5dac3303e09a00d85a136a0d68b00223913069ca4cc", "repo_url": "https://github.com/automagik-dev/genie", "name": "dream", "description": "Batch-execute SHIP-ready wishes overnight \u2014 pick wishes, orchestrate workers, review PRs, wake up to results.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/dream/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "dream. Batch-execute SHIP-ready wishes overnight \u2014 pick wishes, orchestrate workers, review PRs, wake up to results. Platforms: claude_code."} +{"id": "a7a0400d038a0a87bc4223744ce55ac7dfec6ad5325afe7b865095fcca9aff77", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "design", "description": "Design Thinking process\u2014Empathize, Define, Ideate, Prototype, Test. Use for product design, solving ambiguous problems, or when you don't know what users really need.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "design. Design Thinking process\u2014Empathize, Define, Ideate, Prototype, Test. Use for product design, solving ambiguous problems, or when you don't know what users really need. Platforms: claude_code."} +{"id": "4b1082452fcb9f5393b503e8433c91859acbb3d7a456d421dcd2eec667f0ab36", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-collections-and-navigation", "description": "Builds Kirby listings, pagination, search, filtering/sorting/grouping, and navigation menus. Use when implementing collection logic in templates/controllers/snippets.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-collections-and-navigation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-collections-and-navigation. Builds Kirby listings, pagination, search, filtering/sorting/grouping, and navigation menus. Use when implementing collection logic in templates/controllers/snippets. Platforms: claude_code."} +{"id": "96413cfabcb942cd7289defc5095adcf44c49745aeb83352f2d0b8a3f308b370", "repo_url": "https://github.com/dadoonet/fscrawler", "name": "start-elasticsearch", "description": "This skill can help to start Elasticsearch locally, using start-local project from Elastic.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dadoonet/fscrawler/blob/master/.claude/skills/start-elasticsearch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1444, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T05:12:28Z"}, "embedding_text": "start-elasticsearch. This skill can help to start Elasticsearch locally, using start-local project from Elastic. Platforms: claude_code."} +{"id": "8db762c5397a2ec3da902ac15712ce1111059c22c9ec8a85ec559cc32624b3c5", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "gh-fix-ci", "description": "Inspect GitHub PR checks with gh, pull failing GitHub Actions logs, summarize failure context, then create a fix plan and implement after user approval. Use when a user asks to debug or fix failing PR", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/fix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "gh-fix-ci. Inspect GitHub PR checks with gh, pull failing GitHub Actions logs, summarize failure context, then create a fix plan and implement after user approval. Use when a user asks to debug or fix failing PR Platforms: claude_code."} +{"id": "f2a573e019e46c33218d684d49f02fe6a0b84139ee4c7c467439b6cff088917c", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "eos-composition", "description": "Strunk & White composition review using the 11 principles from \"Elements of Style\" Chapter II. Use when analyzing structure, improving flow, or tightening prose.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/eos-composition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "eos-composition. Strunk & White composition review using the 11 principles from \"Elements of Style\" Chapter II. Use when analyzing structure, improving flow, or tightening prose. Platforms: claude_code."} +{"id": "5e4d4507ccce1d30e479743f0f5e6acc2db4cf685bf21f6a7c3d9cd693883e60", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "canvas-design", "description": "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 ori", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "canvas-design. 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 ori Platforms: claude_code."} +{"id": "88db65131c83613d3ddf53014e7d5a1c4b4b2d3187317240c81cd0ef2d4ab25c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "integrated-marketing", "description": "When the user wants to plan integrated marketing, coordinate channels, or clarify program vs channel vs campaign. Also use when the user mentions \"IMC,\" \"integrated marketing,\" \"channel mix,\" \"marketing program,\" \"PESO model,\" \"integrated marketing communications,\" \"omnichannel marketing,\" \"channel strategy,\" \"marketing mix,\" or \"cross-channel campaign.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/integrated-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install integrated-marketing"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "integrated-marketing. When the user wants to plan integrated marketing, coordinate channels, or clarify program vs channel vs campaign. Also use when the user mentions \"IMC,\" \"integrated marketing,\" \"channel mix,\" \"marketing program,\" \"PESO model,\" \"integrated marketing communications,\" \"omnichannel marketing,\" \"channel strategy,\" \"marketing mix,\" or \"cross-channel campaign.\" Platforms: claude_code."} +{"id": "2c9551b8fca1141b979de8bbae0da00351e8f1100f286a9bd6f79bea43e43d5c", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-debugging-and-tracing", "description": "Diagnoses Kirby rendering/runtime issues using MCP runtime rendering, dump traces, and template/snippet/controller indexes. Use when outputs are wrong, errors occur, or tracing execution paths is requ", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-debugging-and-tracing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-debugging-and-tracing. Diagnoses Kirby rendering/runtime issues using MCP runtime rendering, dump traces, and template/snippet/controller indexes. Use when outputs are wrong, errors occur, or tracing execution paths is requ Platforms: claude_code."} +{"id": "b8dc7d632399c5cf4e08c60e41732699877c4cd60786f12995ebf1d9c06c65ae", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-headless-api", "description": "Exposes Kirby content to headless clients using the API, KQL, and JSON representations. Use when building API endpoints, KQL queries, or headless frontends.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-headless-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-headless-api. Exposes Kirby content to headless clients using the API, KQL, and JSON representations. Use when building API endpoints, KQL queries, or headless frontends. Platforms: claude_code."} +{"id": "5a071950e705bfb74d93584d7e3f42c7e2dd22512385d1763bc7582eaac53b0e", "repo_url": "https://github.com/dp-skills/skill-compose", "name": "canvas-design", "description": "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 ori", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dp-skills/skill-compose/blob/main/seed_skills/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T08:01:19Z"}, "embedding_text": "canvas-design. 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 ori Platforms: claude_code."} +{"id": "084583a75d0a48f36ec8772f9e5cc6579c38a514036485772129d828de93bddc", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "good-skill", "description": "Use when you need a valid fixture skill for passing validation tests.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/fixtures/pass/basic/global/skills/good-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "good-skill. Use when you need a valid fixture skill for passing validation tests. Platforms: claude_code."} +{"id": "60a8ad7c60048a4153ccd8b235c3cf6682e86c99eb7f3327f85132136798f803", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "requesting-code-review", "description": "Use when completing tasks, implementing major features, or before merging to verify work meets requirements - dispatches code-reviewer subagent, handles retries and timeouts, manages review-fix loop u", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-plan-and-execute/skills/requesting-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "requesting-code-review. Use when completing tasks, implementing major features, or before merging to verify work meets requirements - dispatches code-reviewer subagent, handles retries and timeouts, manages review-fix loop u Platforms: claude_code."} +{"id": "fa1024799d8b40e5194125fed6f41dac5c82f69af374cef78bd99bc7c412f642", "repo_url": "https://github.com/benjaminshoemaker/ai_coding_project_base", "name": "add-todo", "description": "Add a properly formatted TODO item to TODOS.md. Use when you need to capture a new task, bug, or feature request during development.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benjaminshoemaker/ai_coding_project_base/blob/main/.claude/skills/add-todo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T20:16:23Z"}, "embedding_text": "add-todo. Add a properly formatted TODO item to TODOS.md. Use when you need to capture a new task, bug, or feature request during development. Platforms: claude_code."} +{"id": "a457683fb1db8be0d7d994c82ae53af645e882606da5148bd94dd8efc6ff5528", "repo_url": "https://github.com/thienanblog/awesome-ai-agent-skills", "name": "laravel-11-12-app-guidelines", "description": "Guidelines and workflow for working on Laravel 11 or Laravel 12 applications across common stacks (API-only or full-stack), including optional Docker Compose/Sail, Inertia + React, Livewire, Vue, Blad", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thienanblog/awesome-ai-agent-skills/blob/main/plugins/laravel-app-skills/skills/laravel-11-12-app-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T13:05:54Z"}, "embedding_text": "laravel-11-12-app-guidelines. Guidelines and workflow for working on Laravel 11 or Laravel 12 applications across common stacks (API-only or full-stack), including optional Docker Compose/Sail, Inertia + React, Livewire, Vue, Blad Platforms: claude_code."} +{"id": "edb09e5ae7c31fbe610dc393f65f7d8e8d6193da31381788e7ce1a033ea828fc", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "requirement", "description": "[UDS] Write user stories and requirements following INVEST criteria", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/requirement-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "requirement. [UDS] Write user stories and requirements following INVEST criteria Platforms: claude_code."} +{"id": "e8dc3fb3a2e8c02be4e53a686ffe9a8aeacbb6cc3663f70bde93382485529455", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-aso-audit", "description": "Run an offline ASO audit on canonical App Store metadata under `./metadata` and surface keyword gaps using Astro MCP. Use after pulling metadata with `asc metadata pull`.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-aso-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-aso-audit"}, "quality": {"stars": 868, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T11:49:31Z"}, "embedding_text": "asc-aso-audit. Run an offline ASO audit on canonical App Store metadata under `./metadata` and surface keyword gaps using Astro MCP. Use after pulling metadata with `asc metadata pull`. Platforms: claude_code."} +{"id": "063859e3025022516935b851aa7e81ad300eff0029e0f443e46d5fb4a09243fa", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "conducting-user-interviews", "description": "Plan, conduct, and synthesize high-signal user interviews and produce a User Interview Pack (recruiting plan, screener, discussion guide, notes template, synthesis report). Use for user interview, cus", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/conducting-user-interviews/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "conducting-user-interviews. Plan, conduct, and synthesize high-signal user interviews and produce a User Interview Pack (recruiting plan, screener, discussion guide, notes template, synthesis report). Use for user interview, cus Platforms: claude_code."} +{"id": "03359c895316a13cbe0398abdf94596440ae1abe4f0313503044d575f5603823", "repo_url": "https://github.com/yeachan-heo/oh-my-claude-sisyphus", "name": "research", "description": "Orchestrate parallel scientist agents for comprehensive research with AUTO mode", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yeachan-heo/oh-my-claude-sisyphus/blob/main/skills/autoresearch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36737, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T12:59:43Z"}, "embedding_text": "research. Orchestrate parallel scientist agents for comprehensive research with AUTO mode Platforms: claude_code."} +{"id": "83d4e265051263421b56f353319996b5a3adcc13591d88b02ae200d189ccff78", "repo_url": "https://github.com/camoa/claude-skills", "name": "implementation-task-creator", "description": "Use when breaking down a component for implementation - creates task file in implementation_process/in_progress/ with TDD steps and acceptance criteria", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/implementation-task-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "implementation-task-creator. Use when breaking down a component for implementation - creates task file in implementation_process/in_progress/ with TDD steps and acceptance criteria Platforms: claude_code."} +{"id": "80f0a3a5ae080237e100286501b05840d6869f1cda9680bc5427dbb5ebdcfc38", "repo_url": "https://github.com/analogjs/angular-skills", "name": "angular-component", "description": "Create modern Angular standalone components following v20+ best practices. Use for building UI components with signal-based inputs/outputs, OnPush change detection, host bindings, content projection,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/analogjs/angular-skills/blob/main/skills/angular-component/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 597, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T20:56:35Z"}, "embedding_text": "angular-component. Create modern Angular standalone components following v20+ best practices. Use for building UI components with signal-based inputs/outputs, OnPush change detection, host bindings, content projection, Platforms: claude_code."} +{"id": "bdffb25a02dada2ef7b181228627f1004c0a1263bf1a8b21b3c65c9b732d6f2c", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "chinese-commit-conventions", "description": "\u4e2d\u6587 Git \u63d0\u4ea4\u89c4\u8303 \u2014 \u9002\u914d\u56fd\u5185\u56e2\u961f\u7684 commit message \u89c4\u8303\u548c changelog \u81ea\u52a8\u5316", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/chinese-commit-conventions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "chinese-commit-conventions. \u4e2d\u6587 Git \u63d0\u4ea4\u89c4\u8303 \u2014 \u9002\u914d\u56fd\u5185\u56e2\u961f\u7684 commit message \u89c4\u8303\u548c changelog \u81ea\u52a8\u5316 Platforms: claude_code."} +{"id": "dbed3b658695a2a8ece6e9bdda3ee563afd4c6d9d081a76e0dec0e7496ac73bf", "repo_url": "https://github.com/agent-sh/agnix", "name": "invalid-context-skill", "description": "Use when testing invalid context validation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/invalid/skills/invalid-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "invalid-context-skill. Use when testing invalid context validation Platforms: claude_code."} +{"id": "ed3f092ab4a700f1fd385cc2000a5567d3d543235456e32b0ab45ef0dce76cc1", "repo_url": "https://github.com/aojdevstudio/finance-guru", "name": "fin-guru-quant-analysis", "description": "Perform quantitative analysis of returns, correlations, risk factors, and portfolio optimization. Statistical modeling with institutional-grade rigor.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aojdevstudio/finance-guru/blob/main/.claude/skills/fin-guru-quant-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 309, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T14:29:45Z"}, "embedding_text": "fin-guru-quant-analysis. Perform quantitative analysis of returns, correlations, risk factors, and portfolio optimization. Statistical modeling with institutional-grade rigor. Platforms: claude_code."} +{"id": "f191f281ddef4810f05a80b7be03fad419e3cfa6f69a5d4eaeb164a9a21e265d", "repo_url": "https://github.com/zrt-ai-lab/opencode-skills", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zrt-ai-lab/opencode-skills/blob/main/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 224, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-30T07:20:04Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "50042b6de2e21b1db84e11e5d8e3b6acc16f08a0833c046ec8e0efb17a8b0140", "repo_url": "https://github.com/spirimirror/libuipc", "name": "project-structure", "description": "Overview of the main directories and important files in the repository. Use this to understand the project layout and find where code lives.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spirimirror/libuipc/blob/main/.cursor/skills/project-structure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:12:46Z"}, "embedding_text": "project-structure. Overview of the main directories and important files in the repository. Use this to understand the project layout and find where code lives. Platforms: claude_code."} +{"id": "d5b65b2138ae4bb88578d8143052f6482bd7aa0af152c8e762e39f34a1e6ebe8", "repo_url": "https://github.com/hannesill/m4", "name": "sapsii-score", "description": "Calculate SAPS-II (Simplified Acute Physiology Score II) for ICU patients in MIMIC-IV. Use for mortality prediction, severity assessment, or international ICU benchmarking.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/benchmark/tasks/sapsii/mimic-sapsii-24h-raw/skills/sapsii-score/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "sapsii-score. Calculate SAPS-II (Simplified Acute Physiology Score II) for ICU patients in MIMIC-IV. Use for mortality prediction, severity assessment, or international ICU benchmarking. Platforms: claude_code."} +{"id": "a37aaa9be98e2e4de7d267ff92d0e1170cb0b2abae230472ffaf81b471a0b765", "repo_url": "https://github.com/tomkrikorian/visionosagents", "name": "ralph-driven-development", "description": "Guide and tooling for Ralph Driven Development (RDD), a spec runner that repeatedly invokes Codex (or other agents) over ordered specs until a magic phrase signals completion. Use when setting up or o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tomkrikorian/visionosagents/blob/main/skills/arkit-camera-access-providers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T00:27:41Z"}, "embedding_text": "ralph-driven-development. Guide and tooling for Ralph Driven Development (RDD), a spec runner that repeatedly invokes Codex (or other agents) over ordered specs until a magic phrase signals completion. Use when setting up or o Platforms: claude_code."} +{"id": "25b378bfd14a060b73d89bb156774b452c91a39e06af7143470f0cce71ccd801", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "cinematic-slides", "description": "Create cinematic HTML presentations with AI video backgrounds, deployed to GitHub Pages. Use for: slides, presentation, deck, cinematic slides, video presentation, animated slides, live presentation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/cinematic-slides/skills/cinematic-slides/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "cinematic-slides. Create cinematic HTML presentations with AI video backgrounds, deployed to GitHub Pages. Use for: slides, presentation, deck, cinematic slides, video presentation, animated slides, live presentation. Platforms: claude_code."} +{"id": "27779058c8bcd2e38937e1d2565a60037c59a147f8befa076fa3b98ce18867d7", "repo_url": "https://github.com/jykim/claude-obsidian-skills", "name": "obsidian-links", "description": "Format and validate Obsidian wiki links with proper filename, section, and folder conventions. Verify links exist before creation and fix broken links. Use when creating or checking wiki links in mark", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jykim/claude-obsidian-skills/blob/main/obsidian-links/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T22:15:25Z"}, "embedding_text": "obsidian-links. Format and validate Obsidian wiki links with proper filename, section, and folder conventions. Verify links exist before creation and fix broken links. Use when creating or checking wiki links in mark Platforms: claude_code."} +{"id": "be6a87308d728662cbb21d61f0dc7dd6aac472fd3f548f17fc9899405880106e", "repo_url": "https://github.com/agent-sh/agnix", "name": "hint-skill", "description": "Use when testing argument hints", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/plugin/skills/agnix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "hint-skill. Use when testing argument hints Platforms: claude_code."} +{"id": "67db2e0142422c86b878932ad53f3a604d11910c25f832eb0d853dece6b1f763", "repo_url": "https://github.com/jezweb/claude-skills", "name": "proposal-writer", "description": "Write a client proposal or quote for a service business. Covers project understanding, scope, timeline, pricing presentation, and terms. Works for web development, consulting, trades, professional services, and any B2B service engagement. Triggers: proposal, quote, project proposal, client proposal, scope of work, SOW, engagement letter.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/proposal-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install proposal-writer"}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "proposal-writer. Write a client proposal or quote for a service business. Covers project understanding, scope, timeline, pricing presentation, and terms. Works for web development, consulting, trades, professional services, and any B2B service engagement. Triggers: proposal, quote, project proposal, client proposal, scope of work, SOW, engagement letter. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} +{"id": "057e15b9443de9fe8fba6c46ae26938f08553532fefca4ec36f11b7899c7ebc8", "repo_url": "https://github.com/agent-sh/agnix", "name": "invalid-model-skill", "description": "Use when testing invalid model validation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/invalid/skills/invalid-model/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "invalid-model-skill. Use when testing invalid model validation Platforms: claude_code."} +{"id": "e89bf73713475c1d88027eda51c64d7df3ca5eba532abf6ad9496ebd2276f81a", "repo_url": "https://github.com/automagik-dev/genie", "name": "team-lead", "description": "Autonomous wish executor. Full lifecycle: read wish, hire team, dispatch work, review, PR, QA, done.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/brainstorm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "team-lead. Autonomous wish executor. Full lifecycle: read wish, hire team, dispatch work, review, PR, QA, done. Platforms: claude_code."} +{"id": "556b1bcc0ebbb5084e60bca20b130c92d3d9b31c1b446e787fe5d85a70f2424f", "repo_url": "https://github.com/redisearch/redisearch", "name": "analyze-rust-ffi-crate-surface", "description": "Determine which parts of the C codebase use Rust-defined C symbols. Use this when you want to understand which C code files may be impacted by changes to a Rust FFI crate.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/redisearch/redisearch/blob/master/.skills/analyze-rust-ffi-crate-surface/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 6159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:58:43Z"}, "embedding_text": "analyze-rust-ffi-crate-surface. Determine which parts of the C codebase use Rust-defined C symbols. Use this when you want to understand which C code files may be impacted by changes to a Rust FFI crate. Platforms: claude_code."} +{"id": "1ef9c6ccbc3e4ced62ad3cebe3cc750645eab05947042a1b439dee2c8eba50f5", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-lead-gen", "description": "Lead generation strategies for developer audiences using free tools, code generators, and\nungated resources. Covers tool ideas that attract developers, build vs buy decisions for\nlead gen tools, ungat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-lead-gen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-lead-gen. Lead generation strategies for developer audiences using free tools, code generators, and\nungated resources. Covers tool ideas that attract developers, build vs buy decisions for\nlead gen tools, ungat Platforms: claude_code."} +{"id": "d21c988bb6d77931685d9e3af715d28c7ec7647a58c9cac7a4be23607c1344b4", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "brand-protection", "description": "When the user faces brand impersonation, fake websites, phishing sites, or trademark infringement. Also use when the user mentions \"fake site,\" \"impersonation,\" \"phishing site,\" \"trademark infringement,\" \"domain squatting,\" or \"brand abuse.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/brand-protection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-protection"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "brand-protection. When the user faces brand impersonation, fake websites, phishing sites, or trademark infringement. Also use when the user mentions \"fake site,\" \"impersonation,\" \"phishing site,\" \"trademark infringement,\" \"domain squatting,\" or \"brand abuse.\" Platforms: claude_code."} +{"id": "a869a49d6f3e40156b58ef553c650fe1dd58f6502284784f0ecdebe8af1f1ebc", "repo_url": "https://github.com/scientiacapital/skills", "name": "challenger-sale", "description": "The Challenger Sale methodology \u2014 Teach-Tailor-Take Control framework for B2B sales. Use when: challenger sale, commercial teaching, constructive tension, reframe, teach tailor take control, insight s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/challenger-sale-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "challenger-sale. The Challenger Sale methodology \u2014 Teach-Tailor-Take Control framework for B2B sales. Use when: challenger sale, commercial teaching, constructive tension, reframe, teach tailor take control, insight s Platforms: claude_code."} +{"id": "359b59bd9944df935d42cf04c383ffdf0185cd3fd402bcf11d02c2b87983dbd8", "repo_url": "https://github.com/az9713/ai-co-writing-claude-skills", "name": "substack-note", "description": "Generate high-performing Substack notes that drive engagement and newsletter growth. Use when the user wants to create Substack notes, needs content ideas for notes, or wants to repurpose content into", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/az9713/ai-co-writing-claude-skills/blob/main/.claude/skills/substack-note/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T07:39:41Z"}, "embedding_text": "substack-note. Generate high-performing Substack notes that drive engagement and newsletter growth. Use when the user wants to create Substack notes, needs content ideas for notes, or wants to repurpose content into Platforms: claude_code."} +{"id": "d69f60eab67782786c2bb3001d94d35ecaaefe3cbd71c6849256f68fcd6103e5", "repo_url": "https://github.com/nicobailon/visual-explainer", "name": "visual-explainer", "description": "Generate beautiful, self-contained HTML pages that visually explain systems, code changes, plans, and data. Use when the user asks for a diagram, architecture overview, diff review, plan review, proje", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nicobailon/visual-explainer/blob/main/plugins/visual-explainer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 8825, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-27T17:15:56Z"}, "embedding_text": "visual-explainer. Generate beautiful, self-contained HTML pages that visually explain systems, code changes, plans, and data. Use when the user asks for a diagram, architecture overview, diff review, plan review, proje Platforms: claude_code."} +{"id": "5709ba654bda313a0671ccd9ec80e54d1473ec9b7dfc14422b89e5b330ffb13d", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "domain-selection", "description": "When the user wants to choose an SEO-friendly domain for a new site\u2014brand vs keyword domain, TLD selection, or domain best practices. Also use when the user mentions \"domain choice,\" \"pick domain,\" \"SEO-friendly domain,\" \"brand domain,\" \"EMD,\" \"PMD,\" \"exact match domain,\" \"partial match domain,\" \"TLD,\" \".ai domain,\" \".com vs .io,\" \"domain length,\" \"domain history,\" or \"defensive domain registration.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/domain/domain-selection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install domain-selection"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "domain-selection. When the user wants to choose an SEO-friendly domain for a new site\u2014brand vs keyword domain, TLD selection, or domain best practices. Also use when the user mentions \"domain choice,\" \"pick domain,\" \"SEO-friendly domain,\" \"brand domain,\" \"EMD,\" \"PMD,\" \"exact match domain,\" \"partial match domain,\" \"TLD,\" \".ai domain,\" \".com vs .io,\" \"domain length,\" \"domain history,\" or \"defensive domain registration.\" Platforms: claude_code."} +{"id": "27dc1590bfacaa9998fb621f4ac5052f310b3dd87256f69218ab448217a8444c", "repo_url": "https://github.com/automagik-dev/genie", "name": "report", "description": "Investigate bugs comprehensively \u2014 cascade through /trace, capture browser evidence, extract observability data, and auto-create a GitHub issue with all findings.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "report. Investigate bugs comprehensively \u2014 cascade through /trace, capture browser evidence, extract observability data, and auto-create a GitHub issue with all findings. Platforms: claude_code."} +{"id": "3ec329b00ae9a926d97856cf44f8676e76513d65fb7a6ee3ec999b0c7df091ac", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "dispatching-parallel-agents", "description": "Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/dispatching-parallel-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "dispatching-parallel-agents. Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies Platforms: claude_code."} +{"id": "78af6f053e86dccf7a32e4219fd7e715ce409609847d86e8e649130382ae9933", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "ooda", "description": "OODA loop decision framework (Observe, Orient, Decide, Act). Use for complex decisions, problem-solving, unclear situations, or when someone is jumping to solutions without analysis.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/ooda/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "ooda. OODA loop decision framework (Observe, Orient, Decide, Act). Use for complex decisions, problem-solving, unclear situations, or when someone is jumping to solutions without analysis. Platforms: claude_code."} +{"id": "61063b45c2a806c333713c5f61cd1dc3e6a2f9215f816bdbebaf2ccc97cbc836", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "growth-funnel", "description": "When the user wants to plan growth using the AARRR framework, diagnose growth bottlenecks, or map actions across the customer lifecycle. Also use when the user mentions \"growth funnel,\" \"AARRR,\" \"pirate metrics,\" \"acquisition activation retention,\" \"customer lifecycle metrics,\" or \"growth framework.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/growth-funnel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install growth-funnel"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "growth-funnel. When the user wants to plan growth using the AARRR framework, diagnose growth bottlenecks, or map actions across the customer lifecycle. Also use when the user mentions \"growth funnel,\" \"AARRR,\" \"pirate metrics,\" \"acquisition activation retention,\" \"customer lifecycle metrics,\" or \"growth framework.\" Platforms: claude_code."} +{"id": "61d6b7f6a4bb02548b30258d53b71b3010757e755168b8de74b2a9acfcc19953", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "obspy-datacenter-client", "description": "ObsPy allows you to easily download earthquake data from various data centers/networks through its client API. This is an overview of available services and a demo of the client API for International", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/seismic-phase-picking/environment/skills/obspy-datacenter-client/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "obspy-datacenter-client. ObsPy allows you to easily download earthquake data from various data centers/networks through its client API. This is an overview of available services and a demo of the client API for International Platforms: claude_code."} +{"id": "f26293f6cc05e2b207c694e07e08a288ae0a2a08590e9b8334191f6d68a1c339", "repo_url": "https://github.com/ehmo/platform-design-skills", "name": "watchos-design-guidelines", "description": "Apple Human Interface Guidelines for Apple Watch. Use when building watchOS apps, complications, or workout features. Triggers on tasks involving Watch UI, Digital Crown, glanceable interfaces, or wri", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ehmo/platform-design-skills/blob/main/skills/watchos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 397, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T05:13:32Z"}, "embedding_text": "watchos-design-guidelines. Apple Human Interface Guidelines for Apple Watch. Use when building watchOS apps, complications, or workout features. Triggers on tasks involving Watch UI, Digital Crown, glanceable interfaces, or wri Platforms: claude_code."} +{"id": "f37274fbde572150d1cc85ac9da705a2fb97372e869143bbf697fa9f98f26e6c", "repo_url": "https://github.com/knowsuchagency/mcp2cli", "name": "mcp2cli", "description": "Turn any MCP server, OpenAPI spec, or GraphQL endpoint into a CLI. Use this skill when the user wants to interact with an MCP server, OpenAPI/REST API, or GraphQL API via command line, discover availa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/knowsuchagency/mcp2cli/blob/main/skills/mcp2cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2243, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T01:52:38Z"}, "embedding_text": "mcp2cli. Turn any MCP server, OpenAPI spec, or GraphQL endpoint into a CLI. Use this skill when the user wants to interact with an MCP server, OpenAPI/REST API, or GraphQL API via command line, discover availa Platforms: claude_code."} +{"id": "51199beb2da66502f15b33c9ab73c4511fac42f3980f5f609253c40ee6d44012", "repo_url": "https://github.com/countbot-ai/countbot", "name": "cron-manager", "description": "\u5b9a\u65f6\u4efb\u52a1\u7ba1\u7406\u3002\u521b\u5efa\u3001\u67e5\u770b\u3001\u4fee\u6539\u3001\u5220\u9664\u5b9a\u65f6\u4efb\u52a1\uff0c\u7ba1\u7406\u4efb\u52a1\u4f1a\u8bdd\u6570\u636e\u3002\u5f53\u7528\u6237\u9700\u8981\u8bbe\u7f6e\u63d0\u9192\u3001\u5b9a\u65f6\u6267\u884c\u4efb\u52a1\u3001\u7ba1\u7406\u8c03\u5ea6\u8ba1\u5212\u65f6\u4f7f\u7528\u3002", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/countbot-ai/countbot/blob/main/workspace/skills/cron-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cron-manager"}, "quality": {"stars": 726, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T04:42:30Z"}, "embedding_text": "cron-manager. \u5b9a\u65f6\u4efb\u52a1\u7ba1\u7406\u3002\u521b\u5efa\u3001\u67e5\u770b\u3001\u4fee\u6539\u3001\u5220\u9664\u5b9a\u65f6\u4efb\u52a1\uff0c\u7ba1\u7406\u4efb\u52a1\u4f1a\u8bdd\u6570\u636e\u3002\u5f53\u7528\u6237\u9700\u8981\u8bbe\u7f6e\u63d0\u9192\u3001\u5b9a\u65f6\u6267\u884c\u4efb\u52a1\u3001\u7ba1\u7406\u8c03\u5ea6\u8ba1\u5212\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "a976829fcfc00593649e1074bed78de13985162da07a03dcac0f95009283fb43", "repo_url": "https://github.com/ryanthedev/code-foundations", "name": "cc-control-flow-quality", "description": "Use when code has deep nesting (3+ levels), complex conditionals needing simplification, loop design questions, or high cyclomatic complexity. Symptoms: arrow-shaped code, repeated conditions, confusi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ryanthedev/code-foundations/blob/main/skills/cc-control-flow-quality/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 280, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T03:42:22Z"}, "embedding_text": "cc-control-flow-quality. Use when code has deep nesting (3+ levels), complex conditionals needing simplification, loop design questions, or high cyclomatic complexity. Symptoms: arrow-shaped code, repeated conditions, confusi Platforms: claude_code."} +{"id": "b3d529e04ab5e70fa0e720cee678ddc29f425224538e179c34c0d5f1f1a46bdb", "repo_url": "https://github.com/aahl/skills", "name": "mcp-lark", "description": "Based on FeiShu(\u98de\u4e66) / Lark's OpenAPI MCP server, manage user information, chats, emails, cloud documents, multidimensional tables, tasks, calendars, etc.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/mcp-lark/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-lark"}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T10:12:15Z"}, "embedding_text": "mcp-lark. Based on FeiShu(\u98de\u4e66) / Lark's OpenAPI MCP server, manage user information, chats, emails, cloud documents, multidimensional tables, tasks, calendars, etc. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} +{"id": "33bcc1e57fcd0f45ac9ea0295995a4c0925cb267ffbae275787448eaf3be524e", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "ai-sdr", "description": "When the user wants to deploy AI sales development reps, automate sales qualification, build signal-to-action routing, or design AI agent architecture for sales. Also use when the user mentions 'AI SDR,' 'AI sales agent,' 'automated qualification,' 'signal routing,' 'sales automation,' '11x,' 'Artisan,' 'AiSDR,' 'AI BDR,' or 'autonomous sales.' This skill covers AI SDR deployment, qualification automation, and agent architecture for sales development. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/ai-sdr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-sdr"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "ai-sdr. When the user wants to deploy AI sales development reps, automate sales qualification, build signal-to-action routing, or design AI agent architecture for sales. Also use when the user mentions 'AI SDR,' 'AI sales agent,' 'automated qualification,' 'signal routing,' 'sales automation,' '11x,' 'Artisan,' 'AiSDR,' 'AI BDR,' or 'autonomous sales.' This skill covers AI SDR deployment, qualification automation, and agent architecture for sales development. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "bfc28d50f6467d6763153e265607aeeb9adcbed1ab3b5613eecf84618cc62ef0", "repo_url": "https://github.com/ryanthedev/code-foundations", "name": "aposd-verifying-correctness", "description": "Use before claiming code is 'done', after implementation, before commit. Checks requirements coverage, concurrency, error handling, resources, boundaries, and security. NEW capability not in CC skills", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ryanthedev/code-foundations/blob/main/skills/aposd-verifying-correctness/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 280, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T03:42:22Z"}, "embedding_text": "aposd-verifying-correctness. Use before claiming code is 'done', after implementation, before commit. Checks requirements coverage, concurrency, error handling, resources, boundaries, and security. NEW capability not in CC skills Platforms: claude_code."} +{"id": "91aed6ae07b8e8a0e6810f41380cb1df0a0beb8046a9d3399e5bd9e492ffc335", "repo_url": "https://github.com/joannis/claude-skills", "name": "linear", "description": "Linear CLI for issue tracking and project management. Use when developers mention: (1) Linear issues or tickets, (2) issue tracking or task management, (3) WDY team issues, (4) closing, updating, or t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joannis/claude-skills/blob/main/linear/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T20:09:23Z"}, "embedding_text": "linear. Linear CLI for issue tracking and project management. Use when developers mention: (1) Linear issues or tickets, (2) issue tracking or task management, (3) WDY team issues, (4) closing, updating, or t Platforms: claude_code."} +{"id": "b19e265ea672ed95f284ee07b1f0ef343a8ac6c299dfee9ed9b8159537191fce", "repo_url": "https://github.com/ahmadawais/qasai", "name": "qasai", "description": "Image compression CLI with lossless/lossy options, multiple engines, batch processing, and format conversion. Use when compressing, optimizing, or converting images.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ahmadawais/qasai/blob/main/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T08:02:47Z"}, "embedding_text": "qasai. Image compression CLI with lossless/lossy options, multiple engines, batch processing, and format conversion. Use when compressing, optimizing, or converting images. Platforms: claude_code."} +{"id": "e0578461d09835516563f079489b10ca94fd18026ff4875c9de7487c325c4545", "repo_url": "https://github.com/wshobson/agents", "name": "startup-metrics-framework", "description": "This skill should be used when the user asks about \"key startup metrics\", \"SaaS metrics\", \"CAC and LTV\", \"unit economics\", \"burn multiple\", \"rule of 40\", \"marketplace metrics\", or requests guidance on tracking and optimizing business performance metrics.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/startup-business-analyst/skills/startup-metrics-framework/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install startup-metrics-framework"}, "quality": {"stars": 37028, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:08:46Z"}, "embedding_text": "startup-metrics-framework. This skill should be used when the user asks about \"key startup metrics\", \"SaaS metrics\", \"CAC and LTV\", \"unit economics\", \"burn multiple\", \"rule of 40\", \"marketplace metrics\", or requests guidance on tracking and optimizing business performance metrics. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} +{"id": "fe8a54975ab3e2d159b8694af3c3bfaab33c19a54e4e0b54cca18f47d4ba92ba", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "retro", "description": "Start-Stop-Continue retrospective identifying what to Start doing, Stop doing, and Continue doing. Use for sprint retros, personal reflection, team process reviews, or habit audits.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/retro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "retro. Start-Stop-Continue retrospective identifying what to Start doing, Stop doing, and Continue doing. Use for sprint retros, personal reflection, team process reviews, or habit audits. Platforms: claude_code."} +{"id": "5c677bb5b199bbaebfc29e8b9460de017d05caa4c5110bb89fbf1776e9530541", "repo_url": "https://github.com/datadog/lading", "name": "lading-optimize-submit", "description": "Full optimization workflow with git branch creation, commits, and optional PR. Wraps /lading-optimize-hunt with git automation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadog/lading/blob/main/.claude/skills/lading-optimize-submit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T19:30:47Z"}, "embedding_text": "lading-optimize-submit. Full optimization workflow with git branch creation, commits, and optional PR. Wraps /lading-optimize-hunt with git automation. Platforms: claude_code."} +{"id": "9a5b9a5f8ef97c7ecbb2c2c97fcea8202c1033c0f8b817a652804aa825ff8422", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "sales-methodology-implementer", "description": "Implement proven sales methodologies (MEDDIC, BANT, Sandler, Challenger, SPIN) across your team. Generate framework-specific questions, score deals, train reps, and enforce consistent qualification. U", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/sales-methodology-implementer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "sales-methodology-implementer. Implement proven sales methodologies (MEDDIC, BANT, Sandler, Challenger, SPIN) across your team. Generate framework-specific questions, score deals, train reps, and enforce consistent qualification. U Platforms: claude_code."} +{"id": "7d66a9dfdb38381b41186c6065d73c596ff4ae2bdfe8b94963a83ff067ff4710", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "core-web-vitals", "description": "When the user wants to optimize Core Web Vitals, fix LCP, INP, or CLS issues. Also use when the user mentions \"Core Web Vitals,\" \"CWV,\" \"LCP,\" \"INP,\" \"CLS,\" \"FID,\" \"page speed,\" \"page performance,\" \"Largest Contentful Paint,\" \"Interaction to Next Paint,\" \"Cumulative Layout Shift,\" or \"Page Experience.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/core-web-vitals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install core-web-vitals"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "core-web-vitals. When the user wants to optimize Core Web Vitals, fix LCP, INP, or CLS issues. Also use when the user mentions \"Core Web Vitals,\" \"CWV,\" \"LCP,\" \"INP,\" \"CLS,\" \"FID,\" \"page speed,\" \"page performance,\" \"Largest Contentful Paint,\" \"Interaction to Next Paint,\" \"Cumulative Layout Shift,\" or \"Page Experience.\" Platforms: claude_code."} +{"id": "9c8c21c09b682a71d5b6336dded0957807a2e738f3e8f2929f20d2959645df1a", "repo_url": "https://github.com/davila7/claude-code-templates", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/davila7/claude-code-templates/blob/main/cli-tool/components/skills/development/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28224, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:37:57Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "5094fd5297da04cf0b667ab8aba97cfd90b50dee5721a445d40d1f4242e9ed37", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "changelog-generator", "description": "\u901a\u8fc7\u5206\u6790\u63d0\u4ea4\u5386\u53f2\u3001\u5206\u7c7b\u66f4\u6539\u5e76\u5c06\u6280\u672f\u63d0\u4ea4\u8f6c\u6362\u4e3a\u6e05\u6670\u7684\u3001\u9762\u5411\u5ba2\u6237\u7684\u53d1\u5e03\u8bf4\u660e\uff0c\u81ea\u52a8\u4ece git \u63d0\u4ea4\u521b\u5efa\u9762\u5411\u7528\u6237\u7684\u66f4\u65b0\u65e5\u5fd7\u3002\u5c06\u6570\u5c0f\u65f6\u7684\u624b\u52a8\u66f4\u65b0\u65e5\u5fd7\u7f16\u5199\u5de5\u4f5c\u7f29\u77ed\u4e3a\u51e0\u5206\u949f\u7684\u81ea\u52a8\u751f\u6210\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/changelog-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "changelog-generator. \u901a\u8fc7\u5206\u6790\u63d0\u4ea4\u5386\u53f2\u3001\u5206\u7c7b\u66f4\u6539\u5e76\u5c06\u6280\u672f\u63d0\u4ea4\u8f6c\u6362\u4e3a\u6e05\u6670\u7684\u3001\u9762\u5411\u5ba2\u6237\u7684\u53d1\u5e03\u8bf4\u660e\uff0c\u81ea\u52a8\u4ece git \u63d0\u4ea4\u521b\u5efa\u9762\u5411\u7528\u6237\u7684\u66f4\u65b0\u65e5\u5fd7\u3002\u5c06\u6570\u5c0f\u65f6\u7684\u624b\u52a8\u66f4\u65b0\u65e5\u5fd7\u7f16\u5199\u5de5\u4f5c\u7f29\u77ed\u4e3a\u51e0\u5206\u949f\u7684\u81ea\u52a8\u751f\u6210\u3002 Platforms: claude_code."} +{"id": "2d0a455fefa642089631aad477c6ff691f7fa29c9ecd72e51c222d7b4e85942d", "repo_url": "https://github.com/doccker/cc-use-exp", "name": "fix", "description": "\u7ed3\u6784\u5316 bug \u4fee\u590d\u5de5\u4f5c\u6d41\uff0c\u9002\u7528\u4e8e\u663e\u5f0f fix \u6216 debug \u573a\u666f\uff1b\u4e0d\u8d1f\u8d23\u8bed\u8a00\u89c4\u8303\u3001\u6b63\u5f0f review \u6216\u8fd0\u7ef4\u5ba1\u6279\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doccker/cc-use-exp/blob/main/.codex/skills/cc-fix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 854, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T07:19:36Z"}, "embedding_text": "fix. \u7ed3\u6784\u5316 bug \u4fee\u590d\u5de5\u4f5c\u6d41\uff0c\u9002\u7528\u4e8e\u663e\u5f0f fix \u6216 debug \u573a\u666f\uff1b\u4e0d\u8d1f\u8d23\u8bed\u8a00\u89c4\u8303\u3001\u6b63\u5f0f review \u6216\u8fd0\u7ef4\u5ba1\u6279\u3002 Platforms: claude_code."} +{"id": "e37531ef6039ccadddb57771bc06a45b21ff5cfc7a3dd9f26990bc8ed6efb448", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "safe-workflow", "description": "SAFe development workflow guidance including branch naming conventions, commit message format, rebase-first workflow, and CI validation. Use when starting work on a Linear ticket, preparing commits, c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/safe-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "safe-workflow. SAFe development workflow guidance including branch naming conventions, commit message format, rebase-first workflow, and CI validation. Use when starting work on a Linear ticket, preparing commits, c Platforms: claude_code."} +{"id": "3310628ff691ed1c9d93578efd5d9a592b2be42e502ce62ae265eec1b3b67383", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "shipping-page-generator", "description": "When the user wants to create or optimize a shipping or delivery information page. Also use when the user mentions \"shipping,\" \"delivery,\" \"shipping policy,\" \"delivery times,\" \"shipping page,\" \"free shipping,\" \"shipping rates,\" \"delivery options,\" or \"shipping info.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/legal/shipping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install shipping-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "shipping-page-generator. When the user wants to create or optimize a shipping or delivery information page. Also use when the user mentions \"shipping,\" \"delivery,\" \"shipping policy,\" \"delivery times,\" \"shipping page,\" \"free shipping,\" \"shipping rates,\" \"delivery options,\" or \"shipping info.\" Platforms: claude_code."} +{"id": "32705db921b3b3c1e239d3231dae65f9434e8764d29aa4a9db93fb25da0ff5b1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "parasite-seo", "description": "When the user wants to leverage high-authority platforms for rankings or backlinks. Also use when the user mentions \"parasite SEO,\" \"parasitic SEO,\" \"barnacle SEO,\" \"hosted content,\" \"third-party publishing,\" \"Medium SEO,\" \"Reddit SEO,\" \"GitHub parasite SEO,\" \"LinkedIn Pulse SEO,\" \"high-authority platforms,\" \"distributed authority,\" \"borrow domain authority,\" or \"rank without own website.\" For GitHub specifics, use github.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/parasite-seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install parasite-seo"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "parasite-seo. When the user wants to leverage high-authority platforms for rankings or backlinks. Also use when the user mentions \"parasite SEO,\" \"parasitic SEO,\" \"barnacle SEO,\" \"hosted content,\" \"third-party publishing,\" \"Medium SEO,\" \"Reddit SEO,\" \"GitHub parasite SEO,\" \"LinkedIn Pulse SEO,\" \"high-authority platforms,\" \"distributed authority,\" \"borrow domain authority,\" or \"rank without own website.\" For GitHub specifics, use github. Platforms: claude_code."} +{"id": "5554f0bfaee3fd1d9961411dbfe0bd4e9bda6dd4f7ac79b1cbb5cda78eec5442", "repo_url": "https://github.com/jellydn/my-ai-tools", "name": "adr", "description": "Manages Architecture Decision Records (ADR) for tracking important architectural decisions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jellydn/my-ai-tools/blob/main/skills/adr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 84, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:26:12Z"}, "embedding_text": "adr. Manages Architecture Decision Records (ADR) for tracking important architectural decisions Platforms: claude_code."} +{"id": "0bca5a317a7b82b28b89da1a9d6623f744dff94d48737845828e6afe4a1c1851", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "prd-generator", "description": "Generates comprehensive Product Requirements Document from product plan. Creates PRD.md with features, user stories, acceptance criteria, and success metrics. Use when creating product requirements.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/product/prd-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "prd-generator. Generates comprehensive Product Requirements Document from product plan. Creates PRD.md with features, user stories, acceptance criteria, and success metrics. Use when creating product requirements. Platforms: claude_code."} +{"id": "133b99112f1730d2bf46fe3ab09852fff4572a529c9927e5aec7eaa97c9be9de", "repo_url": "https://github.com/jezweb/claude-skills", "name": "d1-drizzle-schema", "description": "Generate Drizzle ORM schemas for Cloudflare D1 databases with correct D1-specific patterns. Produces schema files, migration commands, type exports, and DATABASE_SCHEMA.md documentation. Handles D1 quirks: foreign keys always enforced, no native BOOLEAN/DATETIME types, 100 bound parameter limit, JSON stored as TEXT. Use when creating a new database, adding tables, or scaffolding a D1 data layer.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/cloudflare/skills/d1-drizzle-schema/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install d1-drizzle-schema"}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "d1-drizzle-schema. Generate Drizzle ORM schemas for Cloudflare D1 databases with correct D1-specific patterns. Produces schema files, migration commands, type exports, and DATABASE_SCHEMA.md documentation. Handles D1 quirks: foreign keys always enforced, no native BOOLEAN/DATETIME types, 100 bound parameter limit, JSON stored as TEXT. Use when creating a new database, adding tables, or scaffolding a D1 data layer. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} +{"id": "6d3527dfcb0b2ae385b13031dcf242b33a2e1e68441cce714c8d7fe8414cd71c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "url-structure", "description": "When the user wants to optimize URL structure, fix URL issues, or plan URL hierarchy. Also use when the user mentions \"URL structure,\" \"URL optimization,\" \"slug,\" \"clean URLs,\" \"URL hierarchy,\" \"URL path,\" \"permalink structure,\" \"URL best practices,\" \"dynamic URLs,\" or \"URL parameters.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/url-structure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install url-structure"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "url-structure. When the user wants to optimize URL structure, fix URL issues, or plan URL hierarchy. Also use when the user mentions \"URL structure,\" \"URL optimization,\" \"slug,\" \"clean URLs,\" \"URL hierarchy,\" \"URL path,\" \"permalink structure,\" \"URL best practices,\" \"dynamic URLs,\" or \"URL parameters.\" Platforms: claude_code."} +{"id": "3175d713d206fe84980326a58d6a6455488e164345d58b069f80934d10872969", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "release-patterns", "description": "PR creation, CI/CD validation, merge coordination, and release patterns. Use when creating pull requests, running pre-PR validation, checking CI status, coordinating merges, or managing releases. Do N", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/release-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "release-patterns. PR creation, CI/CD validation, merge coordination, and release patterns. Use when creating pull requests, running pre-PR validation, checking CI status, coordinating merges, or managing releases. Do N Platforms: claude_code."} +{"id": "b31f7b80ff1d4dac26c8bdf09a209f39700c40f2a034b313850f773157171490", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "writing-assistant", "description": "\u81ea\u5a92\u4f53\u5199\u4f5c\u4ea4\u4e92\u5f0f\u52a9\u624b\u3002\u5e2e\u52a9\u5b8c\u6210\u4ece\u9009\u9898\u5230\u53d1\u5e03\u7684\u5b8c\u6574\u6d41\u7a0b\u3002\u9002\u7528\u4e8e\uff1a\u5f00\u59cb\u5199\u65b0\u6587\u7ae0\u3001\u68c0\u67e5\u8349\u7a3f\u8d28\u91cf\u3001\u8bca\u65ad\u53d1\u5e03\u540e\u6570\u636e\u4e0d\u4f73\u7684\u539f\u56e0\u3002", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/ceeon/writing-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-assistant"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "writing-assistant. \u81ea\u5a92\u4f53\u5199\u4f5c\u4ea4\u4e92\u5f0f\u52a9\u624b\u3002\u5e2e\u52a9\u5b8c\u6210\u4ece\u9009\u9898\u5230\u53d1\u5e03\u7684\u5b8c\u6574\u6d41\u7a0b\u3002\u9002\u7528\u4e8e\uff1a\u5f00\u59cb\u5199\u65b0\u6587\u7ae0\u3001\u68c0\u67e5\u8349\u7a3f\u8d28\u91cf\u3001\u8bca\u65ad\u53d1\u5e03\u540e\u6570\u636e\u4e0d\u4f73\u7684\u539f\u56e0\u3002 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "13d2d6ed6d7c1341f6a2322d1cf6576a64fbd181f43b60845bbb7bb4a62c9ac7", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "404-page-generator", "description": "When the user wants to create, optimize, or audit 404 error pages. Also use when the user mentions \"404 page,\" \"404 error,\" \"error page,\" \"page not found,\" \"broken link page,\" \"404 design,\" \"custom 404,\" \"404 redirect,\" \"404 page UX,\" or \"404 recovery.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/404/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install 404-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "404-page-generator. When the user wants to create, optimize, or audit 404 error pages. Also use when the user mentions \"404 page,\" \"404 error,\" \"error page,\" \"page not found,\" \"broken link page,\" \"404 design,\" \"custom 404,\" \"404 redirect,\" \"404 page UX,\" or \"404 recovery.\" Platforms: claude_code."} +{"id": "34e2da9ee6330b797bd779bfaa4abbf41c269b9eb37d1e03e5c0e08ae9a2dceb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "contact-page-generator", "description": "When the user wants to create, optimize, or audit contact page and forms. Also use when the user mentions \"contact page,\" \"contact form,\" \"get in touch,\" \"support form,\" \"contact us,\" \"reach us,\" \"contact information,\" \"support contact,\" or \"inquiry form.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/brand/contact/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install contact-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "contact-page-generator. When the user wants to create, optimize, or audit contact page and forms. Also use when the user mentions \"contact page,\" \"contact form,\" \"get in touch,\" \"support form,\" \"contact us,\" \"reach us,\" \"contact information,\" \"support contact,\" or \"inquiry form.\" Platforms: claude_code."} +{"id": "7ff7e5ab2d7b38e6c1620369f256d3f8f3441acabd76f2961eb5aa13669209b1", "repo_url": "https://github.com/analogjs/angular-skills", "name": "angular-http", "description": "Implement HTTP data fetching in Angular v20+ using resource(), httpResource(), and HttpClient. Use for API calls, data loading with signals, request/response handling, and interceptors. Triggers on da", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/analogjs/angular-skills/blob/main/skills/angular-http/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 597, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T20:56:35Z"}, "embedding_text": "angular-http. Implement HTTP data fetching in Angular v20+ using resource(), httpResource(), and HttpClient. Use for API calls, data loading with signals, request/response handling, and interceptors. Triggers on da Platforms: claude_code."} +{"id": "32ffb3c1bda547245e87b4ac25b015252a9995e92a99c4ccea7f65bb0a994b79", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "decision-journal", "description": "Unified decision lifecycle: Pre-decision logging, post-decision review, failure classification, and calibration tracking. Absorbs: post-mortem-engine.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/decision/decision-journal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "decision-journal. Unified decision lifecycle: Pre-decision logging, post-decision review, failure classification, and calibration tracking. Absorbs: post-mortem-engine. Platforms: claude_code."} +{"id": "cf9cc9007a6f8a9dd62b31021ce4687267624773c6f0cc495b4853ce191d0a34", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code Platforms: claude_code."} +{"id": "61394891c278f9ad03e2976c713287321495618ffffba00a1792333fc50064f9", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "clean-comments", "description": "Remove unnecessary, redundant, or obvious code comments while preserving valuable explanations. Use when cleaning up comments, removing verbose documentation, simplifying inline comments, or preparing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/clean-comments/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "clean-comments. Remove unnecessary, redundant, or obvious code comments while preserving valuable explanations. Use when cleaning up comments, removing verbose documentation, simplifying inline comments, or preparing Platforms: claude_code."} +{"id": "f6a64055a22246626736705a5dc24f27e0a2d63860de7b888b21a78982403e7d", "repo_url": "https://github.com/aojdevstudio/finance-guru", "name": "fin-guru-research", "description": "Execute comprehensive market research workflows. Covers market intelligence gathering, sector analysis, security research, and competitive intelligence with temporal validation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aojdevstudio/finance-guru/blob/main/.claude/skills/fin-guru-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 309, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T14:29:45Z"}, "embedding_text": "fin-guru-research. Execute comprehensive market research workflows. Covers market intelligence gathering, sector analysis, security research, and competitive intelligence with temporal validation. Platforms: claude_code."} +{"id": "6071f3254d42438a194377269099e487cd13b4278ffab60c069e3f205290e848", "repo_url": "https://github.com/github/awesome-copilot", "name": "terraform-azurerm-set-diff-analyzer", "description": "Analyze Terraform plan JSON output for AzureRM Provider to distinguish between false-positive diffs (order-only changes in Set-type attributes) and actual resource changes. Use when reviewing terraform plan output for Azure resources like Application Gateway, Load Balancer, Firewall, Front Door, NSG, and other resources with Set-type attributes that cause spurious diffs due to internal ordering changes.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/awesome-copilot/blob/main/skills/terraform-azurerm-set-diff-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-azurerm-set-diff-analyzer"}, "quality": {"stars": 35479, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:00:34Z"}, "embedding_text": "terraform-azurerm-set-diff-analyzer. Analyze Terraform plan JSON output for AzureRM Provider to distinguish between false-positive diffs (order-only changes in Set-type attributes) and actual resource changes. Use when reviewing terraform plan output for Azure resources like Application Gateway, Load Balancer, Firewall, Front Door, NSG, and other resources with Set-type attributes that cause spurious diffs due to internal ordering changes. Platforms: claude_code."} +{"id": "7ee4a4a93ff202462026474b4b5e672a4986086dc7e6cdfc526360d663c2c24c", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "powerpoint-generator", "description": "Generate professional PowerPoint presentations with slides, charts, and transitions. Use for executive presentations, reports, and visual communication.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/_archive/telegram-polling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "powerpoint-generator. Generate professional PowerPoint presentations with slides, charts, and transitions. Use for executive presentations, reports, and visual communication. Platforms: claude_code."} +{"id": "c736e1e699016cc1176e92a6d5213e251fe77c3ec54ac281fda08337ff9bada7", "repo_url": "https://github.com/shuvonsec/claude-bug-bounty", "name": "triage-validation", "description": "Finding validation before writing any report \u2014 7-Question Gate (all 7 questions), 4 pre-submission gates, always-rejected list, conditionally valid with chain table, CVSS 3.1 quick reference, severity", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shuvonsec/claude-bug-bounty/blob/main/skills/triage-validation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3468, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T09:58:47Z"}, "embedding_text": "triage-validation. Finding validation before writing any report \u2014 7-Question Gate (all 7 questions), 4 pre-submission gates, always-rejected list, conditionally valid with chain table, CVSS 3.1 quick reference, severity Platforms: claude_code."} +{"id": "45bad63484069227b3f24f3e6680dde924de70bd6a87399bb1c1360811c1cf38", "repo_url": "https://github.com/aojdevstudio/finance-guru", "name": "fin-guru-checklist", "description": "Execute quality and compliance checklists for Finance Guru deliverables. Supports margin strategy, dividend framework, and general quality checklists.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aojdevstudio/finance-guru/blob/main/.claude/skills/fin-guru-checklist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 309, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T14:29:45Z"}, "embedding_text": "fin-guru-checklist. Execute quality and compliance checklists for Finance Guru deliverables. Supports margin strategy, dividend framework, and general quality checklists. Platforms: claude_code."} +{"id": "f962caec331fc89d5df3b8884ce950dcecba29336977cf7010b9f02dc6c7b9f5", "repo_url": "https://github.com/coollabsio/coolify-docs", "name": "adding-documentation-pages", "description": "Creates documentation pages for guides, tutorials, knowledge base articles, and troubleshooting content in docs/. Use when adding how-to guides, writing KB articles, creating troubleshooting docs, add", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/coollabsio/coolify-docs/blob/v4.x/.claude/skills/adding-documentation-pages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T02:08:02Z"}, "embedding_text": "adding-documentation-pages. Creates documentation pages for guides, tutorials, knowledge base articles, and troubleshooting content in docs/. Use when adding how-to guides, writing KB articles, creating troubleshooting docs, add Platforms: claude_code."} +{"id": "8779fdea624fa0e4a09b49a7c96ded851e5b179ac8490ff289197def611ec67a", "repo_url": "https://github.com/team-attention/hoyeon", "name": "browser-work", "description": "Recon-first browser automation. Orchestrator explores the site first via chromux,\nsaves a guide file with insights, then delegates execution to browser-explorer agent.\nUse when: \"/browser-work\", \"\ube0c\ub77c\uc6b0\uc800", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/codex/skills/hoyeon-browser-work/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "browser-work. Recon-first browser automation. Orchestrator explores the site first via chromux,\nsaves a guide file with insights, then delegates execution to browser-explorer agent.\nUse when: \"/browser-work\", \"\ube0c\ub77c\uc6b0\uc800 Platforms: claude_code."} +{"id": "4b96635ebd3ac99f1533fd232c442083327e2aaf9a0a8247d386cf8d7b372a99", "repo_url": "https://github.com/pedrohcgs/claude-code-my-workflow", "name": "review-paper", "description": "Comprehensive manuscript review covering argument structure, econometric specification, citation completeness, and potential referee objections", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pedrohcgs/claude-code-my-workflow/blob/main/.claude/skills/review-paper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T18:20:30Z"}, "embedding_text": "review-paper. Comprehensive manuscript review covering argument structure, econometric specification, citation completeness, and potential referee objections Platforms: claude_code."} +{"id": "ccc396a1300fb5c51d5d4a1608fffd329891d0da8a4debef76df83cd41aaed74", "repo_url": "https://github.com/letta-ai/lettabot", "name": "ordercli", "description": "Foodora-only CLI for checking past orders and active order status (Deliveroo WIP).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/ordercli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "ordercli. Foodora-only CLI for checking past orders and active order status (Deliveroo WIP). Platforms: claude_code."} +{"id": "e259f229359d9e3d1bb786a9794921033e63031c0ac039d4e47d33d93e1cbea6", "repo_url": "https://github.com/activepieces/activepieces", "name": "agent-browser", "description": "Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/activepieces/activepieces/blob/main/.agents/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22910, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:13:57Z"}, "embedding_text": "agent-browser. Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web a Platforms: claude_code."} +{"id": "3d659b90b5e1cb3f6ae733e8cda7f580f59d56ed8ea47072547defec8899d506", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "team-rituals", "description": "Design a lightweight set of named, templated \u201cGolden Rituals\u201d (team operating cadence) and produce a Team Rituals Pack (ritual inventory, ritual specs + agendas, onboarding primer, rollout + iteration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/team-rituals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "team-rituals. Design a lightweight set of named, templated \u201cGolden Rituals\u201d (team operating cadence) and produce a Team Rituals Pack (ritual inventory, ritual specs + agendas, onboarding primer, rollout + iteration Platforms: claude_code."} +{"id": "8ee63f78c6ad570a8c1bdf9be1879ae0fafaa1a90a2f8454932ee9962733baf4", "repo_url": "https://github.com/camoa/claude-skills", "name": "phase-detector", "description": "Use when determining task phase - analyzes task file to identify Phase 1, 2, or 3 for a specific task", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/phase-detector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "phase-detector. Use when determining task phase - analyzes task file to identify Phase 1, 2, or 3 for a specific task Platforms: claude_code."} +{"id": "0226d92b562461a00e151c231c37976e6921357030a3a8c798e28859e22ff5a1", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "session-intelligence-harvester", "description": "This skill should be used after productive sessions to extract learnings and route them to appropriate Reusable Intelligence Infrastructure (RII) components. Use when corrections were made, format dri", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/session-intelligence-harvester/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "session-intelligence-harvester. This skill should be used after productive sessions to extract learnings and route them to appropriate Reusable Intelligence Infrastructure (RII) components. Use when corrections were made, format dri Platforms: claude_code."} +{"id": "019f43067520f9b37b3ebc5dc8d6376e0b4f9ed925c006759718944f0402f6e3", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "ai-collaboration-standards", "description": "Prevent AI hallucination and ensure evidence-based responses when analyzing code or making suggestions.\nUse when: analyzing code, making recommendations, providing options, or when user asks about confidence/certainty.\nKeywords: certainty, assumption, inference, evidence, source, \u78ba\u5b9a\u6027, \u63a8\u6e2c, \u5047\u8a2d, \u4f86\u6e90, \u8b49\u64da.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/ai-collaboration-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-collaboration-standards"}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "ai-collaboration-standards. Prevent AI hallucination and ensure evidence-based responses when analyzing code or making suggestions.\nUse when: analyzing code, making recommendations, providing options, or when user asks about confidence/certainty.\nKeywords: certainty, assumption, inference, evidence, source, \u78ba\u5b9a\u6027, \u63a8\u6e2c, \u5047\u8a2d, \u4f86\u6e90, \u8b49\u64da. Platforms: claude_code."} +{"id": "0a3fe9772baccfeae4cfcb4ae47d9b93a7c3e7c2fe2e0cee5a9144d40c128c7c", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "cross-functional-collaboration", "description": "Help users work effectively across functions. Use when someone is navigating PM-engineering relationships, resolving cross-team conflicts, building product trios, or improving handoffs between design,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/cross-functional-collaboration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "cross-functional-collaboration. Help users work effectively across functions. Use when someone is navigating PM-engineering relationships, resolving cross-team conflicts, building product trios, or improving handoffs between design, Platforms: claude_code."} +{"id": "6198f8ad55e3fde55d5fc630bb3e1a5d91101a1ad43d243813d59d9c6b2446c2", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "fake-demo-skill", "description": "Use when you want a clearly fake but valid skill fixture for local smoke demos and parser coverage in tests.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/fixtures/pass/multi/global/skills/fake-demo-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "fake-demo-skill. Use when you want a clearly fake but valid skill fixture for local smoke demos and parser coverage in tests. Platforms: claude_code."} +{"id": "69044ea6e96c1341318c17d0cb5cbfbf4126aa033a451a0a7d77cd25e3499e63", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "platform-infrastructure", "description": "Produce a Platform & Infrastructure Improvement Pack (shared capabilities plan, reliability/performance/privacy targets, scaling triggers, analytics + discoverability decisions, execution roadmap). Us", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/platform-infrastructure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "platform-infrastructure. Produce a Platform & Infrastructure Improvement Pack (shared capabilities plan, reliability/performance/privacy targets, scaling triggers, analytics + discoverability decisions, execution roadmap). Us Platforms: claude_code."} +{"id": "0e91a58eed5a56b2a6061eaa0fde4565407137b631c5b3ab2994d8b94abfaa94", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "tab-accordion", "description": "When the user wants to add or optimize tab or accordion components for content organization. Also use when the user mentions \"tab component,\" \"accordion,\" \"expandable content,\" \"collapsible sections,\" \"tabbed content,\" \"FAQ accordion,\" \"how-to tabs,\" \"horizontal tabs,\" \"vertical accordion,\" \"content in tabs,\" \"hidden content SEO,\" \"details summary,\" or \"disclosure widget.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/content/tab-accordion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tab-accordion"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "tab-accordion. When the user wants to add or optimize tab or accordion components for content organization. Also use when the user mentions \"tab component,\" \"accordion,\" \"expandable content,\" \"collapsible sections,\" \"tabbed content,\" \"FAQ accordion,\" \"how-to tabs,\" \"horizontal tabs,\" \"vertical accordion,\" \"content in tabs,\" \"hidden content SEO,\" \"details summary,\" or \"disclosure widget.\" Platforms: claude_code."} +{"id": "8b174a86c00a21f6c229ebd072223d56ba3c20257d3e29400ac0dc649489071b", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "ux-evaluator", "description": "This skill should be used when evaluating UI components against UX best practices. Use for reviewing buttons, navigation elements, spacing, visual hierarchy, or any interface element. Provides a syste", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/ux-evaluator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "ux-evaluator. This skill should be used when evaluating UI components against UX best practices. Use for reviewing buttons, navigation elements, spacing, visual hierarchy, or any interface element. Provides a syste Platforms: claude_code."} +{"id": "f54f10708dd000a25be449b1c0cbf483dbc29f03e4fde82d85c48213ea7b136e", "repo_url": "https://github.com/skilluse/skilluse", "name": "issue", "description": "Create and manage local Issue specs (specs/issues/) - individual work items with testable acceptance criteria. Use for \"create issue\", \"new task\", \"list issues\", \"check issues\", \"pick issue\". NOTE - F", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skilluse/skilluse/blob/main/.claude/skills/issue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T16:23:26Z"}, "embedding_text": "issue. Create and manage local Issue specs (specs/issues/) - individual work items with testable acceptance criteria. Use for \"create issue\", \"new task\", \"list issues\", \"check issues\", \"pick issue\". NOTE - F Platforms: claude_code."} +{"id": "abff43cd34bf4654d6b863553b4da13ba2fce5cbcb1b980f81512ae94820c748", "repo_url": "https://github.com/clerk/skills", "name": "clerk", "description": "Clerk authentication router. Use when user asks about adding authentication, setting up Clerk, custom sign-in flows, Next.js patterns, organizations, syncing users, or testing. Automatically routes to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/clerk/skills/blob/main/.agents/skills/audit-clerk-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:23:54Z"}, "embedding_text": "clerk. Clerk authentication router. Use when user asks about adding authentication, setting up Clerk, custom sign-in flows, Next.js patterns, organizations, syncing users, or testing. Automatically routes to Platforms: claude_code."} +{"id": "b8cd0237887956c6730c140fb934185d4b9915d4bad7476e5df0fa2936d022c6", "repo_url": "https://github.com/videojs/v10", "name": "api", "description": "API design and developer experience for TypeScript libraries. Use when designing APIs, reviewing architecture, evaluating DX, or checking ergonomics. Covers extensibility, progressive disclosure, type", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/videojs/v10/blob/main/.claude/skills/api-reference/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 822, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:11:34Z"}, "embedding_text": "api. API design and developer experience for TypeScript libraries. Use when designing APIs, reviewing architecture, evaluating DX, or checking ergonomics. Covers extensibility, progressive disclosure, type Platforms: claude_code."} +{"id": "aef247919cbf66a2f7766bc7b0df5f55c47d5d29d99ebbcec74b479ab1a18f15", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "real-review-skill", "description": "Use when reviewing pull requests for regressions, missing tests, and release-blocking issues across multiple service boundaries.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/fixtures/fail/multi-mixed/global/skills/real-review-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "real-review-skill. Use when reviewing pull requests for regressions, missing tests, and release-blocking issues across multiple service boundaries. Platforms: claude_code."} +{"id": "4fe00383d51937ae2087cdb7b75a72a092ecd3aaa3569270f0b889d5f5dfdfc8", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "1k-i18n", "description": "Internationalization and translation management for OneKey. Use when adding translations, displaying text, handling locales, or managing translation keys. NEVER modify auto-generated translation files", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/1k-i18n/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "1k-i18n. Internationalization and translation management for OneKey. Use when adding translations, displaying text, handling locales, or managing translation keys. NEVER modify auto-generated translation files Platforms: claude_code."} +{"id": "adfc1088ca47f36713ecb71f6c5b119498fb8ca3e20b6aacae1fbe865226a3d3", "repo_url": "https://github.com/activepieces/activepieces", "name": "playwright-e2e-testing", "description": "Playwright modern end-to-end testing framework with cross-browser automation, auto-wait, and built-in test runner", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/activepieces/activepieces/blob/main/.agents/skills/playwright-e2e-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22910, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:13:57Z"}, "embedding_text": "playwright-e2e-testing. Playwright modern end-to-end testing framework with cross-browser automation, auto-wait, and built-in test runner Platforms: claude_code."} +{"id": "7971cedbedc68ccc4a393286d11d93ec2b589e7bbac1f59517cf73f5dd05cade", "repo_url": "https://github.com/jezweb/claude-skills", "name": "fork-discipline", "description": "Audit and enforce the core/client boundary in multi-client projects. Detects where shared platform code is tangled with client-specific code, finds hardcoded client checks, config files that replace i", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/dev-tools/skills/fork-discipline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "fork-discipline. Audit and enforce the core/client boundary in multi-client projects. Detects where shared platform code is tangled with client-specific code, finds hardcoded client checks, config files that replace i Platforms: claude_code."} +{"id": "1c8c5cd1cffb8e99fcecc25ab260f060fc7e25c0c6b436ac245532d6bf40c394", "repo_url": "https://github.com/letta-ai/lettabot", "name": "obsidian", "description": "Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/obsidian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "obsidian. Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli. Platforms: claude_code."} +{"id": "4fd1ea9622afccd80794d88ab838df6bd9ec3bd8f22a20e1bd7a7e324f3d2a41", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "paid-creative-ai", "description": "When the user wants to create AI-generated ad creative, test performance creative, manage creative fatigue, or optimize paid media with AI tools. Also use when the user mentions 'ad creative,' 'performance creative,' 'creative testing,' 'creative fatigue,' 'Meta ads,' 'Google ads,' 'TikTok ads,' 'AI ads,' 'ad budget,' 'ROAS,' 'Advantage+,' or 'Performance Max.' This skill covers AI-powered paid creative from generation through performance optimization. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/paid-creative-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install paid-creative-ai"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "paid-creative-ai. When the user wants to create AI-generated ad creative, test performance creative, manage creative fatigue, or optimize paid media with AI tools. Also use when the user mentions 'ad creative,' 'performance creative,' 'creative testing,' 'creative fatigue,' 'Meta ads,' 'Google ads,' 'TikTok ads,' 'AI ads,' 'ad budget,' 'ROAS,' 'Advantage+,' or 'Performance Max.' This skill covers AI-powered paid creative from generation through performance optimization. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "a4688acc82491845667a86524dafcded47631e7dfccf2fe69f84e7507f51b57e", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "skill-creator", "description": "Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 2582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-29T05:03:47Z"}, "embedding_text": "skill-creator. Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets. Platforms: claude_code."} +{"id": "81e52fceb864bb0bd51a614e398c631ca70a655a163c4303ed8831ac3c43a731", "repo_url": "https://github.com/dojoengine/dojo.js", "name": "dojo-wallets", "description": "Use when managing wallets and accounts in dojo.js games.\nTriggers: burner wallet, useBurner, create wallet, connect wallet, BurnerProvider,\naccount management, predeployed, session wallet", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dojoengine/dojo.js/blob/main/.claude/skills/dojo-wallets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T09:36:59Z"}, "embedding_text": "dojo-wallets. Use when managing wallets and accounts in dojo.js games.\nTriggers: burner wallet, useBurner, create wallet, connect wallet, BurnerProvider,\naccount management, predeployed, session wallet Platforms: claude_code."} +{"id": "0c6526eb6f360f44485cf4eca711a39d3822a7a58f464cda9f58b17f2bcac81f", "repo_url": "https://github.com/vaayne/agent-kit", "name": "mcp-tokenflux-images", "description": "Generate images using AI models via TokenFlux API. Use when creating AI-generated images, artwork, or visual content. Triggers on \"generate image\", \"create picture\", \"AI art\", \"image generation\", \"Tok", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vaayne/agent-kit/blob/main/skills/cf-email/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 50, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:35:44Z"}, "embedding_text": "mcp-tokenflux-images. Generate images using AI models via TokenFlux API. Use when creating AI-generated images, artwork, or visual content. Triggers on \"generate image\", \"create picture\", \"AI art\", \"image generation\", \"Tok Platforms: claude_code."} +{"id": "4ebe6a1279373127b318e6b1e21ce0fb89be7f12adba4cef4dac2ca8ee2adde3", "repo_url": "https://github.com/vstorm-co/pydantic-deepagents", "name": "data-analysis", "description": "Comprehensive data analysis skill for CSV files using Python and pandas", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vstorm-co/pydantic-deepagents/blob/main/examples/full_app/skills/data-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 888, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T22:19:44Z"}, "embedding_text": "data-analysis. Comprehensive data analysis skill for CSV files using Python and pandas Platforms: claude_code."} +{"id": "328ceb6f9238dfbf215ba51cc10595ae802bc71897a52fb912ec0bd59499501f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "parametric-scribe", "description": "Enables \"Time Machine\" coding. Records tasks as a Recipe and allows intelligent replay/modification of history.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cycleaddict/parametric-scribe/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install parametric-scribe"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "parametric-scribe. Enables \"Time Machine\" coding. Records tasks as a Recipe and allows intelligent replay/modification of history. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "491c69d51c9a2d21743540d172fa8f7e6a0e452228629f30f69a96eb01850dcb", "repo_url": "https://github.com/ant-design/ant-design-cli", "name": "antd", "description": "Use when the user's task involves Ant Design (antd) \u2014 writing antd components, debugging antd issues, querying antd APIs/props/tokens/demos, migrating between antd versions, or analyzing antd usage in", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ant-design/ant-design-cli/blob/main/skills/antd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 226, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:26:38Z"}, "embedding_text": "antd. Use when the user's task involves Ant Design (antd) \u2014 writing antd components, debugging antd issues, querying antd APIs/props/tokens/demos, migrating between antd versions, or analyzing antd usage in Platforms: claude_code."} +{"id": "400f353653d6f67bdb28c23c691a86f10c03c65e1bb56c26675891c176a6a2b2", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "docgen", "description": "[UDS] Generate usage documentation from project sources", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/ac-coverage-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "docgen. [UDS] Generate usage documentation from project sources Platforms: claude_code."} +{"id": "fca82ffbd8e769caaea88a12d2b29150c484f8f6eb504744ba0f1f8a8f5d3e6a", "repo_url": "https://github.com/codeyousef/summon", "name": "summon", "description": "Use when developing applications with the Summon Kotlin Multiplatform UI framework. Provides patterns, conventions, and guidance for components, state management, modifiers, routing, SSR, and cross-pl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codeyousef/summon/blob/main/.claude/skills/summon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 157, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-10T07:05:57Z"}, "embedding_text": "summon. Use when developing applications with the Summon Kotlin Multiplatform UI framework. Provides patterns, conventions, and guidance for components, state management, modifiers, routing, SSR, and cross-pl Platforms: claude_code."} +{"id": "6930416fa1e211301442d17e8f39e45ee6fb86e5bb69819962863b3eb144cd36", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "bib-verify", "description": "Verify a BibTeX file for hallucinated or fabricated references by cross-checking every entry against CrossRef, arXiv, and DBLP. Reports each reference as verified, suspect, or not found, with field-level mismatch details (title, authors, year, DOI). Use when the user wants to check a .bib file for fake citations, validate references in a paper, or audit bibliography entries for accuracy.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/bib-verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bib-verify"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T09:40:18Z"}, "embedding_text": "bib-verify. Verify a BibTeX file for hallucinated or fabricated references by cross-checking every entry against CrossRef, arXiv, and DBLP. Reports each reference as verified, suspect, or not found, with field-level mismatch details (title, authors, year, DOI). Use when the user wants to check a .bib file for fake citations, validate references in a paper, or audit bibliography entries for accuracy. Platforms: claude_code."} +{"id": "d25912cd27c47e5a289db4aab15d33dcb6b50f8e1d20ecf8695279f895614053", "repo_url": "https://github.com/joannis/claude-skills", "name": "wendy", "description": "Expert guidance on building and deploying apps to WendyOS edge devices. Use when developers mention: (1) Wendy or WendyOS, (2) wendy CLI commands, (3) wendy.json or entitlements, (4) deploying apps to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joannis/claude-skills/blob/main/wendy-cloud-iterate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T20:09:23Z"}, "embedding_text": "wendy. Expert guidance on building and deploying apps to WendyOS edge devices. Use when developers mention: (1) Wendy or WendyOS, (2) wendy CLI commands, (3) wendy.json or entitlements, (4) deploying apps to Platforms: claude_code."} +{"id": "4703349d549bb4c77fbe1aa4b0c44f69de1d0ea5ad2c8775e2a211d7959a9fd2", "repo_url": "https://github.com/trailofbits/skills", "name": "second-opinion", "description": "Runs external LLM code reviews (OpenAI Codex or Google Gemini CLI) on uncommitted changes, branch diffs, or specific commits. Use when the user asks for a second opinion, external review, codex review, gemini review, or mentions /second-opinion.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trailofbits/skills/blob/main/plugins/second-opinion/skills/second-opinion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install second-opinion"}, "quality": {"stars": 5800, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:28:36Z"}, "embedding_text": "second-opinion. Runs external LLM code reviews (OpenAI Codex or Google Gemini CLI) on uncommitted changes, branch diffs, or specific commits. Use when the user asks for a second opinion, external review, codex review, gemini review, or mentions /second-opinion. Platforms: claude_code."} +{"id": "fe824fe23084ee806d3303e64d7cf3a8c6d6c90ea242a4e92b94e25b264fc27e", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "pytorch-fsdp", "description": "Expert guidance for Fully Sharded Data Parallel training with PyTorch FSDP - parameter sharding, mixed precision, CPU offloading, FSDP2", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/pytorch-fsdp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "pytorch-fsdp. Expert guidance for Fully Sharded Data Parallel training with PyTorch FSDP - parameter sharding, mixed precision, CPU offloading, FSDP2 Platforms: linux, macos."} +{"id": "1985ac240fddab135f45ba32919314c94d2617d6764b56270a5ae1c96e16bc99", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "visual-content", "description": "When the user wants to plan, create, or repurpose visual content (images, infographics, social post images) across channels. Also use when the user mentions \"content images,\" \"social media images,\" \"infographic,\" \"visual content,\" \"post image,\" \"image specs,\" \"visual repurposing,\" \"content visuals,\" or \"image for social post.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/visual-content/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install visual-content"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "visual-content. When the user wants to plan, create, or repurpose visual content (images, infographics, social post images) across channels. Also use when the user mentions \"content images,\" \"social media images,\" \"infographic,\" \"visual content,\" \"post image,\" \"image specs,\" \"visual repurposing,\" \"content visuals,\" or \"image for social post.\" Platforms: claude_code."} +{"id": "012c2c1bf6f03e35f15a4c9e683897ea8a02843795f6638dc90430c5e215cd53", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "content-to-pipeline", "description": "When the user wants to turn content into revenue, build a content-led GTM motion, reverse engineer distribution, or repurpose content across platforms. Also use when the user mentions 'content marketing,' 'content-led growth,' 'content to pipeline,' 'distribution,' 'content repurposing,' 'content strategy,' 'thought leadership,' 'newsletter,' 'content flywheel,' 'organic growth.' This skill covers content-to-revenue systems from creation through pipeline attribution. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/content-to-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-to-pipeline"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "content-to-pipeline. When the user wants to turn content into revenue, build a content-led GTM motion, reverse engineer distribution, or repurpose content across platforms. Also use when the user mentions 'content marketing,' 'content-led growth,' 'content to pipeline,' 'distribution,' 'content repurposing,' 'content strategy,' 'thought leadership,' 'newsletter,' 'content flywheel,' 'organic growth.' This skill covers content-to-revenue systems from creation through pipeline attribution. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "49058993de0bcf705108ff08c43bf80d9f32e1b9bc2f8618156eea39f46ef2e0", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "finviz-screener", "description": "Build and open FinViz screener URLs from natural language requests. Use when user wants to screen stocks, find stocks matching criteria, filter by fundamentals or technicals, or asks to open FinViz wi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/finviz-screener/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "finviz-screener. Build and open FinViz screener URLs from natural language requests. Use when user wants to screen stocks, find stocks matching criteria, filter by fundamentals or technicals, or asks to open FinViz wi Platforms: claude_code."} +{"id": "16d31bf04a9444cf283feb31d60130c6a318ccfea34b671eebe74183e489eb04", "repo_url": "https://github.com/onurkanbakirci/awesome-skills", "name": "planning-with-files", "description": "Transforms workflow to use Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Use when starting complex tasks, multi-step projects, research tasks, or when t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onurkanbakirci/awesome-skills/blob/main/public/skills/06f65bbf-3f3a-4a19-a3c2-46ec20d03f26/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T14:03:20Z"}, "embedding_text": "planning-with-files. Transforms workflow to use Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Use when starting complex tasks, multi-step projects, research tasks, or when t Platforms: claude_code."} +{"id": "b5be9aebd72e7885ac849ea75f6a960691989925a782d2cea693d6d7f60d0fab", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "referral-program", "description": "When the user wants to plan, implement, or optimize referral program strategy. Also use when the user mentions \"referral program,\" \"referral marketing,\" \"user referral,\" \"refer-a-friend,\" \"word-of-mouth growth,\" \"referral rewards,\" \"referral tracking,\" \"referral code,\" \"referral incentives,\" or \"viral loop.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/referral-program/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install referral-program"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "referral-program. When the user wants to plan, implement, or optimize referral program strategy. Also use when the user mentions \"referral program,\" \"referral marketing,\" \"user referral,\" \"refer-a-friend,\" \"word-of-mouth growth,\" \"referral rewards,\" \"referral tracking,\" \"referral code,\" \"referral incentives,\" or \"viral loop.\" Platforms: claude_code."} +{"id": "51c0f9cb8a39219876d862b7ab49ca046f2a833eef2f4312bc04307571dda67e", "repo_url": "https://github.com/agent-sh/agnix", "name": "with-model", "description": "Use when testing valid model configuration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/valid/skills/with-model/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "with-model. Use when testing valid model configuration Platforms: claude_code."} +{"id": "2da775edc4b0e0121418a7f10ae2069a0a616be1c86c896bd7aa6f15bb018f33", "repo_url": "https://github.com/hannesill/m4", "name": "gcs-calculation", "description": "Extract and calculate Glasgow Coma Scale (GCS) for ICU patients in MIMIC-IV. Use for neurological assessment, consciousness monitoring, or trauma severity scoring.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/benchmark/tasks/gcs/eicu-gcs/skills/gcs-calculation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "gcs-calculation. Extract and calculate Glasgow Coma Scale (GCS) for ICU patients in MIMIC-IV. Use for neurological assessment, consciousness monitoring, or trauma severity scoring. Platforms: claude_code."} +{"id": "f85e74dcb002d10541c0e0b8ad7510d7d38899b3a4ac63afaa53080251f9533f", "repo_url": "https://github.com/yaojingang/yao-meta-skill", "name": "frontend-review", "description": "Review frontend code for accessibility, risky UI security issues, missing states, and common UX regressions. Use when asked to review React, UI, frontend components, forms, a11y, or pre-merge frontend", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yaojingang/yao-meta-skill/blob/main/.previews/yao-meta-skill-v2-report-demo/geo-content-brief-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1523, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:42Z"}, "embedding_text": "frontend-review. Review frontend code for accessibility, risky UI security issues, missing states, and common UX regressions. Use when asked to review React, UI, frontend components, forms, a11y, or pre-merge frontend Platforms: claude_code."} +{"id": "3620af3269374dacada3f63c79f2417bafecbf64f61d7787869185cd6061567b", "repo_url": "https://github.com/agent-sh/agnix", "name": "test-skill", "description": "Use when testing per-client skill rules", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/per_client_skills/.agents/skills/test-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "test-skill. Use when testing per-client skill rules Platforms: claude_code."} +{"id": "abd4acc2d871f69eaa80935ff85df31cb3426e902500499a58aea712cbb3a6a3", "repo_url": "https://github.com/congdon1207/agents.md", "name": "security-review", "description": "Use when reviewing code for security vulnerabilities, implementing authorization, or ensuring data protection.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/arch-security-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "security-review. Use when reviewing code for security vulnerabilities, implementing authorization, or ensuring data protection. Platforms: claude_code."} +{"id": "c756b32e1bbc0da679b9e287e7d41d18e0a9226f00d0131313babd616c58475a", "repo_url": "https://github.com/hannesill/m4", "name": "first-icu-stay", "description": "Identify first ICU stays and first hospital admissions in MIMIC-IV for cohort selection. Use to exclude readmissions, create independent observations, or build adult patient cohorts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/src/m4/skills/clinical/first-icu-stay/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "first-icu-stay. Identify first ICU stays and first hospital admissions in MIMIC-IV for cohort selection. Use to exclude readmissions, create independent observations, or build adult patient cohorts. Platforms: claude_code."} +{"id": "fd2b5a4c0823928c614cb388189ac47c337ddb1dda34ae27c8ef5ee43084c929", "repo_url": "https://github.com/systeminit/swamp", "name": "ddd", "description": "Domain Driven Design guidance for TypeScript/Deno codebases. Apply when writing or modifying code to choose appropriate DDD building blocks (entities, value objects, aggregates, domain services, repos", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/systeminit/swamp/blob/main/.claude/skills/ddd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 448, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:28:07Z"}, "embedding_text": "ddd. Domain Driven Design guidance for TypeScript/Deno codebases. Apply when writing or modifying code to choose appropriate DDD building blocks (entities, value objects, aggregates, domain services, repos Platforms: claude_code."} +{"id": "4f4fda78dd01a4f832ef08337af581e030acd7ae24c798cedaa954ac9b8c08b4", "repo_url": "https://github.com/congdon1207/agents.md", "name": "readme-improvement", "description": "Use when the user asks to create or improve a README file, project documentation, getting started guide, or installation instructions. Triggers on keywords like \"README\", \"getting started\", \"installat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/readme-improvement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "readme-improvement. Use when the user asks to create or improve a README file, project documentation, getting started guide, or installation instructions. Triggers on keywords like \"README\", \"getting started\", \"installat Platforms: claude_code."} +{"id": "c419e4e0947c70efcdf1fd398b8bc652f64d15f20e67ec03e11fce6bdb191cf7", "repo_url": "https://github.com/letta-ai/lettabot", "name": "openai-whisper-api", "description": "Transcribe audio via OpenAI Audio Transcriptions API (Whisper).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/openai-whisper-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "openai-whisper-api. Transcribe audio via OpenAI Audio Transcriptions API (Whisper). Platforms: claude_code."} +{"id": "c5c93f69b4f7ff7ecc84a0faa4eb58723ef0ff369651310eaad430afe2c0b335", "repo_url": "https://github.com/agent-sh/agnix", "name": "agent-without-context-skill", "description": "Use when testing agent without context validation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/invalid/skills/agent-without-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "agent-without-context-skill. Use when testing agent without context validation Platforms: claude_code."} +{"id": "2cbb360e2e4e61129f14a68af525e94f9fbee3fc424e0d864a67b10affddef45", "repo_url": "https://github.com/rm2thaddeus/pixel_detective", "name": "docker-helper", "description": "Inspect Docker containers, volumes, and compose services for Pixel Detective and Dev Graph. Use when the user asks to check Docker state, list containers or volumes, or extract data from Docker withou", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rm2thaddeus/pixel_detective/blob/main/skills/docker-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-04T13:13:21Z"}, "embedding_text": "docker-helper. Inspect Docker containers, volumes, and compose services for Pixel Detective and Dev Graph. Use when the user asks to check Docker state, list containers or volumes, or extract data from Docker withou Platforms: claude_code."} +{"id": "ebabebd98423f607a81980f3716526f5cc5d830b3aa5b38623bde911ee178925", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-abap", "description": "Comprehensive ABAP development skill for SAP systems. Use when writing ABAP code,\nworking with internal tables, structures, ABAP SQL, object-oriented programming,\nRAP (RESTful Application Programming", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-abap-cds/skills/sap-abap-cds/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-abap. Comprehensive ABAP development skill for SAP systems. Use when writing ABAP code,\nworking with internal tables, structures, ABAP SQL, object-oriented programming,\nRAP (RESTful Application Programming Platforms: claude_code."} +{"id": "2445e0ea0961714ad8d0297ee508dc24c6392ba4865849df69a8d4ba4ff56e6a", "repo_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit", "name": "plain-language", "description": "Simplification and readability techniques. Use when writing for broad audiences or simplifying complex content. Covers active voice, short sentences, jargon elimination, and accessibility principles f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit/blob/main/examples/writing/skills/plain-language/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T12:36:10Z"}, "embedding_text": "plain-language. Simplification and readability techniques. Use when writing for broad audiences or simplifying complex content. Covers active voice, short sentences, jargon elimination, and accessibility principles f Platforms: claude_code."} +{"id": "3472128a46187c7cbef3a8eda38534e2c5db39e20773860df36964d2fc2ac20f", "repo_url": "https://github.com/hannesill/m4", "name": "apsiii-score", "description": "Calculate APACHE III (Acute Physiology Score III) for ICU patients in MIMIC-IV. Use for mortality prediction, severity stratification, case-mix adjustment, or risk-adjusted outcome comparisons.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/benchmark/tasks/apsiii/mimic-apsiii-24h-raw/skills/apsiii-score/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "apsiii-score. Calculate APACHE III (Acute Physiology Score III) for ICU patients in MIMIC-IV. Use for mortality prediction, severity stratification, case-mix adjustment, or risk-adjusted outcome comparisons. Platforms: claude_code."} +{"id": "3817df148303e8e57d7f1263efc9b1524795309ec4a063eb0fe0ba0eb7cdc9d2", "repo_url": "https://github.com/tomkrikorian/visionosagents", "name": "tkr-skill-writer", "description": "Guide for creating and structuring skills with consistent formatting, clear documentation, and proper reference organization. Use when creating new skills or updating existing skill documentation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tomkrikorian/visionosagents/blob/main/skills/tkr-skill-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T00:27:41Z"}, "embedding_text": "tkr-skill-writer. Guide for creating and structuring skills with consistent formatting, clear documentation, and proper reference organization. Use when creating new skills or updating existing skill documentation. Platforms: claude_code."} +{"id": "a091c6e47cba0810145b2330be63a19f7c67f5d6b1796d3b63e308b5088c61fe", "repo_url": "https://github.com/hannesill/m4", "name": "lods-score", "description": "Calculate LODS (Logistic Organ Dysfunction Score) for ICU patients in MIMIC-IV. Use for organ dysfunction assessment across 6 systems with weighted scoring.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/src/m4/skills/clinical/lods-score/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "lods-score. Calculate LODS (Logistic Organ Dysfunction Score) for ICU patients in MIMIC-IV. Use for organ dysfunction assessment across 6 systems with weighted scoring. Platforms: claude_code."} +{"id": "7cd43c9bb8308e4ef2fb1d29bb5777fcce890a92e7a48f808603788175069e52", "repo_url": "https://github.com/paid-tw/skills", "name": "kryptogo-pay", "description": "Provides KryptoGO Payment integration overview and guides users to the appropriate skill. Use when starting KryptoGO crypto payment integration, setting up environment, or needing general guidance abo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paid-tw/skills/blob/main/plugins/kryptogo-pay/skills/kryptogo-pay-checkout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 260, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T01:10:18Z"}, "embedding_text": "kryptogo-pay. Provides KryptoGO Payment integration overview and guides users to the appropriate skill. Use when starting KryptoGO crypto payment integration, setting up environment, or needing general guidance abo Platforms: claude_code."} +{"id": "117ef84c85c2844803e803a74e75f455e003380d2416624251b13901ef5f0432", "repo_url": "https://github.com/blueberrycongee/termcanvas", "name": "investigate", "description": "Systematic debugging skill. Use when encountering a bug, test failure, unexpected behavior, or when asked to \"investigate\", \"debug\", \"diagnose\", or \"figure out why\". Enforces root-cause-first discipli", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blueberrycongee/termcanvas/blob/main/skills/skills/investigate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 327, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T23:40:31Z"}, "embedding_text": "investigate. Systematic debugging skill. Use when encountering a bug, test failure, unexpected behavior, or when asked to \"investigate\", \"debug\", \"diagnose\", or \"figure out why\". Enforces root-cause-first discipli Platforms: claude_code."} +{"id": "8b8c98cbc26d6f1bdf3c71d244e9ed5f81feb0148c75d8e58836a8809ab00807", "repo_url": "https://github.com/kukapay/crypto-skills", "name": "trading-strategist", "description": "Provides trading strategies for cryptocurrencies based on Binance market data, calculated technical analysis indicators, and aggregated market sentiment from crypto RSS news feeds. Use when users ask", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kukapay/crypto-skills/blob/main/skills/trading-strategist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-04T16:18:23Z"}, "embedding_text": "trading-strategist. Provides trading strategies for cryptocurrencies based on Binance market data, calculated technical analysis indicators, and aggregated market sentiment from crypto RSS news feeds. Use when users ask Platforms: claude_code."} +{"id": "a30ded0244b067bc953b6886ce224844fc91765a984a7bdaf9a28e44016d3626", "repo_url": "https://github.com/agent-sh/agnix", "name": "too-many-injections-skill", "description": "Use when testing injection limit validation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/invalid/skills/too-many-injections/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "too-many-injections-skill. Use when testing injection limit validation Platforms: claude_code."} +{"id": "d00bba04345ded0356d99375f087e7220c9f7a8ced62f11242175187ad4dcd29", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "lead-enrichment", "description": "When the user wants to build data enrichment workflows, score leads against ICP, set up Clay waterfalls, or improve contact data quality. Also use when the user mentions 'enrichment,' 'data enrichment,' 'Clay,' 'waterfall enrichment,' 'ICP scoring,' 'lead scoring,' 'intent data,' 'contact verification,' 'Apollo,' 'ZoomInfo,' or 'data quality.' This skill covers lead enrichment waterfalls, ICP scoring frameworks, and contact verification systems. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/lead-enrichment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install lead-enrichment"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "lead-enrichment. When the user wants to build data enrichment workflows, score leads against ICP, set up Clay waterfalls, or improve contact data quality. Also use when the user mentions 'enrichment,' 'data enrichment,' 'Clay,' 'waterfall enrichment,' 'ICP scoring,' 'lead scoring,' 'intent data,' 'contact verification,' 'Apollo,' 'ZoomInfo,' or 'data quality.' This skill covers lead enrichment waterfalls, ICP scoring frameworks, and contact verification systems. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "33ab796fd70ed5a4279e8d3bc11402e622e4db14829cce0f9642efa7581b3c40", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "markdown-token-optimizer", "description": "Analyzes markdown files for token efficiency. TRIGGERS: optimize markdown, reduce tokens, token count, token bloat, too many tokens, make concise, shrink file, file too large, optimize for AI, token efficiency, verbose markdown, reduce file size", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/markdown-token-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install markdown-token-optimizer"}, "quality": {"stars": 225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:17:52Z"}, "embedding_text": "markdown-token-optimizer. Analyzes markdown files for token efficiency. TRIGGERS: optimize markdown, reduce tokens, token count, token bloat, too many tokens, make concise, shrink file, file too large, optimize for AI, token efficiency, verbose markdown, reduce file size Platforms: claude_code."} +{"id": "3f79ab81069adb7c3a232603a9a94b42b29bdc6cf360ba4fa711856ab8d6ed98", "repo_url": "https://github.com/trailofbits/skills", "name": "debug-buttercup", "description": "Debugs the Buttercup CRS (Cyber Reasoning System) running on Kubernetes. Use when diagnosing pod crashes, restart loops, Redis failures, resource pressure, disk saturation, DinD issues, or any service misbehavior in the crs namespace. Covers triage, log analysis, queue inspection, and common failure patterns for: redis, fuzzer-bot, coverage-bot, seed-gen, patcher, build-bot, scheduler, task-server, task-downloader, program-model, litellm, dind, tracer-bot, merger-bot, competition-api, pov-reproducer, scratch-cleaner, registry-cache, image-preloader, ui.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trailofbits/skills/blob/main/plugins/debug-buttercup/skills/debug-buttercup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debug-buttercup"}, "quality": {"stars": 5800, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:28:36Z"}, "embedding_text": "debug-buttercup. Debugs the Buttercup CRS (Cyber Reasoning System) running on Kubernetes. Use when diagnosing pod crashes, restart loops, Redis failures, resource pressure, disk saturation, DinD issues, or any service misbehavior in the crs namespace. Covers triage, log analysis, queue inspection, and common failure patterns for: redis, fuzzer-bot, coverage-bot, seed-gen, patcher, build-bot, scheduler, task-server, task-downloader, program-model, litellm, dind, tracer-bot, merger-bot, competition-api, pov-reproducer, scratch-cleaner, registry-cache, image-preloader, ui. Platforms: claude_code."} +{"id": "b174165b1857bdf4ceb13d04fdc70ddcc62973947b560b7aa635e42a177ae7d4", "repo_url": "https://github.com/vm0-ai/vm0", "name": "issue-plan", "description": "Start working on GitHub issue with deep-dive workflow (research, innovate, plan phases)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vm0-ai/vm0/blob/main/.claude/skills/ccstate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1129, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:10:05Z"}, "embedding_text": "issue-plan. Start working on GitHub issue with deep-dive workflow (research, innovate, plan phases) Platforms: claude_code."} +{"id": "5e91af63e250889b1285961c3dbf722aebdbdd97b26affe137b9e8b55eb0dde5", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "academic-delivery", "description": "8-step pipeline for academic deliverables \u2014 essays, reports, analysis, capstones. Encodes the full intake-to-delivery workflow with automatic red-team triggering.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/workflow/academic-delivery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "academic-delivery. 8-step pipeline for academic deliverables \u2014 essays, reports, analysis, capstones. Encodes the full intake-to-delivery workflow with automatic red-team triggering. Platforms: claude_code."} +{"id": "66e5d8e59bc7ac7f4e984f73d73d5fca822e38e030cf9b910ebd02f577de5b7f", "repo_url": "https://github.com/johnlindquist/script-kit-next", "name": "script-kit-mcp", "description": "Model Context Protocol (MCP) implementation for Script Kit. Use when working with MCP server, JSON-RPC 2.0 protocol, kit tools, script tools, resources, or SSE streaming. Triggers on: \"mcp\", \"json-rpc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnlindquist/script-kit-next/blob/main/.claude/skills/agy-script-kit-devtools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T18:37:21Z"}, "embedding_text": "script-kit-mcp. Model Context Protocol (MCP) implementation for Script Kit. Use when working with MCP server, JSON-RPC 2.0 protocol, kit tools, script tools, resources, or SSE streaming. Triggers on: \"mcp\", \"json-rpc Platforms: claude_code."} +{"id": "3fb72a8e806216c065e7dc8f8dc3a8eabc47372e57eb0e9fce8b4fe799bb7c0b", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "sports-betting-analyzer", "description": "Analyze spreads, over/unders, prop bets. Historical trends, situational stats, value bet identification. For entertainment/education only.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/sports-betting-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "sports-betting-analyzer. Analyze spreads, over/unders, prop bets. Historical trends, situational stats, value bet identification. For entertainment/education only. Platforms: claude_code."} +{"id": "cf0c6fcda77bdf0c7bafecebd09a91cce8f7d26332c1651e2c3246ec551d3384", "repo_url": "https://github.com/googleworkspace/cli", "name": "recipe-find-large-files", "description": "Identify large Google Drive files consuming storage quota.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/recipe-find-large-files/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recipe-find-large-files"}, "quality": {"stars": 27196, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T17:06:34Z"}, "embedding_text": "recipe-find-large-files. Identify large Google Drive files consuming storage quota. Platforms: claude_code."} +{"id": "fd8791862bae1d2ef84de9c574f69ad97caf0421cb047d8183c368b53876f6a8", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "positioning-icp", "description": "When the user wants to define their ideal customer profile, position an AI product, build messaging architecture, or validate product-market fit. Also use when the user mentions 'ICP,' 'ideal customer profile,' 'positioning,' 'PMF,' 'product-market fit,' 'messaging,' 'buyer persona,' 'enrichment signals,' 'market positioning,' or 'competitive positioning.' This skill covers market positioning, ICP definition, messaging architecture, and PMF validation for AI-native products. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/positioning-icp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install positioning-icp"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "positioning-icp. When the user wants to define their ideal customer profile, position an AI product, build messaging architecture, or validate product-market fit. Also use when the user mentions 'ICP,' 'ideal customer profile,' 'positioning,' 'PMF,' 'product-market fit,' 'messaging,' 'buyer persona,' 'enrichment signals,' 'market positioning,' or 'competitive positioning.' This skill covers market positioning, ICP definition, messaging architecture, and PMF validation for AI-native products. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "71f14179ac010553bc3bf4f1b903112553a2a41954885d9aa8a9b10de2f69165", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "ba-orchestration", "description": "Multi-technique business analysis orchestration using BABOK. Coordinates 14 techniques across strategic analysis, problem solving, planning, and design into comprehensive analysis packages.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/ba-orchestration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "ba-orchestration. Multi-technique business analysis orchestration using BABOK. Coordinates 14 techniques across strategic analysis, problem solving, planning, and design into comprehensive analysis packages. Platforms: claude_code."} +{"id": "b4639f614820eb355b8340c4ff71df914fff6125be04a47002a106dbacf9c627", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "frontend-design", "description": "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. Generates creative, polished code that avoids generic AI aesthetics. Do NOT use for design review or audit (use web-design-guidelines or web-quality-audit).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(design)/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-design"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "frontend-design. 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. Generates creative, polished code that avoids generic AI aesthetics. Do NOT use for design review or audit (use web-design-guidelines or web-quality-audit). Platforms: claude_code."} +{"id": "94b4f5cbe2ba3313e35c3b82717e5a63fe128c56a19e49a054921d7b9eaf361a", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "security-audit", "description": "RLS validation, security audits, OWASP compliance, and vulnerability scanning. Use when validating RLS policies, auditing API routes for auth, scanning for vulnerabilities, reviewing for exposed crede", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/security-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "security-audit. RLS validation, security audits, OWASP compliance, and vulnerability scanning. Use when validating RLS policies, auditing API routes for auth, scanning for vulnerabilities, reviewing for exposed crede Platforms: claude_code."} +{"id": "e7eec4046eefbaf4f4c16a8114df0b1863f8cdf76d8cbfc3ec775b1854a11c16", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "swot", "description": "SWOT strategic analysis examining Strengths, Weaknesses, Opportunities, and Threats. Use for strategic planning, competitive analysis, career decisions, or evaluating opportunities.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/swot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "swot. SWOT strategic analysis examining Strengths, Weaknesses, Opportunities, and Threats. Use for strategic planning, competitive analysis, career decisions, or evaluating opportunities. Platforms: claude_code."} +{"id": "37afc18ac695eeabae3781e77a1a8318fce52280e40436db75dcc5632c80e4f2", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "retention-strategy", "description": "When the user wants to reduce churn, improve customer retention, or plan lifecycle marketing. Also use when the user mentions \"retention,\" \"churn,\" \"customer lifecycle,\" \"churn prevention,\" \"at-risk customers,\" or \"loyalty program.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/retention/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install retention-strategy"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "retention-strategy. When the user wants to reduce churn, improve customer retention, or plan lifecycle marketing. Also use when the user mentions \"retention,\" \"churn,\" \"customer lifecycle,\" \"churn prevention,\" \"at-risk customers,\" or \"loyalty program.\" Platforms: claude_code."} +{"id": "4f73737bbc7179da152222583fbcba29dd94ddc57a8df84b77580878abede3ba", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "confluence-docs", "description": "Documentation templates for ADRs, runbooks, architecture docs, and knowledge transfer documents. Use when creating Architecture Decision Records, writing operational runbooks, documenting system archi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/confluence-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "confluence-docs. Documentation templates for ADRs, runbooks, architecture docs, and knowledge transfer documents. Use when creating Architecture Decision Records, writing operational runbooks, documenting system archi Platforms: claude_code."} +{"id": "4822fe27162ded8be273e5f8021400547565a00fafcc852e6e64cdf14f0f8142", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "tdd", "description": "[UDS] Guide through Test-Driven Development workflow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/atdd-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "tdd. [UDS] Guide through Test-Driven Development workflow Platforms: claude_code."} +{"id": "38a9b470bf7858a37f014ad4f9645d9461886aebcc4e97b418cde572df893269", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "deploy", "description": "AWS SAM and AWS CDK deployment for serverless applications. Triggers on phrases like: use SAM, SAM template, SAM init, SAM deploy, CDK serverless, CDK Lambda construct, NodejsFunction, PythonFunction, SAM and CDK together, serverless CI/CD pipeline. For general app deployment with service selection, use deploy-on-aws plugin instead.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/aws-serverless/skills/aws-serverless-deployment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deploy"}, "quality": {"stars": 796, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:53:29Z"}, "embedding_text": "deploy. AWS SAM and AWS CDK deployment for serverless applications. Triggers on phrases like: use SAM, SAM template, SAM init, SAM deploy, CDK serverless, CDK Lambda construct, NodejsFunction, PythonFunction, SAM and CDK together, serverless CI/CD pipeline. For general app deployment with service selection, use deploy-on-aws plugin instead. Platforms: claude_code."} +{"id": "52657bfd062816a0758ba7d952c7c0def78086e6d94163b5fa974867cd4fab5e", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "organizational-design", "description": "Design or redesign an org structure and operating model by producing an Organizational Design Pack (design brief, current-state map, operating-model decision, target org blueprint, transition plan). U", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/organizational-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "organizational-design. Design or redesign an org structure and operating model by producing an Organizational Design Pack (design brief, current-state map, operating-model decision, target org blueprint, transition plan). U Platforms: claude_code."} +{"id": "5a5950619e5e0d5cd84805a54a98584a34bc0497d4870be7f7d395d179bb8fb7", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-scaffold-page-type", "description": "Scaffolds a new Kirby page type (blueprint + template, optional controller/model) using project roots, index tools, and Panel field/section references. Use when creating a new page type or extending a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-scaffold-page-type/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-scaffold-page-type. Scaffolds a new Kirby page type (blueprint + template, optional controller/model) using project roots, index tools, and Panel field/section references. Use when creating a new page type or extending a Platforms: claude_code."} +{"id": "a3a58d0c2096259e1d23ca32a30bbdc32b98a615fa52fdf119913da58211a333", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "ai-evals", "description": "Create an AI Evals Pack (eval PRD, test set, rubric, judge plan, results + iteration loop). Use for LLM evaluation, benchmarks, rubrics, error analysis/open coding, and ship/no-ship quality gates for", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/ai-evals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "ai-evals. Create an AI Evals Pack (eval PRD, test set, rubric, judge plan, results + iteration loop). Use for LLM evaluation, benchmarks, rubrics, error analysis/open coding, and ship/no-ship quality gates for Platforms: claude_code."} +{"id": "8155d7e554843a3e869cf005909e371acf459903ff3239c5e3b398dc5d2f69bc", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-forensics", "description": "Provides digital forensics and signal analysis techniques for CTF challenges. Use when analyzing disk images, memory dumps, event logs, network captures, cryptocurrency transactions, steganography, PDF analysis, Windows registry, Volatility, PCAP, Docker images, coredumps, side-channel power traces, DTMF audio spectrograms, packet timing analysis, or recovering deleted files and credentials.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-forensics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-forensics"}, "quality": {"stars": 2483, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:13:28Z"}, "embedding_text": "ctf-forensics. Provides digital forensics and signal analysis techniques for CTF challenges. Use when analyzing disk images, memory dumps, event logs, network captures, cryptocurrency transactions, steganography, PDF analysis, Windows registry, Volatility, PCAP, Docker images, coredumps, side-channel power traces, DTMF audio spectrograms, packet timing analysis, or recovering deleted files and credentials. Platforms: claude_code."} +{"id": "d5d6cebace61a1186c4a23977cbac949f360d4921ffa5033fb69bbfdfe5fdcdb", "repo_url": "https://github.com/notedit/happy-skills", "name": "video-producer", "description": "End-to-end Remotion video production from natural language briefs. Orchestrates narrative structure, scene animation, visual style, and rendering to produce complete promotional videos. Use when a use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/notedit/happy-skills/blob/main/skills/video/video-producer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 336, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T13:30:24Z"}, "embedding_text": "video-producer. End-to-end Remotion video production from natural language briefs. Orchestrates narrative structure, scene animation, visual style, and rendering to produce complete promotional videos. Use when a use Platforms: claude_code."} +{"id": "4ff38b6aa255f7c1cef067bccfda1880cda4f7badad88fd8ca60197682fdfaf2", "repo_url": "https://github.com/team-attention/hoyeon", "name": "mirror", "description": "\"/mirror\", \"mirror back\", \"echo back\", \"\ub2e4\uc2dc \uc124\uba85\ud574\uc918\", \"\uc774\ud574\ud55c \uac70 \ub9de\uc544?\",\n\"\ub0b4\uac00 \ubb58 \uc6d0\ud558\ub294\uc9c0 \ub9d0\ud574\ubd10\", \"\ud655\uc778\ud574\uc918\", \"paraphrase this\",\n\"\ub108\uac00 \uc774\ud574\ud55c \uac70 \uc124\uba85\ud574\ubd18\", \"what did I ask?\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/mirror/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "mirror. \"/mirror\", \"mirror back\", \"echo back\", \"\ub2e4\uc2dc \uc124\uba85\ud574\uc918\", \"\uc774\ud574\ud55c \uac70 \ub9de\uc544?\",\n\"\ub0b4\uac00 \ubb58 \uc6d0\ud558\ub294\uc9c0 \ub9d0\ud574\ubd10\", \"\ud655\uc778\ud574\uc918\", \"paraphrase this\",\n\"\ub108\uac00 \uc774\ud574\ud55c \uac70 \uc124\uba85\ud574\ubd18\", \"what did I ask?\" Platforms: claude_code."} +{"id": "6fab194e59b6356c4e12f18a6cd72d481ac871ba7775e68f19a03b7cd5c6ce39", "repo_url": "https://github.com/spirimirror/libuipc", "name": "commit", "description": "Create a well-formatted conventional commit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spirimirror/libuipc/blob/main/.cursor/skills/commit-convention/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:12:46Z"}, "embedding_text": "commit. Create a well-formatted conventional commit Platforms: claude_code."} +{"id": "25885b7317eb8ead5f7ffca702e52d98ef4272cbfaa303c11905af6581a18987", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "download-page-generator", "description": "When the user wants to create, optimize, or audit a download page for desktop or mobile app. Also use when the user mentions \"download page,\" \"app download,\" \"desktop download,\" \"mobile app download,\" \"App Store,\" \"Play Store,\" \"get the app,\" \"install app,\" or \"download CTA.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/download/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install download-page-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "download-page-generator. When the user wants to create, optimize, or audit a download page for desktop or mobile app. Also use when the user mentions \"download page,\" \"app download,\" \"desktop download,\" \"mobile app download,\" \"App Store,\" \"Play Store,\" \"get the app,\" \"install app,\" or \"download CTA.\" Platforms: claude_code."} +{"id": "0c383af0238f6a0b69a1520daad368a5e9295b59d0ec394158ffc856bf1f9c28", "repo_url": "https://github.com/jykim/claude-obsidian-skills", "name": "video-add-chapters", "description": "Add chapters to videos by transcribing, analyzing, and generating structured markdown documents with YouTube chapter markers. Optionally generate highlight videos.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jykim/claude-obsidian-skills/blob/main/video-add-chapters/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T22:15:25Z"}, "embedding_text": "video-add-chapters. Add chapters to videos by transcribing, analyzing, and generating structured markdown documents with YouTube chapter markers. Optionally generate highlight videos. Platforms: claude_code."} +{"id": "40af0c37c336c88df96ed67acec7d0fb5f59096990f2619cb13a36ae3d1db7bf", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "pricing-strategy", "description": "Create a Pricing Strategy Pack (value metric + willingness-to-pay plan, packaging & price-point options, self-serve vs sales-led thresholds, experiments, rollout + review cadence). Use for pricing, mo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/pricing-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "pricing-strategy. Create a Pricing Strategy Pack (value metric + willingness-to-pay plan, packaging & price-point options, self-serve vs sales-led thresholds, experiments, rollout + review cadence). Use for pricing, mo Platforms: claude_code."} +{"id": "84dea5785ddc05f1b629d0a9b2d80cdc2555b78fceacbf1b9255fa42e5e7420f", "repo_url": "https://github.com/az9713/ai-co-writing-claude-skills", "name": "icp-creator", "description": "Create detailed Ideal Client Profile through guided interview. Use when the user needs to define their target audience, understand their customers' problems and language, or build an ICP for content t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/az9713/ai-co-writing-claude-skills/blob/main/.claude/skills/icp-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T07:39:41Z"}, "embedding_text": "icp-creator. Create detailed Ideal Client Profile through guided interview. Use when the user needs to define their target audience, understand their customers' problems and language, or build an ICP for content t Platforms: claude_code."} +{"id": "fd8c283af75a5c007a05d70804b854902b9f4ff99449c456ca2346c6a7b7c369", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "cross-functional-collaboration", "description": "Lead cross-functional collaboration by producing a Cross-Functional Collaboration Pack (mission charter, stakeholder/incentives map, roles & expectations contract, operating cadence, decision log, con", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/cross-functional-collaboration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "cross-functional-collaboration. Lead cross-functional collaboration by producing a Cross-Functional Collaboration Pack (mission charter, stakeholder/incentives map, roles & expectations contract, operating cadence, decision log, con Platforms: claude_code."} +{"id": "a069ec64bf78ebdf875385991adec978814dc78253c746f5ba1088566541d4e4", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "running-decision-processes", "description": "Run a high-quality decision process and produce a Decision Process Pack (decision brief/pre-read, options + criteria matrix, RAPID/DACI roles, decision meeting plan, decision log entry, comms, review", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/running-decision-processes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "running-decision-processes. Run a high-quality decision process and produce a Decision Process Pack (decision brief/pre-read, options + criteria matrix, RAPID/DACI roles, decision meeting plan, decision log entry, comms, review Platforms: claude_code."} +{"id": "1eaafbb2d182092fd9c2f614e4a2cceb9711621ea2f14d8f5441072d653f66fd", "repo_url": "https://github.com/clerk/skills", "name": "clerk-custom-ui", "description": "Customize Clerk component appearance - themes, layout, colors, fonts, CSS. Use for appearance styling, visual customization, branding.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/clerk/skills/blob/main/skills/core/clerk-custom-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:23:54Z"}, "embedding_text": "clerk-custom-ui. Customize Clerk component appearance - themes, layout, colors, fonts, CSS. Use for appearance styling, visual customization, branding. Platforms: claude_code."} +{"id": "b10813126c1ff26ec0152ee05bbf1701bf7b1e070d4f82665a4149ec65744710", "repo_url": "https://github.com/camoa/claude-skills", "name": "code-helper", "description": "Assists with code quality tasks. Use when reviewing code, checking for issues, or improving code quality.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/plugin-creation-tools/skills/plugin-creation/examples/full-featured-plugin/skills/code-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "code-helper. Assists with code quality tasks. Use when reviewing code, checking for issues, or improving code quality. Platforms: claude_code."} +{"id": "d4ca3a2bab3480fe5c277a5b6f748cefaba5b08e1067666c231c08eb0b19d299", "repo_url": "https://github.com/kukapay/crypto-skills", "name": "market-sentiment", "description": "Aggregate news from popular cryptocurrency RSS feeds, analyze sentiment of articles, and calculate an overall market sentiment score with detailed explanation. Use when assessing crypto market sentime", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kukapay/crypto-skills/blob/main/skills/market-sentiment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-04T16:18:23Z"}, "embedding_text": "market-sentiment. Aggregate news from popular cryptocurrency RSS feeds, analyze sentiment of articles, and calculate an overall market sentiment score with detailed explanation. Use when assessing crypto market sentime Platforms: claude_code."} +{"id": "fbeb67b2e9f019f711836ef70fc4afdfe6862b0f72e6d08b8b44134e89bbeca9", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "evidence-first-debugging", "description": "Use when debugging software, investigating incidents, diagnosing flaky tests, or analyzing performance regressions \u2014 enforces structured observation recording with evidence IDs, causality validation,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/debug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "evidence-first-debugging. Use when debugging software, investigating incidents, diagnosing flaky tests, or analyzing performance regressions \u2014 enforces structured observation recording with evidence IDs, causality validation, Platforms: claude_code."} +{"id": "a618175ac118ae76bf07e6f80b4af810d22aa3a00640837b781f7db89f92390a", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "hooks-core-reference", "description": "Hook system fundamentals \u2014 all events, configuration structure, matchers per event type, environment variables, execution behavior, security, and debugging. Use when creating hooks, understanding hook", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/hooks-core-reference/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "hooks-core-reference. Hook system fundamentals \u2014 all events, configuration structure, matchers per event type, environment variables, execution behavior, security, and debugging. Use when creating hooks, understanding hook Platforms: claude_code."} +{"id": "f16b9e1920489e71171753e58203d6e1d7e4cd938fb705cfbf92ecad5552ebe0", "repo_url": "https://github.com/notedit/happy-skills", "name": "react-animation", "description": "ReactBits animations for Remotion - curated for aesthetic excellence in video production", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/notedit/happy-skills/blob/main/skills/video/react-animation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 336, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T13:30:24Z"}, "embedding_text": "react-animation. ReactBits animations for Remotion - curated for aesthetic excellence in video production Platforms: claude_code."} +{"id": "1e38cd96062f91b23d1e7724416efae6e700f330d84ba63b6d3094827929a1ed", "repo_url": "https://github.com/mizchi/chezmoi-dotfiles", "name": "moonbit-practice", "description": "MoonBit code generation best practices. Use when writing MoonBit code to avoid common AI mistakes with syntax, tests, and benchmarks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mizchi/chezmoi-dotfiles/blob/main/dot_claude/skills/pkspec-maintenance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 599, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T17:53:44Z"}, "embedding_text": "moonbit-practice. MoonBit code generation best practices. Use when writing MoonBit code to avoid common AI mistakes with syntax, tests, and benchmarks. Platforms: claude_code."} +{"id": "f652b251a7c8ad0c4249a34455fbcef71c96fdba6017bde07e56ca0c7e10cacd", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "python3-bug", "description": "Debug functional issues in Python code using specs, logs, and observed behavior. Use when a feature isn't working as specified, when investigating runtime errors, or when scoping a problem before impl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python3-development/skills/python3-bug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "python3-bug. Debug functional issues in Python code using specs, logs, and observed behavior. Use when a feature isn't working as specified, when investigating runtime errors, or when scoping a problem before impl Platforms: claude_code."} +{"id": "9f7c8daf4e5a5fdd6dea615b95d93703667f6d622b4d9472ddbec38e891e9aec", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "implement-refactor", "description": "Use when a refactoring task file exists from /assessor and tasks need execution. Reads task files, resolves dependencies, delegates to specialist agents (SKILL_SPLIT, AGENT_OPTIMIZE, DOC_IMPROVE), and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/implement-refactor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "implement-refactor. Use when a refactoring task file exists from /assessor and tasks need execution. Reads task files, resolves dependencies, delegates to specialist agents (SKILL_SPLIT, AGENT_OPTIMIZE, DOC_IMPROVE), and Platforms: claude_code."} +{"id": "94c735f8fccfa858baf038e7750d92464816d4533f52bc24233ed37914f42427", "repo_url": "https://github.com/dianel555/dskills", "name": "time", "description": "Time and timezone utilities for getting current time and converting between timezones. Use when: (1) Getting current time in any timezone, (2) Converting time between different timezones, (3) Working with IANA timezone names, (4) Scheduling across timezones, (5) Time-sensitive operations. Triggers: \"what time is it\", \"current time\", \"convert time\", \"timezone\", \"time in [city]\".", "source": ["skillhub", "topic"], "categories": ["claude-skills", "codex-skills", "gemini-cli-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dianel555/dskills/blob/main/skills/time/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install time"}, "quality": {"stars": 63, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:37:01Z"}, "embedding_text": "time. Time and timezone utilities for getting current time and converting between timezones. Use when: (1) Getting current time in any timezone, (2) Converting time between different timezones, (3) Working with IANA timezone names, (4) Scheduling across timezones, (5) Time-sensitive operations. Triggers: \"what time is it\", \"current time\", \"convert time\", \"timezone\", \"time in [city]\". Categories: claude-skills, codex-skills, gemini-cli-skills, skills. Platforms: claude_code."} +{"id": "40b5fa029924f91863af52574ec3fa3c9dad97b738400222c935fcb5a5ec2646", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "python3-packaging", "description": "Configure pyproject.toml and Python packaging for distribution. Use when setting up a new Python package, when configuring build tools and dependencies, or when preparing a project for PyPI publishing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/python3-packaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "python3-packaging. Configure pyproject.toml and Python packaging for distribution. Use when setting up a new Python package, when configuring build tools and dependencies, or when preparing a project for PyPI publishing Platforms: claude_code."} +{"id": "cb7d28819bdae44ebcc49bb14239e9bae844b354ef1777d7583923d87ea01b8d", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-routing-and-representations", "description": "Implements custom Kirby routes and content representations (.json/.xml/.rss), including redirects, sitemap endpoints, and URL pattern filtering. Use when building endpoints, redirects, or representati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-routing-and-representations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-routing-and-representations. Implements custom Kirby routes and content representations (.json/.xml/.rss), including redirects, sitemap endpoints, and URL pattern filtering. Use when building endpoints, redirects, or representati Platforms: claude_code."} +{"id": "5b1fa77cb921fa807af17f47e2cc70f73e5be05c1185cc2f2ca31f77eb51197f", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "theme-factory", "description": "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 t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "theme-factory. 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 t Platforms: claude_code."} +{"id": "441f7bf20b3dc0a53397e1c521f35b88ea10bf2333ee577f8557c5e1b7f53f27", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-panel-and-blueprints", "description": "Designs Kirby blueprints and Panel UI, including blueprint reuse/extends, programmable blueprints, and custom Panel fields/sections/areas. Use when changing the Panel experience or schema.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-panel-and-blueprints/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-panel-and-blueprints. Designs Kirby blueprints and Panel UI, including blueprint reuse/extends, programmable blueprints, and custom Panel fields/sections/areas. Use when changing the Panel experience or schema. Platforms: claude_code."} +{"id": "12279f56975bd930412c33990e14744279b0718c1350076cb9553ed01804b73b", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "text-to-speech", "description": "Expert skill for implementing text-to-speech with Kokoro TTS. Covers voice synthesis, audio generation, performance optimization, and secure handling of generated audio for JARVIS voice assistant.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/text-to-speech/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "text-to-speech. Expert skill for implementing text-to-speech with Kokoro TTS. Covers voice synthesis, audio generation, performance optimization, and secure handling of generated audio for JARVIS voice assistant. Platforms: claude_code."} +{"id": "ac4904155bdfe9b0be64938c9ca46125730afb6cde9aaf087bf34b4f1d5c76d2", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "product-hunt-launch", "description": "When the user wants to launch on Product Hunt, prepare a Product Hunt submission, or plan a Product Hunt launch. Also use when the user mentions \"Product Hunt,\" \"launch on Product Hunt,\" \"PH launch,\" \"Product Hunt submission,\" \"hunter,\" \"Product of the Day,\" \"upvotes,\" or \"Product Hunt first comment.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/community/product-hunt-launch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install product-hunt-launch"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "product-hunt-launch. When the user wants to launch on Product Hunt, prepare a Product Hunt submission, or plan a Product Hunt launch. Also use when the user mentions \"Product Hunt,\" \"launch on Product Hunt,\" \"PH launch,\" \"Product Hunt submission,\" \"hunter,\" \"Product of the Day,\" \"upvotes,\" or \"Product Hunt first comment.\" Platforms: claude_code."} +{"id": "d2029399f3df826ce0b5907d73517f3c81d4529a5050ec59786b79d9323015c3", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "rls-patterns", "description": "Row Level Security patterns for database operations. Use when writing any database query, creating API routes that access data, implementing webhooks that write to the database, or working with user d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/rls-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "rls-patterns. Row Level Security patterns for database operations. Use when writing any database query, creating API routes that access data, implementing webhooks that write to the database, or working with user d Platforms: claude_code."} +{"id": "fc78621d1e8f5be13dbc4543272be31ae53a4d455c78e69c8517ff184e6411b3", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-performance-and-media", "description": "Improves Kirby performance and media delivery (cache tuning, CDN, responsive images, lazy loading). Use when optimizing page speed, caching, or image handling.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-performance-and-media/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-performance-and-media. Improves Kirby performance and media delivery (cache tuning, CDN, responsive images, lazy loading). Use when optimizing page speed, caching, or image handling. Platforms: claude_code."} +{"id": "0deb124e6fb832c5f3a7578100f6257bdf2f234a4fb82d5f7861ed062522cbad", "repo_url": "https://github.com/ed1s0nz/cyberstrikeai", "name": "csrf-testing", "description": "CSRF\u8de8\u7ad9\u8bf7\u6c42\u4f2a\u9020\u6d4b\u8bd5\u7684\u4e13\u4e1a\u6280\u80fd\u548c\u65b9\u6cd5\u8bba", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed1s0nz/cyberstrikeai/blob/main/skills/csrf-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 4666, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:47:53Z"}, "embedding_text": "csrf-testing. CSRF\u8de8\u7ad9\u8bf7\u6c42\u4f2a\u9020\u6d4b\u8bd5\u7684\u4e13\u4e1a\u6280\u80fd\u548c\u65b9\u6cd5\u8bba Platforms: claude_code."} +{"id": "5d412da033db5f3f38ac2aea3aaa46ce0818e7bb338f01d140bab2fb51f47d3b", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-security-and-auth", "description": "Secures Kirby sites with access restriction, user roles, permissions, and protected downloads. Use when implementing login/role-based access, permissions, or file protection.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-security-and-auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-security-and-auth. Secures Kirby sites with access restriction, user roles, permissions, and protected downloads. Use when implementing login/role-based access, permissions, or file protection. Platforms: claude_code."} +{"id": "85903c040a715aa8d75ee69f0516f2190a28b43761f0eae578a0ffb9b26e773f", "repo_url": "https://github.com/jeffallan/claude-skills", "name": "secure-code-guardian", "description": "Use when implementing authentication/authorization, securing user input, or preventing OWASP Top 10 vulnerabilities \u2014 including custom security implementations such as hashing passwords with bcrypt/argon2, sanitizing SQL queries with parameterized statements, configuring CORS/CSP headers, validating input with Zod, and setting up JWT tokens. Invoke for authentication, authorization, input validation, encryption, OWASP Top 10 prevention, secure session management, and security hardening. For pre-built OAuth/SSO integrations or standalone security audits, consider a more specialized skill.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agents", "claude", "claude-code", "claude-marketplace", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffallan/claude-skills/blob/main/skills/secure-code-guardian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install secure-code-guardian"}, "quality": {"stars": 10110, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T13:35:05Z"}, "embedding_text": "secure-code-guardian. Use when implementing authentication/authorization, securing user input, or preventing OWASP Top 10 vulnerabilities \u2014 including custom security implementations such as hashing passwords with bcrypt/argon2, sanitizing SQL queries with parameterized statements, configuring CORS/CSP headers, validating input with Zod, and setting up JWT tokens. Invoke for authentication, authorization, input validation, encryption, OWASP Top 10 prevention, secure session management, and security hardening. For pre-built OAuth/SSO integrations or standalone security audits, consider a more specialized skill. Categories: ai-agents, claude, claude-code, claude-marketplace, claude-skills. Platforms: claude_code."} +{"id": "b4c0a2bd87b7890d5d36e94a8ec4f7d440ce412460cb1155df393c7a50abce74", "repo_url": "https://github.com/dojoengine/dojo.js", "name": "dojo-state", "description": "Use when managing game state with Zustand in dojo.js.\nTriggers: dojo state, zustand dojo, game state, createDojoStore, optimistic update,\ngetEntity, mergeEntities, state management, revert transaction", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dojoengine/dojo.js/blob/main/.claude/skills/dojo-state/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T09:36:59Z"}, "embedding_text": "dojo-state. Use when managing game state with Zustand in dojo.js.\nTriggers: dojo state, zustand dojo, game state, createDojoStore, optimistic update,\ngetEntity, mergeEntities, state management, revert transaction Platforms: claude_code."} +{"id": "09f0caa8b1cc5c7228a345313db4acae0daea63b166d9ecc49ad39d181cfc9d4", "repo_url": "https://github.com/shinpr/agentic-code", "name": "ai-development-guide", "description": "Detects code smells, anti-patterns, and debugging issues. Use when: fixing bugs, reviewing code quality, or refactoring.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/agentic-code/blob/main/.agents/skills/ai-development-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-30T10:30:03Z"}, "embedding_text": "ai-development-guide. Detects code smells, anti-patterns, and debugging issues. Use when: fixing bugs, reviewing code quality, or refactoring. Platforms: claude_code."} +{"id": "49306fb1fe719d84f163fad8fe96de03e7861e25513935b59ce15c20904a3fd5", "repo_url": "https://github.com/elevenlabs/skills", "name": "elevenlabs-transcribe", "description": "Transcribe audio to text using ElevenLabs Scribe. Supports batch transcription, realtime streaming from URLs, microphone input, and local files.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/elevenlabs/skills/blob/main/.agents/skills/update-skills-from-changelog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 344, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T23:56:04Z"}, "embedding_text": "elevenlabs-transcribe. Transcribe audio to text using ElevenLabs Scribe. Supports batch transcription, realtime streaming from URLs, microphone input, and local files. Platforms: claude_code."} +{"id": "e0b3079b639bff3e07c2bed7138b3be4d897005b0ccc9e458b8aca29bd2448dd", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-idor", "description": "Detect Insecure Direct Object Reference (IDOR) vulnerabilities in a codebase using a three-phase approach: recon (find candidates), batched verify (check authorization in parallel subagents, 3 candida", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-idor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-idor. Detect Insecure Direct Object Reference (IDOR) vulnerabilities in a codebase using a three-phase approach: recon (find candidates), batched verify (check authorization in parallel subagents, 3 candida Platforms: claude_code."} +{"id": "77999c7aa8a0f5a33972183e5ed24b1be205063f26e715d27538da15e18db0e0", "repo_url": "https://github.com/bnomei/kirby-mcp", "name": "kirby-plugin-development", "description": "Builds or extends Kirby plugins using hooks, extensions, blocks, KirbyTags, and shared templates/controllers. Use when creating reusable features or integrating Panel customizations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bnomei/kirby-mcp/blob/main/skills/kirby-plugin-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T10:00:54Z"}, "embedding_text": "kirby-plugin-development. Builds or extends Kirby plugins using hooks, extensions, blocks, KirbyTags, and shared templates/controllers. Use when creating reusable features or integrating Panel customizations. Platforms: claude_code."} +{"id": "ff7f46d8bc90df3a54778d1e4fc5aa11c7ef2b909d626c3bd3f7a307c106876d", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "tdd", "description": "Python/pytest TDD specialist for test-driven development workflows. Use when writing tests, auditing test quality, running pytest, or generating test reports. Integrates with uv and pyproject.toml configuration.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/tdd-pytest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tdd"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "tdd. Python/pytest TDD specialist for test-driven development workflows. Use when writing tests, auditing test quality, running pytest, or generating test reports. Integrates with uv and pyproject.toml configuration. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "3f573014e9f24ab678e198c30376291573246f1585b7151e7355938e4d6c03e1", "repo_url": "https://github.com/jefflester/claude-skills-supercharged", "name": "python-best-practices", "description": "Python development best practices including PEP 8 style guidelines, type hints, docstring conventions, and common patterns. Use when writing or modifying Python code.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jefflester/claude-skills-supercharged/blob/main/.claude/skills/python-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:06:42Z"}, "embedding_text": "python-best-practices. Python development best practices including PEP 8 style guidelines, type hints, docstring conventions, and common patterns. Use when writing or modifying Python code. Platforms: claude_code."} +{"id": "754212d2df6d6c37a5df706f9195896334688a2f9309edac0a91db63a8fe27c6", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "simpo-training", "description": "Simple Preference Optimization for LLM alignment. Reference-free alternative to DPO with better performance (+6.4 points on AlpacaEval 2.0). No reference model needed, more efficient than DPO. Use for", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/simpo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "simpo-training. Simple Preference Optimization for LLM alignment. Reference-free alternative to DPO with better performance (+6.4 points on AlpacaEval 2.0). No reference model needed, more efficient than DPO. Use for Platforms: linux, macos, windows."} +{"id": "0fcc96d436b0bcd92aaf4fb23bb3c2a4e4bed570ac215dd5a64e781b99e6630e", "repo_url": "https://github.com/waynesutton/markdown-site", "name": "help", "description": "Reflection-first problem solving methodology for Convex development. Use before implementing any solution to ensure proper root cause analysis, 98% code confidence, and minimal change scope.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/markdown-site/blob/main/.agents/skills/convex-migration-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 621, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T14:56:54Z"}, "embedding_text": "help. Reflection-first problem solving methodology for Convex development. Use before implementing any solution to ensure proper root cause analysis, 98% code confidence, and minimal change scope. Platforms: claude_code."} +{"id": "6b4571d88ade4f091697200865f2e2d9fce65f73a8088599d232e4a091f1626f", "repo_url": "https://github.com/fal-ai-community/skills", "name": "fal-upscale", "description": "Upscale and enhance image resolution using AI. Use when the user requests \"Upscale image\", \"Enhance resolution\", \"Make image bigger\", \"Increase quality\", or similar upscaling tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fal-ai-community/skills/blob/main/skills/character-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-13T20:10:57Z"}, "embedding_text": "fal-upscale. Upscale and enhance image resolution using AI. Use when the user requests \"Upscale image\", \"Enhance resolution\", \"Make image bigger\", \"Increase quality\", or similar upscaling tasks. Platforms: claude_code."} +{"id": "a7efb163b6586634acf14a3686394bc7acbb681c98dd2e5e9dbb518a91644f68", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "risk-analysis", "description": "Risk analysis using risk registers, probability/impact matrices, and mitigation planning. Identifies, assesses, and manages project, business, and technical risks with structured response strategies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/risk-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "risk-analysis. Risk analysis using risk registers, probability/impact matrices, and mitigation planning. Identifies, assesses, and manages project, business, and technical risks with structured response strategies. Platforms: claude_code."} +{"id": "179ec031d759874a9f9ad2b6e964d71f5e4f41c5b5c00636a1079c9cb4ee28ef", "repo_url": "https://github.com/avifenesh/agnix", "name": "windows-path", "description": "Use when validating windows paths", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avifenesh/agnix/blob/main/tests/fixtures/skills/windows-path/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "windows-path. Use when validating windows paths Platforms: claude_code."} +{"id": "ad89be9debe6018ce3b69dd831d63970b9005a70c14e72a4e874838083a7d8be", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capgo-organization-management", "description": "Guides the agent through Capgo account lookup and organization administration. Use when listing organizations, managing members, changing security settings, or working with organization-level CLI comm", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capgo-cloud/skills/capgo-organization-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capgo-organization-management. Guides the agent through Capgo account lookup and organization administration. Use when listing organizations, managing members, changing security settings, or working with organization-level CLI comm Platforms: claude_code."} +{"id": "e6c0cb2164f4a8dc414376781d81bc88845083f19de8ba985f812f91877e6740", "repo_url": "https://github.com/cris-achiardi/claude-skills", "name": "problem-mapping", "description": "Foundational problem framing for design sprints and product strategy. Based on Google Design Sprint \"Understand\" phase methodology. Use when teams need to establish shared understanding before ideatio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cris-achiardi/claude-skills/blob/main/skills/problem-mapping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T18:36:11Z"}, "embedding_text": "problem-mapping. Foundational problem framing for design sprints and product strategy. Based on Google Design Sprint \"Understand\" phase methodology. Use when teams need to establish shared understanding before ideatio Platforms: claude_code."} +{"id": "37336ff3b9dd90212d02fb0582294ff781b26fdd7b497af0382a4b203c00975f", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "value-stream-mapping", "description": "Lean value stream mapping for identifying waste and optimization opportunities. Creates current/future state maps with cycle time analysis and improvement recommendations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/value-stream-mapping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "value-stream-mapping. Lean value stream mapping for identifying waste and optimization opportunities. Creates current/future state maps with cycle time analysis and improvement recommendations. Platforms: claude_code."} +{"id": "14c7ea16657ffc1241fc342389ff2547c1e2f66377dd424bbb790116042ecb95", "repo_url": "https://github.com/shirenchuang/web-content-fetcher", "name": "web-content-fetcher", "description": "Extract article content from any URL as clean Markdown. Uses Scrapling script as primary method (with auto fast\u2192stealth fallback), Jina Reader as alternative for simple pages. Preserves headings, link", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shirenchuang/web-content-fetcher/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 587, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T03:34:01Z"}, "embedding_text": "web-content-fetcher. Extract article content from any URL as clean Markdown. Uses Scrapling script as primary method (with auto fast\u2192stealth fallback), Jina Reader as alternative for simple pages. Preserves headings, link Platforms: claude_code."} +{"id": "4d5afe1749522a41ac61a82ee6c0d3140f987031eae817c4005dc8328ccacfc2", "repo_url": "https://github.com/peiiii/skild", "name": "claude-office-pack", "description": "Office toolkit: PDF/Word/PPT/Excel + internal comms.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/skillsets/claude-office-pack/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "claude-office-pack. Office toolkit: PDF/Word/PPT/Excel + internal comms. Platforms: claude_code."} +{"id": "9c997f686a46a531e1721b434d73a4b5e221950ab372cf1c575ca2c86b49fda0", "repo_url": "https://github.com/martinemde/skillet", "name": "comprehensive-skill", "description": "A comprehensive skill demonstrating all frontmatter fields. Use for testing complete SKILL.md parsing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinemde/skillet/blob/main/testdata/comprehensive-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T05:19:06Z"}, "embedding_text": "comprehensive-skill. A comprehensive skill demonstrating all frontmatter fields. Use for testing complete SKILL.md parsing. Platforms: claude_code."} +{"id": "dc36911f2b67ec320a59b762844044cc6c759938b0910a2e0c9cce6e3635e278", "repo_url": "https://github.com/shinpr/agentic-code", "name": "metacognition", "description": "Validates approach and checks assumptions before/after tasks. Use when: starting work, encountering errors, or switching phases.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/agentic-code/blob/main/.agents/skills/metacognition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-30T10:30:03Z"}, "embedding_text": "metacognition. Validates approach and checks assumptions before/after tasks. Use when: starting work, encountering errors, or switching phases. Platforms: claude_code."} +{"id": "5deafd547907f7b44c000f09accb004d59ea822f7a7222e4febf9201fa41f8c9", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "reading-payment-statement", "description": "\u652f\u6255\u8abf\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/reading-payment-statement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reading-payment-statement"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "reading-payment-statement. \u652f\u6255\u8abf\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002 Platforms: claude_code."} +{"id": "1737a04456897358e4d890ff947cb1f94e07b98297a5a71a30fa8b9525bf66b2", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "frontend-accessibility-best-practices", "description": "Accessibility (a11y) best practices for React components. Use when creating UI components, forms, interactive elements, or reviewing code for accessibility compliance.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/frontend-accessibility-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "frontend-accessibility-best-practices. Accessibility (a11y) best practices for React components. Use when creating UI components, forms, interactive elements, or reviewing code for accessibility compliance. Platforms: claude_code."} +{"id": "4b76026af59604e966c28d40c1a4c7e9c3fefae1c9fbc1417e6cd934834bc379", "repo_url": "https://github.com/johnrogers/claude-swift-engineering", "name": "storekit", "description": "Use when implementing in-app purchases, StoreKit 2 subscriptions, consumables, non-consumables, or transaction handling. Covers testing-first workflow with .storekit configuration, StoreManager archit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnrogers/claude-swift-engineering/blob/main/plugins/swift-engineering/skills/storekit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 212, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T05:24:16Z"}, "embedding_text": "storekit. Use when implementing in-app purchases, StoreKit 2 subscriptions, consumables, non-consumables, or transaction handling. Covers testing-first workflow with .storekit configuration, StoreManager archit Platforms: claude_code."} +{"id": "c4759af9a28d0cc962f626a2883ab07ac9de175212edc977542c94dcbc5c8ab0", "repo_url": "https://github.com/martinemde/skillet", "name": "interpolation-skill", "description": "Tests variable interpolation features like {baseDir}. Use for testing path expansion.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinemde/skillet/blob/main/testdata/interpolation-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T05:19:06Z"}, "embedding_text": "interpolation-skill. Tests variable interpolation features like {baseDir}. Use for testing path expansion. Platforms: claude_code."} +{"id": "7147aa0b878e45787d9c12981aeedebf7b2955f73ad59cb08afe36a8025a567a", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "optimizing-query-by-id", "description": "Optimizes Snowflake query performance using query ID from history. Use when optimizing Snowflake queries for:\n(1) User provides a Snowflake query_id (UUID format) to analyze or optimize\n(2) Task mentions \"slow query\", \"optimize\", \"query history\", or \"query profile\" with a query ID\n(3) Analyzing query performance metrics - bytes scanned, spillage, partition pruning\n(4) User references a previously run query that needs optimization\nFetches query profile, identifies bottlenecks, returns optimized SQL with expected improvements.", "source": ["skillhub", "topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/altimateai/data-engineering-skills/blob/main/skills/snowflake/optimizing-query-by-id/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install optimizing-query-by-id"}, "quality": {"stars": 104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T13:06:51Z"}, "embedding_text": "optimizing-query-by-id. Optimizes Snowflake query performance using query ID from history. Use when optimizing Snowflake queries for:\n(1) User provides a Snowflake query_id (UUID format) to analyze or optimize\n(2) Task mentions \"slow query\", \"optimize\", \"query history\", or \"query profile\" with a query ID\n(3) Analyzing query performance metrics - bytes scanned, spillage, partition pruning\n(4) User references a previously run query that needs optimization\nFetches query profile, identifies bottlenecks, returns optimized SQL with expected improvements. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} +{"id": "13d1271ef0cca4aaafc02c2aac5ab9651b22298264eff3eec6a9cda9c5c17281", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "skill-writing-best-practices", "description": "Guidelines for creating AI agent skills. Use when writing new skills, documenting coding patterns, or reviewing skill files. Triggers when creating or modifying files in the skills/ directory.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/skill-writing-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "skill-writing-best-practices. Guidelines for creating AI agent skills. Use when writing new skills, documenting coding patterns, or reviewing skill files. Triggers when creating or modifying files in the skills/ directory. Platforms: claude_code."} +{"id": "2b0f213759984ea972a73dacf2e4018c9738c03b6ff288aaef28b08622dd8a58", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "planning-with-files", "description": "Transforms workflow to use Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Use when starting complex tasks, multi-step projects, research tasks, or when t", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xmsc/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install planning-with-files"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "planning-with-files. Transforms workflow to use Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Use when starting complex tasks, multi-step projects, research tasks, or when t Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "5bf3977cd9a332ff0ba5daba53f213eab2b3af3e38bc1fac5b1835c96f2a42ed", "repo_url": "https://github.com/leo-lilinxiao/codex-autoresearch", "name": "codex-autoresearch", "description": "Autonomous long-running iteration for Codex CLI. Use when the user wants Codex to plan or run an unattended improve-verify loop toward a measurable or verifiable outcome, especially for overnight runs", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/leo-lilinxiao/codex-autoresearch/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1923, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T13:25:48Z"}, "embedding_text": "codex-autoresearch. Autonomous long-running iteration for Codex CLI. Use when the user wants Codex to plan or run an unattended improve-verify loop toward a measurable or verifiable outcome, especially for overnight runs Platforms: claude_code."} +{"id": "5b1e021a58518b442146670e0584bd42e7afabfb7bd577dec00a42771ba9ff8a", "repo_url": "https://github.com/darkroomengineering/cc-settings", "name": "qa", "description": "Visual QA validation with pinchtab. Use when:\n- User asks to \"validate\", \"check visually\", \"QA check\"\n- After creating or modifying components\n- Before PR submission\n- User mentions \"accessibility\", \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/darkroomengineering/cc-settings/blob/main/skills/qa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:59:42Z"}, "embedding_text": "qa. Visual QA validation with pinchtab. Use when:\n- User asks to \"validate\", \"check visually\", \"QA check\"\n- After creating or modifying components\n- Before PR submission\n- User mentions \"accessibility\", \" Platforms: claude_code."} +{"id": "2008a6240565378ca50a853203a0868b90f2a1ac8d25887c7254cbd972eda72a", "repo_url": "https://github.com/moosegoose0701/skill-compose", "name": "planning-with-files", "description": "Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moosegoose0701/skill-compose/blob/main/seed_skills/planning-with-files/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T08:01:19Z"}, "embedding_text": "planning-with-files. Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring > Platforms: claude_code."} +{"id": "937d3c2991abf2fc22fc2bbb6b8f78661654d5613b8a0c0cff0fae5c3544eacf", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "market-top-detector", "description": "Detects market top probability using O'Neil Distribution Days, Minervini Leading Stock Deterioration, and Monty Defensive Sector Rotation. Generates a 0-100 composite score with risk zone classificati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/market-top-detector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "market-top-detector. Detects market top probability using O'Neil Distribution Days, Minervini Leading Stock Deterioration, and Monty Defensive Sector Rotation. Generates a 0-100 composite score with risk zone classificati Platforms: claude_code."} +{"id": "f4933dc19a4baa804e82404483d370c3404a9e61a1f7622d9889394a199e7936", "repo_url": "https://github.com/richtabor/agent-skills", "name": "create-prd", "description": "Plan features interactively. Asks clarifying questions, then generates a detailed PRD document.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/richtabor/agent-skills/blob/main/skills/create-prd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 64, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T01:38:39Z"}, "embedding_text": "create-prd. Plan features interactively. Asks clarifying questions, then generates a detailed PRD document. Platforms: claude_code."} +{"id": "c0e81741ba266e4ab61d03609b109dfdf627d38f3ed139109318f70518d9a0f5", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "file-organizer", "description": "\u901a\u8fc7\u7406\u89e3\u4e0a\u4e0b\u6587\u3001\u67e5\u627e\u91cd\u590d\u9879\u3001\u5efa\u8bae\u66f4\u597d\u7684\u7ed3\u6784\u5e76\u81ea\u52a8\u5316\u6e05\u7406\u4efb\u52a1\uff0c\u667a\u80fd\u5730\u7ec4\u7ec7\u60a8\u8ba1\u7b97\u673a\u4e0a\u7684\u6587\u4ef6\u548c\u6587\u4ef6\u5939\u3002\u51cf\u5c11\u8ba4\u77e5\u8d1f\u62c5\uff0c\u65e0\u9700\u624b\u52a8\u64cd\u4f5c\u5373\u53ef\u4fdd\u6301\u6570\u5b57\u5de5\u4f5c\u533a\u6574\u6d01\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/file-organizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "file-organizer. \u901a\u8fc7\u7406\u89e3\u4e0a\u4e0b\u6587\u3001\u67e5\u627e\u91cd\u590d\u9879\u3001\u5efa\u8bae\u66f4\u597d\u7684\u7ed3\u6784\u5e76\u81ea\u52a8\u5316\u6e05\u7406\u4efb\u52a1\uff0c\u667a\u80fd\u5730\u7ec4\u7ec7\u60a8\u8ba1\u7b97\u673a\u4e0a\u7684\u6587\u4ef6\u548c\u6587\u4ef6\u5939\u3002\u51cf\u5c11\u8ba4\u77e5\u8d1f\u62c5\uff0c\u65e0\u9700\u624b\u52a8\u64cd\u4f5c\u5373\u53ef\u4fdd\u6301\u6570\u5b57\u5de5\u4f5c\u533a\u6574\u6d01\u3002 Platforms: claude_code."} +{"id": "3f8db7bd94961f14b57fcb9dd6bc51dcb3edcd9d16265ae6b1104e9abdd16f8e", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "sales-compensation", "description": "Design a sales compensation plan (OTE & pay mix, quotas & ramp, commission mechanics, and retention-aligned incentives) and produce a Sales Comp Plan Pack. Use for AE/SDR/AM comp plans, early sales hi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/sales-compensation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "sales-compensation. Design a sales compensation plan (OTE & pay mix, quotas & ramp, commission mechanics, and retention-aligned incentives) and produce a Sales Comp Plan Pack. Use for AE/SDR/AM comp plans, early sales hi Platforms: claude_code."} +{"id": "a6df0a0382c8278ddbcbe5dc1ce2ebdf444d2ba1006c9670eae2b601bd990206", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "researching-with-deepwiki", "description": "Research GitHub, GitLab, and Bitbucket repositories using DeepWiki MCP server. Use when exploring\nunfamiliar codebases, understanding project architecture, or asking questions about how a specific\nope", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/researching-with-deepwiki/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "researching-with-deepwiki. Research GitHub, GitLab, and Bitbucket repositories using DeepWiki MCP server. Use when exploring\nunfamiliar codebases, understanding project architecture, or asking questions about how a specific\nope Platforms: claude_code."} +{"id": "25abb8753a41ac7a87f29e9df251f84a81714fe61d0bb9346b29de16b2e24c73", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "continuous-learning-v2", "description": "Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/continuous-learning-v2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "continuous-learning-v2. Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents. Platforms: claude_code."} +{"id": "3e67d592133f0db59785720d9ab2ecb8e4ed5bb475422c44861da0c80f6b4f20", "repo_url": "https://github.com/moonbitlang/moonbit-agent-guide", "name": "moonbit-refactoring", "description": "Refactor MoonBit code to be idiomatic: shrink public APIs, convert functions to methods, use pattern matching with views, add loop invariants, and ensure test coverage without regressions. Use when up", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moonbitlang/moonbit-agent-guide/blob/main/moonbit-refactoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T07:52:50Z"}, "embedding_text": "moonbit-refactoring. Refactor MoonBit code to be idiomatic: shrink public APIs, convert functions to methods, use pattern matching with views, add loop invariants, and ensure test coverage without regressions. Use when up Platforms: claude_code."} +{"id": "c4535f77663b3cac96d976bb9b2f28b62b1babf7e53f1d675954cd19e154c432", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "local-dev", "description": "Start local development environment with backend and macOS app", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "local-dev. Start local development environment with backend and macOS app Platforms: claude_code."} +{"id": "797d78376477a911a1964e014c0aadac246f312d4e70b1f721a8f2fdde870d40", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "review", "description": "[UDS] Perform systematic code review with checklist", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/code-review-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "review. [UDS] Perform systematic code review with checklist Platforms: claude_code."} +{"id": "f90d4580496b07dbaa3a62a3c809b050e237de9ba860a6f9f80b872b01e5acd4", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "webapp-testing", "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "webapp-testing. Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l Platforms: claude_code."} +{"id": "b334ca9f42597a3082b3ad5b2fdbfa0a5281289acaea737f6eb46da2d5bb9799", "repo_url": "https://github.com/yi-john-huang/sdd-mcp", "name": "sdd-steering", "description": "Create project-specific steering documents for SDD workflow. Use when setting up project context, documenting technology stack, or establishing project conventions. Invoked via /sdd-steering.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yi-john-huang/sdd-mcp/blob/master/.claude/skills/sdd-steering-custom/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:53:04Z"}, "embedding_text": "sdd-steering. Create project-specific steering documents for SDD workflow. Use when setting up project context, documenting technology stack, or establishing project conventions. Invoked via /sdd-steering. Platforms: claude_code."} +{"id": "d9b3a5f12e7a7c702a1b1c4239bfe7046374894afaa9d8a91ff64d861614ddb6", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "financial-goal-planner", "description": "Create timelines for house down payment, retirement, college fund. Monthly savings targets, investment strategies, milestone tracking.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/financial-goal-planner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "financial-goal-planner. Create timelines for house down payment, retirement, college fund. Monthly savings targets, investment strategies, milestone tracking. Platforms: claude_code."} +{"id": "a09036b703f3f585a5eee702a614fcf0c470d0874b0d9ef7fd58f000f086e01a", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "semantic-search", "description": "Executes exact Exocortex embeddings lookup for internal libraries. Wraps smart_search.py.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/research/semantic-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "semantic-search. Executes exact Exocortex embeddings lookup for internal libraries. Wraps smart_search.py. Platforms: claude_code."} +{"id": "3ddde62bd071f5479c36d0e7cbb893fc5d0be40921e8c99705556a6b58c4f506", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "trade-journal-analyzer", "description": "Unified post-trade analytics: journal pattern extraction + drawdown classification. Absorbs: drawdown-classifier.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/workflow/trade-journal-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "trade-journal-analyzer. Unified post-trade analytics: journal pattern extraction + drawdown classification. Absorbs: drawdown-classifier. Platforms: claude_code."} +{"id": "66394163ed31888767072db358b2b2cd660d7705b3a8003dccf3adb6a9a7b530", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "cove-prompt-design", "description": "Explain how and when to use Chain of Verification (CoVe) in prompt design. Use when designing prompts that require factual accuracy, self checking, or reduction of hallucinations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/cove-prompt-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "cove-prompt-design. Explain how and when to use Chain of Verification (CoVe) in prompt design. Use when designing prompts that require factual accuracy, self checking, or reduction of hallucinations. Platforms: claude_code."} +{"id": "cd41ff23902c5e8856802acd30859c377790497b61535e10e3105fc9d2ba9dd3", "repo_url": "https://github.com/wsimmonds/claude-nextjs-skills", "name": "nextjs-server-navigation", "description": "Guide for implementing navigation in Next.js Server Components using Link component and redirect() function. Covers the difference between server and client navigation methods. Use when adding links,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wsimmonds/claude-nextjs-skills/blob/main/nextjs-server-navigation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-24T11:05:39Z"}, "embedding_text": "nextjs-server-navigation. Guide for implementing navigation in Next.js Server Components using Link component and redirect() function. Covers the difference between server and client navigation methods. Use when adding links, Platforms: claude_code."} +{"id": "7ab9cc2198fd02d87010a63c9cdab9f582176813e78c84730a1eaf26c3ac64dc", "repo_url": "https://github.com/w3c/web-performance", "name": "bikeshed-conversion", "description": "Guidelines for converting W3C specs to Bikeshed format. Covers anchor ID preservation, dfn handling, and common pitfalls. Read this before any Bikeshed conversion or migration work.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/w3c/web-performance/blob/gh-pages/skills/bikeshed-conversion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 433, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T20:01:59Z"}, "embedding_text": "bikeshed-conversion. Guidelines for converting W3C specs to Bikeshed format. Covers anchor ID preservation, dfn handling, and common pitfalls. Read this before any Bikeshed conversion or migration work. Platforms: claude_code."} +{"id": "6fff53b30ce9084de90310a93913b6d671ff3959f90ec8f3b16e51c9c3cd10c2", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-ads", "description": "Paid advertising strategies for developer audiences on Carbon Ads, BuySellAds, Reddit, and\ndeveloper newsletters. Covers which platforms work for developers, creating ad creative\nthat doesn't feel lik", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-ads. Paid advertising strategies for developer audiences on Carbon Ads, BuySellAds, Reddit, and\ndeveloper newsletters. Covers which platforms work for developers, creating ad creative\nthat doesn't feel lik Platforms: claude_code."} +{"id": "0253ed5be873cc863f8b10dfc214af378cc527f73ddb3fd63364bbbc4e9b58f3", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "dogfooding", "description": "Run an internal dogfooding program/sprint and produce a Dogfooding Pack (charter, scenario map, routines, dogfooding log + triage board spec, weekly report, ship/no-ship gate). Use for \u201cdogfooding\u201d, \u201c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/dogfooding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "dogfooding. Run an internal dogfooding program/sprint and produce a Dogfooding Pack (charter, scenario map, routines, dogfooding log + triage board spec, weekly report, ship/no-ship gate). Use for \u201cdogfooding\u201d, \u201c Platforms: claude_code."} +{"id": "405dd77c27448707243428552646e3172b36c05a3ce62d7cc61cc22f174683f4", "repo_url": "https://github.com/spirimirror/libuipc", "name": "fix-pr", "description": "Fix a pull request based on review feedback", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spirimirror/libuipc/blob/main/.cursor/skills/fix-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:12:46Z"}, "embedding_text": "fix-pr. Fix a pull request based on review feedback Platforms: claude_code."} +{"id": "34e55f88d0a8f16f48ead9c1da07d8d3eec312d033a808d032f00a028eff6f36", "repo_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin", "name": "automating-messages", "description": "Automates macOS Messages (iMessage/SMS) via JXA with reliable service\u2192buddy resolution. Use when asked to \"automate iMessage\", \"send Messages via script\", \"JXA Messages automation\", or \"read Messages", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin/blob/main/plugins/automating-mac-apps-plugin/skills/automating-messages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T23:41:11Z"}, "embedding_text": "automating-messages. Automates macOS Messages (iMessage/SMS) via JXA with reliable service\u2192buddy resolution. Use when asked to \"automate iMessage\", \"send Messages via script\", \"JXA Messages automation\", or \"read Messages Platforms: claude_code."} +{"id": "cb91decacf542bf4b7f936c220c4c92596b423e3637b035d9289377e034ca6ab", "repo_url": "https://github.com/ykdojo/safeclaw", "name": "slack", "description": "Read Slack messages, channels, DMs, and search. Read-only access to your Slack workspace.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ykdojo/safeclaw/blob/main/setup/skills/slack/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 158, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:53:54Z"}, "embedding_text": "slack. Read Slack messages, channels, DMs, and search. Read-only access to your Slack workspace. Platforms: claude_code."} +{"id": "959030ada471992e88bb5eec281cf61d1a0a0772689aec408a45b27711f2604a", "repo_url": "https://github.com/mburdo/knowledge_and_vibes", "name": "ground", "description": "Verify external libraries, APIs, and frameworks against current documentation. Use when implementing external dependencies, when unsure if a pattern is current, when the user mentions \"ground\", \"verif", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mburdo/knowledge_and_vibes/blob/master/.claude/skills/ground/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 43, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-28T19:47:07Z"}, "embedding_text": "ground. Verify external libraries, APIs, and frameworks against current documentation. Use when implementing external dependencies, when unsure if a pattern is current, when the user mentions \"ground\", \"verif Platforms: claude_code."} +{"id": "160b2a64ae4ba0d0a8382c999a85b83249ef8451ab0ad2d55df425ef4c0ac495", "repo_url": "https://github.com/juliusbrussee/caveman", "name": "caveman-help", "description": "Quick-reference card for all caveman modes, skills, and commands. One-shot display, not a persistent mode. Trigger: /caveman-help, \"caveman help\", \"what caveman commands\", \"how do I use caveman\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/juliusbrussee/caveman/blob/main/plugins/caveman/skills/caveman/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 75568, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T13:51:06Z"}, "embedding_text": "caveman-help. Quick-reference card for all caveman modes, skills, and commands. One-shot display, not a persistent mode. Trigger: /caveman-help, \"caveman help\", \"what caveman commands\", \"how do I use caveman\". Platforms: claude_code."} +{"id": "539836d42270aa228c285344761a829dc10bf22e3017a8c4e4fa7943f3d81ab2", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "seo-auditor", "description": "Scrapes a URL, runs Lighthouse equivalent checks, and outputs a strategic content/architecture plan.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/business/seo-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "seo-auditor. Scrapes a URL, runs Lighthouse equivalent checks, and outputs a strategic content/architecture plan. Platforms: claude_code."} +{"id": "d9959d19d01d312e5ef08ff87280a8090923716c8c598231b68ac22638d86554", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-validate", "description": "This skill should be used when the user asks to \"validate a finding\", \"check if a vulnerability is real\", \"triage a security finding\", \"confirm a vulnerability\", \"determine if a finding is a true positive or false positive\", or provides a security finding for review. It validates security vulnerability findings by tracing data flows, verifying exploit conditions, analyzing security controls, and optionally testing attack vectors against a live application.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/validate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-validate"}, "quality": {"stars": 393, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-validate. This skill should be used when the user asks to \"validate a finding\", \"check if a vulnerability is real\", \"triage a security finding\", \"confirm a vulnerability\", \"determine if a finding is a true positive or false positive\", or provides a security finding for review. It validates security vulnerability findings by tracing data flows, verifying exploit conditions, analyzing security controls, and optionally testing attack vectors against a live application. Platforms: claude_code."} +{"id": "44d4c6ed662dba335b2fd805e88fe78ed7c6a8973a62460d1b63e9596d996f71", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "doc-writer", "description": "Documentation specialist for README, API docs, and code comments", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/doc-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install doc-writer"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "doc-writer. Documentation specialist for README, API docs, and code comments Platforms: claude_code."} +{"id": "1467acfe017ce2d3dabf06fcb9bb0ae3f70f0299854912bcd1602d39f98f4da3", "repo_url": "https://github.com/team-attention/hoyeon", "name": "compound", "description": "This skill should be used when the user says \"/compound\", \"compound this\",\n\"document learnings\", \"save what we learned\", or after completing a PR.\nExtracts knowledge from PR context and saves to docs/", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/compound/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "compound. This skill should be used when the user says \"/compound\", \"compound this\",\n\"document learnings\", \"save what we learned\", or after completing a PR.\nExtracts knowledge from PR context and saves to docs/ Platforms: claude_code."} +{"id": "fdb8e3b618ad7ae9554b71406970e122558b6533fcbccbf54a070ab384597e20", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capgo-release-management", "description": "Guides the agent through Capgo OTA release workflows including bundle uploads, compatibility checks, channels, cleanup, and encryption key setup. Use when managing Capgo bundle and channel operations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capgo-cloud/skills/capgo-release-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capgo-release-management. Guides the agent through Capgo OTA release workflows including bundle uploads, compatibility checks, channels, cleanup, and encryption key setup. Use when managing Capgo bundle and channel operations. Platforms: claude_code."} +{"id": "9ab6f483e5cb69562176fd1835cc7419ee1da38f244491ead23453dea8f8c04b", "repo_url": "https://github.com/team-attention/hoyeon", "name": "check", "description": "This skill should be used when the user wants to verify their changes\nbefore pushing, or update the project's rule checklists.\nPhase 1: validate changed files against .dev/rules/ checklists and report", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "check. This skill should be used when the user wants to verify their changes\nbefore pushing, or update the project's rule checklists.\nPhase 1: validate changed files against .dev/rules/ checklists and report Platforms: claude_code."} +{"id": "8498ec4f25e17233a5de8c35b351ec639f6e6dcd37ff18bb8863d8982299aa7f", "repo_url": "https://github.com/howells/arc", "name": "vision", "description": "Create or review a high-level vision document capturing project goals and purpose.\nUse when asked to \"define the vision\", \"what is this project\", \"set goals\",\nor when starting a new project that needs", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/howells/arc/blob/main/plugins/arc/skills/vision/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T00:43:08Z"}, "embedding_text": "vision. Create or review a high-level vision document capturing project goals and purpose.\nUse when asked to \"define the vision\", \"what is this project\", \"set goals\",\nor when starting a new project that needs Platforms: claude_code."} +{"id": "8c12d3b487966df2e14b103f2e67cade2fe044466555ac2acc9d3be2cec20c7a", "repo_url": "https://github.com/minimax-ai/skills", "name": "gif-sticker-maker", "description": "Convert photos (people, pets, objects, logos) into 4 animated GIF stickers with captions.\nUse when: user wants to create cartoon stickers, GIF expressions, emoji packs, animated avatars,\nor convert ph", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/skills/gif-sticker-maker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "gif-sticker-maker. Convert photos (people, pets, objects, logos) into 4 animated GIF stickers with captions.\nUse when: user wants to create cartoon stickers, GIF expressions, emoji packs, animated avatars,\nor convert ph Platforms: claude_code."} +{"id": "7e664b2fa8388d6517e7127d582d7a5db5df618886b4e2d39afe7aebd15aa35f", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "sales-motion-design", "description": "When the user wants to choose between PLG and sales-led, design a sales motion, optimize time-to-first-value, or build a value-before-purchase experience. Also use when the user mentions 'PLG,' 'product-led growth,' 'sales-led,' 'sales motion,' 'free trial,' 'freemium,' 'self-serve,' 'demo-first,' 'time-to-first-value,' 'TTFV,' or 'agent-led sales.' This skill covers sales motion selection, value delivery design, and go-to-market motion architecture. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/sales-motion-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sales-motion-design"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "sales-motion-design. When the user wants to choose between PLG and sales-led, design a sales motion, optimize time-to-first-value, or build a value-before-purchase experience. Also use when the user mentions 'PLG,' 'product-led growth,' 'sales-led,' 'sales motion,' 'free trial,' 'freemium,' 'self-serve,' 'demo-first,' 'time-to-first-value,' 'TTFV,' or 'agent-led sales.' This skill covers sales motion selection, value delivery design, and go-to-market motion architecture. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "7c551eb0abcbd33d735c1fdeb1a18b2ab7d30fc227bbf10050c1f8a5e1afbdfc", "repo_url": "https://github.com/aviatesk/jetls.jl", "name": "commit", "description": "MUST invoke before creating any git commit. Provides commit message format and safety rules.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviatesk/jetls.jl/blob/master/.agents/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 290, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:34:50Z"}, "embedding_text": "commit. MUST invoke before creating any git commit. Provides commit message format and safety rules. Platforms: claude_code."} +{"id": "afcc6785492d9668924d76b40f57e3a4ecee86fcc765dde6ba54cd5d29378b23", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "excalidraw", "description": "Use when user requests diagrams, flowcharts, architecture charts, or visualizations. Also use proactively when explaining systems with 3+ components, complex data flows, or relationships that benefit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/dr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "excalidraw. Use when user requests diagrams, flowcharts, architecture charts, or visualizations. Also use proactively when explaining systems with 3+ components, complex data flows, or relationships that benefit Platforms: claude_code."} +{"id": "8667727ea69ae24c827a167f7089cdc45d4c39db059f830c1a1d28de26205341", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-plugin-spm-support", "description": "Guides the agent through adding Swift Package Manager support to an existing Capacitor plugin. Covers Package.swift, CAPBridgedPlugin conversion, bridge cleanup, and package manifest updates. Do not u", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-core/skills/capacitor-plugins/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-plugin-spm-support. Guides the agent through adding Swift Package Manager support to an existing Capacitor plugin. Covers Package.swift, CAPBridgedPlugin conversion, bridge cleanup, and package manifest updates. Do not u Platforms: claude_code."} +{"id": "bcb6731631227016d4ef79fcb14b6b266acafae3eed2d7c4915e7cbd4c580261", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "springboot-security", "description": "Spring Security best practices for authn/authz, validation, CSRF, secrets, headers, rate limiting, and dependency security in Java Spring Boot services.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/springboot-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "springboot-security. Spring Security best practices for authn/authz, validation, CSRF, secrets, headers, rate limiting, and dependency security in Java Spring Boot services. Platforms: claude_code."} +{"id": "7c6a56d1a4f55342256121c10fb47d0cc47461e88255a9590b098eb4e00beb19", "repo_url": "https://github.com/skilluse/skilluse", "name": "commit", "description": "Generate Conventional Commits 1.0.0 compliant messages. Use when the user says \"commit\", \"create commit\", or finishes implementing code.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skilluse/skilluse/blob/main/.claude/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T16:23:26Z"}, "embedding_text": "commit. Generate Conventional Commits 1.0.0 compliant messages. Use when the user says \"commit\", \"create commit\", or finishes implementing code. Platforms: claude_code."} +{"id": "72917fc2a9a36da8d1d28eafb8cd3e90849ad2bae48d00088923dd4fc4162a8f", "repo_url": "https://github.com/dagger/dagger", "name": "cache-expert", "description": "Covers Dagger Engine caching internals including cache key derivation, invalidation, and the immutable DAG model. Use when debugging cache misses, unexpected invalidations, or implementing caching-rel", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dagger/dagger/blob/main/skills/dagger-chores/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15991, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:15:39Z"}, "embedding_text": "cache-expert. Covers Dagger Engine caching internals including cache key derivation, invalidation, and the immutable DAG model. Use when debugging cache misses, unexpected invalidations, or implementing caching-rel Platforms: claude_code."} +{"id": "82878084108a9e03b931a39b3f7650d1faf12c5793de2a184fda12507743704c", "repo_url": "https://github.com/bkircher/skills", "name": "gh-run-failure", "description": "Use to analyze failures in GitHub pipelines or jobs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bkircher/skills/blob/main/gh-run-failure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-13T12:23:43Z"}, "embedding_text": "gh-run-failure. Use to analyze failures in GitHub pipelines or jobs. Platforms: claude_code."} +{"id": "1951e58e410c56cdedc345d39f97ceef6e43a25b6e97ae6496617f789fd9e9dd", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "frontend-js-best-practices", "description": "JavaScript performance optimization guidelines. Use when writing, reviewing, or refactoring JavaScript/TypeScript code to ensure optimal performance patterns. Triggers on tasks involving loops, data s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/frontend-js-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "frontend-js-best-practices. JavaScript performance optimization guidelines. Use when writing, reviewing, or refactoring JavaScript/TypeScript code to ensure optimal performance patterns. Triggers on tasks involving loops, data s Platforms: claude_code."} +{"id": "9ce02f41f5c85d018017925805042b502c353e901c3504913bca538b3770b0a6", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-sdlc-engineering", "description": "Use when users request SDLC guidance, CMMI processes, requirements management, design documentation, quality assurance, governance, metrics, or adopting processes on existing projects", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-sdlc-engineering/skills/using-sdlc-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-sdlc-engineering. Use when users request SDLC guidance, CMMI processes, requirements management, design documentation, quality assurance, governance, metrics, or adopting processes on existing projects Platforms: claude_code."} +{"id": "63f7e005cbabd2a6d10b10f77def554f9ded5089e054a958e7f7bba445055c2e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "x-filter", "description": "Score and filter topics for X content creation using weighted criteria. Use when user wants to evaluate collected materials, filter topics by score, or mentions \"filter topics\", \"score materials\", \"x-filter\", \"\u9009\u9898\u7b5b\u9009\". Applies 10-point scoring system with customizable weights.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/kangarooking/x-filter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install x-filter"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "x-filter. Score and filter topics for X content creation using weighted criteria. Use when user wants to evaluate collected materials, filter topics by score, or mentions \"filter topics\", \"score materials\", \"x-filter\", \"\u9009\u9898\u7b5b\u9009\". Applies 10-point scoring system with customizable weights. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "6ca3ab545da78d8d9a77855d1dc1943dae411687a2cc9f0fe0383a37936f8b76", "repo_url": "https://github.com/howells/arc", "name": "ideate", "description": "Turn ideas into validated designs through collaborative dialogue.\nUse when asked to \"design a feature\", \"plan an approach\", \"think through implementation\",\nor when starting new work that needs archite", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/howells/arc/blob/main/plugins/arc/skills/ideate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T00:43:08Z"}, "embedding_text": "ideate. Turn ideas into validated designs through collaborative dialogue.\nUse when asked to \"design a feature\", \"plan an approach\", \"think through implementation\",\nor when starting new work that needs archite Platforms: claude_code."} +{"id": "b1f2fb26e7b73857c24325baaaed6beb0fd4e32a4502961e7dae6ab646f5e519", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "conducting-interviews", "description": "Help users conduct effective hiring interviews. Use when someone is designing an interview loop, crafting interview questions, evaluating candidates in real-time, or building a structured interview pr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/conducting-interviews/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "conducting-interviews. Help users conduct effective hiring interviews. Use when someone is designing an interview loop, crafting interview questions, evaluating candidates in real-time, or building a structured interview pr Platforms: claude_code."} +{"id": "13c65836b1e8e61c8880edc67545892bee29910e011b4e1e7aa00bb0d028d62a", "repo_url": "https://github.com/hannesill/m4", "name": "sepsis-3-cohort", "description": "Identify Sepsis-3 patients in MIMIC-IV using the consensus definition (SOFA >= 2 + suspected infection). Use for sepsis cohort studies, outcome research, or quality metrics.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/benchmark/tasks/sepsis3/mimic-sepsis3-raw/skills/sepsis-3-cohort/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "sepsis-3-cohort. Identify Sepsis-3 patients in MIMIC-IV using the consensus definition (SOFA >= 2 + suspected infection). Use for sepsis cohort studies, outcome research, or quality metrics. Platforms: claude_code."} +{"id": "2801024b5e6c867bf7fe8b30523baf4dd12a38ff569b6fb03ad53dfb004a4fe8", "repo_url": "https://github.com/howells/arc", "name": "detail", "description": "Create a detailed implementation plan with exact file paths, test code, and TDD cycles.\nUse when asked to \"create an implementation plan\", \"break this down into tasks\",\n\"detail the steps\", or after /a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/howells/arc/blob/main/plugins/arc/skills/detail/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T00:43:08Z"}, "embedding_text": "detail. Create a detailed implementation plan with exact file paths, test code, and TDD cycles.\nUse when asked to \"create an implementation plan\", \"break this down into tasks\",\n\"detail the steps\", or after /a Platforms: claude_code."} +{"id": "e69263e9a57ee61ccf7c1515b33d9a5dbad0a2df8050983fd47252314d059073", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "ruby-on-rails-best-practices", "description": "Ruby on Rails architecture and coding patterns from Basecamp. Use when writing, reviewing, or refactoring Rails code to follow proven conventions for models, controllers, jobs, and concerns. Triggers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/ruby-on-rails-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "ruby-on-rails-best-practices. Ruby on Rails architecture and coding patterns from Basecamp. Use when writing, reviewing, or refactoring Rails code to follow proven conventions for models, controllers, jobs, and concerns. Triggers Platforms: claude_code."} +{"id": "2356c959353b965155668491cc6ff54cb4e0e5b8677c5de6194b97baafea0292", "repo_url": "https://github.com/openhands/skills", "name": "ssh", "description": "Establish and manage SSH connections to remote machines, including key generation, configuration, and file transfers. Use when connecting to remote servers, executing remote commands, or transferring", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openhands/skills/blob/main/skills/ssh/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:56:03Z"}, "embedding_text": "ssh. Establish and manage SSH connections to remote machines, including key generation, configuration, and file transfers. Use when connecting to remote servers, executing remote commands, or transferring Platforms: claude_code."} +{"id": "504df7981a1097d1310281992acb8b12ae5ebd6a5c69106497087d4ad720a3e4", "repo_url": "https://github.com/letta-ai/lettabot", "name": "tmux", "description": "Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/tmux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "tmux. Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output. Platforms: claude_code."} +{"id": "3250b6fd36b2d5c429f85714046199fd57f078e5d7e82cd9d3bb61507895423f", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "fantasy-lineup-optimizer", "description": "Analyze matchups, injuries, weather, Vegas lines. Recommend sit/start decisions with confidence levels for NFL, NBA, MLB, NHL, soccer.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/fantasy-lineup-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "fantasy-lineup-optimizer. Analyze matchups, injuries, weather, Vegas lines. Recommend sit/start decisions with confidence levels for NFL, NBA, MLB, NHL, soccer. Platforms: claude_code."} +{"id": "d6b63bafe8f3246cd84dc371d775e9fcfb9c7690ce53989c4c18fa6260d31bb2", "repo_url": "https://github.com/mp-web3/claude-starter-kit", "name": "plan", "description": "Structured workflow for planning and implementing new features, skills, scripts, or major changes. Use when the user asks to build something new, add a skill, create infrastructure, or make architectu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mp-web3/claude-starter-kit/blob/main/skills/plan-and-implement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 96, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-18T16:01:46Z"}, "embedding_text": "plan. Structured workflow for planning and implementing new features, skills, scripts, or major changes. Use when the user asks to build something new, add a skill, create infrastructure, or make architectu Platforms: claude_code."} +{"id": "a1aebdd7f536845eb9d6260bcb352f9cb862f85199c8b2c46c9e0c1c87dbedc0", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "deployment-sop", "description": "Deployment workflows, pre-deploy validation, smoke testing, and rollback procedures. Use when deploying to staging or production, running smoke tests, validating deployments, or planning rollback. Do", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/deployment-sop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "deployment-sop. Deployment workflows, pre-deploy validation, smoke testing, and rollback procedures. Use when deploying to staging or production, running smoke tests, validating deployments, or planning rollback. Do Platforms: claude_code."} +{"id": "737a048847bb84e3479cf8a98e76d7267999e483eefd43d327110485b9b17891", "repo_url": "https://github.com/zechenzhangagi/ai-research-skills", "name": "fine-tuning-serving-openpi", "description": "Fine-tune and serve Physical Intelligence OpenPI models (pi0, pi0-fast, pi0.5) using JAX or PyTorch backends for robot policy inference across ALOHA, DROID, and LIBERO environments. Use when adapting", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zechenzhangagi/ai-research-skills/blob/main/18-multimodal/openpi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 9939, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "fine-tuning-serving-openpi. Fine-tune and serve Physical Intelligence OpenPI models (pi0, pi0-fast, pi0.5) using JAX or PyTorch backends for robot policy inference across ALOHA, DROID, and LIBERO environments. Use when adapting Platforms: claude_code."} +{"id": "4b645c6a1b0bcfcbdd7a425d1b80b1f1b489bc7d26f3596eeb0e0128fd9f3307", "repo_url": "https://github.com/robertguss/claude-skills", "name": "simple-tasks", "description": "Install a fast local task workflow for single-project planning with `scripts/task.sh` (claim, done, status, reporting) backed by `tasks/TASKS.md` and optional `tasks/details/` notes. Use for lightweig", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/mobile-app-dev/ios-mac-app-creator/simple-tasks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "simple-tasks. Install a fast local task workflow for single-project planning with `scripts/task.sh` (claim, done, status, reporting) backed by `tasks/TASKS.md` and optional `tasks/details/` notes. Use for lightweig Platforms: claude_code."} +{"id": "b75d80c7eef73ab1ff9b3ae6e4912543e641cb85097916ede400456c6de659dd", "repo_url": "https://github.com/enbyaugust/zacs-claude-skills", "name": "boot-local", "description": "Kill all running local development processes (worker, edge functions, dev server), wait for termination, then restart them. Dev server runs on port 8080. Use when user says \"boot local\", \"restart loca", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enbyaugust/zacs-claude-skills/blob/master/skills/boot-local/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T06:54:23Z"}, "embedding_text": "boot-local. Kill all running local development processes (worker, edge functions, dev server), wait for termination, then restart them. Dev server runs on port 8080. Use when user says \"boot local\", \"restart loca Platforms: claude_code."} +{"id": "66c150aa9d8e92f42d8cd072e852c63de91c083ad0c95d37106d85f0c860ec7b", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "release-manager", "description": "Ship features safely with progressive rollouts, feature flags, and canary deployments. Use when deploying risky features or need gradual rollouts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/release-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "release-manager. Ship features safely with progressive rollouts, feature flags, and canary deployments. Use when deploying risky features or need gradual rollouts. Platforms: claude_code."} +{"id": "0b806997075c27e9fc27b89ca40ec8d30c29a1a8e3cfe30f27d7f201e576d6be", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "utm-parameter-generator", "description": "Create standardized UTM tracking for all campaigns. Ensure consistent naming conventions across team and generate tracking reports.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/utm-parameter-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "utm-parameter-generator. Create standardized UTM tracking for all campaigns. Ensure consistent naming conventions across team and generate tracking reports. Platforms: claude_code."} +{"id": "f9ecd1b8104d39a0c5ce7d00fd9ce7820b9c4bf5cc407557b3982539b5c2014f", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-cap-capire", "description": "SAP Cloud Application Programming Model (CAP) development skill using Capire documentation.\nUse when: building CAP applications, defining CDS models, implementing services, working with\nSAP HANA/SQLit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-cap-capire/skills/sap-cap-capire/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-cap-capire. SAP Cloud Application Programming Model (CAP) development skill using Capire documentation.\nUse when: building CAP applications, defining CDS models, implementing services, working with\nSAP HANA/SQLit Platforms: claude_code."} +{"id": "5c3db26dca90fc8aed6887f3922af0031d2777f244980ef3f1e138f63fae1c99", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "platform-strategy", "description": "Help users design and execute platform business strategies. Use when someone is building a marketplace, creating an ecosystem, deciding on API strategy, thinking about multi-sided network effects, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/platform-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "platform-strategy. Help users design and execute platform business strategies. Use when someone is building a marketplace, creating an ecosystem, deciding on API strategy, thinking about multi-sided network effects, or Platforms: claude_code."} +{"id": "b1127aa03ef685ef11c695cc1f562afe0678ec695277dd20c227216c57cf5cc6", "repo_url": "https://github.com/msmps/opentui-skill", "name": "opentui", "description": "Comprehensive OpenTUI skill for building terminal user interfaces. Covers the core imperative API, React reconciler, and Solid reconciler. Use for any TUI development task including components, layout", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/msmps/opentui-skill/blob/main/skill/opentui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 218, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T21:45:22Z"}, "embedding_text": "opentui. Comprehensive OpenTUI skill for building terminal user interfaces. Covers the core imperative API, React reconciler, and Solid reconciler. Use for any TUI development task including components, layout Platforms: claude_code."} +{"id": "fef0ed23b7cd6cb93341488f41a22fe141716475fb65d9fcd4c215f5b57254ac", "repo_url": "https://github.com/cognitedata/toolkit", "name": "send-it", "description": "Stage changes, run pre-commit hooks, and optionally commit, push, create a PR, and monitor CI. Use when the user says \"send it\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cognitedata/toolkit/blob/main/.cursor/skills/send-it/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:59:45Z"}, "embedding_text": "send-it. Stage changes, run pre-commit hooks, and optionally commit, push, create a PR, and monitor CI. Use when the user says \"send it\". Platforms: claude_code."} +{"id": "240ffd507a0938cf235d5fd5c18b4a7a1fefdafb61e7b91478b8f70ec75cc2d4", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "youtube-devrel", "description": "When the user wants to create developer YouTube content, technical screencasts, or video tutorials. Trigger phrases include \"YouTube,\" \"developer video,\" \"screencast,\" \"video tutorial,\" \"live coding,\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/youtube-devrel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "youtube-devrel. When the user wants to create developer YouTube content, technical screencasts, or video tutorials. Trigger phrases include \"YouTube,\" \"developer video,\" \"screencast,\" \"video tutorial,\" \"live coding,\" Platforms: claude_code."} +{"id": "070ebef2d409c4e0f0c5abcc672f72f7ca4a1cad28dd10220d32266783ab483e", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "git-config", "description": "Comprehensive Git configuration guide covering global settings, aliases, performance tuning, credential management, maintenance, .gitattributes, clone shortcuts, and troubleshooting. Use when configur", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/github-specialist/git-config/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "git-config. Comprehensive Git configuration guide covering global settings, aliases, performance tuning, credential management, maintenance, .gitattributes, clone shortcuts, and troubleshooting. Use when configur Platforms: claude_code."} +{"id": "b452a7deedfe6167d59f122b7bbab7ff652fcb7777eabba075ead136137ac112", "repo_url": "https://github.com/ruvnet/claude-flow", "name": "AgentDB Vector Search", "description": "Implement semantic vector search with AgentDB for intelligent document retrieval, similarity matching, and context-aware querying. Use when building RAG systems, semantic search engines, or intelligen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruvnet/claude-flow/blob/main/.agents/skills/agentdb-vector-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60808, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:09:22Z"}, "embedding_text": "AgentDB Vector Search. Implement semantic vector search with AgentDB for intelligent document retrieval, similarity matching, and context-aware querying. Use when building RAG systems, semantic search engines, or intelligen Platforms: claude_code."} +{"id": "87d9b65c358fedca362a7c0fa8bfc78ad97be34334355a97b576e8ab65a87d22", "repo_url": "https://github.com/prefecthq/prefect-mcp-server", "name": "cli", "description": "Prefect CLI commands for mutations. The MCP server is read-only - use this skill when you need to trigger deployments, cancel flow runs, create automations, or modify Prefect resources.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prefecthq/prefect-mcp-server/blob/main/skills/cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:18:57Z"}, "embedding_text": "cli. Prefect CLI commands for mutations. The MCP server is read-only - use this skill when you need to trigger deployments, cancel flow runs, create automations, or modify Prefect resources. Platforms: claude_code."} +{"id": "a0652f6d1b061735ac7aa4c1d1b1b5f7209edcb260648c5338abd28989efb932", "repo_url": "https://github.com/spirimirror/libuipc", "name": "cursor-rules", "description": "How to add or edit Cursor rules in our project", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spirimirror/libuipc/blob/main/.cursor/skills/cursor-rules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:12:46Z"}, "embedding_text": "cursor-rules. How to add or edit Cursor rules in our project Platforms: claude_code."} +{"id": "c40665ec4fb2562622d3ad3634e6b7135b2b74fd438679b7a465577c2daae012", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "migration-patterns", "description": "Database migration creation with mandatory RLS policies and ARCHitect approval workflow. Use when creating migrations, adding tables with RLS, updating ORM schema, adding GRANT statements, or planning", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/migration-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "migration-patterns. Database migration creation with mandatory RLS policies and ARCHitect approval workflow. Use when creating migrations, adding tables with RLS, updating ORM schema, adding GRANT statements, or planning Platforms: claude_code."} +{"id": "dc65924c3597f1d462122bfd35920ae9a386f4ebf8447aaefab57a3455fa7e76", "repo_url": "https://github.com/sheng-jie/maf.agentskills", "name": "split-pdf", "description": "Split PDF files into separate single-page documents or extract specific page ranges. Use when you need to divide a PDF into multiple files, extract particular pages, or process PDF pages individually.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sheng-jie/maf.agentskills/blob/main/samples/Maf.AgentSkills.ConsoleDemo/.maf/skills/split-pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T03:23:11Z"}, "embedding_text": "split-pdf. Split PDF files into separate single-page documents or extract specific page ranges. Use when you need to divide a PDF into multiple files, extract particular pages, or process PDF pages individually. Platforms: claude_code."} +{"id": "5245e8707a60f971b8d0b9311965627ed484918fd06e3e9f23915d8e79c111da", "repo_url": "https://github.com/everyinc/every-marketplace", "name": "ce:brainstorm", "description": "Explore requirements and approaches through collaborative dialogue before writing a right-sized requirements document and planning implementation. Use for feature ideas, problem framing, when the user", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/every-marketplace/blob/main/plugins/compound-engineering/skills/ce-brainstorm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:25:13Z"}, "embedding_text": "ce:brainstorm. Explore requirements and approaches through collaborative dialogue before writing a right-sized requirements document and planning implementation. Use for feature ideas, problem framing, when the user Platforms: claude_code."} +{"id": "d60d324bfacaf4364305fc32871fef9cfbcd5494880c0ee792c175f060825504", "repo_url": "https://github.com/mburdo/knowledge_and_vibes", "name": "beads-cli", "description": "Task tracking with the bd (Beads) CLI. Use when creating tasks, claiming work, closing beads, managing dependencies, or when the user mentions \"beads\", \"bd\", or \"tasks\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mburdo/knowledge_and_vibes/blob/master/.claude/skills/beads-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 43, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-28T19:47:07Z"}, "embedding_text": "beads-cli. Task tracking with the bd (Beads) CLI. Use when creating tasks, claiming work, closing beads, managing dependencies, or when the user mentions \"beads\", \"bd\", or \"tasks\". Platforms: claude_code."} +{"id": "207d27673540be1d1b25b3ef29f7505ff9f5f7d9374a87da15373998133bfc0c", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "provider-test-patterns", "description": "Terraform provider acceptance test patterns using terraform-plugin-testing with the Plugin Framework. Covers test structure, TestCase/TestStep fields, ConfigStateChecks with custom statecheck.StateChe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/provider-development/skills/provider-test-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "provider-test-patterns. Terraform provider acceptance test patterns using terraform-plugin-testing with the Plugin Framework. Covers test structure, TestCase/TestStep fields, ConfigStateChecks with custom statecheck.StateChe Platforms: claude_code."} +{"id": "08437c24337fcca19177bcfc2e0fef1fecfe8d035c3b13020eb0c7bd5a879e2e", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "treat", "description": "Prune bloated session with a prescription. Removes progress ticks, stale reads, duplicate content, and more.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-teams", "claude-code", "claude-skills", "cli", "context", "context-management", "jsonl", "llm-tools", "pruning", "python", "session-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruya-ai/cozempic/blob/main/plugin/skills/treat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install treat"}, "quality": {"stars": 340, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:12:08Z"}, "embedding_text": "treat. Prune bloated session with a prescription. Removes progress ticks, stale reads, duplicate content, and more. Categories: agent-teams, claude-code, claude-skills, cli, context, context-management, jsonl, llm-tools, pruning, python, session-management. Platforms: claude_code."} +{"id": "f62bdebb15a8335e91fa4f215c876643da87e5b4b3140d0215b744fb68b3d721", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "reading-withholding", "description": "\u6e90\u6cc9\u5fb4\u53ce\u7968\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/reading-withholding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reading-withholding"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "reading-withholding. \u6e90\u6cc9\u5fb4\u53ce\u7968\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002 Platforms: claude_code."} +{"id": "fd91d60cdba36f1778d2a6ded0c448e7772471f2b0c2fa92b0d23f2ccf1a65f4", "repo_url": "https://github.com/marcelorodrigo/agent-skills", "name": "conventional-commit", "description": "Create conventional commit messages following best conventions. Use when committing code changes, writing commit messages, or formatting git history. Follows conventional commits specification.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/marcelorodrigo/agent-skills/blob/master/skills/conventional-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T22:42:06Z"}, "embedding_text": "conventional-commit. Create conventional commit messages following best conventions. Use when committing code changes, writing commit messages, or formatting git history. Follows conventional commits specification. Platforms: claude_code."} +{"id": "4955af0ce829c3994ff9ef2df1eb53b22ae656ffb365c1c1a793e9b652d5665f", "repo_url": "https://github.com/coderabbitai/skills", "name": "code-review", "description": "AI-powered code review using CodeRabbit. Default code-review skill. Trigger for any explicit review request AND autonomously when the agent thinks a review is needed (code/PR/quality/security).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/coderabbitai/skills/blob/main/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T08:26:04Z"}, "embedding_text": "code-review. AI-powered code review using CodeRabbit. Default code-review skill. Trigger for any explicit review request AND autonomously when the agent thinks a review is needed (code/PR/quality/security). Platforms: claude_code."} +{"id": "7aad624cefb95f5720e3b9d04b2a7ee25424071c1de78fd04290f1aff525490b", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "methodology", "description": "[UDS] Manage development methodology workflow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/methodology-system/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "methodology. [UDS] Manage development methodology workflow Platforms: claude_code."} +{"id": "ec1952577f90b144b1bc361242c4c79c5bad80441c85b2f41ee169f2b2d1acbb", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "content-qa", "description": "Use when reviewing long-form marketing or technical content for clarity, consistency, and executable examples before publishing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/fixtures/pass/multi/global/skills/content-qa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "content-qa. Use when reviewing long-form marketing or technical content for clarity, consistency, and executable examples before publishing. Platforms: claude_code."} +{"id": "b3b2f6de0c6c8f45bba13531fb545907e6ba73f3ad9d11aadda2f495b954b2c9", "repo_url": "https://github.com/automagik-dev/genie", "name": "fix", "description": "Bug fix agent. Finds root cause, applies minimal fix, proves it works, reports what changed.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/fix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "fix. Bug fix agent. Finds root cause, applies minimal fix, proves it works, reports what changed. Platforms: claude_code."} +{"id": "f5a5a53639fb353446e019bb3e3a74c71dd7bd5de342dc856fbf4069a47cc9ad", "repo_url": "https://github.com/datadog/dd-trace-dotnet", "name": "analyze-crash", "description": "Stack Trace Crash Analysis for dd-trace-dotnet", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadog/dd-trace-dotnet/blob/master/.claude/skills/analyze-crash/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 568, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T21:14:04Z"}, "embedding_text": "analyze-crash. Stack Trace Crash Analysis for dd-trace-dotnet Platforms: claude_code."} +{"id": "ffca11f7ff75c071c892fa4a6019232d642c5dc571215ad5ed217b6a6af83be3", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "client-pricing", "description": "Commercial pricing engine for freelance deliverables. Encodes the pricing hierarchy, tiered anchor-floor tables, negotiation decision tree, and rate collapse prevention.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/business/client-pricing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "client-pricing. Commercial pricing engine for freelance deliverables. Encodes the pricing hierarchy, tiered anchor-floor tables, negotiation decision tree, and rate collapse prevention. Platforms: claude_code."} +{"id": "5ded8635430fa8ae7b0706c80802c0e1248f19a0c67121afee7b36cfdf3fa320", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "skill-check", "description": "Use when the user wants to validate, lint, or audit agent skill files (SKILL.md). Use when they say \"validate these skills,\" \"check this repo's skills,\" \"lint SKILL.md files,\" or \"audit skills in [rep", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/skills/skill-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "skill-check. Use when the user wants to validate, lint, or audit agent skill files (SKILL.md). Use when they say \"validate these skills,\" \"check this repo's skills,\" \"lint SKILL.md files,\" or \"audit skills in [rep Platforms: claude_code."} +{"id": "dc0d64b677d3c78c1b03a299c206bffda93bffd6ba6ebd93e7714bb5a52e8cbc", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "beads-workflow", "description": "Converting markdown plans into beads (tasks with dependencies) and polishing them until they're implementation-ready. The bridge between planning and agent swarm execution. Includes exact prompts used", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/beads-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "beads-workflow. Converting markdown plans into beads (tasks with dependencies) and polishing them until they're implementation-ready. The bridge between planning and agent swarm execution. Includes exact prompts used Platforms: claude_code."} +{"id": "151870bdc27df2cdb978fdf645496c63c45ea685710aa392199381562712ecd4", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capgo-native-builds", "description": "Guides the agent through Capgo native cloud build workflows for iOS and Android. Use when requesting a native build, configuring build credentials, updating signing material, or controlling build outp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capgo-cloud/skills/capgo-native-builds/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capgo-native-builds. Guides the agent through Capgo native cloud build workflows for iOS and Android. Use when requesting a native build, configuring build credentials, updating signing material, or controlling build outp Platforms: claude_code."} +{"id": "9bc30f40f00df7c9361a54d63767289143bf7dd4a3a25ed298032081837f42c2", "repo_url": "https://github.com/camoa/claude-skills", "name": "task-folder-migrator", "description": "Use when migrating existing single-file tasks to folder-based structure - preserves content, creates organized folders, backs up originals", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/task-folder-migrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "task-folder-migrator. Use when migrating existing single-file tasks to folder-based structure - preserves content, creates organized folders, backs up originals Platforms: claude_code."} +{"id": "8b9ea363cbd8cb2ed9765b1918e7aaf55d84bc170c1e3511aea653c01725d62e", "repo_url": "https://github.com/clerk/skills", "name": "clerk-android", "description": "Implement Clerk authentication for native Android apps using Kotlin and Jetpack Compose with clerk-android source-guided patterns. Use for prebuilt AuthView/UserButton or custom API-driven auth flows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/clerk/skills/blob/main/skills/core/clerk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:23:54Z"}, "embedding_text": "clerk-android. Implement Clerk authentication for native Android apps using Kotlin and Jetpack Compose with clerk-android source-guided patterns. Use for prebuilt AuthView/UserButton or custom API-driven auth flows. Platforms: claude_code."} +{"id": "d73f5c633bbabc2180cc3e627a88750fbab1e508ac7644e049c2f1a5f5eec50f", "repo_url": "https://github.com/dojoengine/dojo.js", "name": "dojo-debug", "description": "Use when debugging and troubleshooting dojo.js applications.\nTriggers: dojo error, torii connection, entity not found, type mismatch, debug dojo,\ntroubleshoot, subscription error, sync issues", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dojoengine/dojo.js/blob/main/.claude/skills/dojo-debug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T09:36:59Z"}, "embedding_text": "dojo-debug. Use when debugging and troubleshooting dojo.js applications.\nTriggers: dojo error, torii connection, entity not found, type mismatch, debug dojo,\ntroubleshoot, subscription error, sync issues Platforms: claude_code."} +{"id": "c823217eb314dce23773dde624d4f38321f08191916e6fc97c4b3b664f8c0760", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "digisign", "description": "Czech electronic signature API integration for DigiSign. Use when the user needs to create, send, and manage digital signature envelopes, upload documents for signing, track signature status, or integ", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/backend/digisign/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "digisign. Czech electronic signature API integration for DigiSign. Use when the user needs to create, send, and manage digital signature envelopes, upload documents for signing, track signature status, or integ Platforms: claude_code."} +{"id": "a3b236351fafef76cc8ed08dc694b6aaaf62e10982b08472983cf44cee822ae3", "repo_url": "https://github.com/brsbl/ottonomous", "name": "reset", "description": "Resets workflow artifacts (.otto/ directory). Removes sessions, tasks, and specs. Use when starting over. Destructive - requires confirmation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brsbl/ottonomous/blob/main/.claude/skills/reset-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T11:44:20Z"}, "embedding_text": "reset. Resets workflow artifacts (.otto/ directory). Removes sessions, tasks, and specs. Use when starting over. Destructive - requires confirmation. Platforms: claude_code."} +{"id": "da8cd65b80ec4be13f70c422db21c4f869b6f1ee720f1f13ebbf08563f16699c", "repo_url": "https://github.com/enbyaugust/zacs-claude-skills", "name": "vercel-e2e-test", "description": "Deploy to Vercel preview and run Playwright E2E tests against staging database. Use when user says \"vercel e2e test\", \"test on vercel\", \"deploy and test\", \"e2e on staging\", or \"preview deploy test\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enbyaugust/zacs-claude-skills/blob/master/skills/vercel-e2e-test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T06:54:23Z"}, "embedding_text": "vercel-e2e-test. Deploy to Vercel preview and run Playwright E2E tests against staging database. Use when user says \"vercel e2e test\", \"test on vercel\", \"deploy and test\", \"e2e on staging\", or \"preview deploy test\". Platforms: claude_code."} +{"id": "2eb13b23496a5f8f78aa8500483dbda0097d42ec2f5553bd23aae72d26e4fb9c", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "cynefin", "description": "Cynefin sense-making framework categorizing problems as Simple, Complicated, Complex, Chaotic, or Confused to select the right approach. Use when unsure how to tackle a problem.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/cynefin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "cynefin. Cynefin sense-making framework categorizing problems as Simple, Complicated, Complex, Chaotic, or Confused to select the right approach. Use when unsure how to tackle a problem. Platforms: claude_code."} +{"id": "e65c37357bd362c8414b43ce8e097a9d9cd8b8a7d739ddb3a98771fcd3323598", "repo_url": "https://github.com/smolcars/hunk", "name": "gpui-component", "description": "gpui-component library patterns for building reusable UI components. Use when creating buttons, inputs, dialogs, forms, or following Longbridge component library conventions in GPUI applications.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smolcars/hunk/blob/master/.codex/skills/gpui-component/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-26T18:54:32Z"}, "embedding_text": "gpui-component. gpui-component library patterns for building reusable UI components. Use when creating buttons, inputs, dialogs, forms, or following Longbridge component library conventions in GPUI applications. Platforms: claude_code."} +{"id": "0ea77e30e2ca031d5e8e993a18fc3ff07627b94b5b73c9dd8b40ee069ab3ff8d", "repo_url": "https://github.com/datadog/lading", "name": "lading-optimize-hunt", "description": "Systematic optimization hunter for lading. Finds memory optimizations AND bugs - both are valuable. Run /lading-optimize-validate when bugs are discovered.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadog/lading/blob/main/.claude/skills/lading-optimize-hunt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T19:30:47Z"}, "embedding_text": "lading-optimize-hunt. Systematic optimization hunter for lading. Finds memory optimizations AND bugs - both are valuable. Run /lading-optimize-validate when bugs are discovered. Platforms: claude_code."} +{"id": "fb7d8dfce9da274856b89abd3e32636b80d62996ded44b7c172713b3492cfa1a", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "bgo", "description": "Automated Blender build-go workflow. Automatically builds, removes old version, installs, enables, and launches Blender with your extension/add-on. Use when you want to quickly test changes, execute c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/tools/bgo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "bgo. Automated Blender build-go workflow. Automatically builds, removes old version, installs, enables, and launches Blender with your extension/add-on. Use when you want to quickly test changes, execute c Platforms: claude_code."} +{"id": "943a91f4e7dfa55a85a253de8602a7234e95eec58137d7ca4617727d397f9bc3", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "clear-cove-task-design", "description": "Combine CLEAR (Concise, Logical, Explicit, Adaptive, Reflective) and CoVe (Chain of Verification) to write and lint agent task files that will be executed by worker agents. Use when orchestration or p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/development-harness/skills/clear-cove-task-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "clear-cove-task-design. Combine CLEAR (Concise, Logical, Explicit, Adaptive, Reflective) and CoVe (Chain of Verification) to write and lint agent task files that will be executed by worker agents. Use when orchestration or p Platforms: claude_code."} +{"id": "9eb8dbc5b9b0c2abbda5d7bc93e6649fd6b9a9c2f486903b1b10d8299d878994", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "partner-affiliate", "description": "When the user wants to build a partner program, launch an affiliate program, design integration partnerships, or create distribution partnerships. Also use when the user mentions 'partnerships,' 'affiliate program,' 'referral program,' 'partner ecosystem,' 'integration partner,' 'reseller,' 'co-marketing,' 'PartnerStack,' or 'revenue share.' This skill covers partner and affiliate program design from recruitment through performance optimization. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/partner-affiliate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install partner-affiliate"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "partner-affiliate. When the user wants to build a partner program, launch an affiliate program, design integration partnerships, or create distribution partnerships. Also use when the user mentions 'partnerships,' 'affiliate program,' 'referral program,' 'partner ecosystem,' 'integration partner,' 'reseller,' 'co-marketing,' 'PartnerStack,' or 'revenue share.' This skill covers partner and affiliate program design from recruitment through performance optimization. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "05f736b32c5676ce4330a091af52daaa082128bedc90a8f548800e8bbe1eed05", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "webapp-testing", "description": "\u4f7f\u7528 Playwright \u4e0e\u672c\u5730 Web \u5e94\u7528\u7a0b\u5e8f\u4ea4\u4e92\u548c\u6d4b\u8bd5\u7684\u5de5\u5177\u5305\u3002\u652f\u6301\u9a8c\u8bc1\u524d\u7aef\u529f\u80fd\u3001\u8c03\u8bd5 UI \u884c\u4e3a\u3001\u6355\u83b7\u6d4f\u89c8\u5668\u622a\u56fe\u548c\u67e5\u770b\u6d4f\u89c8\u5668\u65e5\u5fd7\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "webapp-testing. \u4f7f\u7528 Playwright \u4e0e\u672c\u5730 Web \u5e94\u7528\u7a0b\u5e8f\u4ea4\u4e92\u548c\u6d4b\u8bd5\u7684\u5de5\u5177\u5305\u3002\u652f\u6301\u9a8c\u8bc1\u524d\u7aef\u529f\u80fd\u3001\u8c03\u8bd5 UI \u884c\u4e3a\u3001\u6355\u83b7\u6d4f\u89c8\u5668\u622a\u56fe\u548c\u67e5\u770b\u6d4f\u89c8\u5668\u65e5\u5fd7\u3002 Platforms: claude_code."} +{"id": "4cac0da8424a3ce92eb950e293ac4e981500417ebb5aa6c370bdc2d8e0782315", "repo_url": "https://github.com/truongduy2611/app-store-preflight-skills", "name": "app-store-preflight-skills", "description": "Scan an iOS/macOS Xcode project for common App Store rejection patterns before submission. Use when preparing an app for App Store review, after receiving a rejection from Apple, or when auditing meta", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/truongduy2611/app-store-preflight-skills/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1249, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T06:22:31Z"}, "embedding_text": "app-store-preflight-skills. Scan an iOS/macOS Xcode project for common App Store rejection patterns before submission. Use when preparing an app for App Store review, after receiving a rejection from Apple, or when auditing meta Platforms: claude_code."} +{"id": "20d4d274184087fad16fdc013579ca5893ac219c4bc09017e4561d7d5f7cab49", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "ui-ux-pro-max", "description": "UI/UX \u8bbe\u8ba1\u667a\u80fd\uff0c\u5728\u8bbe\u8ba1\u9875\u9762\u65f6\u5fc5\u987b\u4f7f\u7528", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/ui-ux-pro-max/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "ui-ux-pro-max. UI/UX \u8bbe\u8ba1\u667a\u80fd\uff0c\u5728\u8bbe\u8ba1\u9875\u9762\u65f6\u5fc5\u987b\u4f7f\u7528 Platforms: claude_code."} +{"id": "25fbc7f14c6d981d25f129ccd266e69022752e038c8b69ed8abdf7a5cff2d185", "repo_url": "https://github.com/rysweet/microsofthackathon2025-agenticcoding", "name": "quality-audit-workflow", "description": "Comprehensive codebase quality audit with parallel agent orchestration, GitHub issue creation, automated PR generation per issue, and PM-prioritized recommendations. Use for code review, refactoring a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rysweet/microsofthackathon2025-agenticcoding/blob/main/.claude/skills/quality-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:49:54Z"}, "embedding_text": "quality-audit-workflow. Comprehensive codebase quality audit with parallel agent orchestration, GitHub issue creation, automated PR generation per issue, and PM-prioritized recommendations. Use for code review, refactoring a Platforms: claude_code."} +{"id": "7b605ba088196c452284030fa44e6dfa67acb3a92b7b94adb4f44c83da0fa365", "repo_url": "https://github.com/antopolskiy/kanban-md", "name": "kanban-md", "description": "Manage project tasks using kanban-md, a file-based kanban board CLI. Use when the user mentions tasks, kanban, board, backlog, sprint, project management, work items, priorities, blockers, or wants to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antopolskiy/kanban-md/blob/main/.claude/skills/kanban-md/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 145, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T07:02:42Z"}, "embedding_text": "kanban-md. Manage project tasks using kanban-md, a file-based kanban board CLI. Use when the user mentions tasks, kanban, board, backlog, sprint, project management, work items, priorities, blockers, or wants to Platforms: claude_code."} +{"id": "a7def326abd35e5db66ff1134170fbc6c1510943c8e093ff836e05db5a04ab18", "repo_url": "https://github.com/datadog/lading", "name": "lading-optimize-rescue", "description": "Salvages optimization work lacking benchmarks. Generates missing evidence, validates claims. Bugs discovered during rescue are valuable - invoke /lading-optimize-validate.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadog/lading/blob/main/.claude/skills/lading-optimize-find-target/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T19:30:47Z"}, "embedding_text": "lading-optimize-rescue. Salvages optimization work lacking benchmarks. Generates missing evidence, validates claims. Bugs discovered during rescue are valuable - invoke /lading-optimize-validate. Platforms: claude_code."} +{"id": "d07dc1ae9c0c662da44ae345dffa5748a02950a16ec1bf29138b90c99f5c0bfd", "repo_url": "https://github.com/camoa/claude-skills", "name": "guide-loader", "description": "Use when needing specialized guide content - loads guides from configured path based on current task", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/guide-loader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "guide-loader. Use when needing specialized guide content - loads guides from configured path based on current task Platforms: claude_code."} +{"id": "92e2d935f1ef7f5ea4aa8c632e6ef12a0e21d122d512c0a4efba976fdd01dffb", "repo_url": "https://github.com/ehmo/platform-design-skills", "name": "ipados-design-guidelines", "description": "Apple Human Interface Guidelines for iPad. Use when building iPad-optimized interfaces, implementing multitasking, pointer support, keyboard shortcuts, or responsive layouts. Triggers on tasks involvi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ehmo/platform-design-skills/blob/main/skills/ipados/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 397, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T05:13:32Z"}, "embedding_text": "ipados-design-guidelines. Apple Human Interface Guidelines for iPad. Use when building iPad-optimized interfaces, implementing multitasking, pointer support, keyboard shortcuts, or responsive layouts. Triggers on tasks involvi Platforms: claude_code."} +{"id": "940d11a15f2885b5a7249e54c149fc15e9f898a11a342759a29ff94d4e12d3a8", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "requesting-code-review", "description": "\u5b8c\u6210\u4efb\u52a1\u3001\u5b9e\u73b0\u91cd\u8981\u529f\u80fd\u6216\u5408\u5e76\u524d\u4f7f\u7528\uff0c\u7528\u4e8e\u9a8c\u8bc1\u5de5\u4f5c\u6210\u679c\u662f\u5426\u7b26\u5408\u8981\u6c42", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/requesting-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "requesting-code-review. \u5b8c\u6210\u4efb\u52a1\u3001\u5b9e\u73b0\u91cd\u8981\u529f\u80fd\u6216\u5408\u5e76\u524d\u4f7f\u7528\uff0c\u7528\u4e8e\u9a8c\u8bc1\u5de5\u4f5c\u6210\u679c\u662f\u5426\u7b26\u5408\u8981\u6c42 Platforms: claude_code."} +{"id": "0599673893183ded287800c594c4200a986008384aa1e770e7af6f8bdad5afc8", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "chinese-code-review", "description": "\u4e2d\u6587\u4ee3\u7801\u5ba1\u67e5\u89c4\u8303\u2014\u2014\u5728\u4fdd\u6301\u4e13\u4e1a\u4e25\u8c28\u7684\u540c\u65f6\uff0c\u7528\u7b26\u5408\u56fd\u5185\u56e2\u961f\u6587\u5316\u7684\u65b9\u5f0f\u7ed9\u51fa\u6709\u6548\u53cd\u9988", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/chinese-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "chinese-code-review. \u4e2d\u6587\u4ee3\u7801\u5ba1\u67e5\u89c4\u8303\u2014\u2014\u5728\u4fdd\u6301\u4e13\u4e1a\u4e25\u8c28\u7684\u540c\u65f6\uff0c\u7528\u7b26\u5408\u56fd\u5185\u56e2\u961f\u6587\u5316\u7684\u65b9\u5f0f\u7ed9\u51fa\u6709\u6548\u53cd\u9988 Platforms: claude_code."} +{"id": "138a3872562a5620d4e92ad8b417f732015fcd80569ecd596c1b86ad64dac9ca", "repo_url": "https://github.com/decentpaste/decentpaste", "name": "github-release", "description": "Create a GitHub release with auto-generated release notes from commits since the last tag. Uses conventional commits to categorize changes into Features, Bug Fixes, and maintenance sections.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/decentpaste/decentpaste/blob/dev/.claude/skills/github-release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 212, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T16:49:28Z"}, "embedding_text": "github-release. Create a GitHub release with auto-generated release notes from commits since the last tag. Uses conventional commits to categorize changes into Features, Bug Fixes, and maintenance sections. Platforms: claude_code."} +{"id": "bf2e1b07f11a1725ff1761e530a80c686e905c073be78b81be1f69240ee12a89", "repo_url": "https://github.com/indexedlabs/pydantic-ai-gepa", "name": "tasks", "description": "Track and execute implementation work using Mighty (mt) tasks, with progress comments, linked evidence, recorded decisions, and clean closeout. Use when asked to fix a bug, implement a feature/refacto", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/indexedlabs/pydantic-ai-gepa/blob/main/.claude/skills/tasks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 30, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T05:04:46Z"}, "embedding_text": "tasks. Track and execute implementation work using Mighty (mt) tasks, with progress comments, linked evidence, recorded decisions, and clean closeout. Use when asked to fix a bug, implement a feature/refacto Platforms: claude_code."} +{"id": "34985f200d8bfd515c2bb4a6b8fb26ed3cc6d11f47fd20b3f784e9363c8b25f1", "repo_url": "https://github.com/code-yeongyu/oh-my-openagent", "name": "ralph-loop", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/code-yeongyu/oh-my-openagent/blob/dev/.agents/skills/codex-qa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63175, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:06:08Z"}, "embedding_text": "ralph-loop. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2fec2cdf688532c73aa20ff185329973a72594fc8dacb2b1eebe2306b69a1861", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "loop-executor", "description": "Evaluate-Loop Step 3: EXECUTE. Use this agent to implement tasks from a verified plan. Works through plan.md tasks sequentially, writes code, updates plan.md after every task, and commits at checkpoin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/loop-executor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "loop-executor. Evaluate-Loop Step 3: EXECUTE. Use this agent to implement tasks from a verified plan. Works through plan.md tasks sequentially, writes code, updates plan.md after every task, and commits at checkpoin Platforms: claude_code."} +{"id": "ffc67bd298219b24431c5cee45da27e84ff123dd030de79f336f4fadb76408b1", "repo_url": "https://github.com/jackwener/xhs-cli", "name": "xhs-cli", "description": "Headless-browser-based CLI skill for Xiaohongshu (\u5c0f\u7ea2\u4e66, RedNote, XHS) to search notes, read posts, browse profiles, like, favorite, comment, and publish from the terminal", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackwener/xhs-cli/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 588, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-14T12:23:55Z"}, "embedding_text": "xhs-cli. Headless-browser-based CLI skill for Xiaohongshu (\u5c0f\u7ea2\u4e66, RedNote, XHS) to search notes, read posts, browse profiles, like, favorite, comment, and publish from the terminal Platforms: claude_code."} +{"id": "9afb34fc59bf410372a78e917f50b9c0394e8e52e0c7c28590e17356f8cf17df", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "cto-plan-reviewer", "description": "Technical architecture review agent for execution plans. Uses cto-advisor skill to evaluate technical decisions, architecture patterns, tech debt implications, and technology choices in plan.md. Trigg", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/cto-plan-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "cto-plan-reviewer. Technical architecture review agent for execution plans. Uses cto-advisor skill to evaluate technical decisions, architecture patterns, tech debt implications, and technology choices in plan.md. Trigg Platforms: claude_code."} +{"id": "6cb2d1ce39ab316335d3548478ef828ae712fadd4f5a7656054b0501a4946e2e", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "content-marketing", "description": "Build a content marketing program by producing a Content Marketing Plan Pack (content market fit brief, demand-validated SEO topic map, human voice + primary channel strategy, editorial calendar, cont", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/content-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "content-marketing. Build a content marketing program by producing a Content Marketing Plan Pack (content market fit brief, demand-validated SEO topic map, human voice + primary channel strategy, editorial calendar, cont Platforms: claude_code."} +{"id": "8030a22ffc4f60c433a7d8294dc4369ba849902d3543bffc5728d57c61f402fb", "repo_url": "https://github.com/shiquda/roadmap-skill", "name": "roadmap-task-flow", "description": "Captures, enriches, tags, and prioritizes roadmap tasks. Use when the user wants to note work quickly, add missing task details, organize a backlog, or reprioritize an existing list of tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shiquda/roadmap-skill/blob/main/skills/roadmap-task-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 68, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-18T12:07:37Z"}, "embedding_text": "roadmap-task-flow. Captures, enriches, tags, and prioritizes roadmap tasks. Use when the user wants to note work quickly, add missing task details, organize a backlog, or reprioritize an existing list of tasks. Platforms: claude_code."} +{"id": "97e814872eb0aef803707c9bea850f47096449b8e8586dcef622a1e662888c95", "repo_url": "https://github.com/shinpr/agentic-code", "name": "testing-strategy", "description": "Prioritizes tests based on ROI and critical user journeys. Use when: deciding test coverage, selecting test types, or budgeting effort.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/agentic-code/blob/main/.agents/skills/testing-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-30T10:30:03Z"}, "embedding_text": "testing-strategy. Prioritizes tests based on ROI and critical user journeys. Use when: deciding test coverage, selecting test types, or budgeting effort. Platforms: claude_code."} +{"id": "0268f5c1f1c15bbf4f0c7fdbd8e5cb70a4583e53b8dd963d85c625c0a1d241cb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "discount-marketing-strategy", "description": "When the user wants to plan, implement, or optimize discount and promotional pricing strategy. Also use when the user mentions \"discount strategy,\" \"promo code,\" \"coupon,\" \"redeem code,\" \"lifetime deal,\" \"LTD,\" \"AppSumo,\" \"Black Friday,\" \"Cyber Monday,\" \"BFCM,\" \"seasonal sale,\" or \"promotional pricing.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/pricing/discount-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install discount-marketing-strategy"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "discount-marketing-strategy. When the user wants to plan, implement, or optimize discount and promotional pricing strategy. Also use when the user mentions \"discount strategy,\" \"promo code,\" \"coupon,\" \"redeem code,\" \"lifetime deal,\" \"LTD,\" \"AppSumo,\" \"Black Friday,\" \"Cyber Monday,\" \"BFCM,\" \"seasonal sale,\" or \"promotional pricing.\" Platforms: claude_code."} +{"id": "1b18fb8b3d0a892d5e73e96394c9b2ef6bc587ac09fc4afc0ab23c254b6d9b22", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "k6", "description": "Load testing tool with installation and test execution commands.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/k6/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install k6"}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "k6. Load testing tool with installation and test execution commands. Platforms: claude_code."} +{"id": "d4c39245e1308e2e71f5cc8dde0f53efe3889c50bec6fdd0535d70cfe5d6240a", "repo_url": "https://github.com/anthropics/knowledge-work-plugins", "name": "guideline-generation", "description": "This skill generates, creates, or builds brand voice guidelines from source materials. It should be used when the user asks to \"generate brand guidelines\", \"create a style guide\", \"extract brand voice", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/knowledge-work-plugins/blob/main/partner-built/brand-voice/skills/guideline-generation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21662, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T13:47:45Z"}, "embedding_text": "guideline-generation. This skill generates, creates, or builds brand voice guidelines from source materials. It should be used when the user asks to \"generate brand guidelines\", \"create a style guide\", \"extract brand voice Platforms: claude_code."} +{"id": "7d85569e6b79d733aaf9a847781d0c5875e48f12bcdfe53ce5752298cec4a7df", "repo_url": "https://github.com/charlesjones-dev/claude-code-plugins-dev", "name": "preflight-checks", "description": "Comprehensive code quality verification system for running type checking, linting, and tests. Use when validating code quality, preparing commits, running CI checks locally, or when the user mentions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charlesjones-dev/claude-code-plugins-dev/blob/main/plugins/ai-accessibility/skills/accessibility-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T17:05:55Z"}, "embedding_text": "preflight-checks. Comprehensive code quality verification system for running type checking, linting, and tests. Use when validating code quality, preparing commits, running CI checks locally, or when the user mentions Platforms: claude_code."} +{"id": "6b7c205930c6071c09006536b908e310997a50e2301fb3aef5eb8190c306bb50", "repo_url": "https://github.com/ldayton/dippy", "name": "release", "description": "Create a release PR with version bump and changelog", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ldayton/dippy/blob/main/.claude/skills/release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 239, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T10:38:05Z"}, "embedding_text": "release. Create a release PR with version bump and changelog Platforms: claude_code."} +{"id": "4bb2d1cb6db9497759970e4119c6aa38bcb6ec555c908aa936b38012421309db", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "plan-critiquer", "description": "Harshly critique strategic documents (validation reports, competitive analyses, business plans) to identify blind spots, challenge assumptions, expose weaknesses, and generate Conductor-aligned action", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/plan-critiquer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "plan-critiquer. Harshly critique strategic documents (validation reports, competitive analyses, business plans) to identify blind spots, challenge assumptions, expose weaknesses, and generate Conductor-aligned action Platforms: claude_code."} +{"id": "b2254933be203adc1885073de70523ce414cdbe78afa7ca13248dc0ad7153e2b", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "rendering-strategies", "description": "When the user wants to choose or optimize rendering strategy for SEO. Also use when the user mentions \"SSR,\" \"SSG,\" \"CSR,\" \"ISR,\" \"static rendering,\" \"dynamic rendering,\" \"server-side rendering,\" \"client-side rendering,\" \"JavaScript rendering,\" \"pre-rendering,\" \"prerender,\" \"content in initial HTML,\" or \"crawler visibility.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/rendering-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rendering-strategies"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "rendering-strategies. When the user wants to choose or optimize rendering strategy for SEO. Also use when the user mentions \"SSR,\" \"SSG,\" \"CSR,\" \"ISR,\" \"static rendering,\" \"dynamic rendering,\" \"server-side rendering,\" \"client-side rendering,\" \"JavaScript rendering,\" \"pre-rendering,\" \"prerender,\" \"content in initial HTML,\" or \"crawler visibility.\" Platforms: claude_code."} +{"id": "6a664a4c61671ba8ec974ae74205ca2211328ab59dc783c69d3b91f043cb6654", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "markitdown", "description": "Convert various file formats (PDF, Office documents, images, audio, web content, structured data) to Markdown optimized for LLM processing. Use when converting documents to markdown, extracting text f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/markitdown/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "markitdown. Convert various file formats (PDF, Office documents, images, audio, web content, structured data) to Markdown optimized for LLM processing. Use when converting documents to markdown, extracting text f Platforms: claude_code."} +{"id": "1710b4a79da36ae2d20384424a40be872d74882fac6a9d0d3052baca9f3738ee", "repo_url": "https://github.com/anton-abyzov/specweave", "name": "code-reviewer", "description": "An elite AI-powered code review expert that analyzes code for security vulnerabilities, performance issues, and best practices using modern static analysis tools and AI techniques to ensure quality, s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anton-abyzov/specweave/blob/develop/plugins/specweave/skills/code-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 148, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:28:45Z"}, "embedding_text": "code-reviewer. An elite AI-powered code review expert that analyzes code for security vulnerabilities, performance issues, and best practices using modern static analysis tools and AI techniques to ensure quality, s Platforms: claude_code."} +{"id": "48990df3ed73c3398e586c628dba524d30c8df42e4e8e080519e4612044747d5", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "writing-plans", "description": "\u5f53\u4f60\u6709\u89c4\u683c\u8bf4\u660e\u6216\u9700\u6c42\u7528\u4e8e\u591a\u6b65\u9aa4\u4efb\u52a1\u65f6\u4f7f\u7528\uff0c\u5728\u52a8\u624b\u5199\u4ee3\u7801\u4e4b\u524d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/writing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "writing-plans. \u5f53\u4f60\u6709\u89c4\u683c\u8bf4\u660e\u6216\u9700\u6c42\u7528\u4e8e\u591a\u6b65\u9aa4\u4efb\u52a1\u65f6\u4f7f\u7528\uff0c\u5728\u52a8\u624b\u5199\u4ee3\u7801\u4e4b\u524d Platforms: claude_code."} +{"id": "0b43a4cd4dd50d722a72347be6dd457cf8685411369d9be0b9e134fc4bc06777", "repo_url": "https://github.com/rhuss/cc-superpowers-sdd", "name": "using-superpowers-sdd", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rhuss/cc-superpowers-sdd/blob/main/spex/skills/init/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T06:56:44Z"}, "embedding_text": "using-superpowers-sdd. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b495973cdfc01988e62e5df04eca1d87f1c8566cea4a1fd856bf26f19c765b91", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "loop-fixer", "description": "Evaluate-Loop Step 5: FIX. Use this agent when an evaluation (plan or execution) returns FAIL. Takes the evaluator's fix list, creates specific fix tasks in plan.md, executes the fixes, and triggers r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/loop-fixer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "loop-fixer. Evaluate-Loop Step 5: FIX. Use this agent when an evaluation (plan or execution) returns FAIL. Takes the evaluator's fix list, creates specific fix tasks in plan.md, executes the fixes, and triggers r Platforms: claude_code."} +{"id": "04edd8b5d687925a3ef36b02db4918092bcf67ab5644717f2b5a002d50c82fd8", "repo_url": "https://github.com/secondsky/claude-skills", "name": "progressive-web-app", "description": "Progressive Web Apps with service workers, web manifest, offline support, installation prompts. Use for installable web apps, offline functionality, push notifications, or encountering service worker registration, cache strategy, manifest configuration errors.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/progressive-web-app/skills/progressive-web-app/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install progressive-web-app"}, "quality": {"stars": 178, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:27:15Z"}, "embedding_text": "progressive-web-app. Progressive Web Apps with service workers, web manifest, offline support, installation prompts. Use for installable web apps, offline functionality, push notifications, or encountering service worker registration, cache strategy, manifest configuration errors. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} +{"id": "fe1f954b9e2e7e5399526eb5bb189b8723aeb90c3f00ad07fd154b4a7d1f01d4", "repo_url": "https://github.com/shinpr/agentic-code", "name": "integration-e2e-testing", "description": "Designs integration and E2E tests with mock boundaries. Use when: writing E2E tests, integration tests, or reviewing test quality.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/agentic-code/blob/main/.agents/skills/integration-e2e-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-30T10:30:03Z"}, "embedding_text": "integration-e2e-testing. Designs integration and E2E tests with mock boundaries. Use when: writing E2E tests, integration tests, or reviewing test quality. Platforms: claude_code."} +{"id": "03d44938a8b3a7ec8e86662e52ebae01a2e2799bd5aba44c6be6a7df56e2c290", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-audience-context", "description": "When the user wants to establish or update their developer audience context. Also use when starting any other developer marketing skill to ensure foundational context is loaded. Trigger phrases includ", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-audience-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-audience-context. When the user wants to establish or update their developer audience context. Also use when starting any other developer marketing skill to ensure foundational context is loaded. Trigger phrases includ Platforms: claude_code."} +{"id": "71765479a0027ec49ff38eeeaeec4a0c8a2e894fdff05ee2da26ba1d34f20ebe", "repo_url": "https://github.com/videojs/v10", "name": "git", "description": "Git workflow conventions for Video.js 10. Commit messages, PR descriptions, branch naming, and scope inference. Triggers: \"commit\", \"push\", \"create PR\", \"conventional commit\", \"branch name\", \"open pul", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/videojs/v10/blob/main/.claude/skills/git/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 822, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:11:34Z"}, "embedding_text": "git. Git workflow conventions for Video.js 10. Commit messages, PR descriptions, branch naming, and scope inference. Triggers: \"commit\", \"push\", \"create PR\", \"conventional commit\", \"branch name\", \"open pul Platforms: claude_code."} +{"id": "0c97c6d7392baf390215c139f0a2fd6710eb620edde55d2f727b027aaf8a89e2", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "self-improvement", "description": "Continuously improve AI workflows and capabilities. Use when reflecting on process, identifying friction, or after completing significant work.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/self-improvement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install self-improvement"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "self-improvement. Continuously improve AI workflows and capabilities. Use when reflecting on process, identifying friction, or after completing significant work. Platforms: claude_code."} +{"id": "e2a270d8ffecb5998b9d4e583885d03ecc0ec313597b04267b17fe36fe23f9e1", "repo_url": "https://github.com/hannesill/m4", "name": "kdigo-aki-staging", "description": "Calculate KDIGO AKI (Acute Kidney Injury) staging for ICU patients in MIMIC-IV using creatinine and urine output criteria. Use for nephrology research, AKI outcome studies, or renal function monitorin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/benchmark/tasks/kdigo/mimic-kdigo-48h-raw/skills/kdigo-aki-staging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "kdigo-aki-staging. Calculate KDIGO AKI (Acute Kidney Injury) staging for ICU patients in MIMIC-IV using creatinine and urine output criteria. Use for nephrology research, AKI outcome studies, or renal function monitorin Platforms: claude_code."} +{"id": "89a183b0b4538e9940feb38747b057464ef13549f73396b66b9504e454090e5d", "repo_url": "https://github.com/letta-ai/lettabot", "name": "peekaboo", "description": "Capture and automate macOS UI with the Peekaboo CLI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/peekaboo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "peekaboo. Capture and automate macOS UI with the Peekaboo CLI. Platforms: claude_code."} +{"id": "d75777cd9962b08f494a097df68ba4b509cd35781c888a1c722fd95dd853c8b2", "repo_url": "https://github.com/dianel555/dskills", "name": "serena", "description": "Semantic code understanding with IDE-like symbol operations. Use when: (1) Large codebase analysis (>50 files), (2) Symbol-level operations (find, rename, refactor), (3) Cross-file reference tracking, (4) Project memory and session persistence, (5) Multi-language semantic navigation. Triggers: \"find symbol\", \"rename function\", \"find references\", \"symbol overview\", \"project memory\". IMPORTANT: Prioritize Serena's symbolic tools over file-based grep/read for code exploration.", "source": ["skillhub", "topic"], "categories": ["claude-skills", "codex-skills", "gemini-cli-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dianel555/dskills/blob/main/skills/serena/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install serena"}, "quality": {"stars": 63, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:37:01Z"}, "embedding_text": "serena. Semantic code understanding with IDE-like symbol operations. Use when: (1) Large codebase analysis (>50 files), (2) Symbol-level operations (find, rename, refactor), (3) Cross-file reference tracking, (4) Project memory and session persistence, (5) Multi-language semantic navigation. Triggers: \"find symbol\", \"rename function\", \"find references\", \"symbol overview\", \"project memory\". IMPORTANT: Prioritize Serena's symbolic tools over file-based grep/read for code exploration. Categories: claude-skills, codex-skills, gemini-cli-skills, skills. Platforms: claude_code."} +{"id": "38cc25ac433b70bcd5be9c4ddfcc8e85ebed3bc4eeb3045b55866e98e8ae862a", "repo_url": "https://github.com/congdon1207/agents.md", "name": "performance-optimization", "description": "Use when analyzing and improving performance for database queries, API endpoints, or frontend rendering.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/arch-performance-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "performance-optimization. Use when analyzing and improving performance for database queries, API endpoints, or frontend rendering. Platforms: claude_code."} +{"id": "1a44fac9970b61aaf3529f4d80bfe653f2ef9b2854585c85b2b0720fe7259ea8", "repo_url": "https://github.com/bkircher/skills", "name": "english-text-editor", "description": "Suggests improvements for English language text but does not rewrite the original. Use when asked to correct spelling or wording and the text is English.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bkircher/skills/blob/main/english-text-editor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-13T12:23:43Z"}, "embedding_text": "english-text-editor. Suggests improvements for English language text but does not rewrite the original. Use when asked to correct spelling or wording and the text is English. Platforms: claude_code."} +{"id": "75deb7dcc9f5d0c49dc12314974170c9b90289f90b2a45abd126cf1704e3d3b0", "repo_url": "https://github.com/agent-sh/agnix", "name": "unreachable-skill", "description": "Use when testing unreachable skills", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/invalid/skills/unreachable-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "unreachable-skill. Use when testing unreachable skills Platforms: claude_code."} +{"id": "502855ef6fcb4e562320962756f85ebe43e81c8f8005a27400ba9e939448cf60", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "stakeholder-alignment", "description": "Help users align stakeholders and get buy-in. Use when someone is struggling to get approval, facing resistance to their ideas, needs to influence without authority, or is preparing for an important e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/stakeholder-alignment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "stakeholder-alignment. Help users align stakeholders and get buy-in. Use when someone is struggling to get approval, facing resistance to their ideas, needs to influence without authority, or is preparing for an important e Platforms: claude_code."} +{"id": "9884e8c321f895d256a5a6648d1597ce005911b8229df97074938c287e608b6a", "repo_url": "https://github.com/waynesutton/markdown-site", "name": "convex-return-validators", "description": "Guide for when to use and when not to use return validators in Convex functions. Use this skill whenever the user is writing Convex queries, mutations, or actions and needs guidance on return value va", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/markdown-site/blob/main/.agents/skills/convex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 621, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T14:56:54Z"}, "embedding_text": "convex-return-validators. Guide for when to use and when not to use return validators in Convex functions. Use this skill whenever the user is writing Convex queries, mutations, or actions and needs guidance on return value va Platforms: claude_code."} +{"id": "26f781d0a90b7ded8d1e9de47ff6a75dec8affa65c5732d861afde2417f1073d", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "nano-image-generator", "description": "Generate professional visuals using Gemini via browser automation with 6-gate quality control.\nUse when creating chapter illustrations, diagrams, or teaching visuals.\nNOT for stock photos or decorative images.\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/image-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nano-image-generator"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "nano-image-generator. Generate professional visuals using Gemini via browser automation with 6-gate quality control.\nUse when creating chapter illustrations, diagrams, or teaching visuals.\nNOT for stock photos or decorative images.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "9148d6c45e30bca936edc59902178c5f959689943a4e678ea9b99952b45e72b6", "repo_url": "https://github.com/congdon1207/agents.md", "name": "feature-investigation", "description": "Use when the user asks to investigate, understand, explore, or explain how a feature works, asks about existing logic, or wants to understand code flow. Triggers on keywords like \"how does\", \"explain\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/feature-investigation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "feature-investigation. Use when the user asks to investigate, understand, explore, or explain how a feature works, asks about existing logic, or wants to understand code flow. Triggers on keywords like \"how does\", \"explain\" Platforms: claude_code."} +{"id": "09f71f14442e5ceb8982c0b741fa3113136762fbbc0d4e3e2c55da46fb6839dd", "repo_url": "https://github.com/agent-sh/agnix", "name": "with-hooks", "description": "Use when testing valid hooks", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/valid/skills/with-hooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "with-hooks. Use when testing valid hooks Platforms: claude_code."} +{"id": "c4b86c7889f97dfa9eded0659c715bddeb2f1cdebcba48538e89c1c43c269dd5", "repo_url": "https://github.com/onmax/nuxt-skills", "name": "tresjs", "description": "Use when building 3D scenes with TresJS (Vue Three.js) - provides TresCanvas, composables (useTres, useLoop), Cientos helpers (OrbitControls, useGLTF, Environment), and post-processing effects", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onmax/nuxt-skills/blob/main/skills/tresjs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 683, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T07:41:14Z"}, "embedding_text": "tresjs. Use when building 3D scenes with TresJS (Vue Three.js) - provides TresCanvas, composables (useTres, useLoop), Cientos helpers (OrbitControls, useGLTF, Environment), and post-processing effects Platforms: claude_code."} +{"id": "ea484783dbad993eafef3bc42b3861e5d75bb057b7b66ec35b20a3d8eafdf188", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "youtube-downloader", "description": "Download YouTube videos with customizable quality and format options. Use this skill when the user asks to download, save, or grab YouTube videos. Supports various quality settings (best, 1080p, 720p, 480p, 360p), multiple formats (mp4, webm, mkv), and audio-only downloads as MP3.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/composiohq/youtube-downloader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-downloader"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "youtube-downloader. Download YouTube videos with customizable quality and format options. Use this skill when the user asks to download, save, or grab YouTube videos. Supports various quality settings (best, 1080p, 720p, 480p, 360p), multiple formats (mp4, webm, mkv), and audio-only downloads as MP3. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "789a9190eaa493885fe1bc2b0fd86ae5fcffb26c958df3a2cf70ff92819c6db3", "repo_url": "https://github.com/letta-ai/lettabot", "name": "eightctl", "description": "Control Eight Sleep pods (status, temperature, alarms, schedules).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/eightctl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "eightctl. Control Eight Sleep pods (status, temperature, alarms, schedules). Platforms: claude_code."} +{"id": "4e4cfd52208d55ba13f681c97d86eddaa5d069b94a5a443e9f9e55a01d67341e", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capgo-cli-usage", "description": "Guides the agent through the Capgo CLI command surface and routes requests to more specific Capgo skills. Use when the user asks generally about the Capgo CLI, app setup, diagnostics, OTA operations,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capgo-cloud/skills/capgo-cli-usage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capgo-cli-usage. Guides the agent through the Capgo CLI command surface and routes requests to more specific Capgo skills. Use when the user asks generally about the Capgo CLI, app setup, diagnostics, OTA operations, Platforms: claude_code."} +{"id": "e76c09c70f5289829dfa7e0ed2ae95bca745a2fb582960bfcb5d536b56ac64c7", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "working-with-documents", "description": "Creates and edits Office documents: Word (.docx), PDF, and PowerPoint (.pptx).\nUse when working with document creation, PDF manipulation, presentation generation,\ntracked changes, or converting betwee", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/working-with-documents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "working-with-documents. Creates and edits Office documents: Word (.docx), PDF, and PowerPoint (.pptx).\nUse when working with document creation, PDF manipulation, presentation generation,\ntracked changes, or converting betwee Platforms: claude_code."} +{"id": "3290ab18ddc1aafd3080408111101f3ce54e0162f2c899d7b525e4c654d860f1", "repo_url": "https://github.com/nice-wolf-studio/claude-code-supabase-skills", "name": "supabase-auth", "description": "Manage authentication and user operations in Supabase. Use for sign up, sign in, sign out, password resets, and user management.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nice-wolf-studio/claude-code-supabase-skills/blob/main/skills/supabase-auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-20T05:39:45Z"}, "embedding_text": "supabase-auth. Manage authentication and user operations in Supabase. Use for sign up, sign in, sign out, password resets, and user management. Platforms: claude_code."} +{"id": "3f424d879f66066b0352bf2fde90de3cc4af5716de3fd3ca7f56d317b2ab4816", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "gitlab-webhooks", "description": "Receive and verify GitLab webhooks. Use when setting up GitLab webhook handlers, debugging token verification, or handling repository events like push, merge_request, issue, pipeline, or release.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/gitlab-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "gitlab-webhooks. Receive and verify GitLab webhooks. Use when setting up GitLab webhook handlers, debugging token verification, or handling repository events like push, merge_request, issue, pipeline, or release. Platforms: claude_code."} +{"id": "c11ae22d2dd6a7606fa3c6f84aa9b90621f0df58cea2f7de8c0aa54e767f70cf", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "inits", "description": "Analyze a codebase and create or improve an AGENTS.md file for future agent instances. Use when onboarding to a repository and capturing hard-to-rediscover conventions, constraints, and rationale.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/init/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install inits"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "inits. Analyze a codebase and create or improve an AGENTS.md file for future agent instances. Use when onboarding to a repository and capturing hard-to-rediscover conventions, constraints, and rationale. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "cf76a949c592aad116bcbfae3e607ef2afac8b1d4702a675b5849e8a8936a9e0", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "micro-commit", "description": "Enforces strict, atomic commit hygiene. Splits large diffs into logical, revertible units.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/coding/micro-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "micro-commit. Enforces strict, atomic commit hygiene. Splits large diffs into logical, revertible units. Platforms: claude_code."} +{"id": "83a9b1f84552eea1d9f9d4ebb6178e4e84fa532acf0c192e13efaa3b66950f21", "repo_url": "https://github.com/interstellar-code/claud-skills", "name": "image-fetcher", "description": "Fetch and download images from the internet in various formats (JPG, PNG, GIF, WebP, BMP, SVG, etc.). Use when users ask to download images, fetch images from URLs, save images from the web, or get im", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/interstellar-code/claud-skills/blob/main/.claude/skills/image-fetcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T10:24:44Z"}, "embedding_text": "image-fetcher. Fetch and download images from the internet in various formats (JPG, PNG, GIF, WebP, BMP, SVG, etc.). Use when users ask to download images, fetch images from URLs, save images from the web, or get im Platforms: claude_code."} +{"id": "b9555d0402965c471f11bd34be6bed270593cfe43ef15644f28c1d69ab26c391", "repo_url": "https://github.com/marcelorodrigo/agent-skills", "name": "create-pr", "description": "Create Pull Requests following best conventions. Use when opening PRs, writing PR descriptions, or preparing changes for review.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/marcelorodrigo/agent-skills/blob/master/skills/create-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T22:42:06Z"}, "embedding_text": "create-pr. Create Pull Requests following best conventions. Use when opening PRs, writing PR descriptions, or preparing changes for review. Platforms: claude_code."} +{"id": "7263dd5f6fad654c7ca995da9f74a4fcf6081ae0c1685b9b7fdc4ebe70e4931e", "repo_url": "https://github.com/analogjs/angular-skills", "name": "angular-routing", "description": "Implement routing in Angular v20+ applications with lazy loading, functional guards, resolvers, and route parameters. Use for navigation setup, protected routes, route-based data loading, and nested r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/analogjs/angular-skills/blob/main/skills/angular-routing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 597, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T20:56:35Z"}, "embedding_text": "angular-routing. Implement routing in Angular v20+ applications with lazy loading, functional guards, resolvers, and route parameters. Use for navigation setup, protected routes, route-based data loading, and nested r Platforms: claude_code."} +{"id": "0dbcd63f999c908e9958400a660400e246b0bb8530248d26307d08c0d585841a", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "brand-foundations", "description": "Automated Q&A sequence that extracts the 7 core brand pillars and outputs a finalized brand_guidelines.md.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/business/brand-foundations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "brand-foundations. Automated Q&A sequence that extracts the 7 core brand pillars and outputs a finalized brand_guidelines.md. Platforms: claude_code."} +{"id": "15a6b007742c3cf05a37b9da104f99a480d6fa2bf236b77e1979d3e5a4668a07", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "api-patterns", "description": "API route implementation patterns with RLS, validation, and error handling. Use when creating API routes, implementing CRUD endpoints, adding server-side validation, handling webhooks, or implementing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/api-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "api-patterns. API route implementation patterns with RLS, validation, and error handling. Use when creating API routes, implementing CRUD endpoints, adding server-side validation, handling webhooks, or implementing Platforms: claude_code."} +{"id": "0885e5246f20aafd8be27abfbe567023a4ab659cf74095acda3f5f76b5e2ebe0", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "distribution-physics", "description": "Analyzes market dynamics and go-to-market strategies using \"Distribution First\" architecture.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/business/distribution-physics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "distribution-physics. Analyzes market dynamics and go-to-market strategies using \"Distribution First\" architecture. Platforms: claude_code."} +{"id": "c1c561fbb74876af9b8dddea93444a663663fd467ecff39a13086169d60d2bda", "repo_url": "https://github.com/ankitvgupta/mail-app", "name": "review-code", "description": "Pre-commit code review for production-critical issues. Use when reviewing staged changes, before committing, or when asked to review code for bugs and consistency issues.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ankitvgupta/mail-app/blob/main/.claude/skills/review-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 473, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T02:01:15Z"}, "embedding_text": "review-code. Pre-commit code review for production-critical issues. Use when reviewing staged changes, before committing, or when asked to review code for bugs and consistency issues. Platforms: claude_code."} +{"id": "58dd45bc5da03e2909246f6c5394734d77021877f75b84f7009b307c53ddbb54", "repo_url": "https://github.com/kdpa-llc/local-skills-mcp", "name": "skill-creator", "description": "Creates effective SKILL.md files with proper YAML frontmatter, trigger keywords, and best practices. Use when creating skills, writing skill descriptions, authoring SKILL.md files, or learning skill f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kdpa-llc/local-skills-mcp/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T00:39:17Z"}, "embedding_text": "skill-creator. Creates effective SKILL.md files with proper YAML frontmatter, trigger keywords, and best practices. Use when creating skills, writing skill descriptions, authoring SKILL.md files, or learning skill f Platforms: claude_code."} +{"id": "0fffe64cda8e68d0844e72eb731fd61c8188710f54959f60c32d101eb010f670", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "moscow", "description": "MoSCoW prioritization categorizing items as Must have, Should have, Could have, or Won't have. Use for scope definition, feature prioritization, or when everything feels equally important.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/moscow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "moscow. MoSCoW prioritization categorizing items as Must have, Should have, Could have, or Won't have. Use for scope definition, feature prioritization, or when everything feels equally important. Platforms: claude_code."} +{"id": "080fb20c1dc74edfe9125169e9913a80dcf9b5b6630bd48fd556313fa17fb61a", "repo_url": "https://github.com/jeremy-allen/claude-skills", "name": "posit-news", "description": "Use multiple sub-agents to fetch and display news from Posit, including blog posts, podcast episodes, videos, and events.\nUse when the user wants to see recent Posit news, blog updates, podcast episod", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeremy-allen/claude-skills/blob/main/deliver-posit-news/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T03:59:58Z"}, "embedding_text": "posit-news. Use multiple sub-agents to fetch and display news from Posit, including blog posts, podcast episodes, videos, and events.\nUse when the user wants to see recent Posit news, blog updates, podcast episod Platforms: claude_code."} +{"id": "4a6fc6c831f1fb25c4b464e7c7a6b47a2a3d4c73aa22d0238931cd7ce8c76f1f", "repo_url": "https://github.com/artemxtech/personal-os-skills", "name": "notebooklm", "description": "Import NotebookLM notebooks into your Obsidian vault as linked knowledge graphs. Sources become wikilink-able files, Q&A answers get citations resolved to [[wikilinks]] with passage-level deep links.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/personal-os-skills/blob/main/skills/notebooklm-import/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 508, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-05T21:02:29Z"}, "embedding_text": "notebooklm. Import NotebookLM notebooks into your Obsidian vault as linked knowledge graphs. Sources become wikilink-able files, Q&A answers get citations resolved to [[wikilinks]] with passage-level deep links. Platforms: claude_code."} +{"id": "98cf0ce17b6e35172b563d568f6599f33168c79b78b90eac8063823fb2eeef37", "repo_url": "https://github.com/robertguss/claude-skills", "name": "xcode-makefiles", "description": "Install strict Xcode Makefile tooling for iOS/macOS projects, including build/run/test scripts with AGENT_NAME-based per-agent isolation under build/. Use when a project needs reproducible local CLI b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/mobile-app-dev/ios-mac-app-creator/xcode-makefiles/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "xcode-makefiles. Install strict Xcode Makefile tooling for iOS/macOS projects, including build/run/test scripts with AGENT_NAME-based per-agent isolation under build/. Use when a project needs reproducible local CLI b Platforms: claude_code."} +{"id": "e1a7db0c2bcd33a6142915f09a6d696c2da1d75d77004e072e067fc5f2602ac7", "repo_url": "https://github.com/elitan/frost", "name": "monitor", "description": "Monitor a PR until CI is 100% green, fixing any failures", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/elitan/frost/blob/main/.claude/skills/monitor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 325, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-26T20:20:05Z"}, "embedding_text": "monitor. Monitor a PR until CI is 100% green, fixing any failures Platforms: claude_code."} +{"id": "79d05785a00288e13d4704eef3a00908745dcf4e3dfb3181f60d13cabdc71486", "repo_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin", "name": "automating-pages", "description": "Automates Apple Pages using JXA with AppleScript dictionary discovery. Use when asked to \"automate Pages documents\", \"create documents programmatically\", \"JXA Pages scripting\", or \"export Pages to PDF", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin/blob/main/plugins/automating-mac-apps-plugin/skills/automating-pages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T23:41:11Z"}, "embedding_text": "automating-pages. Automates Apple Pages using JXA with AppleScript dictionary discovery. Use when asked to \"automate Pages documents\", \"create documents programmatically\", \"JXA Pages scripting\", or \"export Pages to PDF Platforms: claude_code."} +{"id": "a64be6b2b557819f8f015988c73ed96fa4e62b21fffb955920646af41d2b41f7", "repo_url": "https://github.com/packmindhub/packmind", "name": "packmind-create-command", "description": "Guide for creating reusable commands via the Packmind CLI. This skill should be used when users want to create a new command that captures multi-step workflows, recipes, or task automation for distrib", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/packmindhub/packmind/blob/main/.gitlab/duo/skills/packmind-create-command/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:14:12Z"}, "embedding_text": "packmind-create-command. Guide for creating reusable commands via the Packmind CLI. This skill should be used when users want to create a new command that captures multi-step workflows, recipes, or task automation for distrib Platforms: claude_code."} +{"id": "a6378133427a0a4237535882ac7836317f6f4f1ec8c4a794fee3a46afbf0db05", "repo_url": "https://github.com/kevmoo/dash_skills", "name": "dart-matcher-best-practices", "description": "Best practices for using `expect` and `package:matcher`.\nFocuses on readable assertions, proper matcher selection, and avoiding common pitfalls.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevmoo/dash_skills/blob/main/skills/dart-matcher-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 138, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T08:00:20Z"}, "embedding_text": "dart-matcher-best-practices. Best practices for using `expect` and `package:matcher`.\nFocuses on readable assertions, proper matcher selection, and avoiding common pitfalls. Platforms: claude_code."} +{"id": "394a12ae0bc25fae54fddf87c6c4f0edcf120205ddb6f9401f22e5f0bc598da9", "repo_url": "https://github.com/nucliweb/webperf-snippets", "name": "webperf-interaction", "description": "Intelligent interaction performance analysis with automated workflows for INP debugging, scroll jank investigation, and main thread blocking. Includes decision trees that automatically run script attr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nucliweb/webperf-snippets/blob/main/.claude/skills/webperf-interaction/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1444, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T10:45:44Z"}, "embedding_text": "webperf-interaction. Intelligent interaction performance analysis with automated workflows for INP debugging, scroll jank investigation, and main thread blocking. Includes decision trees that automatically run script attr Platforms: claude_code."} +{"id": "81d396c0dcd08188bfb5b5dd939ca65e5f2916500004787d4724134a3dec274c", "repo_url": "https://github.com/jellydn/my-ai-tools", "name": "tdd", "description": "Guides through the complete TDD workflow with Red-Green-Refactor cycle", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jellydn/my-ai-tools/blob/main/skills/tdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 84, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:26:12Z"}, "embedding_text": "tdd. Guides through the complete TDD workflow with Red-Green-Refactor cycle Platforms: claude_code."} +{"id": "def80080c7c355de34e19b11945b9f0ffccf906d2d65f703cfd42ed2f65f7869", "repo_url": "https://github.com/mastra-ai/skills", "name": "mastra-embedded-docs-look-up", "description": "Look up current API signatures from installed Mastra packages in node_modules/@mastra/*/dist/docs/. Use this skill to verify exact parameters, constructor arguments, and function signatures that match", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mastra-ai/skills/blob/main/skills/mastra/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T13:43:54Z"}, "embedding_text": "mastra-embedded-docs-look-up. Look up current API signatures from installed Mastra packages in node_modules/@mastra/*/dist/docs/. Use this skill to verify exact parameters, constructor arguments, and function signatures that match Platforms: claude_code."} +{"id": "83212c5527872f92d6e89c5052335216d24bf97d9eadcd87614b8b637300f837", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-cerebras-code-generator", "description": "Generates code quickly using Z.ai's glm-4.6 model for test files, boilerplate, and repetitive patterns. Focuses on speed over nuance with context tracking and OpenAI-compatible API. Best for bulk file", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/cfn-extras/skills/deprecated/cfn-cerebras-code-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 6.6, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-cerebras-code-generator. Generates code quickly using Z.ai's glm-4.6 model for test files, boilerplate, and repetitive patterns. Focuses on speed over nuance with context tracking and OpenAI-compatible API. Best for bulk file Platforms: claude_code."} +{"id": "ab947521fc76f90ed99e7b17e2df011a7bfb8a64139cf467142e15d4b46eb10a", "repo_url": "https://github.com/robertguss/claude-skills", "name": "book-ideation", "description": "Develop raw book ideas into structured nonfiction book concepts. Use when the user wants to develop a book idea, has brainstorm documents to refine into a book concept, wants to articulate a book's th", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/non-fiction-book-factory/book-ideation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "book-ideation. Develop raw book ideas into structured nonfiction book concepts. Use when the user wants to develop a book idea, has brainstorm documents to refine into a book concept, wants to articulate a book's th Platforms: claude_code."} +{"id": "0f747111c0a1de3d2c8592d468204660ed7f405907fdbfbc591da49741b24a23", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "organizational-transformation", "description": "Lead an organizational transformation toward a modern product operating model (not \u201cframework adoption\u201d). Produces an Organizational Transformation Pack (diagnostic, target operating model, pilot plan", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/organizational-transformation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "organizational-transformation. Lead an organizational transformation toward a modern product operating model (not \u201cframework adoption\u201d). Produces an Organizational Transformation Pack (diagnostic, target operating model, pilot plan Platforms: claude_code."} +{"id": "6cc4a4f641956995be8501428f826195c66f3bd8c3319073592d5518f1b91c8e", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "devops_mrgoonie", "description": "Deploy and manage cloud infrastructure on Cloudflare (Workers, R2, D1, KV, Pages, Durable Objects, Browser Rendering), Docker containers, and Google Cloud Platform (Compute Engine, GKE, Cloud Run, App Engine, Cloud Storage). Use when deploying serverless functions to the edge, configuring edge computing solutions, managing Docker containers and images, setting up CI/CD pipelines, optimizing cloud infrastructure costs, implementing global caching strategies, working with cloud databases, or building cloud-native applications.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/devops_mrgoonie/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install devops_mrgoonie"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "devops_mrgoonie. Deploy and manage cloud infrastructure on Cloudflare (Workers, R2, D1, KV, Pages, Durable Objects, Browser Rendering), Docker containers, and Google Cloud Platform (Compute Engine, GKE, Cloud Run, App Engine, Cloud Storage). Use when deploying serverless functions to the edge, configuring edge computing solutions, managing Docker containers and images, setting up CI/CD pipelines, optimizing cloud infrastructure costs, implementing global caching strategies, working with cloud databases, or building cloud-native applications. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "87eebcc387a777e01c63b5f7e08228d1cbe6e3602611b41622540934d23b7572", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "frontend-internationalization-best-practices", "description": "Internationalization best practices for React Router framework mode using remix-i18next. Use when setting up locales, middleware, resource routes, or language switching.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/frontend-internationalization-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "frontend-internationalization-best-practices. Internationalization best practices for React Router framework mode using remix-i18next. Use when setting up locales, middleware, resource routes, or language switching. Platforms: claude_code."} +{"id": "88ca54ef515468065a8ecf8ae0e61ac037d90d0b2cfd895edf71eb216f45a951", "repo_url": "https://github.com/hannesill/m4", "name": "mimic-table-relationships", "description": "Understand MIMIC-IV table relationships, join patterns, and identifier hierarchy. Use for correct data linkage, avoiding duplicates, and proper temporal joins.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/src/m4/skills/system/mimic-table-relationships/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "mimic-table-relationships. Understand MIMIC-IV table relationships, join patterns, and identifier hierarchy. Use for correct data linkage, avoiding duplicates, and proper temporal joins. Platforms: claude_code."} +{"id": "24d43cfd2472852e3e9d2a520fd1baa5e71a3013ca17bb789d6a44fcd34b7b07", "repo_url": "https://github.com/ehmo/platform-design-skills", "name": "android-design-guidelines", "description": "Material Design 3 and Android platform guidelines. Use when building Android apps with Jetpack Compose or XML layouts, implementing Material You, navigation, or accessibility. Triggers on tasks involv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ehmo/platform-design-skills/blob/main/skills/android/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 397, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T05:13:32Z"}, "embedding_text": "android-design-guidelines. Material Design 3 and Android platform guidelines. Use when building Android apps with Jetpack Compose or XML layouts, implementing Material You, navigation, or accessibility. Triggers on tasks involv Platforms: claude_code."} +{"id": "702e89306b718a4091946615223b660ab457de5d1413a3a193b8af2a8d73c9df", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "frontend-tailwind-best-practices", "description": "Tailwind CSS patterns and conventions for frontend apps. Use when writing component styles, layouts, or working with CSS classes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/frontend-tailwind-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "frontend-tailwind-best-practices. Tailwind CSS patterns and conventions for frontend apps. Use when writing component styles, layouts, or working with CSS classes. Platforms: claude_code."} +{"id": "80b73aba71b2148b14c777ff0789d6c1e8d744bb17669801663ca3e3e9e63340", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "frontend-async-best-practices", "description": "Async/await and Promise optimization guidelines. Use when writing, reviewing, or refactoring asynchronous code to eliminate waterfalls and maximize parallelism. Triggers on tasks involving data fetchi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/frontend-async-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "frontend-async-best-practices. Async/await and Promise optimization guidelines. Use when writing, reviewing, or refactoring asynchronous code to eliminate waterfalls and maximize parallelism. Triggers on tasks involving data fetchi Platforms: claude_code."} +{"id": "043d5da655c75bd33a791e602a2e151a163841a8ec95162d5e6092bbe44dc2c8", "repo_url": "https://github.com/asif2bd/wordpress-publishing-skill-for-claude", "name": "wordpress-publisher", "description": "Publish content directly to WordPress sites via REST API with full Gutenberg block support. Create and publish posts/pages, auto-load and select categories from website, generate SEO-optimized tags, p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asif2bd/wordpress-publishing-skill-for-claude/blob/main/skills/wordpress-publisher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-22T22:06:42Z"}, "embedding_text": "wordpress-publisher. Publish content directly to WordPress sites via REST API with full Gutenberg block support. Create and publish posts/pages, auto-load and select categories from website, generate SEO-optimized tags, p Platforms: claude_code."} +{"id": "bd9941951d652e85d6f5754458a1f3fed0e38c93719002dc77ce889b61413038", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "sqlite-to-fast-sql", "description": "Guides the agent through migrating SQLite and SQL-style Capacitor plugins to @capgo/capacitor-fast-sql. Use when replacing bridge-based SQL plugins, adding encryption, preserving transactions, or movi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-migrations/skills/sqlite-to-fast-sql/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "sqlite-to-fast-sql. Guides the agent through migrating SQLite and SQL-style Capacitor plugins to @capgo/capacitor-fast-sql. Use when replacing bridge-based SQL plugins, adding encryption, preserving transactions, or movi Platforms: claude_code."} +{"id": "38bcdb0a86e49205b17f5ac6c5aacbafcde6e814851d470cdd1e62474a7e9f98", "repo_url": "https://github.com/assafelovic/skyll", "name": "skyll", "description": "Search and retrieve agent skills at runtime. This skill should be used when the agent needs to find specialized capabilities, workflows, or domain knowledge to accomplish a task. Skyll aggregates skills from skills.sh and returns full SKILL.md content ready for context injection.", "source": ["skillhub", "topic"], "categories": ["claude-skill", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/assafelovic/skyll/blob/main/.agents/skills/skyll/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skyll"}, "quality": {"stars": 235, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-02T16:21:47Z"}, "embedding_text": "skyll. Search and retrieve agent skills at runtime. This skill should be used when the agent needs to find specialized capabilities, workflows, or domain knowledge to accomplish a task. Skyll aggregates skills from skills.sh and returns full SKILL.md content ready for context injection. Categories: claude-skill, mcp, skills. Platforms: claude_code."} +{"id": "0375acdfa9445797128c11a64d91b8e789cc32bd7cc414fe656a1faaaa0fcc8c", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "giving-presentations", "description": "Plan and deliver persuasive, confident presentations and produce a Presentation Pack (brief, narrative, slide outline, Q&A bank, pre-brief plan, rehearsal plan, delivery checklist). Use for presentati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/giving-presentations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "giving-presentations. Plan and deliver persuasive, confident presentations and produce a Presentation Pack (brief, narrative, slide outline, Q&A bank, pre-brief plan, rehearsal plan, delivery checklist). Use for presentati Platforms: claude_code."} +{"id": "9814fa2f0df3a829eeaa133a44e4b1431bb5f1405a0f21fea95ec7068a90188a", "repo_url": "https://github.com/pr-pm/prpm", "name": "creating-opencode-plugins", "description": "Use when creating OpenCode plugins that hook into command, file, LSP, message, permission, server, session, todo, tool, or TUI events - provides plugin structure, event API specifications, and impleme", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pr-pm/prpm/blob/main/.claude/skills/creating-opencode-plugins/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T10:00:50Z"}, "embedding_text": "creating-opencode-plugins. Use when creating OpenCode plugins that hook into command, file, LSP, message, permission, server, session, todo, tool, or TUI events - provides plugin structure, event API specifications, and impleme Platforms: claude_code."} +{"id": "581f7237cac7d1a79d631484e2bb016a53ff96b5719e3d1fea8cee28bd382902", "repo_url": "https://github.com/prisma/skills", "name": "prisma-postgres", "description": "Prisma Postgres setup and operations guidance across Console, create-db CLI, Management API, and Management API SDK. Use when creating Prisma Postgres databases, working in Prisma Console, provisionin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prisma/skills/blob/main/prisma-postgres-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T13:20:16Z"}, "embedding_text": "prisma-postgres. Prisma Postgres setup and operations guidance across Console, create-db CLI, Management API, and Management API SDK. Use when creating Prisma Postgres databases, working in Prisma Console, provisionin Platforms: claude_code."} +{"id": "0e18027540304fe869ac8fe8ef4a30b165491333750fc20817db11985128ca79", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "refactor", "description": "[UDS] Guide refactoring decisions and strategy selection", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/refactoring-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "refactor. [UDS] Guide refactoring decisions and strategy selection Platforms: claude_code."} +{"id": "94dcb7f93ec2b810dccaec8f026e27add32b424004a4fc7e1c74c71fa1a3e36b", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "bdd", "description": "[UDS] Guide through Behavior-Driven Development workflow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/bdd-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "bdd. [UDS] Guide through Behavior-Driven Development workflow Platforms: claude_code."} +{"id": "68be5fb0a94cb1f62534920ba5db0ed3d0911726e4aef8e0b276d8ec16ec3655", "repo_url": "https://github.com/congdon1207/agents.md", "name": "code-review", "description": "Use for QUICK PR reviews with structured checklists (architecture, patterns, security, performance). Provides step-by-step review process, git diff commands, and review report templates. Best for pull", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.agent/skills/code-review-checklist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "code-review. Use for QUICK PR reviews with structured checklists (architecture, patterns, security, performance). Provides step-by-step review process, git diff commands, and review report templates. Best for pull Platforms: claude_code."} +{"id": "d84aa48359649cf07c072b674c13e33a5b9aef6fea74a299a00a66055228151a", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-kusto", "description": "Query and analyze data in Azure Data Explorer (Kusto/ADX) using KQL for log analytics, telemetry, and time series analysis. WHEN: KQL queries, Kusto database queries, Azure Data Explorer, ADX clusters, log analytics, time series data, IoT telemetry, anomaly detection.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-kusto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-kusto"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-kusto. Query and analyze data in Azure Data Explorer (Kusto/ADX) using KQL for log analytics, telemetry, and time series analysis. WHEN: KQL queries, Kusto database queries, Azure Data Explorer, ADX clusters, log analytics, time series data, IoT telemetry, anomaly detection. Platforms: claude_code."} +{"id": "210a8c0a653fcc4160eb905372193f754a6110e0c3f615b4025795fdd9f07660", "repo_url": "https://github.com/glebis/claude-skills", "name": "chrome-history", "description": "Query Chrome browsing history with natural language. Filter by date range, article type, keywords, and specific sites.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/chrome-history/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "chrome-history. Query Chrome browsing history with natural language. Filter by date range, article type, keywords, and specific sites. Platforms: claude_code."} +{"id": "1ac7f6c67038983e5647abd898f503674a4408c42d6089a2a6aede72b6623db4", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "eval-ui-ux", "description": "Specialized UI/UX evaluator for the Evaluate-Loop. Use this for evaluating UI shell tracks, design system tracks, screen implementation tracks, or any track where the primary deliverable is visual/int", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/eval-ui-ux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "eval-ui-ux. Specialized UI/UX evaluator for the Evaluate-Loop. Use this for evaluating UI shell tracks, design system tracks, screen implementation tracks, or any track where the primary deliverable is visual/int Platforms: claude_code."} +{"id": "0d12bc04250daa95878a881a53dea2206058f74dc447e59a9523fff58a426552", "repo_url": "https://github.com/hannesill/m4", "name": "baseline-creatinine", "description": "Estimate baseline serum creatinine for AKI assessment in MIMIC-IV. Use for KDIGO staging, AKI research, or renal function baseline establishment.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/benchmark/tasks/creatinine-baseline/mimic-creatinine-baseline-raw/skills/baseline-creatinine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "baseline-creatinine. Estimate baseline serum creatinine for AKI assessment in MIMIC-IV. Use for KDIGO staging, AKI research, or renal function baseline establishment. Platforms: claude_code."} +{"id": "1664ef0eb57ca18e30fc487f8e3ba0a97840874af478aedc725fc1ec5fc8d92b", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "owasp-security-check", "description": "Security audit guidelines for web applications and REST APIs based on OWASP Top 10 and web security best practices. Use when checking code for vulnerabilities, reviewing auth/authz, auditing APIs, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/owasp-security-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "owasp-security-check. Security audit guidelines for web applications and REST APIs based on OWASP Top 10 and web security best practices. Use when checking code for vulnerabilities, reviewing auth/authz, auditing APIs, or Platforms: claude_code."} +{"id": "b6af052161be50268f548944048bb133fc700d7b3e1bffe037e2ddc854be9873", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "data-quality-checker", "description": "Validate data quality in market analysis documents and blog articles before publication. Use when checking for price scale inconsistencies (ETF vs futures), instrument notation errors, date/day-of-wee", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/data-quality-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "data-quality-checker. Validate data quality in market analysis documents and blog articles before publication. Use when checking for price scale inconsistencies (ETF vs futures), instrument notation errors, date/day-of-wee Platforms: claude_code."} +{"id": "3dbae7922700853a4dc85e58b6b8ab4e6136e419efb88f4218f749005b143f1c", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "generating-test-doubles", "description": "Generate mocks, stubs, spies, and fakes for dependency isolation.\nUse when creating mocks, stubs, or test isolation fixtures.\nTrigger with phrases like \"generate mocks\", \"create test doubles\", or \"set", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/c-level-advisor/ceo-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "generating-test-doubles. Generate mocks, stubs, spies, and fakes for dependency isolation.\nUse when creating mocks, stubs, or test isolation fixtures.\nTrigger with phrases like \"generate mocks\", \"create test doubles\", or \"set Platforms: claude_code."} +{"id": "2ca60890aa1e2b37133fafe7bea58e8761a649caab91f011759afe94d0e1ce72", "repo_url": "https://github.com/brianlovin/claude-config", "name": "deslop", "description": "Remove AI-generated code slop from the current branch. Use after writing code to clean up unnecessary comments, defensive checks, and inconsistent style.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianlovin/claude-config/blob/main/skills/deslop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 353, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T17:52:51Z"}, "embedding_text": "deslop. Remove AI-generated code slop from the current branch. Use after writing code to clean up unnecessary comments, defensive checks, and inconsistent style. Platforms: claude_code."} +{"id": "2877e448a974b99c21883b7c6bf32b66eb1822f6fc9a27fc4d8e077e00f4b79d", "repo_url": "https://github.com/nolly-studio/components-build-skill", "name": "components-build", "description": "Build modern, composable, and accessible React UI components following the components.build specification. Use when creating, reviewing, or refactoring component libraries, design systems, or any reus", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nolly-studio/components-build-skill/blob/main/skills/components-build/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-28T17:55:18Z"}, "embedding_text": "components-build. Build modern, composable, and accessible React UI components following the components.build specification. Use when creating, reviewing, or refactoring component libraries, design systems, or any reus Platforms: claude_code."} +{"id": "374cea00b6245f6c5909b9af8a23a78723548188966d1ab96087b5020cdf82ff", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "tiktok-ads", "description": "When the user wants to set up, optimize, or manage TikTok Ads. Also use when the user mentions \"TikTok Ads,\" \"TikTok for Business,\" \"TikTok Pixel,\" \"Events API,\" \"TikTok Spark Ads,\" or \"TikTok video ads.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/tiktok-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tiktok-ads"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "tiktok-ads. When the user wants to set up, optimize, or manage TikTok Ads. Also use when the user mentions \"TikTok Ads,\" \"TikTok for Business,\" \"TikTok Pixel,\" \"Events API,\" \"TikTok Spark Ads,\" or \"TikTok video ads.\" Platforms: claude_code."} +{"id": "0cdb1c57e97f4114716e913f55af40b379a14d457dfb66ddd999088ae312bdb0", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "sidebar-generator", "description": "When the user wants to design, optimize, or audit a sidebar for blogs, docs, or content pages. Also use when the user mentions \"sidebar,\" \"blog sidebar,\" \"content sidebar,\" \"side panel,\" \"sidebar navigation,\" \"related content,\" \"sidebar CTA,\" \"doc sidebar,\" or \"sidebar widgets.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/navigation/sidebar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sidebar-generator"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "sidebar-generator. When the user wants to design, optimize, or audit a sidebar for blogs, docs, or content pages. Also use when the user mentions \"sidebar,\" \"blog sidebar,\" \"content sidebar,\" \"side panel,\" \"sidebar navigation,\" \"related content,\" \"sidebar CTA,\" \"doc sidebar,\" or \"sidebar widgets.\" Platforms: claude_code."} +{"id": "dcf1a30ecfc3fde27756030f759de659be4bfb6a04a150c3ac4ea84ec5d340e7", "repo_url": "https://github.com/regenrek/agent-skills", "name": "shadcn-vite-iconify-landing-page", "description": "Build, critique, and iterate high-converting marketing or product landing pages using React + Vite + TypeScript + Tailwind and shadcn/ui components, with all icons sourced from Iconify. Use when the u", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/regenrek/agent-skills/blob/main/skills/app-spec-packager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 127, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T17:45:47Z"}, "embedding_text": "shadcn-vite-iconify-landing-page. Build, critique, and iterate high-converting marketing or product landing pages using React + Vite + TypeScript + Tailwind and shadcn/ui components, with all icons sourced from Iconify. Use when the u Platforms: claude_code."} +{"id": "667c1c59bebd61cc7c357884b3902f5d46e64992f1af1ad70260f8f339c6b48f", "repo_url": "https://github.com/emsi/mymanus", "name": "mymanus", "description": "Autonomous agent for complex multi-step tasks with structured planning, execution, and research capabilities", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/emsi/mymanus/blob/master/mymanus-plugin/skills/mymanus/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 276, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-08T13:47:56Z"}, "embedding_text": "mymanus. Autonomous agent for complex multi-step tasks with structured planning, execution, and research capabilities Platforms: claude_code."} +{"id": "aa3adbab5af3e5629b3e4c1aff896862bb1de6706579d66f6d3a06b88c147058", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "animation-patterns", "description": "SwiftUI animation patterns including springs, transitions, PhaseAnimator, KeyframeAnimator, and SF Symbol effects. Use when implementing, reviewing, or fixing animation code on iOS/macOS.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/design/animation-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "animation-patterns. SwiftUI animation patterns including springs, transitions, PhaseAnimator, KeyframeAnimator, and SF Symbol effects. Use when implementing, reviewing, or fixing animation code on iOS/macOS. Platforms: claude_code."} +{"id": "a5e7620f86dcc9c85bf76e46c4e3990cffffcb6690db7b49a4de77561019bc29", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "community-building", "description": "Help users build and grow product communities. Use when someone is starting a community, scaling an ambassador program, driving community-led growth, or choosing between user, developer, or partner co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/community-building/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "community-building. Help users build and grow product communities. Use when someone is starting a community, scaling an ambassador program, driving community-led growth, or choosing between user, developer, or partner co Platforms: claude_code."} +{"id": "8d8d3c895524c9fc2247132deba00099b3d45466e9e9d185cf70cea592cd5441", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-transparency-middleware", "description": "A Rust-based middleware that captures, logs, and analyzes agent interactions with memory tracking, performance metrics, and security filtering, enabling comprehensive audit trails and compliance repor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-transparency-middleware/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-transparency-middleware. A Rust-based middleware that captures, logs, and analyzes agent interactions with memory tracking, performance metrics, and security filtering, enabling comprehensive audit trails and compliance repor Platforms: claude_code."} +{"id": "3c1788149b6f744275d17ee83f9c2e69c97d55fe75300a21478bc169ba94106d", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "pr-reviews", "description": "Review code changes on a given GitHub PR using gh CLI. Use when the user asks to review a pull request, analyze PR diffs, or provide feedback on open PRs with structured quality, security, and testing assessments.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/pr-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pr-reviews"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "pr-reviews. Review code changes on a given GitHub PR using gh CLI. Use when the user asks to review a pull request, analyze PR diffs, or provide feedback on open PRs with structured quality, security, and testing assessments. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "0055f21baa72b10073bf08bfec5ffbdc1ceb1915ec8ec481a0f4ae94479352ee", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "ctv-ads", "description": "When the user wants to run CTV, OTT, or streaming TV ads. Also use when the user mentions \"CTV ads,\" \"connected TV,\" \"OTT advertising,\" \"streaming ads,\" \"TV ads,\" \"Hulu ads,\" \"Roku ads,\" \"YouTube TV ads,\" or \"programmatic TV.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/formats/ctv-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctv-ads"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "ctv-ads. When the user wants to run CTV, OTT, or streaming TV ads. Also use when the user mentions \"CTV ads,\" \"connected TV,\" \"OTT advertising,\" \"streaming ads,\" \"TV ads,\" \"Hulu ads,\" \"Roku ads,\" \"YouTube TV ads,\" or \"programmatic TV.\" Platforms: claude_code."} +{"id": "66b14f07e7c17e87f1004bf6da4deb8e3552ea417a544aabffea1cee31e2571f", "repo_url": "https://github.com/aviatesk/jetls.jl", "name": "changelog", "description": "Invoke before committing user-facing changes (new features, bug fixes, behavior changes) to update CHANGELOG.md. Skip for internal refactors, CI, docs-only, or minor dependency bumps.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviatesk/jetls.jl/blob/master/.agents/skills/changelog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 290, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:34:50Z"}, "embedding_text": "changelog. Invoke before committing user-facing changes (new features, bug fixes, behavior changes) to update CHANGELOG.md. Skip for internal refactors, CI, docs-only, or minor dependency bumps. Platforms: claude_code."} +{"id": "f75a732a3b74912228f74a241cb196084c43d10bcc8b982da2df1c3b09b58666", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "i18n-expert", "description": "This skill should be used when setting up, auditing, or enforcing internationalization/localization in UI codebases (React/TS, i18next or similar, JSON locales), including installing/configuring the i18n framework, replacing hard-coded strings, ensuring en-US/zh-CN coverage, mapping error codes to localized messages, and validating key parity, pluralization, and formatting.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/i18n-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install i18n-expert"}, "quality": {"stars": 1203, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T10:01:47Z"}, "embedding_text": "i18n-expert. This skill should be used when setting up, auditing, or enforcing internationalization/localization in UI codebases (React/TS, i18next or similar, JSON locales), including installing/configuring the i18n framework, replacing hard-coded strings, ensuring en-US/zh-CN coverage, mapping error codes to localized messages, and validating key parity, pluralization, and formatting. Platforms: claude_code."} +{"id": "8572c94e6a6f32c7a1e8bc4d1577e37a013a8d0797f36a67230ad023a81412f2", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-ref", "description": "BPX `ref` command skill. Bulk-rewrite reference strings in NameMap and decoded properties.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-ref/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-ref. BPX `ref` command skill. Bulk-rewrite reference strings in NameMap and decoded properties. Platforms: claude_code."} +{"id": "e7094cb46d0002e93af262c9f77c49286c9f755c4f390b7d3ea00157248e1913", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "verification-before-completion", "description": "\u5728\u5ba3\u79f0\u5de5\u4f5c\u5b8c\u6210\u3001\u5df2\u4fee\u590d\u6216\u6d4b\u8bd5\u901a\u8fc7\u4e4b\u524d\u4f7f\u7528\uff0c\u5728\u63d0\u4ea4\u6216\u521b\u5efa PR \u4e4b\u524d\u2014\u2014\u5fc5\u987b\u8fd0\u884c\u9a8c\u8bc1\u547d\u4ee4\u5e76\u786e\u8ba4\u8f93\u51fa\u540e\u624d\u80fd\u58f0\u79f0\u6210\u529f\uff1b\u59cb\u7ec8\u7528\u8bc1\u636e\u652f\u6491\u65ad\u8a00", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/verification-before-completion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "verification-before-completion. \u5728\u5ba3\u79f0\u5de5\u4f5c\u5b8c\u6210\u3001\u5df2\u4fee\u590d\u6216\u6d4b\u8bd5\u901a\u8fc7\u4e4b\u524d\u4f7f\u7528\uff0c\u5728\u63d0\u4ea4\u6216\u521b\u5efa PR \u4e4b\u524d\u2014\u2014\u5fc5\u987b\u8fd0\u884c\u9a8c\u8bc1\u547d\u4ee4\u5e76\u786e\u8ba4\u8f93\u51fa\u540e\u624d\u80fd\u58f0\u79f0\u6210\u529f\uff1b\u59cb\u7ec8\u7528\u8bc1\u636e\u652f\u6491\u65ad\u8a00 Platforms: claude_code."} +{"id": "3f87c2ef1a65e4179e4a13c65302873f782fbbf933b35145f1f3bd92e0b7c451", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-find", "description": "BPX `find` command skill. Scan directories for assets and summarize parse outcomes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-find/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-find. BPX `find` command skill. Scan directories for assets and summarize parse outcomes. Platforms: claude_code."} +{"id": "0cce547e7a53631df98915b7cbf658e37adf05b0cc66ab2322d21843147cf335", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "injury-report-tracker", "description": "Monitor injury news across leagues. Fantasy impact analysis, backup player analysis, return timeline estimates.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/injury-report-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "injury-report-tracker. Monitor injury news across leagues. Fantasy impact analysis, backup player analysis, return timeline estimates. Platforms: claude_code."} +{"id": "13ca48e54c6fdd8c7356944002f7a44a4ce4718f595db96ba5c9c1f2b8e2830c", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "team-coordination", "description": "Agent Teams orchestration patterns for multi-agent SAFe workflows. Use when spawning agent teams, coordinating teammates, enforcing quality gates via task dependencies, or orchestrating the 11-agent S", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/team-coordination/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "team-coordination. Agent Teams orchestration patterns for multi-agent SAFe workflows. Use when spawning agent teams, coordinating teammates, enforcing quality gates via task dependencies, or orchestrating the 11-agent S Platforms: claude_code."} +{"id": "fbbebbee5f8ec25b8b0e2b8a3113c626bab3345654c28bcc0abe7ec603cc9cc4", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-stringtable", "description": "BPX `stringtable` command skill. Read and edit StringTable entries and namespace.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-stringtable/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-stringtable. BPX `stringtable` command skill. Read and edit StringTable entries and namespace. Platforms: claude_code."} +{"id": "117dead6c6794616fc158b1acb08f301076a87f07c0118887e7cb4602a7ca674", "repo_url": "https://github.com/yi-john-huang/sdd-mcp", "name": "sdd-commit", "description": "Guide commit message and PR creation for SDD workflow. Use when committing changes, creating pull requests, or documenting changes. Invoked via /sdd-commit.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yi-john-huang/sdd-mcp/blob/master/.claude/skills/sdd-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:53:04Z"}, "embedding_text": "sdd-commit. Guide commit message and PR creation for SDD workflow. Use when committing changes, creating pull requests, or documenting changes. Invoked via /sdd-commit. Platforms: claude_code."} +{"id": "6127f7a4fc1b1526da45295c07415f936718afb847836802f5df2a4c7400ccd2", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "tdd-workflow", "description": "Use this skill when writing new features, fixing bugs, or refactoring code. Enforces test-driven development with 80%+ coverage including unit, integration, and E2E tests.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/.agents/skills/tdd-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "tdd-workflow. Use this skill when writing new features, fixing bugs, or refactoring code. Enforces test-driven development with 80%+ coverage including unit, integration, and E2E tests. Platforms: claude_code."} +{"id": "953bc5518b207db2634f7c4a8924e26e1df4997eb97a1ac733d942cb95023673", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-osint", "description": "Provides open source intelligence techniques for CTF challenges. Use when gathering information from public sources, social media, geolocation, DNS records, username enumeration, reverse image search, Google dorking, Wayback Machine, Tor relays, FEC filings, or identifying unknown data like hashes and coordinates.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-osint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-osint"}, "quality": {"stars": 2483, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:13:28Z"}, "embedding_text": "ctf-osint. Provides open source intelligence techniques for CTF challenges. Use when gathering information from public sources, social media, geolocation, DNS records, username enumeration, reverse image search, Google dorking, Wayback Machine, Tor relays, FEC filings, or identifying unknown data like hashes and coordinates. Platforms: claude_code."} +{"id": "e3a592ab9104e27facb1bea3b28020f759d7c2932c34e5d5dd30258cca0b2b14", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-validate", "description": "BPX `validate` command skill. Run package integrity checks (exit code 2 when result is not OK).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-validate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-validate. BPX `validate` command skill. Run package integrity checks (exit code 2 when result is not OK). Platforms: claude_code."} +{"id": "f534c06f2a57a81b5b23c22c1721f53eb536e1b908938eb4c00125d5cb255a49", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "rice", "description": "RICE prioritization scoring initiatives by Reach, Impact, Confidence, and Effort. Use for feature prioritization, roadmap planning, or when comparing initiatives objectively.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/rice/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "rice. RICE prioritization scoring initiatives by Reach, Impact, Confidence, and Effort. Use for feature prioritization, roadmap planning, or when comparing initiatives objectively. Platforms: claude_code."} +{"id": "e0a7a6e5823983da361474f71d982bc34091c94306bca7393f90720177fbb820", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "email-subject-line-optimizer", "description": "A/B test subject line variations using proven copywriting frameworks. Predict open rates based on historical performance.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/email-subject-line-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "email-subject-line-optimizer. A/B test subject line variations using proven copywriting frameworks. Predict open rates based on historical performance. Platforms: claude_code."} +{"id": "3381603582bf974c29a216d7855eee5478c65c5fca469c2af18d6a574e5fd60c", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "scamper", "description": "SCAMPER creative brainstorming with seven prompts\u2014Substitute, Combine, Adapt, Modify, Put to other uses, Eliminate, Reverse. Use for innovation, product ideas, or breaking creative blocks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/scamper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "scamper. SCAMPER creative brainstorming with seven prompts\u2014Substitute, Combine, Adapt, Modify, Put to other uses, Eliminate, Reverse. Use for innovation, product ideas, or breaking creative blocks. Platforms: claude_code."} +{"id": "63c6a1fc6eaa3e0a16bddd98bf09dea06650f8bc3997dd88b515a0f9ea91d670", "repo_url": "https://github.com/wondelai/skills", "name": "refactoring-ui", "description": "Audit and fix visual hierarchy, spacing, color, and depth in web UIs. Use when the user mentions \"my UI looks off\", \"fix the design\", \"Tailwind styling\", \"color palette\", or \"visual hierarchy\". Covers grayscale-first workflow, constrained design scales, shadows, and component styling. For typeface selection, see web-typography. For usability audits, see ux-heuristics.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/refactoring-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refactoring-ui"}, "quality": {"stars": 1418, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:13:04Z"}, "embedding_text": "refactoring-ui. Audit and fix visual hierarchy, spacing, color, and depth in web UIs. Use when the user mentions \"my UI looks off\", \"fix the design\", \"Tailwind styling\", \"color palette\", or \"visual hierarchy\". Covers grayscale-first workflow, constrained design scales, shadows, and component styling. For typeface selection, see web-typography. For usability audits, see ux-heuristics. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} +{"id": "5501528f7c81f0f72bbd712f7c8d053ea71505ca76d631f18bfb4248c4b7c857", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-raw", "description": "BPX `raw` command skill. Read one export serial payload as base64.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-raw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-raw. BPX `raw` command skill. Read one export serial payload as base64. Platforms: claude_code."} +{"id": "26eff386739d9a7fb8e3fa8547e1f22f88af2d2465024c927aab890eeb3bd554", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-export", "description": "BPX `export` command skill. Inspect export headers or update selected header fields.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-export/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-export. BPX `export` command skill. Inspect export headers or update selected header fields. Platforms: claude_code."} +{"id": "0b08181cc2b1c0b5ff4cb36a0e5d3b035022c66d7a4471dda4d980c865d11ccb", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "planner-rt-ica", "description": "Identify required inputs, dependencies, and uncertainty during planning. Use when generating plans or task graphs under incomplete information. Does not block plan generation; instead localizes gaps a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/development-harness/skills/planner-rt-ica/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "planner-rt-ica. Identify required inputs, dependencies, and uncertainty during planning. Use when generating plans or task graphs under incomplete information. Does not block plan generation; instead localizes gaps a Platforms: claude_code."} +{"id": "b61203a79d9b5fb2922de1bf2c3dd8d920ff1ddc8fb35e4ad946f78e802b0be4", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "complete-milestone", "description": "Close a completed GitHub milestone. Args: {milestone-number}. Audits open and closed issues, offers to carry forward open items to a new or existing milestone, closes the GitHub milestone, updates Pro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/complete-milestone/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "complete-milestone. Close a completed GitHub milestone. Args: {milestone-number}. Audits open and closed issues, offers to carry forward open items to a new or existing milestone, closes the GitHub milestone, updates Pro Platforms: claude_code."} +{"id": "a264723e02bca64b362d10d5c190fdc7042a81363f35a802f7b612d44220162a", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "session-logs", "description": "Search and analyze past session logs. Use when the user says things like \"in the previous conversation...\" or \"I did something before...\", or when investigating cost and tool usage.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/session-logs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "session-logs. Search and analyze past session logs. Use when the user says things like \"in the previous conversation...\" or \"I did something before...\", or when investigating cost and tool usage. Platforms: claude_code."} +{"id": "d0896510a47b0fb1af17c6361f1bb2be3f21d330478a8f8930eee20dbd4a3a2d", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-dump", "description": "BPX `dump` command skill. Dump package summary/name/import/export tables in structured formats.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-dump/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-dump. BPX `dump` command skill. Dump package summary/name/import/export tables in structured formats. Platforms: claude_code."} +{"id": "87a4cad7dc15d492b5d4645e61a8b8303e1360de26a54f07aa513a6ea881e1ff", "repo_url": "https://github.com/blueberrycongee/termcanvas", "name": "hydra", "description": "Use when a task should run through Hydra's file-contract workflow in an isolated worktree, or when an existing Hydra workflow must be inspected, retried, or cleaned up.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blueberrycongee/termcanvas/blob/main/skills/skills/hydra/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 327, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T23:40:31Z"}, "embedding_text": "hydra. Use when a task should run through Hydra's file-contract workflow in an isolated worktree, or when an existing Hydra workflow must be inspected, retried, or cleaned up. Platforms: claude_code."} +{"id": "8ed8c41a645b9dadd509beabba2dd9e55be251c7fa46d9c25fd06ea94c6c4138", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "webinar-to-content-multiplier", "description": "Convert webinar recordings into blog posts, social snippets, email series. Extract key quotes, statistics, and soundbites.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/webinar-to-content-multiplier/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "webinar-to-content-multiplier. Convert webinar recordings into blog posts, social snippets, email series. Extract key quotes, statistics, and soundbites. Platforms: claude_code."} +{"id": "b5ce1a8d119cfb48c98315e9ab8d884c52117ccf06cb806fee2d33bd22c02e91", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-import", "description": "BPX `import` command skill. Inspect ImportMap entries and aggregate import dependency graphs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-import/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-import. BPX `import` command skill. Inspect ImportMap entries and aggregate import dependency graphs. Platforms: claude_code."} +{"id": "43155c57cccf12a66109cc10a55a97a5ada49d3ff2578f2ec76440d7563d4b02", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "wrap", "description": "WRAP decision framework countering the four villains\u2014narrow framing, confirmation bias, short-term emotion, and overconfidence. Use for major decisions or when stuck between options.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/wrap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "wrap. WRAP decision framework countering the four villains\u2014narrow framing, confirmation bias, short-term emotion, and overconfidence. Use for major decisions or when stuck between options. Platforms: claude_code."} +{"id": "4e7074f88577066535ceb4840d4097619f63f25e0999de7f42c655e3e5d918b6", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "information-security-manager-iso27001", "description": "Senior Information Security Manager specializing in ISO 27001 and ISO 27002 implementation for HealthTech and MedTech companies. Provides ISMS implementation, cybersecurity risk assessment, security c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/information-security-manager-iso27001/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "information-security-manager-iso27001. Senior Information Security Manager specializing in ISO 27001 and ISO 27002 implementation for HealthTech and MedTech companies. Provides ISMS implementation, cybersecurity risk assessment, security c Platforms: claude_code."} +{"id": "12feb713b689848c0933dc7976d8a3c8a630b4bd90a0f7b12faa8961271fc63d", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "modern-git", "description": "Modern Git workflows, best practices, and commands. Use when the user asks about Git branch management (git switch vs checkout), file restoration (git restore), fixup commits, autosquash rebasing, git", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/modern-git/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "modern-git. Modern Git workflows, best practices, and commands. Use when the user asks about Git branch management (git switch vs checkout), file restoration (git restore), fixup commits, autosquash rebasing, git Platforms: claude_code."} +{"id": "efdb58848790489c9a045bcdb4ec4a5efdfa90f8691dc797f82c200b9b24a419", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "tdd-refactor-guard", "description": "Pre-refactor safety checklist. Verifies test coverage exists before AI modifies existing code. Use before asking AI to refactor anything.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/testing/tdd-refactor-guard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "tdd-refactor-guard. Pre-refactor safety checklist. Verifies test coverage exists before AI modifies existing code. Use before asking AI to refactor anything. Platforms: claude_code."} +{"id": "554634d392a11573affb720cd2453809c800530993bce62fccb1f28508c25a04", "repo_url": "https://github.com/szymdzum/browser-debugger-cli", "name": "bdg", "description": "Use bdg CLI for browser automation via Chrome DevTools Protocol. Provides direct CDP access (60+ domains, 300+ methods) for DOM queries, navigation, screenshots, network control, and JavaScript execut", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/szymdzum/browser-debugger-cli/blob/main/.claude/skills/bdg/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 138, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T11:37:27Z"}, "embedding_text": "bdg. Use bdg CLI for browser automation via Chrome DevTools Protocol. Provides direct CDP access (60+ domains, 300+ methods) for DOM queries, navigation, screenshots, network control, and JavaScript execut Platforms: claude_code."} +{"id": "a69034d7ab7a3934a6f1b457ca8e02e0efe6fb2923d4ede4f3550c13505092ae", "repo_url": "https://github.com/lemline/lemline", "name": "core-dev", "description": "Development guide for the lemline-core module. Use when working with workflow execution (orchestrators, processors), node tree navigation (Node, NodePosition), task states (TaskState, WorkflowCommand,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lemline/lemline/blob/main/.claude/skills/core-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-26T00:49:23Z"}, "embedding_text": "core-dev. Development guide for the lemline-core module. Use when working with workflow execution (orchestrators, processors), node tree navigation (Node, NodePosition), task states (TaskState, WorkflowCommand, Platforms: claude_code."} +{"id": "45b16c47e245277a24dfe5489213838f6567e76b4d5a25f88f69230e6600ef32", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "microsim-generator", "description": "Creates interactive educational MicroSims using the best-matched JavaScript library (p5.js, Chart.js, Plotly, Mermaid, vis-network, vis-timeline, Leaflet, Venn.js). Analyzes user requirements to route", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/microsim-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "microsim-generator. Creates interactive educational MicroSims using the best-matched JavaScript library (p5.js, Chart.js, Plotly, Mermaid, vis-network, vis-timeline, Leaflet, Venn.js). Analyzes user requirements to route Platforms: claude_code."} +{"id": "8551d33a428b38719cd5a76e1a160a8d81a4978d8bf909f1b53940d6eb1b3e5b", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "finding-expensive-queries", "description": "Finds and ranks expensive Snowflake queries by cost, time, or data scanned. Use when:\n(1) User asks to find slow, expensive, or problematic queries\n(2) Task mentions \"query history\", \"top queries\", \"most expensive\", or \"slowest queries\"\n(3) Analyzing warehouse costs or identifying optimization candidates\n(4) Finding queries that scan the most data or have the most spillage\nReturns ranked list of queries with metrics and optimization recommendations.", "source": ["skillhub", "topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/altimateai/data-engineering-skills/blob/main/skills/snowflake/finding-expensive-queries/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install finding-expensive-queries"}, "quality": {"stars": 104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T13:06:51Z"}, "embedding_text": "finding-expensive-queries. Finds and ranks expensive Snowflake queries by cost, time, or data scanned. Use when:\n(1) User asks to find slow, expensive, or problematic queries\n(2) Task mentions \"query history\", \"top queries\", \"most expensive\", or \"slowest queries\"\n(3) Analyzing warehouse costs or identifying optimization candidates\n(4) Finding queries that scan the most data or have the most spillage\nReturns ranked list of queries with metrics and optimization recommendations. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} +{"id": "217f76eb8c5dbf98bacb69e1c70a05e919a15207eef0bf06a37a3adc1b95e4a2", "repo_url": "https://github.com/kukapay/crypto-skills", "name": "token-minter", "description": "Generate, build, and deploy custom ERC20 tokens on EVM networks. Use when users want to create and deploy their own ERC20 tokens with custom parameters like name, symbol, decimals, and initial supply.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kukapay/crypto-skills/blob/main/skills/token-minter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-04T16:18:23Z"}, "embedding_text": "token-minter. Generate, build, and deploy custom ERC20 tokens on EVM networks. Use when users want to create and deploy their own ERC20 tokens with custom parameters like name, symbol, decimals, and initial supply. Platforms: claude_code."} +{"id": "75396efdf9e67f3c6f5a184cb7e243f6dc1092f3f25c7b8e4ba21be4a722deb5", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "terraform-stacks", "description": "Comprehensive guide for working with HashiCorp Terraform Stacks. Use when creating, modifying, or validating Terraform Stack configurations (.tfcomponent.hcl, .tfdeploy.hcl files), working with stack components and deployments from local modules, public registry, or private registry sources, managing multi-region or multi-environment infrastructure, or troubleshooting Terraform Stacks syntax and structure.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/module-generation/skills/terraform-stacks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-stacks"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "terraform-stacks. Comprehensive guide for working with HashiCorp Terraform Stacks. Use when creating, modifying, or validating Terraform Stack configurations (.tfcomponent.hcl, .tfdeploy.hcl files), working with stack components and deployments from local modules, public registry, or private registry sources, managing multi-region or multi-environment infrastructure, or troubleshooting Terraform Stacks syntax and structure. Platforms: claude_code."} +{"id": "4957a40b003c6b3698257c83d9e23bec0359495dfb30145d9df0538d31241870", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-sentiment", "description": "Analyze finance text sentiment using FinBERT or LLM. Use when the user needs to determine the sentiment (positive/negative/neutral) and score of financial text markets.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-sentiment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-sentiment"}, "quality": {"stars": 2582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-29T05:03:47Z"}, "embedding_text": "alphaear-sentiment. Analyze finance text sentiment using FinBERT or LLM. Use when the user needs to determine the sentiment (positive/negative/neutral) and score of financial text markets. Platforms: claude_code."} +{"id": "c8cdc95e53e1765ebba6954df80d8a8a4e2dbc8b7befa7a1c63c6e230cefb315", "repo_url": "https://github.com/milady-ai/milady", "name": "bags", "description": "Bags - The Solana launchpad for humans and AI agents. Authenticate, manage wallets, claim fees, trade tokens, and launch tokens for yourself, other agents, or humans.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 365, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:28:32Z"}, "embedding_text": "bags. Bags - The Solana launchpad for humans and AI agents. Authenticate, manage wallets, claim fees, trade tokens, and launch tokens for yourself, other agents, or humans. Platforms: claude_code."} +{"id": "188e4d7d48ba6f115fb6b62ef1b117bc30b2766c2cf6325fa94328fed4b87bc5", "repo_url": "https://github.com/richtabor/agent-skills", "name": "accessibility-review", "description": "Reviews UI for accessibility issues against WCAG 2.1/2.2 AA. Triggers on \"is this accessible?\", \"check accessibility\", or contrast/a11y review requests.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/richtabor/agent-skills/blob/main/skills/accessibility-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 64, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T01:38:39Z"}, "embedding_text": "accessibility-review. Reviews UI for accessibility issues against WCAG 2.1/2.2 AA. Triggers on \"is this accessible?\", \"check accessibility\", or contrast/a11y review requests. Platforms: claude_code."} +{"id": "9578284f2094ca44a26a011b80a950155b83dcc2c25f4abda46e7488fc36afa8", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "terraform-test", "description": "Comprehensive guide for writing and running Terraform tests. Use when creating test files (.tftest.hcl), writing test scenarios with run blocks, validating infrastructure behavior with assertions, mocking providers and data sources, testing module outputs and resource configurations, or troubleshooting Terraform test syntax and execution.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/code-generation/skills/terraform-test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-test"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "terraform-test. Comprehensive guide for writing and running Terraform tests. Use when creating test files (.tftest.hcl), writing test scenarios with run blocks, validating infrastructure behavior with assertions, mocking providers and data sources, testing module outputs and resource configurations, or troubleshooting Terraform test syntax and execution. Platforms: claude_code."} +{"id": "8fec634d09e528f24a741d5e0c2da137139a830e3998765e69d633b4826d468c", "repo_url": "https://github.com/whawkinsiv/claude-code-superpowers", "name": "security", "description": "Protect your SaaS app from common vulnerabilities. Use when building auth, handling user data, or deploying features. Covers authentication, data protection, API security, and OWASP Top 10 for non-tec", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/whawkinsiv/claude-code-superpowers/blob/main/skills/about-me/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 222, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T16:20:15Z"}, "embedding_text": "security. Protect your SaaS app from common vulnerabilities. Use when building auth, handling user data, or deploying features. Covers authentication, data protection, API security, and OWASP Top 10 for non-tec Platforms: claude_code."} +{"id": "89d97f2d1af11897a05ed109e0c0ac9d26d2c37d3350a23b22670fc50ff8c621", "repo_url": "https://github.com/howells/arc", "name": "commit", "description": "Smart commit and push with auto-splitting across domains. Creates atomic commits.\nUse when asked to \"commit\", \"push changes\", \"save my work\", or after completing\nimplementation work. Automatically gro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/howells/arc/blob/main/plugins/arc/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T00:43:08Z"}, "embedding_text": "commit. Smart commit and push with auto-splitting across domains. Creates atomic commits.\nUse when asked to \"commit\", \"push changes\", \"save my work\", or after completing\nimplementation work. Automatically gro Platforms: claude_code."} +{"id": "8d073c268cc01afcb98bafc3ef515238b36faae955c373d228cebd5234a5509b", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "reading-invoice", "description": "\u8acb\u6c42\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/reading-invoice/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reading-invoice"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "reading-invoice. \u8acb\u6c42\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002 Platforms: claude_code."} +{"id": "0841287255f2950f0f7231f83ba80e25ae93ad04778b2ab78c36238eb0ab07e7", "repo_url": "https://github.com/jellydn/my-ai-tools", "name": "handoffs", "description": "Creates detailed handoff plans of conversations for continuing work in new sessions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jellydn/my-ai-tools/blob/main/skills/handoffs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 84, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:26:12Z"}, "embedding_text": "handoffs. Creates detailed handoff plans of conversations for continuing work in new sessions Platforms: claude_code."} +{"id": "e8d35974a92dac35af9dacf84bd92999ae0074b1aad9d87b397c1a10915cebdb", "repo_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin", "name": "automating-contacts", "description": "Automates macOS Contacts via JXA with AppleScript dictionary discovery. Use when asked to \"automate contacts\", \"JXA contacts automation\", \"macOS address book scripting\", \"AppleScript contacts\", or \"Co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin/blob/main/plugins/automating-mac-apps-plugin/skills/automating-contacts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T23:41:11Z"}, "embedding_text": "automating-contacts. Automates macOS Contacts via JXA with AppleScript dictionary discovery. Use when asked to \"automate contacts\", \"JXA contacts automation\", \"macOS address book scripting\", \"AppleScript contacts\", or \"Co Platforms: claude_code."} +{"id": "52e2fd9d4de751d43703c56f4227532ebc1c28fb45b63586a3bc7b113b4dd65e", "repo_url": "https://github.com/dceoy/speckit-agent-skills", "name": "speckit-implement", "description": "Execute the implementation plan by processing and executing all tasks defined in tasks.md", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dceoy/speckit-agent-skills/blob/main/skills/speckit-implement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:26:30Z"}, "embedding_text": "speckit-implement. Execute the implementation plan by processing and executing all tasks defined in tasks.md Platforms: claude_code."} +{"id": "473291b45de3081ba4a62c58435a08e9b98623e1ab538377f8687d95403c8118", "repo_url": "https://github.com/camoa/claude-skills", "name": "task-completer", "description": "Use when finishing a task - moves task to completed/, updates project_state.md, suggests next task", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/task-completer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "task-completer. Use when finishing a task - moves task to completed/, updates project_state.md, suggests next task Platforms: claude_code."} +{"id": "3b16d0c5a544f40fb2fa0e2d38f5d982485d83cf1d2ef7301073159bb8ea2a1b", "repo_url": "https://github.com/camoa/claude-skills", "name": "requirements-gatherer", "description": "Use when gathering project requirements - asks structured questions about project type, scope, integrations, and constraints to populate project_state.md", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/requirements-gatherer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "requirements-gatherer. Use when gathering project requirements - asks structured questions about project type, scope, integrations, and constraints to populate project_state.md Platforms: claude_code."} +{"id": "9a8b27ea13d2fe87471c34669e7026d2277e9e627506a650cabccd10ac24b83c", "repo_url": "https://github.com/anton-abyzov/specweave", "name": "diagrams-generator", "description": "This skill acts as a coordinator that detects user requests for various types of diagrams (C4, sequence, ER, deployment) and delegates the actual generation to a specialized diagrams-architect agent,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anton-abyzov/specweave/blob/develop/plugins/specweave/skills/diagrams/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 148, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:28:45Z"}, "embedding_text": "diagrams-generator. This skill acts as a coordinator that detects user requests for various types of diagrams (C4, sequence, ER, deployment) and delegates the actual generation to a specialized diagrams-architect agent, Platforms: claude_code."} +{"id": "300916d58925f02e3f37570c25ccd91b5b57d4b00eb40217077fb70185578291", "repo_url": "https://github.com/microsoft/azure-skills", "name": "appinsights-instrumentation", "description": "Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/appinsights-instrumentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install appinsights-instrumentation"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "appinsights-instrumentation. Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices. Platforms: claude_code."} +{"id": "1e8f4715f4d821182765d5063d353429064f16af5131f7725c659dc327e335a1", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "spoon-graph-development", "description": "Build StateGraph workflows with SpoonOS. Use when creating multi-step workflows, conditional routing, parallel execution, checkpointing, or multi-agent orchestration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/spoonos-skills/graph-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "spoon-graph-development. Build StateGraph workflows with SpoonOS. Use when creating multi-step workflows, conditional routing, parallel execution, checkpointing, or multi-agent orchestration. Platforms: claude_code."} +{"id": "69eab145030fcd03fcf7f5a0920d861b507401c157a560602a8dd8e0908f5d94", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-seo", "description": "SEO strategy for technical queries and developer audiences. Covers keyword research for\n\"how to X in language\" queries, error message SEO, Stack Overflow-style content, technical\nlong-tail keywords, a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-seo. SEO strategy for technical queries and developer audiences. Covers keyword research for\n\"how to X in language\" queries, error message SEO, Stack Overflow-style content, technical\nlong-tail keywords, a Platforms: claude_code."} +{"id": "b306e29183eac593348107171601044f421c6358c28f7c879e0156e1e1a3cc81", "repo_url": "https://github.com/akiojin/unity-cli", "name": "gh-pr", "description": "Create or update GitHub Pull Requests with the gh CLI, including deciding whether to create a new PR or only push based on existing PR merge status. Use when the user asks to open/create/edit a PR, ge", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/akiojin/unity-cli/blob/main/.agents/skills/gh-pr-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 67, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:08:09Z"}, "embedding_text": "gh-pr. Create or update GitHub Pull Requests with the gh CLI, including deciding whether to create a new PR or only push based on existing PR merge status. Use when the user asks to open/create/edit a PR, ge Platforms: claude_code."} +{"id": "25ecd76c519c6ea33ce666ac3f637441b8206a715287743e9bee1966bc38144a", "repo_url": "https://github.com/camoa/claude-skills", "name": "greeter", "description": "Greets users warmly. Use when user says hello, hi, good morning, or wants a friendly greeting.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/plugin-creation-tools/skills/plugin-creation/examples/simple-greeter-plugin/skills/greeter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "greeter. Greets users warmly. Use when user says hello, hi, good morning, or wants a friendly greeting. Platforms: claude_code."} +{"id": "69c0767b326bb2ea4abbddda76d45c137052ba65970bfb4648330f82f6847800", "repo_url": "https://github.com/minimax-ai/skills", "name": "pptx-generator", "description": "Generate, edit, and read PowerPoint presentations. Create from scratch with PptxGenJS (cover, TOC, content, section divider, summary slides), edit existing PPTX via XML workflows, or extract text with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/skills/pptx-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "pptx-generator. Generate, edit, and read PowerPoint presentations. Create from scratch with PptxGenJS (cover, TOC, content, section divider, summary slides), edit existing PPTX via XML workflows, or extract text with Platforms: claude_code."} +{"id": "58cb118e6c131375ec32ebd05be4ba9d81c7b55117df70115bcc494593ebeaff", "repo_url": "https://github.com/labring/fastgpt", "name": "workflow-interactive-dev", "description": "\u7528\u4e8e\u5f00\u53d1 FastGPT \u5de5\u4f5c\u6d41\u4e2d\u7684\u4ea4\u4e92\u54cd\u5e94\u3002\u8be6\u7ec6\u8bf4\u660e\u4e86\u4ea4\u4e92\u8282\u70b9\u7684\u67b6\u6784\u3001\u5f00\u53d1\u6d41\u7a0b\u548c\u9700\u8981\u4fee\u6539\u7684\u6587\u4ef6\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/labring/fastgpt/blob/main/.agents/skills/core/ai/prompt_optimize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28566, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:20:52Z"}, "embedding_text": "workflow-interactive-dev. \u7528\u4e8e\u5f00\u53d1 FastGPT \u5de5\u4f5c\u6d41\u4e2d\u7684\u4ea4\u4e92\u54cd\u5e94\u3002\u8be6\u7ec6\u8bf4\u660e\u4e86\u4ea4\u4e92\u8282\u70b9\u7684\u67b6\u6784\u3001\u5f00\u53d1\u6d41\u7a0b\u548c\u9700\u8981\u4fee\u6539\u7684\u6587\u4ef6\u3002 Platforms: claude_code."} +{"id": "b0bccd645fd3e658aec036d82ccac991a4f2731fca55260aad71e71abfdf032f", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "cursor", "description": "Control Cursor AI code editor via CLI. Open files, folders, diffs, and manage extensions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/cursor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "cursor. Control Cursor AI code editor via CLI. Open files, folders, diffs, and manage extensions. Platforms: claude_code."} +{"id": "cb4722f1763c195593dd94be39052f0dd53a28c62d47d6eb9cf7fd343a7573b3", "repo_url": "https://github.com/agent-sh/agnix", "name": "deep-reference", "description": "Use when validating deep references", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/skills/deep-reference/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "deep-reference. Use when validating deep references Platforms: claude_code."} +{"id": "ace3f87df90c36a9c8d27faac7bfdfeeb320cab6b38920d426baa6aec9c5e1b7", "repo_url": "https://github.com/rohunvora/cool-claude-skills", "name": "table-filters", "description": "Designs optimal filtering UX for data tables. Use when building a table that needs filters - analyzes the data columns and determines the best filter type for each. Outputs a unified filter field with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohunvora/cool-claude-skills/blob/main/skills/table-filters/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-09T05:28:41Z"}, "embedding_text": "table-filters. Designs optimal filtering UX for data tables. Use when building a table that needs filters - analyzes the data columns and determines the best filter type for each. Outputs a unified filter field with Platforms: claude_code."} +{"id": "7ad7a2d3c80916ee7c1feb40e1eb5f0014be9634b01a478ee2848c645d1bac00", "repo_url": "https://github.com/kriegcloud/beep-effect", "name": "wide-events", "description": "Conceptual guide to wide events (canonical log lines) for observability. Use when thinking about instrumentation strategy, span annotations, or designing what context to capture.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kriegcloud/beep-effect/blob/main/.claude/skills/atom-reactivity-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:44:16Z"}, "embedding_text": "wide-events. Conceptual guide to wide events (canonical log lines) for observability. Use when thinking about instrumentation strategy, span annotations, or designing what context to capture. Platforms: claude_code."} +{"id": "57863a0ca6c800eb6ac8e502908de9befc7164a1c6121a12a0f697f19d8d5b30", "repo_url": "https://github.com/dariushoule/x64dbg-skills", "name": "state-snapshot", "description": "Capture a full debuggee state snapshot (all committed memory regions + processor state) to disk for offline analysis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dariushoule/x64dbg-skills/blob/main/skills/state-snapshot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 186, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T19:32:18Z"}, "embedding_text": "state-snapshot. Capture a full debuggee state snapshot (all committed memory regions + processor state) to disk for offline analysis Platforms: claude_code."} +{"id": "0bd495faf5e90fc60c5ca0e8f87ddb326616248c5bf360555ad9d0939624e968", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "week-skill", "description": "Manage WEEEK tasks, boards, and users. View boards, create/move tasks, assign users, and track time via CLI. Use when you need to interact with the WEEEK project management system.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/development/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "week-skill. Manage WEEEK tasks, boards, and users. View boards, create/move tasks, assign users, and track time via CLI. Use when you need to interact with the WEEEK project management system. Platforms: claude_code."} +{"id": "c8ee8ab1acd3bd97abea3c01cd64c1910439190d7ddf5af06e6df3e86e2d8af9", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "dipeo-frontend-dev", "description": "Router skill for DiPeO frontend (React, visual editor, GraphQL integration, TypeScript types). Use when task mentions React components, diagram editor, GraphQL hooks, or type errors. For simple tasks,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/dipeo-frontend-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "dipeo-frontend-dev. Router skill for DiPeO frontend (React, visual editor, GraphQL integration, TypeScript types). Use when task mentions React components, diagram editor, GraphQL hooks, or type errors. For simple tasks, Platforms: claude_code."} +{"id": "a7e5ac4ce4c594378c5cac72ad3ab45e3ce3b32aa945cd001fa1f4a5d7a45bb9", "repo_url": "https://github.com/mksglu/claude-context-mode", "name": "ctx-stats", "description": "Show how much context window context-mode saved this session.\nDisplays token consumption, context savings ratio, and per-tool breakdown.\nTrigger: /context-mode:ctx-stats", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mksglu/claude-context-mode/blob/main/skills/ctx-stats/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17919, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:54:00Z"}, "embedding_text": "ctx-stats. Show how much context window context-mode saved this session.\nDisplays token consumption, context savings ratio, and per-tool breakdown.\nTrigger: /context-mode:ctx-stats Platforms: claude_code."} +{"id": "50f57bd0a4409595747f3d2ccbbadddd9f325571c22700df6f67ea45718a6748", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "writing-infrastructure-code", "description": "Managing cloud infrastructure using declarative and imperative IaC tools. Use when provisioning cloud resources (Terraform/OpenTofu for multi-cloud, Pulumi for developer-centric workflows, AWS CDK for AWS-native infrastructure), designing reusable modules, implementing state management patterns, or establishing infrastructure deployment workflows.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/writing-infrastructure-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-infrastructure-code"}, "quality": {"stars": 375, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "writing-infrastructure-code. Managing cloud infrastructure using declarative and imperative IaC tools. Use when provisioning cloud resources (Terraform/OpenTofu for multi-cloud, Pulumi for developer-centric workflows, AWS CDK for AWS-native infrastructure), designing reusable modules, implementing state management patterns, or establishing infrastructure deployment workflows. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} +{"id": "a4907807c5df474765d6bb4b06465bf3270699058ac25086f31645def25520ae", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "speckit-workflow", "description": "Comprehensive understanding of the spec-kit methodology. Constitution-driven feature development with specify, plan, tasks, and implement phases.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-speckit/skills/speckit-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install speckit-workflow"}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "speckit-workflow. Comprehensive understanding of the spec-kit methodology. Constitution-driven feature development with specify, plan, tasks, and implement phases. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} +{"id": "209966e3e918dfe760cc98840f3431782286cea4810165da3f52edd1bd06a061", "repo_url": "https://github.com/scientiacapital/skills", "name": "business-model-canvas", "description": "Business model design using Alexander Osterwalder's 9 building blocks. Use when: business model, canvas, value proposition, customer segments, revenue streams, startup planning, analyze business, busi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/business-model-canvas-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "business-model-canvas. Business model design using Alexander Osterwalder's 9 building blocks. Use when: business model, canvas, value proposition, customer segments, revenue streams, startup planning, analyze business, busi Platforms: claude_code."} +{"id": "234f7730b855aedef89b18e8518067f55617743e05ba402c1d2add51fc4d8819", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "better-auth-best-practices", "description": "Modern authentication and security patterns for web applications. Expert in JWT tokens, OAuth2 flows, session management, RBAC, MFA, API security, and zero-trust architectures. Framework-agnostic patterns that work with any tech stack.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/azeem-2/auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install better-auth-best-practices"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "better-auth-best-practices. Modern authentication and security patterns for web applications. Expert in JWT tokens, OAuth2 flows, session management, RBAC, MFA, API security, and zero-trust architectures. Framework-agnostic patterns that work with any tech stack. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "8f56583e9917837bbb8c4ae88cb2d63d2ef02fffbb6e57045e663f56c1faf87e", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "platform-optimization", "description": "Platform-specific optimization for TikTok, Instagram Reels, and YouTube sponsored content. Includes 2025 algorithm updates, optimal lengths, and platform-native best practices. Auto-activates when dis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/platform-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "platform-optimization. Platform-specific optimization for TikTok, Instagram Reels, and YouTube sponsored content. Includes 2025 algorithm updates, optimal lengths, and platform-native best practices. Auto-activates when dis Platforms: claude_code."} +{"id": "10db18d19c015acd2a70ff88e40a1773a6a15e1066567bcdaf16aa341bf47cda", "repo_url": "https://github.com/agent-sh/agnix", "name": "fork-with-instructions", "description": "Use when analyzing code quality", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/valid/skills/fork-with-instructions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "fork-with-instructions. Use when analyzing code quality Platforms: claude_code."} +{"id": "6c887ac0090ddf226b246a526e0575b628cd611f64a788993f66d164266c5ed0", "repo_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin", "name": "automating-voice-memos", "description": "Automates Apple Voice Memos (Mac Catalyst, no dictionary) via JXA using filesystem/SQLite access and System Events UI scripting. Use when asked to \"automate Voice Memos\", \"export voice recordings\", \"a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin/blob/main/plugins/automating-mac-apps-plugin/skills/automating-voice-memos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T23:41:11Z"}, "embedding_text": "automating-voice-memos. Automates Apple Voice Memos (Mac Catalyst, no dictionary) via JXA using filesystem/SQLite access and System Events UI scripting. Use when asked to \"automate Voice Memos\", \"export voice recordings\", \"a Platforms: claude_code."} +{"id": "90ded06cf866b23e60d515f43d5c091796ae2b0aeb6c4a1f86ccefd48a105f3b", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "spec-creation", "description": "Spec creation with pattern references, acceptance criteria, and demo scripts. Use when creating implementation specs, defining acceptance criteria, breaking down user stories, or translating business", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/spec-creation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "spec-creation. Spec creation with pattern references, acceptance criteria, and demo scripts. Use when creating implementation specs, defining acceptance criteria, breaking down user stories, or translating business Platforms: claude_code."} +{"id": "b769a7512e60b2652e69d10794dbbe9784ac985a14e13bb1bd7c2a3c581d1a80", "repo_url": "https://github.com/daloopa/investing", "name": "dcf", "description": "Discounted cash flow valuation with sensitivity analysis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daloopa/investing/blob/main/.claude/skills/dcf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 478, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T22:00:15Z"}, "embedding_text": "dcf. Discounted cash flow valuation with sensitivity analysis Platforms: claude_code."} +{"id": "c3c9a4c0d0ff18ad0230d64c03efd27e9f5b0b78f7415f9543f88c1f91162df8", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-search", "description": "Perform finance web searches and local context searches. Use when the user needs general finance info from the web (Jina/DDG/Baidu) or needs to retrieve finance information from a local document store (RAG).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-search"}, "quality": {"stars": 2582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-29T05:03:47Z"}, "embedding_text": "alphaear-search. Perform finance web searches and local context searches. Use when the user needs general finance info from the web (Jina/DDG/Baidu) or needs to retrieve finance information from a local document store (RAG). Platforms: claude_code."} +{"id": "569baa5d96db00df782504540ea842e95e6b7a779bb61d6d477f3281237ee2e9", "repo_url": "https://github.com/datadog/dd-trace-dotnet", "name": "review-pr", "description": "Perform a review on a GitHub PR, leaving comments on the PR", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadog/dd-trace-dotnet/blob/master/.claude/skills/review-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 568, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T21:14:04Z"}, "embedding_text": "review-pr. Perform a review on a GitHub PR, leaving comments on the PR Platforms: claude_code."} +{"id": "a6f7900d6e7026e7f27ecf75dbb7785e0ed5eb3371b5f0ede2b197fdba8ebbac", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "theme-factory", "description": "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 t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "theme-factory. 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 t Platforms: claude_code."} +{"id": "b0c5976ffba7a1b6461734ea38dd74e19e1ba6bc7cc11616cb0a80c0ed55c501", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "loop-planner", "description": "Evaluate-Loop Step 1: PLAN. Use this agent when starting a new track or feature to create a detailed execution plan. Reads spec.md, loads project context, and produces a phased plan.md with specific t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/loop-planner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "loop-planner. Evaluate-Loop Step 1: PLAN. Use this agent when starting a new track or feature to create a detailed execution plan. Reads spec.md, loads project context, and produces a phased plan.md with specific t Platforms: claude_code."} +{"id": "c7fbe3d858928585803684044330abb2052935be862df1015351c4d9b8ef1c4b", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "doc-check", "description": "Execute increment implementation following spec and plan - hooks run after EVERY task", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/do/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install doc-check"}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "doc-check. Execute increment implementation following spec and plan - hooks run after EVERY task Platforms: claude_code."} +{"id": "113766e83731de6147bffaaf114f6e44b7fbcf4c552b27a95311a7ae3785e4e6", "repo_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin", "name": "automating-word", "description": "Automates Microsoft Word via JXA with AppleScript dictionary discovery. Use when asked to \"automate Word documents\", \"find and replace in Word\", \"JXA Word scripting\", or \"create Word documents program", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin/blob/main/plugins/automating-mac-apps-plugin/skills/automating-word/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T23:41:11Z"}, "embedding_text": "automating-word. Automates Microsoft Word via JXA with AppleScript dictionary discovery. Use when asked to \"automate Word documents\", \"find and replace in Word\", \"JXA Word scripting\", or \"create Word documents program Platforms: claude_code."} +{"id": "36cf23795bd8cdb0770dfecf3dab1b590aaeed097ab1530a07f35aa13dc256cf", "repo_url": "https://github.com/peiiii/skild", "name": "gamma", "description": "Gamma sample skill for local discovery and CLI smoke tests.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/examples/sample-skills/gamma/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "gamma. Gamma sample skill for local discovery and CLI smoke tests. Platforms: claude_code."} +{"id": "11177c78af5633cddeea5b74147ee31ffcaf0211952a64698b92ad00dceb797e", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "theme-detector", "description": "Detect and analyze trending market themes across sectors. Use when user asks about current market themes, trending sectors, sector rotation, thematic investing, what themes are hot or cold, or wants t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/theme-detector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "theme-detector. Detect and analyze trending market themes across sectors. Use when user asks about current market themes, trending sectors, sector rotation, thematic investing, what themes are hot or cold, or wants t Platforms: claude_code."} +{"id": "5f4fd41a57ee314099da86126b7d269c483f3ea3dbab1697cb607212751ea596", "repo_url": "https://github.com/zhanghandong/cowork-skills", "name": "github-generate", "description": "CRITICAL: Use for generating skills from GitHub repositories. Triggers on: generate skill from repo, create skills from GitHub, cowork generate, generate llms.txt, convert repo to skills, make skills", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zhanghandong/cowork-skills/blob/main/cli/builtin-skills/github-generate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T08:51:49Z"}, "embedding_text": "github-generate. CRITICAL: Use for generating skills from GitHub repositories. Triggers on: generate skill from repo, create skills from GitHub, cowork generate, generate llms.txt, convert repo to skills, make skills Platforms: claude_code."} +{"id": "07bdb39d0db09243aa01aca4eb6f21788fad77aafc37bad0cab47350f4015d4d", "repo_url": "https://github.com/packmindhub/packmind", "name": "packmind-create-standard", "description": "Guide for creating coding standards via the Packmind CLI. This skill should be used when users want to create a new coding standard (or add rules to an existing standard) that captures team convention", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/packmindhub/packmind/blob/main/.gitlab/duo/skills/packmind-create-standard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:14:12Z"}, "embedding_text": "packmind-create-standard. Guide for creating coding standards via the Packmind CLI. This skill should be used when users want to create a new coding standard (or add rules to an existing standard) that captures team convention Platforms: claude_code."} +{"id": "24e1a184f243c28660a20cf58f19321504625e37bd2cf86ed312f61ec2a9eff8", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-bot-service", "description": "Expert knowledge for Azure AI Bot Service development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-bot-service/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-bot-service. Expert knowledge for Azure AI Bot Service development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations Platforms: claude_code."} +{"id": "00ad82c03f360975deecf4eabdfe6c85b90aa883cb8936d28ae124dd2ab0f753", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "prioritization", "description": "Prioritization techniques including MoSCoW, Kano model, weighted scoring, and value-effort matrices. Ranks requirements, features, backlog items, and investment decisions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/prioritization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "prioritization. Prioritization techniques including MoSCoW, Kano model, weighted scoring, and value-effort matrices. Ranks requirements, features, backlog items, and investment decisions. Platforms: claude_code."} +{"id": "593e1305a00d8a97e42855f2beb0b4266fd0b462b7dad301b82f0b3c2226842d", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "test-driven-development", "description": "\u5728\u5b9e\u73b0\u4efb\u4f55\u529f\u80fd\u6216\u4fee\u590d bug \u65f6\u4f7f\u7528\uff0c\u5728\u7f16\u5199\u5b9e\u73b0\u4ee3\u7801\u4e4b\u524d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/test-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "test-driven-development. \u5728\u5b9e\u73b0\u4efb\u4f55\u529f\u80fd\u6216\u4fee\u590d bug \u65f6\u4f7f\u7528\uff0c\u5728\u7f16\u5199\u5b9e\u73b0\u4ee3\u7801\u4e4b\u524d Platforms: claude_code."} +{"id": "9068e58e5a84e171ac626f6f0a4070b430e14218d874999d92722f4eb1272781", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-deploy", "description": "Execute Azure deployments for ALREADY-PREPARED applications that have existing .azure/plan.md and infrastructure files. DO NOT use this skill when the user asks to CREATE a new application \u2014 use azure-prepare instead. This skill runs azd up, azd deploy, terraform apply, and az deployment commands with built-in error recovery. Requires .azure/plan.md from azure-prepare and validated status from azure-validate. WHEN: \"run azd up\", \"run azd deploy\", \"execute deployment\", \"push to production\", \"push to cloud\", \"go live\", \"ship it\", \"bicep deploy\", \"terraform apply\", \"publish to Azure\", \"launch on Azure\". DO NOT USE WHEN: \"create and deploy\", \"build and deploy\", \"create a new app\", \"set up infrastructure\", \"create and deploy to Azure using Terraform\" \u2014 use azure-prepare for these.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-deploy"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-deploy. Execute Azure deployments for ALREADY-PREPARED applications that have existing .azure/plan.md and infrastructure files. DO NOT use this skill when the user asks to CREATE a new application \u2014 use azure-prepare instead. This skill runs azd up, azd deploy, terraform apply, and az deployment commands with built-in error recovery. Requires .azure/plan.md from azure-prepare and validated status from azure-validate. WHEN: \"run azd up\", \"run azd deploy\", \"execute deployment\", \"push to production\", \"push to cloud\", \"go live\", \"ship it\", \"bicep deploy\", \"terraform apply\", \"publish to Azure\", \"launch on Azure\". DO NOT USE WHEN: \"create and deploy\", \"build and deploy\", \"create a new app\", \"set up infrastructure\", \"create and deploy to Azure using Terraform\" \u2014 use azure-prepare for these. Platforms: claude_code."} +{"id": "9c7a13d595e275d5f1c97dee3e550e06f6180892416389a4bc5fee46fedf2be7", "repo_url": "https://github.com/letta-ai/lettabot", "name": "weather", "description": "Get current weather and forecasts (no API key required).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/weather/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "weather. Get current weather and forecasts (no API key required). Platforms: claude_code."} +{"id": "434d2e78ef08b86dcf455f610bdc40b2c8553eeee07a9df6ffc62d6baafe9683", "repo_url": "https://github.com/jackwener/boss-cli", "name": "boss-cli", "description": "Use boss-cli for ALL BOSS \u76f4\u8058 operations \u2014 searching jobs, viewing recommendations, managing applications, chatting with recruiters, and batch greeting. Invoke whenever the user requests any job search", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackwener/boss-cli/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 782, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-13T08:08:19Z"}, "embedding_text": "boss-cli. Use boss-cli for ALL BOSS \u76f4\u8058 operations \u2014 searching jobs, viewing recommendations, managing applications, chatting with recruiters, and batch greeting. Invoke whenever the user requests any job search Platforms: claude_code."} +{"id": "02dd8c59d71a6a044b67ca884f4d441f70cc55c07a20e473a69c638a120abb90", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "competitive-analysis", "description": "Help users understand and respond to competition. Use when someone is positioning against competitors, evaluating market threats, running competitive war games, or deciding how much to focus on compet", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/competitive-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "competitive-analysis. Help users understand and respond to competition. Use when someone is positioning against competitors, evaluating market threats, running competitive war games, or deciding how much to focus on compet Platforms: claude_code."} +{"id": "9233a5a3ee4470b79d46af95b9a0bc831a5d26209a3a39882470db340013ce29", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "git-worktree-swarm", "description": "Automates the complex setup of parallel git worktrees for agentic swarms with dependency-aware wave execution.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/coding/git-worktree-swarm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "git-worktree-swarm. Automates the complex setup of parallel git worktrees for agentic swarms with dependency-aware wave execution. Platforms: claude_code."} +{"id": "0b4acdfe4db7a45fe74f4816d12c5b8d83db12895eaf01354738eb88be295aa2", "repo_url": "https://github.com/skilluse/skilluse", "name": "publish", "description": "Publish a new version via GitHub Actions. Use when user says \"publish\", \"release\", or \"bump version\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skilluse/skilluse/blob/main/.claude/skills/publish/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T16:23:26Z"}, "embedding_text": "publish. Publish a new version via GitHub Actions. Use when user says \"publish\", \"release\", or \"bump version\". Platforms: claude_code."} +{"id": "0d0717e29ca9a7789f70f6dc77df24c1bab1a6c1412f79a524b1baa51ed3b5f2", "repo_url": "https://github.com/letta-ai/lettabot", "name": "gemini", "description": "Gemini CLI for one-shot Q&A, summaries, and generation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/gemini/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "gemini. Gemini CLI for one-shot Q&A, summaries, and generation. Platforms: claude_code."} +{"id": "b8f4b624aede80e624dd22e89ae1c5d3d308c9f8faaddb174ea5d93c327b17f7", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "security-review", "description": "\u5f53\u6dfb\u52a0\u8eab\u4efd\u8ba4\u8bc1\uff08authentication\uff09\u3001\u5904\u7406\u7528\u6237\u8f93\u5165\u3001\u4f7f\u7528\u51ed\u636e\uff08secrets\uff09\u3001\u521b\u5efa API \u7aef\u70b9\u6216\u5b9e\u73b0\u652f\u4ed8/\u654f\u611f\u529f\u80fd\u65f6\uff0c\u8bf7\u4f7f\u7528\u6b64\u6280\u80fd\u3002\u63d0\u4f9b\u5168\u9762\u7684\u5b89\u5168\u68c0\u67e5\u6e05\u5355\u548c\u6a21\u5f0f\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/.agents/skills/security-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "security-review. \u5f53\u6dfb\u52a0\u8eab\u4efd\u8ba4\u8bc1\uff08authentication\uff09\u3001\u5904\u7406\u7528\u6237\u8f93\u5165\u3001\u4f7f\u7528\u51ed\u636e\uff08secrets\uff09\u3001\u521b\u5efa API \u7aef\u70b9\u6216\u5b9e\u73b0\u652f\u4ed8/\u654f\u611f\u529f\u80fd\u65f6\uff0c\u8bf7\u4f7f\u7528\u6b64\u6280\u80fd\u3002\u63d0\u4f9b\u5168\u9762\u7684\u5b89\u5168\u68c0\u67e5\u6e05\u5355\u548c\u6a21\u5f0f\u3002 Platforms: claude_code."} +{"id": "74e9a3b2e2281b56c9f6031f0b0b925e8f87c5ee4314578d7623a39e3e560cc1", "repo_url": "https://github.com/jjmartres/opencode", "name": "meeting-insights-analyzer", "description": "Analyzes meeting transcripts and recordings to uncover behavioral patterns, communication insights, and actionable feedback. Identifies when you avoid conflict, use filler words, dominate conversation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jjmartres/opencode/blob/main/opencode/skills/meeting-insights-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-20T10:48:45Z"}, "embedding_text": "meeting-insights-analyzer. Analyzes meeting transcripts and recordings to uncover behavioral patterns, communication insights, and actionable feedback. Identifies when you avoid conflict, use filler words, dominate conversation Platforms: claude_code."} +{"id": "52fc8db9739d1aa945812780ff7df2e9a09d355618ef944e5376545e76993b77", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "changelog", "description": "[UDS] Generate and maintain CHANGELOG.md entries", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/changelog-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "changelog. [UDS] Generate and maintain CHANGELOG.md entries Platforms: claude_code."} +{"id": "fc756f22482cfa43e58dc9997a200b4351be05f6a7be13e1438f78d447a8dd12", "repo_url": "https://github.com/onsails/cc", "name": "review-loop", "description": "Use when code changes need multi-pass automated review before merge. Use when preparing branch for PR. Use when thorough code quality check needed.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onsails/cc/blob/master/mimo-code/skills/mimo-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T00:24:50Z"}, "embedding_text": "review-loop. Use when code changes need multi-pass automated review before merge. Use when preparing branch for PR. Use when thorough code quality check needed. Platforms: claude_code."} +{"id": "e5eb1f67c51fe88d0f8047424f75eaa12b4bab5be51eec65ac6fe0138338636d", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "workout-program-designer", "description": "Custom training plans by goal (strength, cardio, flexibility). Progressive overload programming, rest day optimization, home vs gym adaptations, deload weeks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/workout-program-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "workout-program-designer. Custom training plans by goal (strength, cardio, flexibility). Progressive overload programming, rest day optimization, home vs gym adaptations, deload weeks. Platforms: claude_code."} +{"id": "e7596f543bb45f7e2d6f14d0ec33ee4fbb6cf889399f67aef26e3bed9e28c04a", "repo_url": "https://github.com/letta-ai/lettabot", "name": "sonoscli", "description": "Control Sonos speakers (discover/status/play/volume/group).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/sonoscli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "sonoscli. Control Sonos speakers (discover/status/play/volume/group). Platforms: claude_code."} +{"id": "9291ea095d5d0b7ae391abdc4bae466e3b2db2cd402036638eae510393c28e47", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "personalization-at-scale", "description": "Generate unique personalized first lines for hundreds of prospects using company news, LinkedIn activity, and mutual connections. Saves 10+ hours of manual research per campaign. Use when you need per", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/personalization-at-scale/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "personalization-at-scale. Generate unique personalized first lines for hundreds of prospects using company news, LinkedIn activity, and mutual connections. Saves 10+ hours of manual research per campaign. Use when you need per Platforms: claude_code."} +{"id": "68b18c7f0687d10593ed1a8a939eb721b7c3b68e744ff58a558545d02ab47237", "repo_url": "https://github.com/jimliu/baoyu-skills", "name": "baoyu-post-to-weibo", "description": "Posts content to Weibo (\u5fae\u535a). Supports regular posts with text, images, and videos, and headline articles (\u5934\u6761\u6587\u7ae0) with Markdown input via Chrome CDP. Use when user asks to \"post to Weibo\", \"\u53d1\u5fae\u535a\", \"\u53d1\u5e03\u5fae\u535a\", \"publish to Weibo\", \"share on Weibo\", \"\u5199\u5fae\u535a\", or \"\u5fae\u535a\u5934\u6761\u6587\u7ae0\".", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "claude-skills", "codex-skills", "openclaw-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jimliu/baoyu-skills/blob/main/skills/baoyu-post-to-weibo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install baoyu-post-to-weibo"}, "quality": {"stars": 22165, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T04:02:10Z"}, "embedding_text": "baoyu-post-to-weibo. Posts content to Weibo (\u5fae\u535a). Supports regular posts with text, images, and videos, and headline articles (\u5934\u6761\u6587\u7ae0) with Markdown input via Chrome CDP. Use when user asks to \"post to Weibo\", \"\u53d1\u5fae\u535a\", \"\u53d1\u5e03\u5fae\u535a\", \"publish to Weibo\", \"share on Weibo\", \"\u5199\u5fae\u535a\", or \"\u5fae\u535a\u5934\u6761\u6587\u7ae0\". Categories: agent-skills, claude-skills, codex-skills, openclaw-skills. Platforms: claude_code."} +{"id": "5e33b27d0641c867f0b8cb9c3582162cbb3120cab5cd1a006a3a43437f740465", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "programming-in-react", "description": "Use when writing or modifying React components, planning React features, or working with .jsx/.tsx files - provides modern React patterns with TypeScript, hooks usage, component composition, and commo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-house-style/skills/programming-in-react/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "programming-in-react. Use when writing or modifying React components, planning React features, or working with .jsx/.tsx files - provides modern React patterns with TypeScript, hooks usage, component composition, and commo Platforms: claude_code."} +{"id": "d7f61becbf8cbb2541d22b7aa226407d782e31f9cef551a462540d558db8aae8", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "experiment-protocol", "description": "Design and run controlled experiments using the experiment-registry MCP server \u2014 domain-agnostic, pluggable, mechanically enforced. Use when you need evidence that a change actually improves behaviour", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/scientific-method/skills/experiment-protocol/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "experiment-protocol. Design and run controlled experiments using the experiment-registry MCP server \u2014 domain-agnostic, pluggable, mechanically enforced. Use when you need evidence that a change actually improves behaviour Platforms: claude_code."} +{"id": "602739e5a70f8da5f6fd5aa8775827224a7706a9747a666fb39136c6a37eb3c8", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "pr-merge-temporal", "description": "Merge multiple PRs into a temporal integration branch before merging to base, with ordered conflict resolution. Use when you want to validate a set of PRs together on a staging branch before advancing the base branch.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/pr-merge-temporal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pr-merge-temporal"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "pr-merge-temporal. Merge multiple PRs into a temporal integration branch before merging to base, with ordered conflict resolution. Use when you want to validate a set of PRs together on a staging branch before advancing the base branch. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "a686eddbf48e813444cd4176841982b55870290efc09ad3ca0891053c06e932b", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pptx"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "e679a1bc2e7811197d6c2ca2e89499200f3bc1c680a878d0672c13594d85aca5", "repo_url": "https://github.com/yorick-ryu/deep-share", "name": "md2docx", "description": "Convert Markdown to Word (DOCX) documents. Use when user wants to export, convert, or create Word documents from Markdown content.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yorick-ryu/deep-share/blob/master/.claude/skills/md2docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 134, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T09:42:28Z"}, "embedding_text": "md2docx. Convert Markdown to Word (DOCX) documents. Use when user wants to export, convert, or create Word documents from Markdown content. Platforms: claude_code."} +{"id": "64c7625d96f35374e48218f0a8d2798989e225981a62fb7aaf60c13a022eecc2", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "create-milestone", "description": "Create a GitHub milestone for the current repository. No args: guided intake (title, due date, description). With 'quick {title}': minimal prompts. Checks for duplicates via backlog MCP. Returns miles", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/create-milestone/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "create-milestone. Create a GitHub milestone for the current repository. No args: guided intake (title, due date, description). With 'quick {title}': minimal prompts. Checks for duplicates via backlog MCP. Returns miles Platforms: claude_code."} +{"id": "72e1724f03fc5b4740e8fed82228a422ff2bacf10336fde72bd715ffcc34c50f", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "paper-analyzer", "description": "Deep analysis of a single paper \u2014 generate structured notes with figures, evaluation, and knowledge graph updates", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/paper-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "paper-analyzer. Deep analysis of a single paper \u2014 generate structured notes with figures, evaluation, and knowledge graph updates Platforms: claude_code."} +{"id": "f6f098ed8d67cbd8c3222d3134936e2ddc3cb3db686102400b6fa06f770d1af9", "repo_url": "https://github.com/zhanghandong/cowork-skills", "name": "code-review", "description": "CRITICAL: Code review skill using GitHub API. Triggers on: review PR, code review, PR review, pull request review, review changes, check this PR, analyze this PR, review #, \u4ee3\u7801\u5ba1\u67e5, \u5ba1\u67e5 PR", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zhanghandong/cowork-skills/blob/main/cli/builtin-skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T08:51:49Z"}, "embedding_text": "code-review. CRITICAL: Code review skill using GitHub API. Triggers on: review PR, code review, PR review, pull request review, review changes, check this PR, analyze this PR, review #, \u4ee3\u7801\u5ba1\u67e5, \u5ba1\u67e5 PR Platforms: claude_code."} +{"id": "8d4ddbb2b3b9e9203ad0c7244a3745daee54bc4f7f2b0e88510f8183dec524b5", "repo_url": "https://github.com/shuvonsec/claude-bug-bounty", "name": "web3-audit", "description": "Smart contract security audit \u2014 10 DeFi bug classes (accounting desync, access control, incomplete path, off-by-one, oracle, ERC4626, reentrancy, flash loan, signature replay, proxy), pre-dive kill si", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shuvonsec/claude-bug-bounty/blob/main/skills/web3-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3468, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T09:58:47Z"}, "embedding_text": "web3-audit. Smart contract security audit \u2014 10 DeFi bug classes (accounting desync, access control, incomplete path, off-by-one, oracle, ERC4626, reentrancy, flash loan, signature replay, proxy), pre-dive kill si Platforms: claude_code."} +{"id": "cc92a0ddf7869e89c6fe575be785a5a24d17e16dfc75cfd7eb3e6254454c6856", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "reviews", "description": "Review the code changes on the current branch. Use when the user asks to review their current work, analyze recent commits, or get a code quality assessment of the active branch against the main branch.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reviews"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "reviews. Review the code changes on the current branch. Use when the user asks to review their current work, analyze recent commits, or get a code quality assessment of the active branch against the main branch. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "335ae5e0283fbc84d22cf41c55022d1bd5d12f34b883ba0569a41112d7d28dfd", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "game-strategy-simulator", "description": "What-if scenario analyzer for sports. Play-calling recommendations, clock management, substitution patterns, risk/reward calculations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/game-strategy-simulator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "game-strategy-simulator. What-if scenario analyzer for sports. Play-calling recommendations, clock management, substitution patterns, risk/reward calculations. Platforms: claude_code."} +{"id": "1d792a334ed8fbb33950f9528113ea3db29bc3a0b2b50f42c8c1521830969331", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "ssh", "description": "SSH remote access patterns and utilities. Connect to servers, manage keys, tunnels, and transfers.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/ssh/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "ssh. SSH remote access patterns and utilities. Connect to servers, manage keys, tunnels, and transfers. Platforms: claude_code."} +{"id": "95295b972e0eb4c12d9f6ff1fe1b029e09ab5640132b8eb97bde651e9797a71b", "repo_url": "https://github.com/storybookjs/react-native", "name": "upgrading-react-native-storybook", "description": "Incrementally upgrade React Native Storybook across the supported migration paths. Use when upgrading `@storybook/react-native` projects from 5.3.x to 6.5.x, 6.5.x to 7.6.x, 7.6.x to 8.3.x, 8.x to 9.x", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/storybookjs/react-native/blob/next/skills/upgrading-react-native-storybook/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T23:37:24Z"}, "embedding_text": "upgrading-react-native-storybook. Incrementally upgrade React Native Storybook across the supported migration paths. Use when upgrading `@storybook/react-native` projects from 5.3.x to 6.5.x, 6.5.x to 7.6.x, 7.6.x to 8.3.x, 8.x to 9.x Platforms: claude_code."} +{"id": "2194e19f8ef3505bcbf0a3dc81b7635bba61c80922101be2597edd82d18be241", "repo_url": "https://github.com/kevin-hs-sohn/hipocampus", "name": "hipocampus-search", "description": "Search memory using qmd (BM25 + optional vector) and compaction tree traversal. Use ROOT.md to decide whether to search memory or look externally. Always check memory before external lookups.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevin-hs-sohn/hipocampus/blob/main/skills/search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T19:08:09Z"}, "embedding_text": "hipocampus-search. Search memory using qmd (BM25 + optional vector) and compaction tree traversal. Use ROOT.md to decide whether to search memory or look externally. Always check memory before external lookups. Platforms: claude_code."} +{"id": "199066911de30bdbc6c48480273c58c0f92f5071b25c865e5d7e76cd1b84dcd7", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "position-sizer", "description": "Calculate risk-based position sizes for long stock trades. Use when user asks about position sizing, how many shares to buy, risk per trade, Kelly criterion, ATR-based sizing, or portfolio risk alloca", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/position-sizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "position-sizer. Calculate risk-based position sizes for long stock trades. Use when user asks about position sizing, how many shares to buy, risk per trade, Kelly criterion, ATR-based sizing, or portfolio risk alloca Platforms: claude_code."} +{"id": "7d2358a904822a6dad53777c6a61e1e8458dda41ddc1f13ef7f4ad83d1ff4245", "repo_url": "https://github.com/johnlindquist/claude-workshop-skills", "name": "github", "description": "Manage GitHub issues using gh CLI - create, list, view, update, close, and assign issues. Use when working with GitHub issues, bug tracking, or project management tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnlindquist/claude-workshop-skills/blob/main/skills/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-21T12:42:00Z"}, "embedding_text": "github. Manage GitHub issues using gh CLI - create, list, view, update, close, and assign issues. Use when working with GitHub issues, bug tracking, or project management tasks. Platforms: claude_code."} +{"id": "3ce63656d002213ab0b76c624b15281bcd401a74c3f77261449584f1e83b8190", "repo_url": "https://github.com/letta-ai/lettabot", "name": "wacli", "description": "Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/wacli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "wacli. Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats). Platforms: claude_code."} +{"id": "21016a6854a014294a1c2b227c041d09d9614800ab1f55c707a51c4698dcc914", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "lint", "description": "Use when checking skill quality, validating frontmatter before commit, or diagnosing validator warnings. Runs the plugin validator on a skill, agent, or plugin directory \u2014 reports token complexity, br", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/bash-development/skills/bash-lint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "lint. Use when checking skill quality, validating frontmatter before commit, or diagnosing validator warnings. Runs the plugin validator on a skill, agent, or plugin directory \u2014 reports token complexity, br Platforms: claude_code."} +{"id": "3acce9795f55612a3ef67f97ef7e6e213da07c5a74f8be85de18b681298c1a89", "repo_url": "https://github.com/tomkrikorian/visionosagents", "name": "usd-editor", "description": "Guide for modifying USD ASCII (.usda) files, including prims, properties, composition arcs, variants, and transforms. Use when editing or reviewing .usda files by hand.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tomkrikorian/visionosagents/blob/main/skills/usd-editor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T00:27:41Z"}, "embedding_text": "usd-editor. Guide for modifying USD ASCII (.usda) files, including prims, properties, composition arcs, variants, and transforms. Use when editing or reviewing .usda files by hand. Platforms: claude_code."} +{"id": "c94d83a81cee3e8ab4adca62d7e4bc948d22589ab0082e13bb64e26af97d0a43", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "python3-publish-release-pipeline", "description": "Set up CI/CD pipeline for Python package publishing to PyPI. Use when preparing to publish a package, when setting up automated releases, or when configuring GitHub Actions or GitLab CI for Python pro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/python3-publish-release-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "python3-publish-release-pipeline. Set up CI/CD pipeline for Python package publishing to PyPI. Use when preparing to publish a package, when setting up automated releases, or when configuring GitHub Actions or GitLab CI for Python pro Platforms: claude_code."} +{"id": "5c1be516cd099040f68cd6dc3c13b836c2fc9ceccf536a288e460c1a7b6346fb", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "inno-figure-gen", "description": "Generate/edit images with Nano Banana Pro (Gemini 3 Pro Image).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/inno-figure-gen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "inno-figure-gen. Generate/edit images with Nano Banana Pro (Gemini 3 Pro Image). Platforms: claude_code."} +{"id": "12c1ae2ea61b1231dfcf99aedbd01a277b46378606176ece969e3626071c4098", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "Finance Lead", "description": "Startup CFO who builds models that survive contact with reality. Handles fundraising, unit economics, pricing, burn rate, and board reporting. Speaks fluent spreadsheet but translates to English for f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/finance-lead/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "Finance Lead. Startup CFO who builds models that survive contact with reality. Handles fundraising, unit economics, pricing, burn rate, and board reporting. Speaks fluent spreadsheet but translates to English for f Platforms: claude_code."} +{"id": "d072d1e7fcea4f6ddd6eb92b2a2a548a4e899842fb401054018e793bf697280c", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "commit", "description": "[UDS] Generate commit messages following Conventional Commits standard", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/commit-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "commit. [UDS] Generate commit messages following Conventional Commits standard Platforms: claude_code."} +{"id": "794dce9b5e69c1f4130f61f2d37545c5b29e70ad2f0a76f5101b027daa517dff", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "edge-strategy-reviewer", "description": "Critically review strategy drafts from edge-strategy-designer for edge plausibility, overfitting risk, sample size adequacy, and execution realism. Use when strategy_drafts/*.yaml exists and needs qua", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/edge-strategy-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "edge-strategy-reviewer. Critically review strategy drafts from edge-strategy-designer for edge plausibility, overfitting risk, sample size adequacy, and execution realism. Use when strategy_drafts/*.yaml exists and needs qua Platforms: claude_code."} +{"id": "4f848884324578478d0bb85e6b42c821084416afc557b6529a9f76e7281be3f1", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-rbac", "description": "Helps users find the right Azure RBAC role for an identity with least privilege access, then generate CLI commands and Bicep code to assign it. Also provides guidance on permissions required to grant roles. WHEN: what role should I assign, least privilege role, RBAC role for, role to read blobs, role for managed identity, custom role definition, assign role to identity, what role do I need to grant access, permissions to assign roles.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-rbac/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-rbac"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-rbac. Helps users find the right Azure RBAC role for an identity with least privilege access, then generate CLI commands and Bicep code to assign it. Also provides guidance on permissions required to grant roles. WHEN: what role should I assign, least privilege role, RBAC role for, role to read blobs, role for managed identity, custom role definition, assign role to identity, what role do I need to grant access, permissions to assign roles. Platforms: claude_code."} +{"id": "ffd93ff251aff5db36f13f0cabc3d97319d3751a63eb98c6b20e253cc7846951", "repo_url": "https://github.com/edwnh/dqmc", "name": "dqmc-analyze", "description": "Extract physical observables with error estimates from completed DQMC simulations. Use when computing density, double occupancy, spin correlations, structure factors, or any measured quantity from sim", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/edwnh/dqmc/blob/master/.claude/skills/dqmc-analyze/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T22:10:41Z"}, "embedding_text": "dqmc-analyze. Extract physical observables with error estimates from completed DQMC simulations. Use when computing density, double occupancy, spin correlations, structure factors, or any measured quantity from sim Platforms: claude_code."} +{"id": "98e36a6322e912657d43a74ab48a4e4401b289bb85e141750211009b04eaf18f", "repo_url": "https://github.com/camoa/claude-skills", "name": "core-pattern-finder", "description": "Use when needing Drupal core implementation examples - searches core modules for specific patterns and returns file path references", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/core-pattern-finder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "core-pattern-finder. Use when needing Drupal core implementation examples - searches core modules for specific patterns and returns file path references Platforms: claude_code."} +{"id": "5d11bccb3792ee53294081aa7515abfd5fd21c1e58870b11796a44b7c1395ec5", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-oracle", "description": "Automatic tool discovery across 17 sources \u2014 hooks search before planning and after errors, siblings avoid redundant searches", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-oracle/skills/claude-oracle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-oracle"}, "quality": {"stars": 146, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-oracle. Automatic tool discovery across 17 sources \u2014 hooks search before planning and after errors, siblings avoid redundant searches Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} +{"id": "84f9c8048c4324e3d1f5a7e992a98f04e4993317f0256ecd69b810fd0877808d", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "edge-pipeline-orchestrator", "description": "Orchestrate the full edge research pipeline from candidate detection through strategy design, review, revision, and export. Use when coordinating multi-stage edge research workflows end-to-end.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/edge-pipeline-orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "edge-pipeline-orchestrator. Orchestrate the full edge research pipeline from candidate detection through strategy design, review, revision, and export. Use when coordinating multi-stage edge research workflows end-to-end. Platforms: claude_code."} +{"id": "f24a3b4e9fe63c792b069ce2e38286efc8b4eeb8c91582c89c8fb80bfb3a29e2", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "ftd-detector", "description": "Detects Follow-Through Day (FTD) signals for market bottom confirmation using William O'Neil's methodology. Dual-index tracking (S&P 500 + NASDAQ) with state machine for rally attempt, FTD qualificati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/ftd-detector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "ftd-detector. Detects Follow-Through Day (FTD) signals for market bottom confirmation using William O'Neil's methodology. Dual-index tracking (S&P 500 + NASDAQ) with state machine for rally attempt, FTD qualificati Platforms: claude_code."} +{"id": "076a559443aa1fd366bebbca882fea0215621982520adec1da4e5d9051027a3d", "repo_url": "https://github.com/analogjs/angular-skills", "name": "angular-di", "description": "Implement dependency injection in Angular v20+ using inject(), injection tokens, and provider configuration. Use for service architecture, providing dependencies at different levels, creating injectab", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/analogjs/angular-skills/blob/main/skills/angular-di/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 597, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T20:56:35Z"}, "embedding_text": "angular-di. Implement dependency injection in Angular v20+ using inject(), injection tokens, and provider configuration. Use for service architecture, providing dependencies at different levels, creating injectab Platforms: claude_code."} +{"id": "e368f69b6aaded5051c54d4755ef16751ce107aa597a377a08d1041a49b6d288", "repo_url": "https://github.com/aresbit/matebot", "name": "uv-python-tool-installer", "description": "Install Python command-line tools with a single command using uvx.sh (Astral's uv-based installer). Use when you need to install Python tools like ruff, black, mypy, or any PyPI package as a command-l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aresbit/matebot/blob/master/matecode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T08:15:03Z"}, "embedding_text": "uv-python-tool-installer. Install Python command-line tools with a single command using uvx.sh (Astral's uv-based installer). Use when you need to install Python tools like ruff, black, mypy, or any PyPI package as a command-l Platforms: claude_code."} +{"id": "b6ff934c22540efe77f3fe35e0fc8b2a2daf1af93faed038e1cfe32eb2f96fbd", "repo_url": "https://github.com/malob/nix-config", "name": "malo-find-skills", "description": "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.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/skills/malo-find-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install malo-find-skills"}, "quality": {"stars": 460, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:26:28Z"}, "embedding_text": "malo-find-skills. 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. Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} +{"id": "8e62afc8388080d6f7e71155faf8e422f400da3324ea9b6f5348e80ce052aa0f", "repo_url": "https://github.com/cfircoo/claude-code-toolkit", "name": "git", "description": "Git operations for committing, pushing, and opening PRs using gh CLI. Use when performing version control tasks. This skill should be used when the user asks to \"commit\", \"push\", \"create a PR\", \"ship", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cfircoo/claude-code-toolkit/blob/main/skills/git/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T15:01:38Z"}, "embedding_text": "git. Git operations for committing, pushing, and opening PRs using gh CLI. Use when performing version control tasks. This skill should be used when the user asks to \"commit\", \"push\", \"create a PR\", \"ship Platforms: claude_code."} +{"id": "d22d79395c43cd37f93c0e93eabb5ccec6f1cfd7a6095e1611f0dca1dc486256", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "defining-product-vision", "description": "Define or refresh a product vision and produce a shareable Product Vision Pack (vision statement, narrative, pillars, strategic choices, rollout). Use for product vision, vision statement, product dir", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/defining-product-vision/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "defining-product-vision. Define or refresh a product vision and produce a shareable Product Vision Pack (vision statement, narrative, pillars, strategic choices, rollout). Use for product vision, vision statement, product dir Platforms: claude_code."} +{"id": "482b5902cf3f4e9d2c936b6701886da5d13a4d4e2582b38e1afc9f7e809d9b79", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "founder-sales", "description": "Create a Founder Sales Sprint Pack (ICP wedge + target list, outreach sequences, diagnostic discovery script, decision-enablement assets to beat \u201cno decision\u201d, and a white-glove activation plan). Use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/founder-sales/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "founder-sales. Create a Founder Sales Sprint Pack (ICP wedge + target list, outreach sequences, diagnostic discovery script, decision-enablement assets to beat \u201cno decision\u201d, and a white-glove activation plan). Use Platforms: claude_code."} +{"id": "4f7ad5716f742a053c341b40f1e7df1b247e2ee1fbca1bfdfd5dc1a00222782a", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "synthetic-parallel-reasoning", "description": "Automates Protocol 75 v4.0, forcing 4 parallel external API calls (Domain Expert, Adversarial Skeptic, Cross-Domain Pattern Matcher, Zero-Point First Principles) with an Adversarial Convergence Gate.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/research/synthetic-parallel-reasoning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "synthetic-parallel-reasoning. Automates Protocol 75 v4.0, forcing 4 parallel external API calls (Domain Expert, Adversarial Skeptic, Cross-Domain Pattern Matcher, Zero-Point First Principles) with an Adversarial Convergence Gate. Platforms: claude_code."} +{"id": "2cd6d9a6ec39ed8c7f58dfcf07c60b3860e15094f03f7709cedd5cf056c14d9c", "repo_url": "https://github.com/sendaifun/skills", "name": "ranger-finance", "description": "Ranger Finance SDK for building perpetual futures trading applications on Solana. The first Solana Perps Aggregator - aggregates liquidity across multiple perp protocols (Drift, Flash, Adrena, Jupiter). Use when integrating perps trading, smart order routing, position management, or building AI trading agents.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/ranger-finance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ranger-finance"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "ranger-finance. Ranger Finance SDK for building perpetual futures trading applications on Solana. The first Solana Perps Aggregator - aggregates liquidity across multiple perp protocols (Drift, Flash, Adrena, Jupiter). Use when integrating perps trading, smart order routing, position management, or building AI trading agents. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "a6acd8be3b3a29ad80eebae04b6a84a5e553f40a5e37cd673c6fa6da34825184", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "spec-workflow", "description": "This skill should be used when the user asks to \"build a feature\", \"create a spec\", \"start spec-driven development\", \"run research phase\", \"generate requirements\", \"create design\", \"plan tasks\", \"implement spec\", \"check spec status\", \"triage a feature\", \"create an epic\", \"decompose a large feature\", or needs guidance on spec-driven development workflow, phase ordering, or epic orchestration.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum/skills/spec-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install spec-workflow"}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "spec-workflow. This skill should be used when the user asks to \"build a feature\", \"create a spec\", \"start spec-driven development\", \"run research phase\", \"generate requirements\", \"create design\", \"plan tasks\", \"implement spec\", \"check spec status\", \"triage a feature\", \"create an epic\", \"decompose a large feature\", or needs guidance on spec-driven development workflow, phase ordering, or epic orchestration. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} +{"id": "eabdf5f04298edc9fe404da19ea3f687311768fe2fbdb3776b6f837dfc7f1ba6", "repo_url": "https://github.com/triggerdotdev/trigger.dev", "name": "database", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/triggerdotdev/trigger.dev/blob/main/.claude/skills/errors-api-e2e/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15433, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:04:04Z"}, "embedding_text": "database. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "11635c7622744853303644c726574c6f7e39471b47df2ddeb37113f28daf545c", "repo_url": "https://github.com/ykdojo/safeclaw", "name": "gdoc", "description": "Read publicly shared Google Docs using curl to download into a file.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ykdojo/safeclaw/blob/main/setup/skills/gdoc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 158, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:53:54Z"}, "embedding_text": "gdoc. Read publicly shared Google Docs using curl to download into a file. Platforms: claude_code."} +{"id": "745857074f899034f124b6a0bbfa6a9a4884cc74998081f020ac0ac54be99ef9", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "dipeo-codegen-pipeline", "description": "Router skill for DiPeO code generation pipeline (TypeScript specs \u2192 IR \u2192 Python/GraphQL). Use when task mentions TypeScript models, IR builders, generated code diagnosis, or codegen workflow. For simp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/dipeo-codegen-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "dipeo-codegen-pipeline. Router skill for DiPeO code generation pipeline (TypeScript specs \u2192 IR \u2192 Python/GraphQL). Use when task mentions TypeScript models, IR builders, generated code diagnosis, or codegen workflow. For simp Platforms: claude_code."} +{"id": "8a394cad95c839f818ddbce27da84e7f0fe79f3db07169f8fdc997d3c35e6a57", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "building-team-culture", "description": "Help users build and maintain strong team culture. Use when someone is defining team values, creating psychological safety, onboarding to a new team, navigating cultural change, or building distribute", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/building-team-culture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "building-team-culture. Help users build and maintain strong team culture. Use when someone is defining team values, creating psychological safety, onboarding to a new team, navigating cultural change, or building distribute Platforms: claude_code."} +{"id": "83cac4a379a96077c5e4e9822d7977b06cf42b77e3b4521858ab2887163ca94f", "repo_url": "https://github.com/synalinks/synalinks-skills", "name": "synalinks", "description": "Build neuro-symbolic LLM applications with Synalinks framework. Use when working with DataModel, Program, Generator, Module, training LLM pipelines, in-context learning, structured output, JSON operat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/synalinks/synalinks-skills/blob/main/skills/synalinks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 900, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T13:15:18Z"}, "embedding_text": "synalinks. Build neuro-symbolic LLM applications with Synalinks framework. Use when working with DataModel, Program, Generator, Module, training LLM pipelines, in-context learning, structured output, JSON operat Platforms: claude_code."} +{"id": "13cf38ba59034bdb576a8e9da8092d10cf149702d21a1fc25f380b9157c39b5a", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "import-refactor", "description": "Update all import statements, module references, string paths, and config references after moving or renaming files and modules. Handles Python, TypeScript, and JavaScript imports. Use when moving fil", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/import-refactor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "import-refactor. Update all import statements, module references, string paths, and config references after moving or renaming files and modules. Handles Python, TypeScript, and JavaScript imports. Use when moving fil Platforms: claude_code."} +{"id": "6ce96dc728f3864a2e36e65e70a5d7d7f7de9d628c52b0668ea8c7bf625af738", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "Startup CTO", "description": "Technical co-founder who's been through two startups and learned what actually matters. Makes architecture decisions, selects tech stacks, builds engineering culture, and prepares for technical due di", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/startup-cto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "Startup CTO. Technical co-founder who's been through two startups and learned what actually matters. Makes architecture decisions, selects tech stacks, builds engineering culture, and prepares for technical due di Platforms: claude_code."} +{"id": "aad81b594e796a33fb4844014885b20af2cf6157b425b3b186869212912fcb00", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "capa-officer", "description": "Senior CAPA Officer specialist for managing Corrective and Preventive Actions within Quality Management Systems. Provides CAPA process management, root cause analysis, effectiveness verification, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/capa-officer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "capa-officer. Senior CAPA Officer specialist for managing Corrective and Preventive Actions within Quality Management Systems. Provides CAPA process management, root cause analysis, effectiveness verification, and Platforms: claude_code."} +{"id": "c3d2f021b45d2400a99864af3a6e9ec6662f4b73855c6946d68b9199ca37f98a", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "domain-name-brainstormer", "description": "\u4e3a\u60a8\u7684\u9879\u76ee\u751f\u6210\u521b\u610f\u57df\u540d\u60f3\u6cd5\uff0c\u5e76\u68c0\u67e5\u591a\u4e2a\u9876\u7ea7\u57df\u540d\uff08.com\u3001.io\u3001.dev\u3001.ai \u7b49\uff09\u7684\u53ef\u7528\u6027\u3002\u8282\u7701\u6570\u5c0f\u65f6\u7684\u5934\u8111\u98ce\u66b4\u548c\u624b\u52a8\u68c0\u67e5\u65f6\u95f4\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/domain-name-brainstormer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "domain-name-brainstormer. \u4e3a\u60a8\u7684\u9879\u76ee\u751f\u6210\u521b\u610f\u57df\u540d\u60f3\u6cd5\uff0c\u5e76\u68c0\u67e5\u591a\u4e2a\u9876\u7ea7\u57df\u540d\uff08.com\u3001.io\u3001.dev\u3001.ai \u7b49\uff09\u7684\u53ef\u7528\u6027\u3002\u8282\u7701\u6570\u5c0f\u65f6\u7684\u5934\u8111\u98ce\u66b4\u548c\u624b\u52a8\u68c0\u67e5\u65f6\u95f4\u3002 Platforms: claude_code."} +{"id": "8a5b51829fbb01c08d4f929c8af99dbe77d7f349a2265da60fdb099d831d4762", "repo_url": "https://github.com/shinpr/agentic-code", "name": "documentation-criteria", "description": "Guides PRD, ADR, Design Doc, and Work Plan creation. Use when: planning features, writing specs, or creating technical documents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/agentic-code/blob/main/.agents/skills/documentation-criteria/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-30T10:30:03Z"}, "embedding_text": "documentation-criteria. Guides PRD, ADR, Design Doc, and Work Plan creation. Use when: planning features, writing specs, or creating technical documents. Platforms: claude_code."} +{"id": "c4cdcc1b9b4610c8e8d476b24aca92123806997da9ed64ffa44951cbf1f7fca4", "repo_url": "https://github.com/kevmoo/dash_skills", "name": "dart-best-practices", "description": "General best practices for Dart development.\nCovers code style, effective Dart, and language features.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevmoo/dash_skills/blob/main/skills/dart-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 138, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T08:00:20Z"}, "embedding_text": "dart-best-practices. General best practices for Dart development.\nCovers code style, effective Dart, and language features. Platforms: claude_code."} +{"id": "8f038f74f27e30a05f417173b08269bc1e3f33dc974ada7aef6d0cc3ba022b50", "repo_url": "https://github.com/packmindhub/packmind", "name": "working-with-playground-app", "description": "This skill provides guidance for building UI/UX prototypes in the Packmind playground app. It should be used when creating a new prototype, iterating on an existing prototype, or working with files in", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/packmindhub/packmind/blob/main/.claude/skills/working-with-playground-app/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:14:12Z"}, "embedding_text": "working-with-playground-app. This skill provides guidance for building UI/UX prototypes in the Packmind playground app. It should be used when creating a new prototype, iterating on an existing prototype, or working with files in Platforms: claude_code."} +{"id": "df102d1592645c1ab24c2017871608d349f9a5d87aaff18a553eec406a39d7a4", "repo_url": "https://github.com/dariushoule/x64dbg-skills", "name": "tracealyzer", "description": "Trace execution (into or over calls) for N steps or until a condition, then analyze the recorded instruction log", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dariushoule/x64dbg-skills/blob/main/skills/tracealyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 186, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T19:32:18Z"}, "embedding_text": "tracealyzer. Trace execution (into or over calls) for N steps or until a condition, then analyze the recorded instruction log Platforms: claude_code."} +{"id": "168d684a587a98ddbafad08ca458307903b919ee985def6e2b760d29743b5cac", "repo_url": "https://github.com/peiiii/skild", "name": "claude-dev-pack", "description": "Developer toolkit: build, test, deploy, and debug with curated skills.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/skillsets/claude-dev-pack/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "claude-dev-pack. Developer toolkit: build, test, deploy, and debug with curated skills. Platforms: claude_code."} +{"id": "596d5292a3f0cb18d6b1b59aef1764c57aff572dcbec5096c41a31efbcc87849", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-cost-optimization", "description": "Identify and quantify cost savings across Azure subscriptions by analyzing actual costs, utilization metrics, and generating actionable optimization recommendations. USE FOR: optimize Azure costs, red", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-cost/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-cost-optimization. Identify and quantify cost savings across Azure subscriptions by analyzing actual costs, utilization metrics, and generating actionable optimization recommendations. USE FOR: optimize Azure costs, red Platforms: claude_code."} +{"id": "6e4425c559587d8d427f6495d99a051c2cfae0b51e085ec7dedbcac62faf6f7a", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "platform-strategy", "description": "Create a Platform Strategy Pack (platform-as-product charter, interface map, lifecycle stage, ecosystem/moat model, governance, metrics, roadmap). Use for platform strategy, developer platforms, APIs,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/platform-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "platform-strategy. Create a Platform Strategy Pack (platform-as-product charter, interface map, lifecycle stage, ecosystem/moat model, governance, metrics, roadmap). Use for platform strategy, developer platforms, APIs, Platforms: claude_code."} +{"id": "18060866d9ec7d7957aafa05a8fa8fd07574af27d07b0acc5fe787c3ef0f8950", "repo_url": "https://github.com/lqshow/claude-skills", "name": "food-diorama-skill", "description": "Generate 3D historical gourmet diorama images for Chinese cities using Google Gemini API. Creates artistic miniature food worlds with four-quadrant layouts featuring iconic dishes, Pop Mart style figu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lqshow/claude-skills/blob/main/food-diorama-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-10T05:59:31Z"}, "embedding_text": "food-diorama-skill. Generate 3D historical gourmet diorama images for Chinese cities using Google Gemini API. Creates artistic miniature food worlds with four-quadrant layouts featuring iconic dishes, Pop Mart style figu Platforms: claude_code."} +{"id": "55fa0f87a39b93d71c387d8b7cef66974d9421a24570f43539b6b3c99d572a7b", "repo_url": "https://github.com/iplug2/iplug2oos", "name": "build", "description": "Build an iPlug2 plugin project for different formats and platforms (macOS, iOS, Windows)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iplug2/iplug2oos/blob/master/.claude/skills/build-cmake/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 147, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-03T06:26:58Z"}, "embedding_text": "build. Build an iPlug2 plugin project for different formats and platforms (macOS, iOS, Windows) Platforms: claude_code."} +{"id": "2a79b232a6b5f6ff96da839ad3cdfce502973390e6bbb15806f1ef75b4a4d339", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-signal-tracker", "description": "Track finance investment signal evolution and update logic based on new finance market information. Use when monitoring finance signals and determining if they are strengthened, weakened, or falsified.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-signal-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-signal-tracker"}, "quality": {"stars": 2582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-29T05:03:47Z"}, "embedding_text": "alphaear-signal-tracker. Track finance investment signal evolution and update logic based on new finance market information. Use when monitoring finance signals and determining if they are strengthened, weakened, or falsified. Platforms: claude_code."} +{"id": "057d0cc30ad3d8e5fa71bdb7d5a801405fff9bb848c2786cdc7c71aef7ecff20", "repo_url": "https://github.com/congdon1207/agents.md", "name": "bug-diagnosis", "description": "Use when the user asks to debug, diagnose, fix a bug, troubleshoot errors, investigate issues, or pastes error messages/stack traces. Triggers on keywords like \"bug\", \"error\", \"fix\", \"not working\", \"b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/bug-diagnosis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "bug-diagnosis. Use when the user asks to debug, diagnose, fix a bug, troubleshoot errors, investigate issues, or pastes error messages/stack traces. Triggers on keywords like \"bug\", \"error\", \"fix\", \"not working\", \"b Platforms: claude_code."} +{"id": "cf2a1176a3b932371f6a8b9bbf63039424275246c2f0d7fe6f3e986afbea5349", "repo_url": "https://github.com/ryanthedev/code-foundations", "name": "cc-routine-and-class-design", "description": "Use when designing routines or classes, reviewing class interfaces, choosing between inheritance and containment, or evaluating routine cohesion. Also use when tempted to use inheritance as a quick fi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ryanthedev/code-foundations/blob/main/skills/cc-routine-and-class-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 280, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T03:42:22Z"}, "embedding_text": "cc-routine-and-class-design. Use when designing routines or classes, reviewing class interfaces, choosing between inheritance and containment, or evaluating routine cohesion. Also use when tempted to use inheritance as a quick fi Platforms: claude_code."} +{"id": "086faa02e6a181881a4fe01a931e12306909031b91f2c427c148adab245e757b", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "scriptwriting-methodology", "description": "Direct response copywriting frameworks for video scripts. Includes DR formula, PAS, AIDA, hook formulas, CTA best practices, and conversion optimization. Auto-activates when writing scripts, sponsored", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/scriptwriting-methodology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "scriptwriting-methodology. Direct response copywriting frameworks for video scripts. Includes DR formula, PAS, AIDA, hook formulas, CTA best practices, and conversion optimization. Auto-activates when writing scripts, sponsored Platforms: claude_code."} +{"id": "6366ef8d5bfcdd1abf0e409f6db9a084e78eedd42a864b39888dd76b1673ea8c", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "multi-platform-launch", "description": "When the user wants to launch a product across multiple platforms, plan a Product Hunt launch, build a waitlist, or execute a multi-channel launch strategy. Also use when the user mentions 'product launch,' 'Product Hunt,' 'launch strategy,' 'waitlist,' 'beta launch,' 'BetaList,' 'Hacker News,' 'launch day,' 'AppSumo,' 'multi-channel launch.' This skill covers multi-platform launch execution from pre-launch through post-launch optimization. Do NOT use for technical implementation, code review, or software architecture.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/multi-platform-launch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install multi-platform-launch"}, "quality": {"stars": 4672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:41:38Z"}, "embedding_text": "multi-platform-launch. When the user wants to launch a product across multiple platforms, plan a Product Hunt launch, build a waitlist, or execute a multi-channel launch strategy. Also use when the user mentions 'product launch,' 'Product Hunt,' 'launch strategy,' 'waitlist,' 'beta launch,' 'BetaList,' 'Hacker News,' 'launch day,' 'AppSumo,' 'multi-channel launch.' This skill covers multi-platform launch execution from pre-launch through post-launch optimization. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} +{"id": "7f9e7adbb0977146f7d78d04ba29957027dae166c8028b7d30edb1560ccacdfb", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "company-announcement-writer", "description": "Executive communication style for all-hands emails. Balances transparency with appropriate messaging.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/company-announcement-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "company-announcement-writer. Executive communication style for all-hands emails. Balances transparency with appropriate messaging. Platforms: claude_code."} +{"id": "a3a5b050e21216f70d589f32034fde34b3001df3c5dbe08f9c98ce31620eecd9", "repo_url": "https://github.com/microsoft/azure-skills", "name": "entra-app-registration", "description": "Guides Microsoft Entra ID app registration, OAuth 2.0 authentication, and MSAL integration. USE FOR: create app registration, register Azure AD app, configure OAuth, set up authentication, add API permissions, generate service principal, MSAL example, console app auth, Entra ID setup, Azure AD authentication. DO NOT USE FOR: Azure RBAC or role assignments (use azure-rbac), Key Vault secrets (use azure-keyvault-expiration-audit), Azure resource security (use azure-security).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/entra-app-registration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install entra-app-registration"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "entra-app-registration. Guides Microsoft Entra ID app registration, OAuth 2.0 authentication, and MSAL integration. USE FOR: create app registration, register Azure AD app, configure OAuth, set up authentication, add API permissions, generate service principal, MSAL example, console app auth, Entra ID setup, Azure AD authentication. DO NOT USE FOR: Azure RBAC or role assignments (use azure-rbac), Key Vault secrets (use azure-keyvault-expiration-audit), Azure resource security (use azure-security). Platforms: claude_code."} +{"id": "23a3e4e1f7a94d7bd926f860a841ab3d8bc46f5b005009faadf07e808e2911b6", "repo_url": "https://github.com/assafelovic/gpt-researcher", "name": "gpt-researcher", "description": "GPT Researcher is an autonomous deep research agent that conducts web and local research, producing detailed reports with citations. Use this skill when helping developers understand, extend, debug, o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/assafelovic/gpt-researcher/blob/main/skills/gpt-researcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27833, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T07:41:25Z"}, "embedding_text": "gpt-researcher. GPT Researcher is an autonomous deep research agent that conducts web and local research, producing detailed reports with citations. Use this skill when helping developers understand, extend, debug, o Platforms: claude_code."} +{"id": "358b10a22303337e33b8d1be9c9903815fdfed36fdb8e64066ce727a873f2882", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "obliteratus", "description": "Remove refusal behaviors from open-weight LLMs using OBLITERATUS \u2014 mechanistic interpretability techniques (diff-in-means, SVD, whitened SVD, LEACE, SAE decomposition, etc.) to excise guardrails while", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/obliteratus/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "obliteratus. Remove refusal behaviors from open-weight LLMs using OBLITERATUS \u2014 mechanistic interpretability techniques (diff-in-means, SVD, whitened SVD, LEACE, SAE decomposition, etc.) to excise guardrails while Platforms: linux, macos."} +{"id": "57684d91a78fe4f154bc0f2f087f26f5cc200a996ddc8e160a3cf4f5a3fe4889", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "champion-identifier", "description": "Analyze LinkedIn profiles in target accounts to identify potential internal champions. Evaluates role, career path, mutual connections, interests, and suggests personalization approach. Use when you n", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/champion-identifier/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "champion-identifier. Analyze LinkedIn profiles in target accounts to identify potential internal champions. Evaluates role, career path, mutual connections, interests, and suggests personalization approach. Use when you n Platforms: claude_code."} +{"id": "55ee53dfc52973d27454cedb557f4010341dd4d229a823e02fafcc60c4c55be6", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "sms-text-optimizer", "description": "Condense messages to 160 characters without losing meaning. Remove unnecessary words while keeping tone.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/sms-text-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "sms-text-optimizer. Condense messages to 160 characters without losing meaning. Remove unnecessary words while keeping tone. Platforms: claude_code."} +{"id": "7d95f70da9993fccb8fbf14b9cb6f70774effbd14fced913d9b192dd4799ead3", "repo_url": "https://github.com/team-attention/hoyeon", "name": "reference-seek", "description": "This skill should be used when the user asks to \"find references\", \"\ucc38\uace0\ud560 \ub9cc\ud55c \uac70\",\n\"similar implementation\", \"\uc624\ud508\uc18c\uc2a4 \uc788\ub098\", \"how others do this\", \"\ub808\ud37c\ub7f0\uc2a4 \ucc3e\uc544\uc918\",\nor needs to find existing patterns (internal) and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/codex/skills/hoyeon-reference-seek/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "reference-seek. This skill should be used when the user asks to \"find references\", \"\ucc38\uace0\ud560 \ub9cc\ud55c \uac70\",\n\"similar implementation\", \"\uc624\ud508\uc18c\uc2a4 \uc788\ub098\", \"how others do this\", \"\ub808\ud37c\ub7f0\uc2a4 \ucc3e\uc544\uc918\",\nor needs to find existing patterns (internal) and Platforms: claude_code."} +{"id": "2e4e7d21255fcdd98f5f581cecc2daff8ec58e67aa707167a206ddfc9e70cba1", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "using-superpowers", "description": "\u5728\u5f00\u59cb\u4efb\u4f55\u5bf9\u8bdd\u65f6\u4f7f\u7528\u2014\u2014\u786e\u7acb\u5982\u4f55\u67e5\u627e\u548c\u4f7f\u7528\u6280\u80fd\uff0c\u8981\u6c42\u5728\u4efb\u4f55\u54cd\u5e94\uff08\u5305\u62ec\u6f84\u6e05\u6027\u95ee\u9898\uff09\u4e4b\u524d\u8c03\u7528 Skill \u5de5\u5177", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/using-superpowers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "using-superpowers. \u5728\u5f00\u59cb\u4efb\u4f55\u5bf9\u8bdd\u65f6\u4f7f\u7528\u2014\u2014\u786e\u7acb\u5982\u4f55\u67e5\u627e\u548c\u4f7f\u7528\u6280\u80fd\uff0c\u8981\u6c42\u5728\u4efb\u4f55\u54cd\u5e94\uff08\u5305\u62ec\u6f84\u6e05\u6027\u95ee\u9898\uff09\u4e4b\u524d\u8c03\u7528 Skill \u5de5\u5177 Platforms: claude_code."} +{"id": "26b20827f489a2d235a878a17739e35997302fe0fd25353ee21dca8f23cf7aee", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-stock", "description": "Search A-Share/HK/US finance stock tickers and retrieve finance stock price history. Use when user asks about finance stock codes, recent price changes, or specific company finance stock info.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-stock/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-stock"}, "quality": {"stars": 2582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-29T05:03:47Z"}, "embedding_text": "alphaear-stock. Search A-Share/HK/US finance stock tickers and retrieve finance stock price history. Use when user asks about finance stock codes, recent price changes, or specific company finance stock info. Platforms: claude_code."} +{"id": "f7028225bcc03c34221aac0488ac0f85d5e7f530172c99fc5dbd69e1a68d1d34", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-storage", "description": "Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics capabilities. Includes access tiers (hot, cool, archive) and lifecycle management. USE FOR: blob storage, file shares, queue storage, table storage, data lake, upload files, download blobs, storage accounts, access tiers, lifecycle management. DO NOT USE FOR: SQL databases, Cosmos DB (use azure-prepare), messaging with Event Hubs or Service Bus (use azure-messaging).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-storage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-storage"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-storage. Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics capabilities. Includes access tiers (hot, cool, archive) and lifecycle management. USE FOR: blob storage, file shares, queue storage, table storage, data lake, upload files, download blobs, storage accounts, access tiers, lifecycle management. DO NOT USE FOR: SQL databases, Cosmos DB (use azure-prepare), messaging with Event Hubs or Service Bus (use azure-messaging). Platforms: claude_code."} +{"id": "0d28ee429a0c7837868e99aafe4a89401233895cb3ec0cdf509b8889189e1c26", "repo_url": "https://github.com/halthelobster/proactive-agent", "name": "proactive-agent", "description": "Transform AI agents from task-followers into proactive partners that anticipate needs and continuously improve. Now with WAL Protocol, Working Buffer for context survival, Compaction Recovery, and bat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/halthelobster/proactive-agent/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-04T06:31:07Z"}, "embedding_text": "proactive-agent. Transform AI agents from task-followers into proactive partners that anticipate needs and continuously improve. Now with WAL Protocol, Working Buffer for context survival, Compaction Recovery, and bat Platforms: claude_code."} +{"id": "0dbf08467623c7f6285c2dfdaf0e20ab5538d981da5c751e10294202536c1891", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "territory-planning-optimizer", "description": "Account assignment by revenue potential, geography, relationship. Workload balancing, TAM/SAM calculation, coverage models.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/territory-planning-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "territory-planning-optimizer. Account assignment by revenue potential, geography, relationship. Workload balancing, TAM/SAM calculation, coverage models. Platforms: claude_code."} +{"id": "ad2140497be0dae6f6e2cd4690095533e7d44d778e71dbd808e41f4d92a0384f", "repo_url": "https://github.com/s-hiraoku/vscode-sidebar-terminal", "name": "debug", "description": "Investigate stuck runs and execution failures by tracing Symphony and Codex logs with issue/session identifiers; use when runs stall, retry repeatedly, or fail unexpectedly.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/s-hiraoku/vscode-sidebar-terminal/blob/main/.claude/skills/vscode-bug-hunter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T22:03:01Z"}, "embedding_text": "debug. Investigate stuck runs and execution failures by tracing Symphony and Codex logs with issue/session identifiers; use when runs stall, retry repeatedly, or fail unexpectedly. Platforms: claude_code."} +{"id": "5af23b380ab7eeea76f2b06c06bd67e127f268c74f8ef09de9923da6e4433478", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "prototype-strategy", "description": "Plan prototyping approach - fidelity levels, tool selection, prototype types, testing strategies, and design-to-development handoff.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/ux-research/prototype-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "prototype-strategy. Plan prototyping approach - fidelity levels, tool selection, prototype types, testing strategies, and design-to-development handoff. Platforms: claude_code."} +{"id": "4cb1dc04a00543fec6747dd0e8334eea9e35a10c58eae6488326f739f0c52580", "repo_url": "https://github.com/smana/cloud-native-ref", "name": "spec", "description": "Create a specification for non-trivial changes. Creates GitHub issue + spec file in a dedicated directory.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smana/cloud-native-ref/blob/main/.claude/skills/spec-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:06:52Z"}, "embedding_text": "spec. Create a specification for non-trivial changes. Creates GitHub issue + spec file in a dedicated directory. Platforms: claude_code."} +{"id": "d92b2f17d39ad75299e37c4251ae68ef75ce5f00dfb57bc49dfcc91783f71554", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "knowledge-explorer", "description": "Manage the research/ knowledge base (KB) of tool and library research entries. Use when browsing KB topics, adding new research entries, updating existing entries with dated revisions, fetching GitHub", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/knowledge-explorer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "knowledge-explorer. Manage the research/ knowledge base (KB) of tool and library research entries. Use when browsing KB topics, adding new research entries, updating existing entries with dated revisions, fetching GitHub Platforms: claude_code."} +{"id": "9f93c5a1870a42c8a6c74b5d231bd898249202d73465530509e0ee4a6c414f44", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "ralph-specum-requirements", "description": "This skill should be used only when the user explicitly asks to use `$ralph-specum-requirements`, or explicitly asks Ralph Specum in Codex to run the requirements phase.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum-codex/skills/ralph-specum-requirements/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "ralph-specum-requirements. This skill should be used only when the user explicitly asks to use `$ralph-specum-requirements`, or explicitly asks Ralph Specum in Codex to run the requirements phase. Platforms: claude_code."} +{"id": "66515e552084a7b340d9563484020849fa4d6693a49fb9895378afc38b9dfc44", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "meta-inspector", "description": "Use when extracting specific data points from large agent output transcripts, kaizen analysis reports, or JSONL session files \u2014 tool timings, query counts, error summaries, or any structured facts \u2014 w", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/agentskill-kaizen/skills/meta-inspector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "meta-inspector. Use when extracting specific data points from large agent output transcripts, kaizen analysis reports, or JSONL session files \u2014 tool timings, query counts, error summaries, or any structured facts \u2014 w Platforms: claude_code."} +{"id": "90bdfe78b6b65aed29b2a5e46f01a08d2d9a348557e823b834a501ca624cc90e", "repo_url": "https://github.com/dceoy/speckit-agent-skills", "name": "speckit-tasks", "description": "Generate an actionable, dependency-ordered tasks.md for the feature based on available design artifacts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dceoy/speckit-agent-skills/blob/main/skills/speckit-tasks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:26:30Z"}, "embedding_text": "speckit-tasks. Generate an actionable, dependency-ordered tasks.md for the feature based on available design artifacts. Platforms: claude_code."} +{"id": "4b8b2e1f0139720ee0c105a4c25342afe82e1914123707ece93cd26e087e1515", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "changelog-generator", "description": "Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns h", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/changelog-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "changelog-generator. Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns h Platforms: claude_code."} +{"id": "5d430eb6501d680f1b54252fbeabe15142ca5a2a0580a7135c6c6a3791e33d12", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "postgres-patterns", "description": "PostgreSQL \u6570\u636e\u5e93\u6a21\u5f0f\uff0c\u6db5\u76d6\u67e5\u8be2\u4f18\u5316\u3001\u6a21\u5f0f\u8bbe\u8ba1\u3001\u7d22\u5f15\u548c\u5b89\u5168\u6027\u3002\u57fa\u4e8e Supabase \u6700\u4f73\u5b9e\u8df5\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/postgres-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "postgres-patterns. PostgreSQL \u6570\u636e\u5e93\u6a21\u5f0f\uff0c\u6db5\u76d6\u67e5\u8be2\u4f18\u5316\u3001\u6a21\u5f0f\u8bbe\u8ba1\u3001\u7d22\u5f15\u548c\u5b89\u5168\u6027\u3002\u57fa\u4e8e Supabase \u6700\u4f73\u5b9e\u8df5\u3002 Platforms: claude_code."} +{"id": "1151beda26c39e5ba9b42d7b8f44ae1dd43dc67c433a41d4aeeff63e9f629337", "repo_url": "https://github.com/xuanwo/xurl", "name": "xurl", "description": "Use xurl to access AI agent conversations via agents:// URIs. Invoke when the user: gives an agents:// URI, a provider shorthand like provider/..., or a bare thread/session ID; mentions conversations,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xuanwo/xurl/blob/main/skills/xurl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 352, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-24T14:28:46Z"}, "embedding_text": "xurl. Use xurl to access AI agent conversations via agents:// URIs. Invoke when the user: gives an agents:// URI, a provider shorthand like provider/..., or a bare thread/session ID; mentions conversations, Platforms: claude_code."} +{"id": "a7ebffa248083d9a6e74c9f4587290cc49066452dea20bc39528a7b523d06479", "repo_url": "https://github.com/artemxtech/personal-os-skills", "name": "recall", "description": "Load context from vault memory. Temporal queries (yesterday, last week, session history) use native JSONL timeline. Topic queries use QMD BM25 search. \"recall graph\" generates interactive temporal graph of sessions and files. Every recall ends with \"One Thing\" - the single highest-leverage next action synthesized from results. Use when user says \"recall\", \"what did we work on\", \"load context about\", \"remember when we\", \"prime context\", \"yesterday\", \"what was I doing\", \"last week\", \"session history\", \"recall graph\", \"session graph\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/personal-os-skills/blob/main/skills/recall/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recall"}, "quality": {"stars": 508, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-05T21:02:29Z"}, "embedding_text": "recall. Load context from vault memory. Temporal queries (yesterday, last week, session history) use native JSONL timeline. Topic queries use QMD BM25 search. \"recall graph\" generates interactive temporal graph of sessions and files. Every recall ends with \"One Thing\" - the single highest-leverage next action synthesized from results. Use when user says \"recall\", \"what did we work on\", \"load context about\", \"remember when we\", \"prime context\", \"yesterday\", \"what was I doing\", \"last week\", \"session history\", \"recall graph\", \"session graph\". Platforms: claude_code."} +{"id": "cd9c8811a3feead5b784aca14fb01642df6d1f0fc8fe32fd1c3d9f4b0a62b2f3", "repo_url": "https://github.com/jefflester/claude-skills-supercharged", "name": "git-workflow", "description": "Git workflow best practices including commit messages, branching strategies, pull requests, and collaboration patterns. Use when working with Git version control.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jefflester/claude-skills-supercharged/blob/main/.claude/skills/git-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:06:42Z"}, "embedding_text": "git-workflow. Git workflow best practices including commit messages, branching strategies, pull requests, and collaboration patterns. Use when working with Git version control. Platforms: claude_code."} +{"id": "f1a0eb04bad5eb928f238019676728d6fa07c23f12a856841482db5d4ff362f8", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-plugin-upgrade-v4-to-v5", "description": "Guides the agent through upgrading a Capacitor plugin from v4 to v5. Use when the plugin targets Capacitor 4 and needs the v5 migration path. Do not use for app upgrades, other major versions, or non-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-plugin-dev/skills/capacitor-plugin-upgrade-v4-to-v5/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-plugin-upgrade-v4-to-v5. Guides the agent through upgrading a Capacitor plugin from v4 to v5. Use when the plugin targets Capacitor 4 and needs the v5 migration path. Do not use for app upgrades, other major versions, or non- Platforms: claude_code."} +{"id": "eba6095603d757414b7f3658f5a4fe879ac910be6853c4f50c02e83ecc5eadca", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "requirements-lifecycle", "description": "Use when defining requirements, tracking traceability, managing requirement changes, or establishing RTM - covers elicitation, analysis, specification across CMMI Levels 2-4", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-sdlc-engineering/skills/requirements-lifecycle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "requirements-lifecycle. Use when defining requirements, tracking traceability, managing requirement changes, or establishing RTM - covers elicitation, analysis, specification across CMMI Levels 2-4 Platforms: claude_code."} +{"id": "a390ee2275088ffe0885bd5838255d3df5b3d84e37cae3359b3c204f97bc877a", "repo_url": "https://github.com/yanmxa/cc-plugins", "name": "clone-database", "description": "Clone MySQL/PostgreSQL databases from remote servers to local machine. Use when user mentions cloning database from EC2/server to local, copying remote database, or pulling database from remote. Handl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yanmxa/cc-plugins/blob/main/plugins/claude/skills/create-command/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-05T07:06:59Z"}, "embedding_text": "clone-database. Clone MySQL/PostgreSQL databases from remote servers to local machine. Use when user mentions cloning database from EC2/server to local, copying remote database, or pulling database from remote. Handl Platforms: claude_code."} +{"id": "fa236175235630683ac5213e316ead844b54d07440ab8262f2d4493c756a05f2", "repo_url": "https://github.com/samhvw8/dotfiles", "name": "backend-development", "description": "Production backend systems development. Stack: Node.js/TypeScript, Python, Go, Rust | NestJS, FastAPI, Django, Express | PostgreSQL, MongoDB, Redis. Capabilities: REST/GraphQL/gRPC APIs, OAuth 2.1/JWT", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samhvw8/dotfiles/blob/master/dot_ccp/hub/skills/backend-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:59:44Z"}, "embedding_text": "backend-development. Production backend systems development. Stack: Node.js/TypeScript, Python, Go, Rust | NestJS, FastAPI, Django, Express | PostgreSQL, MongoDB, Redis. Capabilities: REST/GraphQL/gRPC APIs, OAuth 2.1/JWT Platforms: claude_code."} +{"id": "2e07149db15dbbc62d421f506f9fc90de12bce0b5c7979f7de0789b6d5e600d2", "repo_url": "https://github.com/everyinc/every-marketplace", "name": "ce:ideate", "description": "Generate and critically evaluate grounded improvement ideas for the current project. Use when asking what to improve, requesting idea generation, exploring surprising improvements, or wanting the AI t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/every-marketplace/blob/main/plugins/compound-engineering/skills/ce-ideate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:25:13Z"}, "embedding_text": "ce:ideate. Generate and critically evaluate grounded improvement ideas for the current project. Use when asking what to improve, requesting idea generation, exploring surprising improvements, or wanting the AI t Platforms: claude_code."} +{"id": "d9c1524e0025b2dd9103a06e5765eae8e46dd9a311bb909d4202bcd5d9e07a1e", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "slack-message-formatter", "description": "Convert long text into Slack-optimized format with emojis, bullets, code blocks, and threading suggestions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/slack-message-formatter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "slack-message-formatter. Convert long text into Slack-optimized format with emojis, bullets, code blocks, and threading suggestions Platforms: claude_code."} +{"id": "95919aa4abea7de5896e7756bec141447b2d11c28694c1d0b5ce190b49f88032", "repo_url": "https://github.com/imgoodbai/goodable", "name": "theme-factory", "description": "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 t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/imgoodbai/goodable/blob/main/skills/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 184, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T09:23:17Z"}, "embedding_text": "theme-factory. 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 t Platforms: claude_code."} +{"id": "9d4bb9fd843fdda4242ada92d286d567c45a7045284d9248d17412dd9ca6d097", "repo_url": "https://github.com/abhinav/home", "name": "writing-commit-messages", "description": "Use when writing or improving messages for Git commits, or when asked to generate a commit message or pull request description.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/abhinav/home/blob/master/.agents/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:06:20Z"}, "embedding_text": "writing-commit-messages. Use when writing or improving messages for Git commits, or when asked to generate a commit message or pull request description. Platforms: claude_code."} +{"id": "98271c289a5757d57e6dbe712405e86a722ed2f4d41395d83b4713bebcbfb77f", "repo_url": "https://github.com/exboys/skilllite", "name": "http-request", "description": "\u53d1\u8d77 HTTP \u7f51\u7edc\u8bf7\u6c42\uff0c\u652f\u6301 GET\u3001POST\u3001PUT\u3001DELETE\u3001PATCH \u65b9\u6cd5\u3002\u5f53\u7528\u6237\u9700\u8981\u8c03\u7528 API\u3001\u83b7\u53d6\u7f51\u9875\u5185\u5bb9\u3001\u53d1\u9001\u6570\u636e\u5230\u670d\u52a1\u5668\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/exboys/skilllite/blob/main/.skills/http-request/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 157, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:36:11Z"}, "embedding_text": "http-request. \u53d1\u8d77 HTTP \u7f51\u7edc\u8bf7\u6c42\uff0c\u652f\u6301 GET\u3001POST\u3001PUT\u3001DELETE\u3001PATCH \u65b9\u6cd5\u3002\u5f53\u7528\u6237\u9700\u8981\u8c03\u7528 API\u3001\u83b7\u53d6\u7f51\u9875\u5185\u5bb9\u3001\u53d1\u9001\u6570\u636e\u5230\u670d\u52a1\u5668\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "6d269a384630ad7ccda8fc75e331d72f22442e7a5adb02418244afe62e7e70fe", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "quality-manager-qms-iso13485", "description": "ISO 13485 Quality Management System specialist for medical device companies. Provides QMS implementation, maintenance, process optimization, and compliance expertise. Use for QMS design, documentation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/quality-manager-qms-iso13485/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "quality-manager-qms-iso13485. ISO 13485 Quality Management System specialist for medical device companies. Provides QMS implementation, maintenance, process optimization, and compliance expertise. Use for QMS design, documentation Platforms: claude_code."} +{"id": "1408091a62fb37d56b923dd15a6c68c2d83b58cd558ed6faee2b176fccda1eeb", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "browser-automation", "description": "Non-testing browser automation - web scraping, form filling, screenshot capture, PDF generation, workflow automation. For TESTING with Playwright, use e2e-playwright skill instead. Activates for web s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/browser-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "browser-automation. Non-testing browser automation - web scraping, form filling, screenshot capture, PDF generation, workflow automation. For TESTING with Playwright, use e2e-playwright skill instead. Activates for web s Platforms: claude_code."} +{"id": "d27989bfa414531d44ebc20ef7a37140a4b8b1cc5d829d322a4d4fa3208bc9a8", "repo_url": "https://github.com/appautomaton/agent-designer", "name": "agents-bootstrap", "description": "Generate a project-specific AGENTS.md from a user goal, then confirm before overwriting.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/appautomaton/agent-designer/blob/main/skills/collaborating-with-antigravity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 121, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T17:19:13Z"}, "embedding_text": "agents-bootstrap. Generate a project-specific AGENTS.md from a user goal, then confirm before overwriting. Platforms: claude_code."} +{"id": "7d921c27c068ecb8575f616a24219c26d374b98463098d5da008091ceab5550d", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "wake-word-detection", "description": "Expert skill for implementing wake word detection with openWakeWord. Covers audio monitoring, keyword spotting, privacy protection, and efficient always-listening systems for JARVIS voice assistant.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/wake-word-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "wake-word-detection. Expert skill for implementing wake word detection with openWakeWord. Covers audio monitoring, keyword spotting, privacy protection, and efficient always-listening systems for JARVIS voice assistant. Platforms: claude_code."} +{"id": "7046082cd249b8a09c3585ab0b9818d75983e8f5c8d59741b64f84a096196932", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-marketing-ad-campaigns", "description": "This skill provides shell scripts for managing paid advertising campaigns across Google, Meta, and LinkedIn platforms. It handles campaign creation, budget adjustments, bid strategy updates, and perfo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/cfn-extras/skills/marketing/cfn-marketing-ad-campaigns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "A", "skillhub_score": 7.7, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-marketing-ad-campaigns. This skill provides shell scripts for managing paid advertising campaigns across Google, Meta, and LinkedIn platforms. It handles campaign creation, budget adjustments, bid strategy updates, and perfo Platforms: claude_code."} +{"id": "4f39ab9f1aef92ca5878a5413fb54d351a9669a008375fb9bc200b56fa88e4c1", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "ralph-specum-tasks", "description": "This skill should be used only when the user explicitly asks to use `$ralph-specum-tasks`, or explicitly asks Ralph Specum in Codex to run the tasks phase.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum-codex/skills/ralph-specum-tasks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "ralph-specum-tasks. This skill should be used only when the user explicitly asks to use `$ralph-specum-tasks`, or explicitly asks Ralph Specum in Codex to run the tasks phase. Platforms: claude_code."} +{"id": "4ec0dcf0b47878c0ef085fa7b9d9b033e08c3eac06be13c0503919fed44c37eb", "repo_url": "https://github.com/reggiechan74/vp-real-estate", "name": "lease-abstraction-specialist", "description": "Expert in lease abstraction and critical terms extraction. Use when abstracting lease agreements, extracting key dates, identifying critical provisions, or creating lease summaries. Key terms include", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reggiechan74/vp-real-estate/blob/main/plugins/leasing-commercial/skills/lease-abstraction-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T22:17:46Z"}, "embedding_text": "lease-abstraction-specialist. Expert in lease abstraction and critical terms extraction. Use when abstracting lease agreements, extracting key dates, identifying critical provisions, or creating lease summaries. Key terms include Platforms: claude_code."} +{"id": "c3a795bc6ffb71777ce11ee37df9c706dc447cf5f58c2a00ce0f7c9c2b08bfff", "repo_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin", "name": "automating-calendar", "description": "Automates macOS Calendar via JXA with AppleScript dictionary discovery. Use when asked to \"create calendar events\", \"automate calendar\", \"JXA calendar scripting\", \"EventKit automation\", or \"PyXA calen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin/blob/main/plugins/automating-mac-apps-plugin/skills/automating-calendar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T23:41:11Z"}, "embedding_text": "automating-calendar. Automates macOS Calendar via JXA with AppleScript dictionary discovery. Use when asked to \"create calendar events\", \"automate calendar\", \"JXA calendar scripting\", \"EventKit automation\", or \"PyXA calen Platforms: claude_code."} +{"id": "71a5b68854b17e0b3e39689b8395acaee3856a40a29d7efb8f84f6bd4959d75c", "repo_url": "https://github.com/dariushoule/x64dbg-skills", "name": "vuln-hunter", "description": "Hunt for vulnerabilities in a running debuggee by analyzing imports/exports, triaging attack surface, and iteratively testing for bugs with PoC generation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dariushoule/x64dbg-skills/blob/main/skills/vuln-hunter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 186, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T19:32:18Z"}, "embedding_text": "vuln-hunter. Hunt for vulnerabilities in a running debuggee by analyzing imports/exports, triaging attack surface, and iteratively testing for bugs with PoC generation. Platforms: claude_code."} +{"id": "b612c41dac79983dcc4f4c260f06d9cd179bde2b50c0ff9b7096d01f6cdcba5f", "repo_url": "https://github.com/minimax-ai/skills", "name": "android-native-dev", "description": "Android native application development and UI design guide. Covers Material Design 3, Kotlin/Compose development, project configuration, accessibility, and build troubleshooting. Read this before Andr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/skills/android-native-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "android-native-dev. Android native application development and UI design guide. Covers Material Design 3, Kotlin/Compose development, project configuration, accessibility, and build troubleshooting. Read this before Andr Platforms: claude_code."} +{"id": "da64c7f21c50531cec9552b022b7e6bf365273b17cc72becc3082dee1ae08c72", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "spoon-agent-development", "description": "Build AI agents with SpoonReactMCP. Use when creating custom agents, configuring tool chains, designing system prompts, or implementing concurrent agent patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/spoonos-skills/agent-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "spoon-agent-development. Build AI agents with SpoonReactMCP. Use when creating custom agents, configuring tool chains, designing system prompts, or implementing concurrent agent patterns. Platforms: claude_code."} +{"id": "3ca8cafd9b248c110b38a5e8c75a19a732f32c88ce8e2c2866d72e57d512c08e", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "scoping-cutting", "description": "Right-size scope to ship within a fixed timebox (appetite). Produces a Scoping & Cutting Pack: appetite, minimum lovable slice, cut list, validation plan, and a scope-creep guardrail plan. Use for MVP", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/scoping-cutting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "scoping-cutting. Right-size scope to ship within a fixed timebox (appetite). Produces a Scoping & Cutting Pack: appetite, minimum lovable slice, cut list, validation plan, and a scope-creep guardrail plan. Use for MVP Platforms: claude_code."} +{"id": "bc527260b8ee67122d8de6c2ff289b689031fd47e1a6430009e96472081771ef", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "plan", "description": "Create detailed execution plan with task breakdown", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install plan"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "plan. Create detailed execution plan with task breakdown Platforms: claude_code."} +{"id": "e5d856bd6929977fea99388ee89f2abdf770c8c10e68addc8829d0932d5221e6", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "reading-receipt", "description": "\u30ec\u30b7\u30fc\u30c8\u30fb\u9818\u53ce\u66f8\u30fb\u3075\u308b\u3055\u3068\u7d0d\u7a0e\u53d7\u9818\u8a3c\u660e\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/reading-receipt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reading-receipt"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "reading-receipt. \u30ec\u30b7\u30fc\u30c8\u30fb\u9818\u53ce\u66f8\u30fb\u3075\u308b\u3055\u3068\u7d0d\u7a0e\u53d7\u9818\u8a3c\u660e\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002 Platforms: claude_code."} +{"id": "170de0a20196d1ba54bf97133f5c1cd9a6632d9fbcd9b7c31026cc4ac10f92ca", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "webapp-testing", "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "webapp-testing. Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l Platforms: claude_code."} +{"id": "b3fbc26fcba7f730f0d1a09285e162fd20b67ed702bbcec0f7e2e9986051e71c", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "competitive-visual-audit", "description": "Provides competitive visual audit frameworks and templates for brand identity work. Auto-activates during visual direction, color selection, typography selection, and positioning work. Use when discus", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/competitive-visual-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "competitive-visual-audit. Provides competitive visual audit frameworks and templates for brand identity work. Auto-activates during visual direction, color selection, typography selection, and positioning work. Use when discus Platforms: claude_code."} +{"id": "4d67f9f80b06df5363a40a36e57fa2a16de165f560feb3a33a7945f35e6a91e0", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "mcp-check", "description": "Validate MCP configuration and suggest improvements", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/mcp-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-check"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "mcp-check. Validate MCP configuration and suggest improvements Platforms: claude_code."} +{"id": "8948372d78c3d6582cacf8a866e068ba8b6f6e2f06e7e16ee3c2d3a4cb679c25", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-btp-business-application-studio", "description": "This skill provides comprehensive guidance for SAP Business Application Studio (BAS), the cloud-based IDE on SAP BTP built on Code-OSS. Use when setting up BAS subscriptions, creating dev spaces, conn", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-btp-business-application-studio/skills/sap-btp-business-application-studio/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-btp-business-application-studio. This skill provides comprehensive guidance for SAP Business Application Studio (BAS), the cloud-based IDE on SAP BTP built on Code-OSS. Use when setting up BAS subscriptions, creating dev spaces, conn Platforms: claude_code."} +{"id": "38480c84fc730c6d1ca42aa228c7ff29951bb811d06b8acab777e54a3b8f2de4", "repo_url": "https://github.com/daloopa/investing", "name": "comps", "description": "Trading comparables analysis with peer multiples and implied valuation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daloopa/investing/blob/main/.claude/skills/comp-sheet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 478, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T22:00:15Z"}, "embedding_text": "comps. Trading comparables analysis with peer multiples and implied valuation Platforms: claude_code."} +{"id": "f9121ff5ca4daf27eeb6b9b202df01f545efe8738d600af335c2118c365e0379", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "cicd-pipeline-architecture", "description": "Use when setting up CI/CD pipelines, experiencing deployment failures, slow feedback loops, or production incidents after deployment - provides deployment strategies, test gates, rollback mechanisms,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-devops-engineering/skills/cicd-pipeline-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "cicd-pipeline-architecture. Use when setting up CI/CD pipelines, experiencing deployment failures, slow feedback loops, or production incidents after deployment - provides deployment strategies, test gates, rollback mechanisms, Platforms: claude_code."} +{"id": "b3c203dc64c75b4db698da83c3567d0db2bb9af5627dee886b4e0d40a29e034a", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "code-reviewer", "description": "Code review specialist for quality, security, and best practices", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/code-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-reviewer"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "code-reviewer. Code review specialist for quality, security, and best practices Platforms: claude_code."} +{"id": "31ed1c001a59cbcf6cb9d86b680f5c9d90bf5bc36a37e83e307063f49af098a5", "repo_url": "https://github.com/dceoy/speckit-agent-skills", "name": "speckit-checklist", "description": "Generate a custom checklist for the current feature based on user requirements.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dceoy/speckit-agent-skills/blob/main/skills/speckit-checklist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:26:30Z"}, "embedding_text": "speckit-checklist. Generate a custom checklist for the current feature based on user requirements. Platforms: claude_code."} +{"id": "7ebc3ce7aeeeeadde4a4b9b9a4f04c6b1c36d689116f99dfaeeb30bb1d51ab11", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-help", "description": "Quick reference for all Supabase security audit skills with usage examples and command overview.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/orchestration/supabase-help/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-help. Quick reference for all Supabase security audit skills with usage examples and command overview. Platforms: claude_code."} +{"id": "f56be99e66b8d91c22d8f7033e4a59c98e9a3b95d03e6d5c0e00cef163e411ec", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "ref-hallucination-arena", "description": "Benchmark LLM reference recommendation capabilities by verifying every cited paper against Crossref, PubMed, arXiv, and DBLP. Measures hallucination rate, per-field accuracy (title/author/year/DOI), discipline breakdown, and year constraint compliance. Supports tool-augmented (ReAct + web search) mode. Use when the user asks to evaluate, benchmark, or compare models on academic reference hallucination, literature recommendation quality, or citation accuracy.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/ref-hallucination-arena/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ref-hallucination-arena"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T09:40:18Z"}, "embedding_text": "ref-hallucination-arena. Benchmark LLM reference recommendation capabilities by verifying every cited paper against Crossref, PubMed, arXiv, and DBLP. Measures hallucination rate, per-field accuracy (title/author/year/DOI), discipline breakdown, and year constraint compliance. Supports tool-augmented (ReAct + web search) mode. Use when the user asks to evaluate, benchmark, or compare models on academic reference hallucination, literature recommendation quality, or citation accuracy. Platforms: claude_code."} +{"id": "6b95005f6ef2e490b8d705de3fd20b385396a0d595e5f8705b0a2ac912d9d03a", "repo_url": "https://github.com/peiiii/skild", "name": "kitchen-sink-skillset", "description": "Example Skillset that demonstrates inline + GitHub + registry dependencies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/examples/kitchen-sink-skillset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "kitchen-sink-skillset. Example Skillset that demonstrates inline + GitHub + registry dependencies. Platforms: claude_code."} +{"id": "4eab790f5d532974012116e5491ef98e0dd8e0260d27af494c40ae2735d80618", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "chrome-devtools_mrgoonie", "description": "Browser automation, debugging, and performance analysis using Puppeteer CLI scripts. Use for automating browsers, taking screenshots, analyzing performance, monitoring network traffic, web scraping, form automation, and JavaScript debugging.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/chrome-devtools_mrgoonie/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install chrome-devtools_mrgoonie"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "chrome-devtools_mrgoonie. Browser automation, debugging, and performance analysis using Puppeteer CLI scripts. Use for automating browsers, taking screenshots, analyzing performance, monitoring network traffic, web scraping, form automation, and JavaScript debugging. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "f188c9128610aa9f19175e4c2a2ee8f4d2a4cbb8a2fccc2dd4014c642b199a6a", "repo_url": "https://github.com/camoa/claude-skills", "name": "project-initializer", "description": "Use when starting a new development project - creates memory folder structure with project_state.md, architecture scaffolding, and registers project", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/project-initializer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "project-initializer. Use when starting a new development project - creates memory folder structure with project_state.md, architecture scaffolding, and registers project Platforms: claude_code."} +{"id": "3377612d2a47cda538cffb2061b77a10b195d6ed0e552a6934468e0b57031fd1", "repo_url": "https://github.com/aspiers/ai-config", "name": "prp-generation", "description": "Generate a Product Requirements Prompt (PRP) from a feature description. Use when starting work on a new feature.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/prp-generation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "prp-generation. Generate a Product Requirements Prompt (PRP) from a feature description. Use when starting work on a new feature. Platforms: claude_code."} +{"id": "58fba2156da9b9f09d5c617290becabb461aa4e76a2fb7a2dd8b0c5f786fcd41", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "kanchi-dividend-review-monitor", "description": "Monitor dividend portfolios with Kanchi-style forced-review triggers (T1-T5) and convert anomalies into OK/WARN/REVIEW states without auto-selling. Use when users ask for \u6e1b\u914d\u691c\u77e5, 8-K\u30ac\u30d0\u30ca\u30f3\u30b9\u76e3\u8996, \u914d\u5f53\u5b89\u5168\u6027\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/kanchi-dividend-review-monitor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "kanchi-dividend-review-monitor. Monitor dividend portfolios with Kanchi-style forced-review triggers (T1-T5) and convert anomalies into OK/WARN/REVIEW states without auto-selling. Use when users ask for \u6e1b\u914d\u691c\u77e5, 8-K\u30ac\u30d0\u30ca\u30f3\u30b9\u76e3\u8996, \u914d\u5f53\u5b89\u5168\u6027\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0 Platforms: claude_code."} +{"id": "dd21303bbb65342ce186e837784750575a43e854d443bd45788badd28abf0a95", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "canvas-design", "description": "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 ori", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "canvas-design. 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 ori Platforms: claude_code."} +{"id": "e9c1852677c23908c261985c2d35048d91b8351132e34e74958cdbf64f9a16e3", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-skill-management", "description": "This mega-skill provides complete lifecycle management for Claude skills, including dynamic discovery and loading, deployment across environments, and creation of new skill scaffolding, consolidating", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-config/lib/management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-skill-management. This mega-skill provides complete lifecycle management for Claude skills, including dynamic discovery and loading, deployment across environments, and creation of new skill scaffolding, consolidating Platforms: claude_code."} +{"id": "729ca908e96742ebd46add41814c07280cbfcc7a482f63b0d47bd49a18923a50", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "gpg-signing", "description": "Comprehensive guide to GPG commit signing. Set up, configure, and troubleshoot GPG commit signing. Fix GPG signing errors, configure passphrase caching, verify commit signatures. Use when working with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/github-specialist/gpg-signing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "gpg-signing. Comprehensive guide to GPG commit signing. Set up, configure, and troubleshoot GPG commit signing. Fix GPG signing errors, configure passphrase caching, verify commit signatures. Use when working with Platforms: claude_code."} +{"id": "470b86a63120bf50fc6f4e3ace5e00ea19116d73a1235d41ac3a6a72067a5304", "repo_url": "https://github.com/figma/mcp-server-guide", "name": "figma-generate-design", "description": "Use this skill alongside figma-use when the task involves translating an application page, view, or multi-section layout into Figma. Triggers: 'write to Figma', 'create in Figma from code', 'push page", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/figma/mcp-server-guide/blob/main/skills/figma-generate-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1650, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T08:45:01Z"}, "embedding_text": "figma-generate-design. Use this skill alongside figma-use when the task involves translating an application page, view, or multi-section layout into Figma. Triggers: 'write to Figma', 'create in Figma from code', 'push page Platforms: claude_code."} +{"id": "e0298417ad9156f08f8780545ce2e4ae1054b5954d99922435317a19f3670d96", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "inno-prepare-resources", "description": "Loads the evaluation instance, searches GitHub for related repositories, builds a dataset description, queries the Prepare Agent for reference codebases, and downloads arXiv paper sources.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/inno-prepare-resources/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "inno-prepare-resources. Loads the evaluation instance, searches GitHub for related repositories, builds a dataset description, queries the Prepare Agent for reference codebases, and downloads arXiv paper sources. Platforms: claude_code."} +{"id": "e2418dc345b81de20189aa36eae23218c36a35abff5ded14e331fb13d3f1e15c", "repo_url": "https://github.com/marketcalls/vectorbt-backtesting-skills", "name": "optimize", "description": "Optimize strategy parameters using VectorBT. Tests parameter combinations and generates heatmaps.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/marketcalls/vectorbt-backtesting-skills/blob/master/.claude/skills/optimize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T15:28:26Z"}, "embedding_text": "optimize. Optimize strategy parameters using VectorBT. Tests parameter combinations and generates heatmaps. Platforms: claude_code."} +{"id": "1fe06ef625f9e28727a205b24229d9d8174379e183ed59911b88f81b29b12121", "repo_url": "https://github.com/zebbern/agent-skills-authoring", "name": "agent-skills-authoring", "description": "Guides agents through creating, validating, and optimizing Agent Skills (SKILL.md files) from user requests. Covers all YAML frontmatter fields, directory layout, progressive disclosure, scripts, quality patterns, and evaluation workflows. Use when a user asks you to create, edit, audit, or improve an Agent Skill, even if they don't use the word \"skill\" \u2014 any request about reusable agent instructions, workflow packaging, or capability extension should trigger this skill.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-development-kit", "agent-framework", "agent-skill", "agent-skills", "agentic-ai", "agentic-workflow", "agents", "claude-code-skills", "claude-skills", "claude-skills-creator", "claude-skills-hub", "copilot-coding-agent", "copilot-instructions", "create-skills", "guide-skills", "how-to-create-skills", "skills", "skills-development", "skills-guide", "skills-system"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/agent-skills-authoring/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-skills-authoring"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T16:26:20Z"}, "embedding_text": "agent-skills-authoring. Guides agents through creating, validating, and optimizing Agent Skills (SKILL.md files) from user requests. Covers all YAML frontmatter fields, directory layout, progressive disclosure, scripts, quality patterns, and evaluation workflows. Use when a user asks you to create, edit, audit, or improve an Agent Skill, even if they don't use the word \"skill\" \u2014 any request about reusable agent instructions, workflow packaging, or capability extension should trigger this skill. Categories: agent-development-kit, agent-framework, agent-skill, agent-skills, agentic-ai, agentic-workflow, agents, claude-code-skills, claude-skills, claude-skills-creator, claude-skills-hub, copilot-coding-agent, copilot-instructions, create-skills, guide-skills, how-to-create-skills, skills, skills-development, skills-guide, skills-system. Platforms: claude_code."} +{"id": "127c6a1654c8a54013c5a4b2b94f0e151c361d9b18e62fc71485ea8dda074ed2", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "pytorch-lightning", "description": "High-level PyTorch framework with Trainer class, automatic distributed training (DDP/FSDP/DeepSpeed), callbacks system, and minimal boilerplate. Scales from laptop to supercomputer with same code. Use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/pytorch-lightning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "pytorch-lightning. High-level PyTorch framework with Trainer class, automatic distributed training (DDP/FSDP/DeepSpeed), callbacks system, and minimal boilerplate. Scales from laptop to supercomputer with same code. Use Platforms: linux, macos, windows."} +{"id": "e23097a074f63b12003c9805cb76efa38ce718dc9bbf7bce5f44c1fd626954b6", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "test-backend-router", "description": "Test implementation of thin router skill for DiPeO backend. Provides decision criteria and documentation anchors for FastAPI server, CLI (dipeo run/results/metrics/compile/export), SQLite schema, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/test-backend-router/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "test-backend-router. Test implementation of thin router skill for DiPeO backend. Provides decision criteria and documentation anchors for FastAPI server, CLI (dipeo run/results/metrics/compile/export), SQLite schema, and Platforms: claude_code."} +{"id": "509f93fbbfbb9421a1e3fc2c33cd74811132040e4679c4208e528d2924fc74a1", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "gemini-deep-research", "description": "Perform complex, long-running research tasks using Gemini Deep Research Agent.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/gemini-deep-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "gemini-deep-research. Perform complex, long-running research tasks using Gemini Deep Research Agent. Platforms: claude_code."} +{"id": "188b0916bb8b641837a5b6c1141993b62711e5c6a726608e501c1c081b03ad10", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "72c68a22c869e66a4d648718ff87c85d8c5f8bb18f8824122880b2827dc02cd2", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "nx-monorepo", "description": "Nx monorepo management skill for AI-native development. This skill should be used when working with Nx workspaces, project graphs, affected detection, code generation, and caching. Use when: analyzing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/nx-monorepo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "nx-monorepo. Nx monorepo management skill for AI-native development. This skill should be used when working with Nx workspaces, project graphs, affected detection, code generation, and caching. Use when: analyzing Platforms: claude_code."} +{"id": "cdfcb58bb6fc96af001e56d8868d4911e283e0acf725a5d231852a081e52f974", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "power-inversion", "description": "Unified negotiation engine: BATNA mapping, Dignity Premium pricing, and commitment device protection. Absorbs: commitment-device.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/quality/power-inversion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "power-inversion. Unified negotiation engine: BATNA mapping, Dignity Premium pricing, and commitment device protection. Absorbs: commitment-device. Platforms: claude_code."} +{"id": "9f2b66becaad9e01a5953752accdf8013b8fc4fb46465ea477718db55f1e462e", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-newsletter", "description": "When the user wants to create, write, or improve a newsletter for developer audiences. Trigger phrases include \"newsletter,\" \"email marketing,\" \"developer email,\" \"weekly digest,\" \"dev newsletter,\" \"e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-newsletter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-newsletter. When the user wants to create, write, or improve a newsletter for developer audiences. Trigger phrases include \"newsletter,\" \"email marketing,\" \"developer email,\" \"weekly digest,\" \"dev newsletter,\" \"e Platforms: claude_code."} +{"id": "f6b50d16f4d24eba6a22753f54624475261ee73784c8adadb07e39dd25f27f34", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "dipeo-package-maintainer", "description": "Router skill for DiPeO runtime Python code (execution handlers, service architecture, domain models, LLM infrastructure). Use when task mentions node handlers, EventBus, ServiceRegistry, Envelope patt", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/dipeo-package-maintainer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "dipeo-package-maintainer. Router skill for DiPeO runtime Python code (execution handlers, service architecture, domain models, LLM infrastructure). Use when task mentions node handlers, EventBus, ServiceRegistry, Envelope patt Platforms: claude_code."} +{"id": "b3ae5310c724c4eaed322b611f53374128f6afebb0859507188d99ccee2b9e3c", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "operating-production-services", "description": "SRE patterns for production service reliability: SLOs, error budgets, postmortems, and incident response.\nUse when defining reliability targets, writing postmortems, implementing SLO alerting, or esta", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/operating-production-services/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "operating-production-services. SRE patterns for production service reliability: SLOs, error budgets, postmortems, and incident response.\nUse when defining reliability targets, writing postmortems, implementing SLO alerting, or esta Platforms: claude_code."} +{"id": "b6edda7bfeb9533089aac0874bb398b1f5190fb16d856e31704acbd932560c57", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "academic-researcher", "description": "Academic research assistant for literature reviews, paper analysis, and scholarly writing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/academic-researcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "academic-researcher. Academic research assistant for literature reviews, paper analysis, and scholarly writing. Platforms: claude_code."} +{"id": "366950643a4b60904fbc397dc6cfa5f12e5fa07ed25a135232958ee7cbf3292e", "repo_url": "https://github.com/github/copilot-plugins", "name": "secret-scanning", "description": "Scan files, content, or recent changes for secrets such as API keys, passwords, tokens, and credentials using the GitHub MCP Server's run_secret_scanning tool.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/copilot-plugins/blob/main/plugins/spark/skills/spark-app-template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 298, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T21:49:59Z"}, "embedding_text": "secret-scanning. Scan files, content, or recent changes for secrets such as API keys, passwords, tokens, and credentials using the GitHub MCP Server's run_secret_scanning tool. Platforms: claude_code."} +{"id": "ef021b68607327a5f90a6eacd8d17c9fe189463785ccec2d515edbe13f29a453", "repo_url": "https://github.com/aspiers/ai-config", "name": "obs-management", "description": "Manage Open Build Service (OBS) projects. Use when working with OBS packages for home:aspiers.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/obs-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "obs-management. Manage Open Build Service (OBS) projects. Use when working with OBS packages for home:aspiers. Platforms: claude_code."} +{"id": "299842b6fddfec631944260cfe916f84ae283913aafcbed8ae9c6041b94394f9", "repo_url": "https://github.com/figma/mcp-server-guide", "name": "figma-generate-library", "description": "Build or update a professional-grade design system in Figma from a codebase. Use when the user wants to create variables/tokens, build component libraries, set up theming (light/dark modes), document", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/figma/mcp-server-guide/blob/main/skills/figma-generate-library/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1650, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T08:45:01Z"}, "embedding_text": "figma-generate-library. Build or update a professional-grade design system in Figma from a codebase. Use when the user wants to create variables/tokens, build component libraries, set up theming (light/dark modes), document Platforms: claude_code."} +{"id": "960c227f0be44a3a27b2c4b42cd5a6cf571d690cc642465cd69d5ed2b520a515", "repo_url": "https://github.com/pulumi/agent-skills", "name": "cloudformation-to-pulumi", "description": "Convert an AWS CloudFormation stack or template to Pulumi. This skill MUST be loaded whenever a user requests migration or conversion of CloudFormation to Pulumi.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pulumi/agent-skills/blob/main/migration/skills/cloudformation-to-pulumi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T16:30:16Z"}, "embedding_text": "cloudformation-to-pulumi. Convert an AWS CloudFormation stack or template to Pulumi. This skill MUST be loaded whenever a user requests migration or conversion of CloudFormation to Pulumi. Platforms: claude_code."} +{"id": "bffe0227c89daddc3aa2023e5eb684e12e39e94c2f7d71887b9a219a532d4bd1", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "dotnet-devcert-trust", "description": "Diagnose and fix .NET HTTPS dev certificate trust issues on Linux. Covers the full certificate lifecycle from generation to system CA bundle inclusion, with distro-specific guidance for Ubuntu, Fedora, Arch, and WSL2.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/dotnet-devcert-trust/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dotnet-devcert-trust"}, "quality": {"stars": 1024, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T01:02:32Z"}, "embedding_text": "dotnet-devcert-trust. Diagnose and fix .NET HTTPS dev certificate trust issues on Linux. Covers the full certificate lifecycle from generation to system CA bundle inclusion, with distro-specific guidance for Ubuntu, Fedora, Arch, and WSL2. Platforms: claude_code."} +{"id": "9d0d849a23565f51d4d4ecb45c937d89ba7acb6c821c1b3295a1ff92288b0ab1", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "subagent-driven-development", "description": "\u5f53\u5728\u5f53\u524d\u4f1a\u8bdd\u4e2d\u6267\u884c\u5305\u542b\u72ec\u7acb\u4efb\u52a1\u7684\u5b9e\u73b0\u8ba1\u5212\u65f6\u4f7f\u7528", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/subagent-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "subagent-driven-development. \u5f53\u5728\u5f53\u524d\u4f1a\u8bdd\u4e2d\u6267\u884c\u5305\u542b\u72ec\u7acb\u4efb\u52a1\u7684\u5b9e\u73b0\u8ba1\u5212\u65f6\u4f7f\u7528 Platforms: claude_code."} +{"id": "9761e7c8ed2954548f9fb877d578ae5d56cca9425ea633ac6fec0dadfa1bb9fa", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "github-webhooks", "description": "Receive and verify GitHub webhooks. Use when setting up GitHub webhook handlers, debugging signature verification, or handling repository events like push, pull_request, issues, or release.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/github-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "github-webhooks. Receive and verify GitHub webhooks. Use when setting up GitHub webhook handlers, debugging signature verification, or handling repository events like push, pull_request, issues, or release. Platforms: claude_code."} +{"id": "327d74369583bb742a5ac6154f07c20dd69db0f3d67742de544c0492f2980812", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "generate-sparkle-appcast", "description": "Generate Mos Sparkle appcast.xml from the latest build zip and recent git changes (since a given commit), then sync to docs/ for publishing.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/caldis/generate-sparkle-appcast/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install generate-sparkle-appcast"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "generate-sparkle-appcast. Generate Mos Sparkle appcast.xml from the latest build zip and recent git changes (since a given commit), then sync to docs/ for publishing. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "6ef684dec61d927feb0cdaa839a3fc5d25a9469b123ac99762822de90ea3c9b4", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-class", "description": "BPX `class` command skill. Inspect one class export payload/header by index.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-class/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-class. BPX `class` command skill. Inspect one class export payload/header by index. Platforms: claude_code."} +{"id": "768a3fdbd0846cc3d729236ae767478a42adac8dc7e55529409f75e67e2f58f6", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "next", "description": "Next.js framework patterns and best practices for fullstack React applications. Routing, SSR/SSG, API routes, middleware, deployment. Trigger: When building with Next.js, configuring SSR/SSG, or deplo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/writing/x/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "next. Next.js framework patterns and best practices for fullstack React applications. Routing, SSR/SSG, API routes, middleware, deployment. Trigger: When building with Next.js, configuring SSR/SSG, or deplo Platforms: claude_code."} +{"id": "a9bdece45665a0afc465e7621bf0a1078dae539e76d4ba1613c0367777f166af", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "eval-integration", "description": "Specialized integration evaluator for the Evaluate-Loop. Use this for evaluating tracks that integrate external services \u2014 Supabase auth/DB, Stripe payments, Gemini API, third-party APIs. Checks API c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/eval-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "eval-integration. Specialized integration evaluator for the Evaluate-Loop. Use this for evaluating tracks that integrate external services \u2014 Supabase auth/DB, Stripe payments, Gemini API, third-party APIs. Checks API c Platforms: claude_code."} +{"id": "f5a7fc4c0bea21e8ff2b9df7a855771403863eea04914d3d5ac0a00279ccb52e", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "test-driven", "description": "Test-Driven Development (TDD) - design tests from requirements, then execute RED -> GREEN -> REFACTOR cycle. Use when implementing features or fixes with TDD methodology, writing tests before code, or following XP-style development with pytest, vitest, cargo test, or go test.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/test-driven/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-driven"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "test-driven. Test-Driven Development (TDD) - design tests from requirements, then execute RED -> GREEN -> REFACTOR cycle. Use when implementing features or fixes with TDD methodology, writing tests before code, or following XP-style development with pytest, vitest, cargo test, or go test. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "be3cbd480e59d8634d8030271b790bdb99b77dc949fbe4f0664f0b8f8ad24a2c", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "react-vite-best-practices", "description": "React and Vite performance optimization guidelines. Use when writing, reviewing, or optimizing React components built with Vite. Triggers on tasks involving Vite configuration, build optimization, cod", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/react-vite-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "react-vite-best-practices. React and Vite performance optimization guidelines. Use when writing, reviewing, or optimizing React components built with Vite. Triggers on tasks involving Vite configuration, build optimization, cod Platforms: claude_code."} +{"id": "97976bdc9167d6604322424c4c9672d63594ec004eb73587a2c091dbf574e024", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "celery-expert", "description": "Expert Celery distributed task queue engineer specializing in async task processing, workflow orchestration, broker configuration (Redis/RabbitMQ), Celery Beat scheduling, and production monitoring. D", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/celery-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "celery-expert. Expert Celery distributed task queue engineer specializing in async task processing, workflow orchestration, broker configuration (Redis/RabbitMQ), Celery Beat scheduling, and production monitoring. D Platforms: claude_code."} +{"id": "b690da17ef60207296dad2d7743a5a9b6134c643eeb3a7d93b08d282fe85f06d", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "chargebee-webhooks", "description": "Receive and verify Chargebee webhooks. Use when setting up Chargebee webhook handlers, debugging Basic Auth verification, or handling subscription billing events.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/chargebee-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "chargebee-webhooks. Receive and verify Chargebee webhooks. Use when setting up Chargebee webhook handlers, debugging Basic Auth verification, or handling subscription billing events. Platforms: claude_code."} +{"id": "7bfff007f292b456380b624dd0eacda080c1904c1898957b9cea1b785858423f", "repo_url": "https://github.com/ehmo/platform-design-skills", "name": "macos-design-guidelines", "description": "Apple Human Interface Guidelines for Mac. Use when building macOS apps with SwiftUI or AppKit, implementing menu bars, toolbars, window management, or keyboard shortcuts. Triggers on tasks involving M", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ehmo/platform-design-skills/blob/main/skills/macos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 397, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T05:13:32Z"}, "embedding_text": "macos-design-guidelines. Apple Human Interface Guidelines for Mac. Use when building macOS apps with SwiftUI or AppKit, implementing menu bars, toolbars, window management, or keyboard shortcuts. Triggers on tasks involving M Platforms: claude_code."} +{"id": "8c8a2dec938c8552f697574dd209dfce993c45b99dbe7ef3ecd852e1c1187d09", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "using-superpowers", "description": "Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Skill tool before announcing usage, following brainstorming before coding, and creati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/.claude/skills/using-superpowers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "using-superpowers. Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Skill tool before announcing usage, following brainstorming before coding, and creati Platforms: claude_code."} +{"id": "d95a7246c6812abb7cf797498df9bc77c810b44883a4f94116fd9c3d863ce504", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "resolve", "description": "Resolve code review comments by verifying their validity and proposing multiple solutions for confirmed issues. Use when addressing review feedback, analyzing whether review comments are valid, and generating architectural solutions (not naive fixes) for confirmed issues.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/resolve/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install resolve"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "resolve. Resolve code review comments by verifying their validity and proposing multiple solutions for confirmed issues. Use when addressing review feedback, analyzing whether review comments are valid, and generating architectural solutions (not naive fixes) for confirmed issues. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "1f8f7fb78c371e2182354698339d9aec8c4da89be0d79fe9d585569f9107722b", "repo_url": "https://github.com/jackwener/tg-cli", "name": "tg-cli", "description": "CLI skill for Telegram to sync chats, search messages, filter keywords, and monitor groups from the terminal", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackwener/tg-cli/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 258, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T08:46:30Z"}, "embedding_text": "tg-cli. CLI skill for Telegram to sync chats, search messages, filter keywords, and monitor groups from the terminal Platforms: claude_code."} +{"id": "4fea43ef2dbc8cb3cfcf66be952ed6fa6c3b3fc63365bc592313b33fb7606a06", "repo_url": "https://github.com/chongdashu/phaserjs-tinyswords", "name": "tinyswords-tilemap", "description": "Build tilemaps using Tiny Swords asset pack. Handles 64x64 tile grid, elevation layers, water foam animation, shadow positioning, and terrain color variants. Use when creating game maps, level editors", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/chongdashu/phaserjs-tinyswords/blob/main/.claude/skills/tinyswords-tilemap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T22:40:47Z"}, "embedding_text": "tinyswords-tilemap. Build tilemaps using Tiny Swords asset pack. Handles 64x64 tile grid, elevation layers, water foam animation, shadow positioning, and terrain color variants. Use when creating game maps, level editors Platforms: claude_code."} +{"id": "cfafa4860d34a19a03beffa03ffe0314e61d40bb3b29c74666ce27f91f6e3f7f", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-enum", "description": "BPX `enum` command skill. List enum exports or update existing enum values.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-enum/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-enum. BPX `enum` command skill. List enum exports or update existing enum values. Platforms: claude_code."} +{"id": "5ca53a65987273e5e0be0afa5d77a97ecc8866c3ff4fadcdd1469f386517a490", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "deepgram-webhooks", "description": "Receive and verify Deepgram webhooks (callbacks). Use when setting up Deepgram webhook handlers, processing transcription callbacks, or handling asynchronous transcription results.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/deepgram-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "deepgram-webhooks. Receive and verify Deepgram webhooks (callbacks). Use when setting up Deepgram webhook handlers, processing transcription callbacks, or handling asynchronous transcription results. Platforms: claude_code."} +{"id": "9e49d6855d58afb977b822f99c140918cdce5cffa644560f3935f52ed8a5e580", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "separate-monolithic-python", "description": "Break large Python files (>500 LOC) into smaller, well-organized modules with proper package structure. Use when a Python file is too large, monolithic, or needs refactoring. Triggered by requests men", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/separate-monolithic-python/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "separate-monolithic-python. Break large Python files (>500 LOC) into smaller, well-organized modules with proper package structure. Use when a Python file is too large, monolithic, or needs refactoring. Triggered by requests men Platforms: claude_code."} +{"id": "f78ef5370cb320364a8fbbaf8488266b3f92ccf7fe55f3835f57d2f4e5371e8c", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "writing-prds", "description": "Write a clear, decision-ready PRD (and optionally a PR/FAQ, AI eval spec, and prompt set) for cross-functional alignment.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/samples/writing-prds-executable/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "writing-prds. Write a clear, decision-ready PRD (and optionally a PR/FAQ, AI eval spec, and prompt set) for cross-functional alignment. Platforms: claude_code."} +{"id": "cb7cee3052df5bbf028ef66e0b825db3536979e2adf99ffe8b99a70373aecf5b", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "file-test-bug", "description": "File a GitHub issue for local integration test failures. TRIGGERS: file test bug, report test failure, create bug for test, integration test failed, test failure issue, junit failure", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/file-test-bug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install file-test-bug"}, "quality": {"stars": 225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:17:52Z"}, "embedding_text": "file-test-bug. File a GitHub issue for local integration test failures. TRIGGERS: file test bug, report test failure, create bug for test, integration test failed, test failure issue, junit failure Platforms: claude_code."} +{"id": "f8f91ec8d52a472ee963e997c3c1ca7ff33cb39d8831ddee9d20efeb6c4b0118", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "sendgrid-webhooks", "description": "Receive and verify SendGrid webhooks. Use when setting up SendGrid webhook handlers, debugging signature verification, or handling email delivery events.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/sendgrid-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "sendgrid-webhooks. Receive and verify SendGrid webhooks. Use when setting up SendGrid webhook handlers, debugging signature verification, or handling email delivery events. Platforms: claude_code."} +{"id": "ea321745dd0f2e315d838e61f735679673679d3bc9aa55c2b91dc0ddfdf33e6e", "repo_url": "https://github.com/st0012/ruby-skills", "name": "ruby-version-manager", "description": "Use at session start for Ruby projects (Gemfile, .ruby-version, or .tool-versions present). Detect version manager BEFORE running ruby, bundle, gem, rake, rails, rspec, or any Ruby command.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/st0012/ruby-skills/blob/master/plugins/ruby-skills/skills/ruby-version-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 119, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T22:00:03Z"}, "embedding_text": "ruby-version-manager. Use at session start for Ruby projects (Gemfile, .ruby-version, or .tool-versions present). Detect version manager BEFORE running ruby, bundle, gem, rake, rails, rspec, or any Ruby command. Platforms: claude_code."} +{"id": "6b94ce9842cc36abe929da5d078d31d9a08a5c34728671121e008327913e60be", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-finish", "description": "Close a dev-cycle session, capture learnings, and optionally commit. Use when development work is complete and ready to wrap up.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-finish/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-finish"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-finish. Close a dev-cycle session, capture learnings, and optionally commit. Use when development work is complete and ready to wrap up. Platforms: claude_code."} +{"id": "12b4dc074657d584265f5bd399bf20bd8812e5e4cb53e37958af29e54ab12747", "repo_url": "https://github.com/ckanner/agent-skills", "name": "jta", "description": "Translate JSON i18n files to multiple languages with AI-powered quality optimization. Use when user mentions translating JSON, i18n files, internationalization, locale files, or needs to convert language files to other languages.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "ai", "claude", "claude-code", "claude-skills", "machine-learning", "plugin-marketplace", "prompt-engineering", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ckanner/agent-skills/blob/main/jta/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jta"}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-19T01:05:58Z"}, "embedding_text": "jta. Translate JSON i18n files to multiple languages with AI-powered quality optimization. Use when user mentions translating JSON, i18n files, internationalization, locale files, or needs to convert language files to other languages. Categories: agent-skills, ai, claude, claude-code, claude-skills, machine-learning, plugin-marketplace, prompt-engineering, skills. Platforms: claude_code."} +{"id": "d7cb504b457027fcfaa3534822a9c7aee9e9c9d072f2b57d2d7253011f321403", "repo_url": "https://github.com/resend/resend-skills", "name": "agent-email-inbox", "description": "Use when setting up an email inbox for an AI agent (Moltbot, Clawdbot, or similar) - configuring inbound email, webhooks, tunneling for local development, and implementing security measures to prevent", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/resend/resend-skills/blob/main/skills/agent-email-inbox/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 135, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:45:24Z"}, "embedding_text": "agent-email-inbox. Use when setting up an email inbox for an AI agent (Moltbot, Clawdbot, or similar) - configuring inbound email, webhooks, tunneling for local development, and implementing security measures to prevent Platforms: claude_code."} +{"id": "01183584fd681c8c9e8c6b29b659c0857989b20c44cfe46980dfb57ef577c990", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-hana-cli", "description": "Assists with SAP HANA Developer CLI (hana-cli) for database development and administration.\nUse when: installing hana-cli, connecting to SAP HANA databases, inspecting database objects\n(tables, views,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-hana-cli/skills/sap-hana-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-hana-cli. Assists with SAP HANA Developer CLI (hana-cli) for database development and administration.\nUse when: installing hana-cli, connecting to SAP HANA databases, inspecting database objects\n(tables, views, Platforms: claude_code."} +{"id": "06cbc261778d09ed31f8199b40b59f04a845e500d168c88afe8794d622fe414b", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "raise-negotiation-prep", "description": "Market salary research, accomplishment quantification, negotiation scripts, total compensation analysis, timing strategy.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/raise-negotiation-prep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "raise-negotiation-prep. Market salary research, accomplishment quantification, negotiation scripts, total compensation analysis, timing strategy. Platforms: claude_code."} +{"id": "09b1cd7203234d57edb78bfa7061d3fe82ffbf8ab0bd531d62999790bf13a4ed", "repo_url": "https://github.com/featbit/featbit-skills", "name": "featbit-openfeature-node-server", "description": "Expert guidance for using FeatBit OpenFeature Provider for Node.js server-side applications. Use when implementing OpenFeature standard in Node.js backends with FeatBit.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/featbit/featbit-skills/blob/main/skills/featbit-deployment-aws/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-28T07:03:45Z"}, "embedding_text": "featbit-openfeature-node-server. Expert guidance for using FeatBit OpenFeature Provider for Node.js server-side applications. Use when implementing OpenFeature standard in Node.js backends with FeatBit. Platforms: claude_code."} +{"id": "4a70f674eba3aa6bab1ed45abf34074666fc477f4ab4a7c77fbfd13360b77fb4", "repo_url": "https://github.com/andrew/managing-dependencies", "name": "managing-dependencies", "description": "Evaluates packages, manages dependencies, and addresses supply chain security. Use when adding npm/pip/cargo/bundler/go dependencies, auditing packages, reviewing lockfile changes, checking for vulner", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/andrew/managing-dependencies/blob/main/skills/managing-dependencies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-08T09:10:11Z"}, "embedding_text": "managing-dependencies. Evaluates packages, manages dependencies, and addresses supply chain security. Use when adding npm/pip/cargo/bundler/go dependencies, auditing packages, reviewing lockfile changes, checking for vulner Platforms: claude_code."} +{"id": "eba5a1b5679ea891b3c2eecae196a2d0e7cfdef58c41332993a54f644002457c", "repo_url": "https://github.com/dotnet/skills", "name": "analyzing-dotnet-performance", "description": "Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I/O with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-diag/skills/analyzing-dotnet-performance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install analyzing-dotnet-performance"}, "quality": {"stars": 3455, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:58:53Z"}, "embedding_text": "analyzing-dotnet-performance. Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I/O with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns. Platforms: claude_code."} +{"id": "01469e8f5aee41ef3e4bc7bec532ff33873e25e9017a87dd244a72f34d047310", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "my-skill", "description": "Use when testing broken reference links.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/fixtures/fail/bad-slug/global/skills/my-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "my-skill. Use when testing broken reference links. Platforms: claude_code."} +{"id": "df312893f5620b70e6cab0c7b699b5a70366fdc33e7758b7452a89b5e0a414a6", "repo_url": "https://github.com/fortescarlet/codex-kkp", "name": "codex-agent-collaboration", "description": "Delegate coding tasks to Codex AI for implementation, analysis, and alternative solutions. Use when you need a second AI perspective, want to explore different approaches, or need specialized Codex capabilities for complex coding tasks.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude", "claude-code", "claude-code-skill", "claude-code-skills", "claude-plugin", "claude-skill", "claude-skills", "codex", "kotlin", "kotlin-multiplatform"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fortescarlet/codex-kkp/blob/main/claude-code-skills-template/codex-agent-collaboration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codex-agent-collaboration"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T08:57:21Z"}, "embedding_text": "codex-agent-collaboration. Delegate coding tasks to Codex AI for implementation, analysis, and alternative solutions. Use when you need a second AI perspective, want to explore different approaches, or need specialized Codex capabilities for complex coding tasks. Categories: claude, claude-code, claude-code-skill, claude-code-skills, claude-plugin, claude-skill, claude-skills, codex, kotlin, kotlin-multiplatform. Platforms: claude_code."} +{"id": "40aa2df4143aab2da2e0cae342cd8bfd35a73b5250c4fcb465886d88ba1342e8", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-plugin-upgrades", "description": "Guides the agent through upgrading a Capacitor plugin to a newer major version. Covers dependency alignment, native platform changes, example app verification, and multi-version jumps. Do not use for", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-plugin-dev/skills/capacitor-plugin-upgrades/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-plugin-upgrades. Guides the agent through upgrading a Capacitor plugin to a newer major version. Covers dependency alignment, native platform changes, example app verification, and multi-version jumps. Do not use for Platforms: claude_code."} +{"id": "ed1f92c7ea0607fd69bfb7d0b189cb1ffa53f3f3e26b615014af1162406eed98", "repo_url": "https://github.com/spences10/sveltest", "name": "svelte-testing", "description": "Fix and create Svelte 5 tests with vitest-browser-svelte and Playwright. Use when fixing broken tests, debugging failures, writing unit/SSR/e2e tests, or working with vitest/Playwright.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spences10/sveltest/blob/main/.claude/skills/svelte-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 109, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T09:11:28Z"}, "embedding_text": "svelte-testing. Fix and create Svelte 5 tests with vitest-browser-svelte and Playwright. Use when fixing broken tests, debugging failures, writing unit/SSR/e2e tests, or working with vitest/Playwright. Platforms: claude_code."} +{"id": "7c5d533d48ea5d021643a079888a80377cebfdf93a7540ec83b34c9f56949f0f", "repo_url": "https://github.com/congdon1207/agents.md", "name": "spec-update", "description": "Use when updating specifications, comparing branches, or ensuring documentation reflects current implementation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/tasks-spec-update/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "spec-update. Use when updating specifications, comparing branches, or ensuring documentation reflects current implementation. Platforms: claude_code."} +{"id": "e3f462a1d02ca99d4813f4609a62480645ebc6cf4b3354ce0d81ed99696cd7c1", "repo_url": "https://github.com/duckdb/duckdb-skills", "name": "attach-db", "description": "Attach a DuckDB database file for use with /duckdb-skills:query. Explores the schema (tables, columns, row counts) and writes a SQL state file so subsequent queries can restore this session automatica", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/duckdb/duckdb-skills/blob/main/skills/attach-db/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 495, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-23T13:56:22Z"}, "embedding_text": "attach-db. Attach a DuckDB database file for use with /duckdb-skills:query. Explores the schema (tables, columns, row counts) and writes a SQL state file so subsequent queries can restore this session automatica Platforms: claude_code."} +{"id": "e05b154d1e42ed66d719f274698c647926548a74373e93def7b416a5c50ff6fd", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "jtbd-psychographic-research", "description": "Provides Jobs-to-be-Done and psychographic research frameworks for brand identity work. Auto-activates during brand positioning, voice development, messaging, and strategy phases. Use when discussing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/jtbd-psychographic-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "jtbd-psychographic-research. Provides Jobs-to-be-Done and psychographic research frameworks for brand identity work. Auto-activates during brand positioning, voice development, messaging, and strategy phases. Use when discussing Platforms: claude_code."} +{"id": "4ecfbd6ee6d630b55cf7b5e818af07d4b31fa34c2d9ece972a644ce472f15bc9", "repo_url": "https://github.com/glebis/claude-skills", "name": "llm-cli", "description": "Process textual and multimedia files with various LLM providers using the llm CLI. Supports both non-interactive and interactive modes with model selection, config persistence, and file input handling", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/llm-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "llm-cli. Process textual and multimedia files with various LLM providers using the llm CLI. Supports both non-interactive and interactive modes with model selection, config persistence, and file input handling Platforms: claude_code."} +{"id": "aa36b644647fe35a9a23ea70697cb76c034706b393751c9c91acc128aaed04a2", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "font-pairing-suggester", "description": "Recommend font combinations for different use cases. Provide Google Fonts alternatives to premium fonts with hierarchy examples.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/font-pairing-suggester/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "font-pairing-suggester. Recommend font combinations for different use cases. Provide Google Fonts alternatives to premium fonts with hierarchy examples. Platforms: claude_code."} +{"id": "e052382cf0479b582bc2268d1e668358a43ce9414a1321d755df7acd600ba06f", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "Voice Activity Detection (VAD)", "description": "Detect speech segments in audio using VAD tools like Silero VAD, SpeechBrain VAD, or WebRTC VAD. Use when preprocessing audio for speaker diarization, filtering silence, or segmenting audio into speec", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks-extra/speaker-diarization-subtitles/environment/skills/voice-activity-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "Voice Activity Detection (VAD). Detect speech segments in audio using VAD tools like Silero VAD, SpeechBrain VAD, or WebRTC VAD. Use when preprocessing audio for speaker diarization, filtering silence, or segmenting audio into speec Platforms: claude_code."} +{"id": "0f95f3f4e18e5c8c85a91ea225b4c185e06ada58bb86c3a1aae2d59ed989a851", "repo_url": "https://github.com/plurigrid/asi", "name": "exa-search", "description": "Use Exa for semantic/neural web search. Exa understands context and returns high-quality results. Use this skill when you need to search the web for documentation, research, or any information that re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/exa-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "exa-search. Use Exa for semantic/neural web search. Exa understands context and returns high-quality results. Use this skill when you need to search the web for documentation, research, or any information that re Platforms: claude_code."} +{"id": "085ca2e808396c8ce571c52eb0080303dcce027158d64cced0c10d597dd357c0", "repo_url": "https://github.com/th0rgal/sandboxed.sh", "name": "library-management", "description": "Manage the Sandboxed.sh library (skills, agents, commands, tools, rules, MCPs) via Library API tools. Trigger terms: library, skill, agent, command, tool, rule, MCP, save skill, create skill.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/th0rgal/sandboxed.sh/blob/master/.opencode/skill/library-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 453, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:22:32Z"}, "embedding_text": "library-management. Manage the Sandboxed.sh library (skills, agents, commands, tools, rules, MCPs) via Library API tools. Trigger terms: library, skill, agent, command, tool, rule, MCP, save skill, create skill. Platforms: claude_code."} +{"id": "61e1811fa01d53420965026b712571765939f8639ed7ca7a88ee6dc3b8b29f62", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "ionic-enterprise-sdk-migration", "description": "Guides the agent through migrating Capacitor apps from Ionic Enterprise SDK plugins to Capgo and Capacitor alternatives. Covers dependency detection, API replacement, local storage changes, and platfo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-migrations/skills/ionic-enterprise-sdk-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "ionic-enterprise-sdk-migration. Guides the agent through migrating Capacitor apps from Ionic Enterprise SDK plugins to Capgo and Capacitor alternatives. Covers dependency detection, API replacement, local storage changes, and platfo Platforms: claude_code."} +{"id": "57dd32adc8259d08bd585fe3223c618ed5e00d742eb16c62ae3a61d4cc6e251c", "repo_url": "https://github.com/motoya0118/pavlok_cli_agent", "name": "slack", "description": "Post a question to Slack and wait for a reply, or post a reply into a thread using scripts/slack.py.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/motoya0118/pavlok_cli_agent/blob/main/.codex/skills/add-slack-ignore-events/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 72, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-09T12:24:31Z"}, "embedding_text": "slack. Post a question to Slack and wait for a reply, or post a reply into a thread using scripts/slack.py. Platforms: claude_code."} +{"id": "6ac5d663069aecd878bbddef01346f09d8d91c645572707e01588b4f6dd679c5", "repo_url": "https://github.com/agent-sh/agnix", "name": "with-argument-hint", "description": "Use when greeting users", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/valid/skills/with-argument-hint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "with-argument-hint. Use when greeting users Platforms: claude_code."} +{"id": "d43d84f603419d5fa45e6a12a8eba5a4ee809bb8a9d712f0ad57d8b810c513dc", "repo_url": "https://github.com/yxhpy/qcc_plus", "name": "qcc-git", "description": "Use for Git workflow, branch strategy, and commit conventions in qcc_plus project", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yxhpy/qcc_plus/blob/main/.claude/skills/qcc-git/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T12:47:39Z"}, "embedding_text": "qcc-git. Use for Git workflow, branch strategy, and commit conventions in qcc_plus project Platforms: claude_code."} +{"id": "a576bedc92de73c5f9de1a885cfb0fe4d2dac47b207e750f16992670757e8ddf", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "quality-documentation-manager", "description": "Senior Quality Documentation Manager for comprehensive documentation control and regulatory document review. Provides document management system design, change control, configuration management, and r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/quality-documentation-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "quality-documentation-manager. Senior Quality Documentation Manager for comprehensive documentation control and regulatory document review. Provides document management system design, change control, configuration management, and r Platforms: claude_code."} +{"id": "9ea4d61fbff7e2812bcd955af9eeb899b6f4aed117ea2a8eff549fc00a03d79f", "repo_url": "https://github.com/shiquda/roadmap-skill", "name": "roadmap", "description": "Introduces roadmap-skill and routes roadmap work to the right workflow. Use when the user needs brief context about roadmap-skill, or wants help deciding between backlog task flow, planning views, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shiquda/roadmap-skill/blob/main/skills/roadmap-planning-views/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 68, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-18T12:07:37Z"}, "embedding_text": "roadmap. Introduces roadmap-skill and routes roadmap work to the right workflow. Use when the user needs brief context about roadmap-skill, or wants help deciding between backlog task flow, planning views, and Platforms: claude_code."} +{"id": "8cb0197477a7bb0a63fe0d2330f88d0276769b4580dffe4711ea739645c95693", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "fda-consultant-specialist", "description": "Senior FDA consultant and specialist for medical device companies including HIPAA compliance and requirement management. Provides FDA pathway expertise, QSR compliance, cybersecurity guidance, and reg", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/fda-consultant-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "fda-consultant-specialist. Senior FDA consultant and specialist for medical device companies including HIPAA compliance and requirement management. Provides FDA pathway expertise, QSR compliance, cybersecurity guidance, and reg Platforms: claude_code."} +{"id": "33e1728998da5232773040ad188b09200fb6812b50fc2d215b73612b32d05720", "repo_url": "https://github.com/aahl/skills", "name": "crypto-report", "description": "Get cryptocurrency market data. Get Binance AI analysis report. Get blockchain news updates.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/crypto-report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install crypto-report"}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T10:12:15Z"}, "embedding_text": "crypto-report. Get cryptocurrency market data. Get Binance AI analysis report. Get blockchain news updates. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} +{"id": "5e58962896d4c32c417559253e920d419c1bc7d7a99b54785cc9d8c640e4ab89", "repo_url": "https://github.com/public-clis/bilibili-cli", "name": "bilibili-cli", "description": "CLI skill for Bilibili (\u54d4\u54e9\u54d4\u54e9, B\u7ad9) with token-efficient YAML output for AI agents to browse videos, users, search, trending, dynamics, favorites, and interactions from the terminal", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/public-clis/bilibili-cli/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 869, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-14T12:23:49Z"}, "embedding_text": "bilibili-cli. CLI skill for Bilibili (\u54d4\u54e9\u54d4\u54e9, B\u7ad9) with token-efficient YAML output for AI agents to browse videos, users, search, trending, dynamics, favorites, and interactions from the terminal Platforms: claude_code."} +{"id": "b9e4ae2b6fc3d1223f898f43b87cfeed70f606729c2a7ed6e0f28bd27f181e24", "repo_url": "https://github.com/dojoengine/dojo.js", "name": "dojo-events", "description": "Use when subscribing to game events and tracking tokens in dojo.js.\nTriggers: subscribe events, game events, token balance, event query, achievements,\nevent subscription, onTokenBalanceUpdated, activi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dojoengine/dojo.js/blob/main/.claude/skills/dojo-events/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T09:36:59Z"}, "embedding_text": "dojo-events. Use when subscribing to game events and tracking tokens in dojo.js.\nTriggers: subscribe events, game events, token balance, event query, achievements,\nevent subscription, onTokenBalanceUpdated, activi Platforms: claude_code."} +{"id": "2f8a61ec77fd138d2037e3baf7257afccef02a89218ee3596a40683c994e9bb4", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "de-slopify", "description": "Remove telltale signs of AI-generated 'slop' writing from README files and documentation. Make your docs sound authentically human.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/de-slopify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "de-slopify. Remove telltale signs of AI-generated 'slop' writing from README files and documentation. Make your docs sound authentically human. Platforms: claude_code."} +{"id": "ea1c1254759707c022755041b8c1c0ed97ab2c595cd0dc1405768dcf5b88d3c2", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "multi-llm-advisor", "description": "Fetches additional perspectives from OpenAI Codex and Google Gemini for architecture, review, and debugging. Transparently displays all LLM calls.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/multi-llm-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "multi-llm-advisor. Fetches additional perspectives from OpenAI Codex and Google Gemini for architecture, review, and debugging. Transparently displays all LLM calls. Platforms: claude_code."} +{"id": "f32fd893152724b5a449678d33d306023fad62b5853a61bdc8e71e83a74b74ab", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "mcp-builder", "description": "MCP \u670d\u52a1\u5668\u6784\u5efa\u65b9\u6cd5\u8bba \u2014 \u7cfb\u7edf\u5316\u6784\u5efa\u751f\u4ea7\u7ea7 MCP \u5de5\u5177\uff0c\u8ba9 AI \u52a9\u624b\u8fde\u63a5\u5916\u90e8\u80fd\u529b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "mcp-builder. MCP \u670d\u52a1\u5668\u6784\u5efa\u65b9\u6cd5\u8bba \u2014 \u7cfb\u7edf\u5316\u6784\u5efa\u751f\u4ea7\u7ea7 MCP \u5de5\u5177\uff0c\u8ba9 AI \u52a9\u624b\u8fde\u63a5\u5916\u90e8\u80fd\u529b Platforms: claude_code."} +{"id": "ac089aff07aac133ae9d6c2e92f813a39a8f8da0cbd75d7c8e6aa22bfc98a073", "repo_url": "https://github.com/triggerdotdev/skills", "name": "trigger-setup", "description": "Set up Trigger.dev in your project. Use when adding Trigger.dev for the first time, creating trigger.config.ts, or initializing the trigger directory.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/triggerdotdev/skills/blob/main/trigger-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T11:16:43Z"}, "embedding_text": "trigger-setup. Set up Trigger.dev in your project. Use when adding Trigger.dev for the first time, creating trigger.config.ts, or initializing the trigger directory. Platforms: claude_code."} +{"id": "e10570fd11795925e0f5181d8ab7ba2060cd03104e2c9047f38cfcaa2e7a0818", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "ui-ux-polish", "description": "Iterative UI/UX polishing workflow for web applications. The exact prompt and methodology for achieving Stripe-level visual polish through multiple passes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/ui-ux-polish/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "ui-ux-polish. Iterative UI/UX polishing workflow for web applications. The exact prompt and methodology for achieving Stripe-level visual polish through multiple passes. Platforms: claude_code."} +{"id": "077a8cd9e9258d5b8aa198e85b582ecc4ff99299f825973225cac6f54ceff6a3", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "qms-audit-expert", "description": "Senior QMS Audit Expert for internal and external quality management system auditing. Provides ISO 13485 audit expertise, audit program management, nonconformity identification, and corrective action", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/qms-audit-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "qms-audit-expert. Senior QMS Audit Expert for internal and external quality management system auditing. Provides ISO 13485 audit expertise, audit program management, nonconformity identification, and corrective action Platforms: claude_code."} +{"id": "70597007f5de117a7e54ee6596833d59f41572b17eb606430390206677fb19ac", "repo_url": "https://github.com/dojoengine/dojo.js", "name": "dojo-transactions", "description": "Use when executing game actions and sending transactions in dojo.js.\nTriggers: send transaction, execute action, dojo action, contract call, DojoProvider,\nexecute, sendMessage, batch transaction, invo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dojoengine/dojo.js/blob/main/.claude/skills/dojo-transactions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T09:36:59Z"}, "embedding_text": "dojo-transactions. Use when executing game actions and sending transactions in dojo.js.\nTriggers: send transaction, execute action, dojo action, contract call, DojoProvider,\nexecute, sendMessage, batch transaction, invo Platforms: claude_code."} +{"id": "87d6a5e3d687c9011ef7b9f97e379b93b3dd7de5accfc6fa8affc3b6a297bb5f", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "risk-management-specialist", "description": "Senior Risk Management specialist for medical device companies implementing ISO 14971 risk management throughout product lifecycle. Provides risk analysis, risk evaluation, risk control, and post-prod", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/risk-management-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "risk-management-specialist. Senior Risk Management specialist for medical device companies implementing ISO 14971 risk management throughout product lifecycle. Provides risk analysis, risk evaluation, risk control, and post-prod Platforms: claude_code."} +{"id": "9bf081017cc73497dad7ef97ea45c7901cabadf63d863b5acd149aac6655bdf6", "repo_url": "https://github.com/elbwalker/walkeros", "name": "debugging", "description": "This skill appears to be a placeholder or broken link rather than a functional debugging tool. The SKILL.md contains only a reference to external content that doesn't exist in the provided context, ma", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/elbwalker/walkeros/blob/main/skills/walkeros-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 341, "skillhub_rank": "D", "skillhub_score": 2.3, "last_updated": "2026-06-18T13:29:24Z"}, "embedding_text": "debugging. This skill appears to be a placeholder or broken link rather than a functional debugging tool. The SKILL.md contains only a reference to external content that doesn't exist in the provided context, ma Platforms: claude_code."} +{"id": "7fbdb2e5d51accfb905df7b1345d78e83080c89c4136246aeada7618f8027e02", "repo_url": "https://github.com/deckardger/tanstack-agent-skills", "name": "tanstack-start-best-practices", "description": "TanStack Start best practices for full-stack React applications. Server functions, middleware, SSR, authentication, and deployment patterns. Activate when building full-stack apps with TanStack Start.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deckardger/tanstack-agent-skills/blob/main/skills/tanstack-start/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 185, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T05:02:53Z"}, "embedding_text": "tanstack-start-best-practices. TanStack Start best practices for full-stack React applications. Server functions, middleware, SSR, authentication, and deployment patterns. Activate when building full-stack apps with TanStack Start. Platforms: claude_code."} +{"id": "3aa30fffc3d175372332d343e3ab4eec4cd99f703694bce18aa6f7f9a3f8f288", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "chinese-documentation", "description": "\u4e2d\u6587\u6280\u672f\u6587\u6863\u5199\u4f5c\u89c4\u8303\u2014\u2014\u6392\u7248\u3001\u672f\u8bed\u3001\u7ed3\u6784\u4e00\u6b65\u5230\u4f4d\uff0c\u544a\u522b\u673a\u7ffb\u5473", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/chinese-documentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "chinese-documentation. \u4e2d\u6587\u6280\u672f\u6587\u6863\u5199\u4f5c\u89c4\u8303\u2014\u2014\u6392\u7248\u3001\u672f\u8bed\u3001\u7ed3\u6784\u4e00\u6b65\u5230\u4f4d\uff0c\u544a\u522b\u673a\u7ffb\u5473 Platforms: claude_code."} +{"id": "2dc08b3ecf83e2a1155590274b5878aad40464dcac1477be07920d05a3a510c2", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "sports-podcast-outline-generator", "description": "Create structured podcast episodes. Segment timing, debate points, hot takes, listener questions, ad break placement.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/sports-podcast-outline-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "sports-podcast-outline-generator. Create structured podcast episodes. Segment timing, debate points, hot takes, listener questions, ad break placement. Platforms: claude_code."} +{"id": "53327dd0dfbd07f07afb2c4b62b13b701a005416c3237af6f217cdd71e920a79", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "isms-audit-expert", "description": "Senior ISMS Audit Expert for internal and external information security management system auditing. Provides ISO 27001 audit expertise, security audit program management, security control assessment,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/isms-audit-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "isms-audit-expert. Senior ISMS Audit Expert for internal and external information security management system auditing. Provides ISO 27001 audit expertise, security audit program management, security control assessment, Platforms: claude_code."} +{"id": "5323f1cd697ef921a054453c5f9d40b0d8807862d0d8b51ef8ce3d40135e04dc", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "planning-workflow", "description": "Jeffrey Emanuel's comprehensive markdown planning methodology for software projects. The 85%+ time-on-planning approach that makes agentic coding work at scale. Includes exact prompts used.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/planning-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "planning-workflow. Jeffrey Emanuel's comprehensive markdown planning methodology for software projects. The 85%+ time-on-planning approach that makes agentic coding work at scale. Includes exact prompts used. Platforms: claude_code."} +{"id": "0a8ffd60ddf0ce0c08cba413570580a3731fec998ab3a4a97b91c0722b196efb", "repo_url": "https://github.com/rohunvora/cool-claude-skills", "name": "incremental-fetch", "description": "Build resilient data ingestion pipelines from APIs. Use when creating scripts that fetch paginated data from external APIs (Twitter, exchanges, any REST API) and need to track progress, avoid duplicat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohunvora/cool-claude-skills/blob/main/skills/incremental-fetch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-09T05:28:41Z"}, "embedding_text": "incremental-fetch. Build resilient data ingestion pipelines from APIs. Use when creating scripts that fetch paginated data from external APIs (Twitter, exchanges, any REST API) and need to track progress, avoid duplicat Platforms: claude_code."} +{"id": "56dca6511ee383cb0feed8e236919b0fe01405f7714716045fa5f61be7a48219", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "team-chemistry-evaluator", "description": "Analyze roster fit and personality dynamics. Leadership assessment, role clarity, locker room culture, trade/signing impact.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/team-chemistry-evaluator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "team-chemistry-evaluator. Analyze roster fit and personality dynamics. Leadership assessment, role clarity, locker room culture, trade/signing impact. Platforms: claude_code."} +{"id": "53827f0ddff1b0a6a737ffe27841707e11e7a6774c82fa6c346471f759cbe599", "repo_url": "https://github.com/exboys/skilllite", "name": "example-python-skill", "description": "A simple example skill that echoes input", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/exboys/skilllite/blob/main/.skills/_evolved/check-weather-forecast/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 157, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:36:11Z"}, "embedding_text": "example-python-skill. A simple example skill that echoes input Platforms: claude_code."} +{"id": "78853359cdba3c12ec67e3188d4150c344137c95759928d19b3e5f9bf7f85bbb", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "security-pipeline", "description": "\ubcf4\uc548 \ud30c\uc774\ud504\ub77c\uc778 - CWE Top 25 + STRIDE \uc790\ub3d9 \uac80\uc99d", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/security-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install security-pipeline"}, "quality": {"stars": 752, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:57:09Z"}, "embedding_text": "security-pipeline. \ubcf4\uc548 \ud30c\uc774\ud504\ub77c\uc778 - CWE Top 25 + STRIDE \uc790\ub3d9 \uac80\uc99d Platforms: claude_code."} +{"id": "bee3e9df403e9c6c5aa2435726b2ae879106009ea1200b5b65ab49ba46e11eb2", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-compute", "description": "Recommend Azure VM sizes, VM Scale Sets (VMSS), and configurations based on workload requirements, performance needs, and budget constraints. No Azure account required \u2014 uses public documentation and the Azure Retail Prices API. WHEN: recommend VM size, which VM should I use, choose Azure VM, VM for web/database/ML/batch/HPC, GPU VM, compare VM sizes, cheapest VM, best VM for workload, VM pricing, cost estimate, burstable/compute/memory/storage optimized VM, confidential computing, VM trade-offs, VM families, VMSS, scale set recommendation, autoscale VMs, load balanced VMs, VMSS vs VM, scale out, horizontal scaling, flexible orchestration.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-compute/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-compute"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-compute. Recommend Azure VM sizes, VM Scale Sets (VMSS), and configurations based on workload requirements, performance needs, and budget constraints. No Azure account required \u2014 uses public documentation and the Azure Retail Prices API. WHEN: recommend VM size, which VM should I use, choose Azure VM, VM for web/database/ML/batch/HPC, GPU VM, compare VM sizes, cheapest VM, best VM for workload, VM pricing, cost estimate, burstable/compute/memory/storage optimized VM, confidential computing, VM trade-offs, VM families, VMSS, scale set recommendation, autoscale VMs, load balanced VMs, VMSS vs VM, scale out, horizontal scaling, flexible orchestration. Platforms: claude_code."} +{"id": "07f9f9ed7617e7d43c9d41d50d0cdc3a3dd5f845c465fd9e99da8370e9c3aa8d", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "brainstorming", "description": "Use when starting creative work (features, components, functionality, or behavior changes) to clarify user intent, requirements, and design before implementation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/.agents/skills/brainstorming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "brainstorming. Use when starting creative work (features, components, functionality, or behavior changes) to clarify user intent, requirements, and design before implementation. Platforms: claude_code."} +{"id": "d9a9a96f9f49cf323f779867c270fe0b3a7dab7b89647a52a252134763e76820", "repo_url": "https://github.com/unoplat/unoplat-code-confluence", "name": "teach-impeccable", "description": "One-time setup that gathers design context for your project and saves it to your AI config file. Run once to establish persistent design guidelines.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/unoplat/unoplat-code-confluence/blob/dev/unoplat-code-confluence-query-engine/src/unoplat_code_confluence_query_engine/skills/typescript-monorepo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:20:36Z"}, "embedding_text": "teach-impeccable. One-time setup that gathers design context for your project and saves it to your AI config file. Run once to establish persistent design guidelines. Platforms: claude_code."} +{"id": "5cb7ffcdd155d0d77addaa324068d4e6b01c3b64700fc7b5e3d83c60d0b13be1", "repo_url": "https://github.com/peiiii/skild", "name": "hello-skill", "description": "Minimal example Skill for testing skild installs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/examples/hello-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "hello-skill. Minimal example Skill for testing skild installs. Platforms: claude_code."} +{"id": "9030be13d2c131260da221b689d991203152a9a20f3ff4f962977a0e956cdd0a", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "baoyu-comic", "description": "Knowledge comic creator supporting multiple styles (Logicomix/Ligne Claire, Ohmsha manga guide). Creates original educational comics with detailed panel layouts and sequential image generation. Use wh", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/examples/comic_skill_example/skills/baoyu-comic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "baoyu-comic. Knowledge comic creator supporting multiple styles (Logicomix/Ligne Claire, Ohmsha manga guide). Creates original educational comics with detailed panel layouts and sequential image generation. Use wh Platforms: claude_code."} +{"id": "5016c4e08ac56b877a780076b375dfc027f41873425ce28f40f1c58c1de754b5", "repo_url": "https://github.com/fkesheh/skill-mcp", "name": "example-data-processor", "description": "Process CSV data files by cleaning, transforming, and analyzing them. Use this when users need to work with CSV files, clean data, or perform basic data analysis tasks.", "source": ["skillhub", "topic"], "categories": ["ai", "claude-skills", "llm", "mcp-server"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fkesheh/skill-mcp/blob/main/example-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install example-data-processor"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-14T15:32:59Z"}, "embedding_text": "example-data-processor. Process CSV data files by cleaning, transforming, and analyzing them. Use this when users need to work with CSV files, clean data, or perform basic data analysis tasks. Categories: ai, claude-skills, llm, mcp-server. Platforms: claude_code."} +{"id": "2090fcf376714448fab654713ecbc064076b90b715de44d1e07783d8959ec6dc", "repo_url": "https://github.com/deckardger/tanstack-agent-skills", "name": "tanstack-integration-best-practices", "description": "Best practices for integrating TanStack Query with TanStack Router and TanStack Start. Patterns for full-stack data flow, SSR, and caching coordination.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deckardger/tanstack-agent-skills/blob/main/skills/tanstack-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 185, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T05:02:53Z"}, "embedding_text": "tanstack-integration-best-practices. Best practices for integrating TanStack Query with TanStack Router and TanStack Start. Patterns for full-stack data flow, SSR, and caching coordination. Platforms: claude_code."} +{"id": "3602d26987ccd7d51e859ed4eec06ea3f60ce59e174f218be254390640a64ecb", "repo_url": "https://github.com/zhanghandong/cowork-skills", "name": "github-search", "description": "CRITICAL: Use for searching GitHub repositories for skills. Triggers on: search for skills, find skill repositories, cowork search, search GitHub topics, discover skills on GitHub, find repos on GitHu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zhanghandong/cowork-skills/blob/main/cli/builtin-skills/github-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T08:51:49Z"}, "embedding_text": "github-search. CRITICAL: Use for searching GitHub repositories for skills. Triggers on: search for skills, find skill repositories, cowork search, search GitHub topics, discover skills on GitHub, find repos on GitHu Platforms: claude_code."} +{"id": "8346a3ec5f93890e8fdfdd020c2e4f37ecef24e2d5e6979aae38fa2bbafc5d5c", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "FFmpeg Media Info", "description": "Analyze media file properties - duration, resolution, bitrate, codecs, and stream information", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/multilingual-video-dubbing/environment/skills/ffmpeg-media-info/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "FFmpeg Media Info. Analyze media file properties - duration, resolution, bitrate, codecs, and stream information Platforms: claude_code."} +{"id": "de24ce52579c1d213040ff94c68a2252e1157f0e944dd2f0791cb8a567b7dc76", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "reload", "description": "Treat the current session and auto-resume in a new terminal window.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-teams", "claude-code", "claude-skills", "cli", "context", "context-management", "jsonl", "llm-tools", "pruning", "python", "session-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruya-ai/cozempic/blob/main/plugin/skills/reload/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reload"}, "quality": {"stars": 340, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:12:08Z"}, "embedding_text": "reload. Treat the current session and auto-resume in a new terminal window. Categories: agent-teams, claude-code, claude-skills, cli, context, context-management, jsonl, llm-tools, pruning, python, session-management. Platforms: claude_code."} +{"id": "a526f2236ae70b2067bdad33028d07f76e4a2d9aa99eadcfb2ea7ea5477a2c1f", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "market-breadth-analyzer", "description": "Quantifies market breadth health using TraderMonty's public CSV data. Generates a 0-100 composite score across 6 components (100 = healthy). No API key required. Use when user asks about market breadt", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/market-breadth-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "market-breadth-analyzer. Quantifies market breadth health using TraderMonty's public CSV data. Generates a 0-100 composite score across 6 components (100 = healthy). No API key required. Use when user asks about market breadt Platforms: claude_code."} +{"id": "82248de6800d588e26619a31922bba3d5939b6e92b16e05fa04c387555eda761", "repo_url": "https://github.com/reggiechan74/vp-real-estate", "name": "telecom-licensing-expert", "description": "Expert in telecommunications licensing agreements that grant telecom carriers (phone, internet, cable companies) access to install equipment in commercial buildings. Use when building owner is negotia", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reggiechan74/vp-real-estate/blob/main/plugins/leasing-commercial/skills/telecom-licensing-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T22:17:46Z"}, "embedding_text": "telecom-licensing-expert. Expert in telecommunications licensing agreements that grant telecom carriers (phone, internet, cable companies) access to install equipment in commercial buildings. Use when building owner is negotia Platforms: claude_code."} +{"id": "da14ca255d139a0999a94f431404d216d966a4d270280bed4645542638df8307", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "prioritizing-roadmap", "description": "Help users prioritize product roadmaps and backlogs. Use when someone is deciding what to build next, sequencing features, allocating resources across projects, handling stakeholder requests, or strug", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/prioritizing-roadmap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "prioritizing-roadmap. Help users prioritize product roadmaps and backlogs. Use when someone is deciding what to build next, sequencing features, allocating resources across projects, handling stakeholder requests, or strug Platforms: claude_code."} +{"id": "d7418e0f7e67777f358c97afbfed5f3509419b387b588e5fdd878049b09ec0c9", "repo_url": "https://github.com/codenamev/claude_memory", "name": "memory", "description": "Store and recall long-term memory. Use when persisting facts learned during conversations or recalling stored knowledge about projects and preferences.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/claude_memory/blob/main/.claude/skills/check-memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T23:27:00Z"}, "embedding_text": "memory. Store and recall long-term memory. Use when persisting facts learned during conversations or recalling stored knowledge about projects and preferences. Platforms: claude_code."} +{"id": "229a7d9c5b242eab6c4cacf9876766c3bad006b6e470ec583d21f5ad30456e40", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "reality-verification", "description": "This skill should be used when the user asks to \"verify a fix\", \"reproduce failure\", \"diagnose issue\", \"check BEFORE/AFTER state\", \"VF task\", \"reality check\", \"check test quality\", \"mock-only tests\", or needs guidance on verifying fixes by reproducing failures before and after implementation, or detecting mock-heavy test anti-patterns.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum/skills/reality-verification/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reality-verification"}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "reality-verification. This skill should be used when the user asks to \"verify a fix\", \"reproduce failure\", \"diagnose issue\", \"check BEFORE/AFTER state\", \"VF task\", \"reality check\", \"check test quality\", \"mock-only tests\", or needs guidance on verifying fixes by reproducing failures before and after implementation, or detecting mock-heavy test anti-patterns. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} +{"id": "8f00e0d71fa1f4d1cd9f62202cce9322222f43c8fb1b17d69651c06cbf16f73d", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-databricks", "description": "Expert knowledge for Azure Databricks development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-databricks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-databricks. Expert knowledge for Azure Databricks development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, integrations & c Platforms: claude_code."} +{"id": "f5e1886401e2dad02a66d348c4bf39fb5a6626b082d28bd9cb876a0495aed129", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-cycle", "description": "Start or resume a development session. Use when beginning feature work, implementing changes, or continuing previous work. Orchestrates discovery, planning, review, and build phases with Bob and Garry.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-cycle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-cycle"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-cycle. Start or resume a development session. Use when beginning feature work, implementing changes, or continuing previous work. Orchestrates discovery, planning, review, and build phases with Bob and Garry. Platforms: claude_code."} +{"id": "c429ab721c3cc9c6b37400c298f251ab6b9ec5f47167392d98dcfd4903b58a44", "repo_url": "https://github.com/mic92/mics-skills", "name": "db-cli", "description": "Search Deutsche Bahn train connections. Use for finding train routes, schedules, and travel times in Germany.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mic92/mics-skills/blob/main/browser-cli/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T13:03:07Z"}, "embedding_text": "db-cli. Search Deutsche Bahn train connections. Use for finding train routes, schedules, and travel times in Germany. Platforms: claude_code."} +{"id": "dde8f6c4d7b6fb8ce36bc61c920e5dc8bd466438d8890f741e489f8ab5ca8402", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "skill-check", "description": "Validate skill/command file format and structure", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/skill-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-check"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "skill-check. Validate skill/command file format and structure Platforms: claude_code."} +{"id": "dc7fc19ece647b9eea20be64bdbbee7f1db9f072d4d78c44b9450c72dabc23ec", "repo_url": "https://github.com/microsoftdocs/agent-skills", "name": "azure-communication-services", "description": "Expert knowledge for Azure Communication Services development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, inte", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoftdocs/agent-skills/blob/main/skills/azure-communication-services/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 614, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:59:18Z"}, "embedding_text": "azure-communication-services. Expert knowledge for Azure Communication Services development including troubleshooting, best practices, decision making, architecture & design patterns, limits & quotas, security, configuration, inte Platforms: claude_code."} +{"id": "e560250245ea60c6381efaf501a917a3db4ca56f8e9ae94f50271975104f861f", "repo_url": "https://github.com/traves-theberge/orchestra", "name": "land", "description": "Land a PR by monitoring conflicts, resolving them, waiting for checks, and squash-merging when green; use when asked to land, merge, or shepherd a PR to completion.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/traves-theberge/orchestra/blob/main/.codex/skills/land/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T02:38:47Z"}, "embedding_text": "land. Land a PR by monitoring conflicts, resolving them, waiting for checks, and squash-merging when green; use when asked to land, merge, or shepherd a PR to completion. Platforms: claude_code."} +{"id": "42c028b332e47ad0e1119f3c95d5c07077a1fc6c144dc8fbfef29a81ca1f7485", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "running-effective-meetings", "description": "Help users run more effective meetings. Use when someone is dealing with meeting overload, wants to improve meeting culture, is preparing an important meeting, or struggles to get decisions made in me", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/running-effective-meetings/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "running-effective-meetings. Help users run more effective meetings. Use when someone is dealing with meeting overload, wants to improve meeting culture, is preparing an important meeting, or struggles to get decisions made in me Platforms: claude_code."} +{"id": "2da9ce87c5e43899cfa75793d54b392e4eb339216014521460bb9deb3ec5ba2d", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "code-review", "description": "Frontend-focused code review skill for React/TypeScript/Tailwind projects. Analyzes code quality, security vulnerabilities (XSS, CSRF), performance issues, accessibility (WCAG), React best practices,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "code-review. Frontend-focused code review skill for React/TypeScript/Tailwind projects. Analyzes code quality, security vulnerabilities (XSS, CSRF), performance issues, accessibility (WCAG), React best practices, Platforms: claude_code."} +{"id": "a507521159f9113cce4c69c2445b0396ca7ba845cc954e3d2d3d7db29773d6d9", "repo_url": "https://github.com/congdon1207/agents.md", "name": "plan-analysis", "description": "Use when the user provides an implementation plan file and asks to analyze it, assess impact, update specifications, or verify planned changes. Triggers on keywords like \"analyze plan\", \"implementatio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/plan-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "plan-analysis. Use when the user provides an implementation plan file and asks to analyze it, assess impact, update specifications, or verify planned changes. Triggers on keywords like \"analyze plan\", \"implementatio Platforms: claude_code."} +{"id": "7edb51c0e593d17163bc9d18843048176681466e700e598ebee30d104ec55982", "repo_url": "https://github.com/s-hiraoku/vscode-sidebar-terminal", "name": "push", "description": "Push current branch changes to origin and create or update the corresponding pull request; use when asked to push, publish updates, or create pull request.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/s-hiraoku/vscode-sidebar-terminal/blob/main/.codex/skills/push/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T22:03:01Z"}, "embedding_text": "push. Push current branch changes to origin and create or update the corresponding pull request; use when asked to push, publish updates, or create pull request. Platforms: claude_code."} +{"id": "39cd1616df907b1509a9610e0480e88d8a6eb402feab8b6c6d461149f32b781b", "repo_url": "https://github.com/sendaifun/skills", "name": "drift", "description": "Complete Drift Protocol SDK for building perpetual futures, spot trading, and DeFi applications on Solana. Use when building trading bots, integrating Drift markets, managing positions, or working wit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/arcium/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "drift. Complete Drift Protocol SDK for building perpetual futures, spot trading, and DeFi applications on Solana. Use when building trading bots, integrating Drift markets, managing positions, or working wit Platforms: claude_code."} +{"id": "2524ebee9e53944a4d8ac09cce3830acbf10d5e4fde505ea8164319bfd8ce699", "repo_url": "https://github.com/ldayton/dippy", "name": "debug", "description": "Debug incorrect Dippy approval or block behavior", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ldayton/dippy/blob/main/.claude/skills/debug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 239, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T10:38:05Z"}, "embedding_text": "debug. Debug incorrect Dippy approval or block behavior Platforms: claude_code."} +{"id": "00df60cf2c396857908eae0efeaedfa59f63e30506116e5230422aef6e4aaf42", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "howto-code-in-typescript", "description": "Use when writing TypeScript code, reviewing TS implementations, or making decisions about type declarations, function styles, or naming conventions - comprehensive house style covering type vs interfa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-house-style/skills/howto-code-in-typescript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "howto-code-in-typescript. Use when writing TypeScript code, reviewing TS implementations, or making decisions about type declarations, function styles, or naming conventions - comprehensive house style covering type vs interfa Platforms: claude_code."} +{"id": "75d06bad47233edaa8bd57097d5bc897759b33e25310b2d502fbae269a9316a8", "repo_url": "https://github.com/buyoung/skills", "name": "linear-issue-reviewer", "description": "Review completed Linear sub-issues: cross-validate Done Criteria, code changes, and worker comments to approve, request changes, or ask for clarification. Use when asked to review, validate, or QA don", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/linear-issue-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "linear-issue-reviewer. Review completed Linear sub-issues: cross-validate Done Criteria, code changes, and worker comments to approve, request changes, or ask for clarification. Use when asked to review, validate, or QA don Platforms: claude_code."} +{"id": "bd51c4b9b269c810355025764116567de6cba59baf66f3c613c8943397d19d84", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "theme-factory", "description": "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 t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "theme-factory. 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 t Platforms: claude_code."} +{"id": "f1d4ccba2d8be5624b7cfe999328611be0b08f965489728cee4fefd380f16cac", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "ionic-appflow-migration", "description": "Guides the agent through migrating an existing Ionic or Capacitor project away from Ionic Appflow. Use when detecting Appflow live updates, cloud builds, or store deployment flows and replacing them w", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-migrations/skills/ionic-appflow-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "ionic-appflow-migration. Guides the agent through migrating an existing Ionic or Capacitor project away from Ionic Appflow. Use when detecting Appflow live updates, cloud builds, or store deployment flows and replacing them w Platforms: claude_code."} +{"id": "a80269b9148a742a3cae3e6fe71fbfc0312df5ebb06986d4b691e22dce0c7372", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "refactor-module", "description": "Transform monolithic Terraform configurations into reusable, maintainable modules following HashiCorp's module design principles and community best practices.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/module-generation/skills/refactor-module/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refactor-module"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T15:48:31Z"}, "embedding_text": "refactor-module. Transform monolithic Terraform configurations into reusable, maintainable modules following HashiCorp's module design principles and community best practices. Platforms: claude_code."} +{"id": "2d4015680dd263cb757c795396fbdc90a15098e1b5502ac11d89b46c15c906cb", "repo_url": "https://github.com/dariushoule/x64dbg-skills", "name": "decompile", "description": "Decompile a function to C-like pseudocode using angr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dariushoule/x64dbg-skills/blob/main/skills/decompile/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 186, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T19:32:18Z"}, "embedding_text": "decompile. Decompile a function to C-like pseudocode using angr Platforms: claude_code."} +{"id": "5b2a38ac1a6ae174b6ccddfebdeda3c8529bf4fbea16c3c444f5afdfb13e5783", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capgo-cloud", "description": "Umbrella skill for Capgo cloud workflows. Use when the user needs native builds, OTA releases, store publishing, or organization-level Capgo operations and the request spans more than one Capgo workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capgo-cloud/skills/capgo-cloud/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capgo-cloud. Umbrella skill for Capgo cloud workflows. Use when the user needs native builds, OTA releases, store publishing, or organization-level Capgo operations and the request spans more than one Capgo workfl Platforms: claude_code."} +{"id": "9874c0f7f03cc14764a4c2c1abb20656e165203827e81dcf3de8e8cf9d912bdc", "repo_url": "https://github.com/joshp123/xuezh", "name": "chinese-learning-orchestrator", "description": "Teach Mandarin using an LLM-first pedagogy, backed by a ZFC/Unix-style local engine (`xuezh`) that stores facts, runs mechanical transforms, and produces bounded reports/audio artifacts. Use for revie", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joshp123/xuezh/blob/main/skills/chinese-learning-orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T19:19:21Z"}, "embedding_text": "chinese-learning-orchestrator. Teach Mandarin using an LLM-first pedagogy, backed by a ZFC/Unix-style local engine (`xuezh`) that stores facts, runs mechanical transforms, and produces bounded reports/audio artifacts. Use for revie Platforms: claude_code."} +{"id": "c8b67867c934fbb2359089a2ceae9fc7bb5bf549746cf4a4ffec116639df71a2", "repo_url": "https://github.com/buyoung/skills", "name": "linear-issue-creator", "description": "Create structured Linear issues (main + sub-issues) with project linking, title prefix, and labeling. Use when asked to create, register, or break down tasks into Linear issues. Not for querying or up", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/linear-issue-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "linear-issue-creator. Create structured Linear issues (main + sub-issues) with project linking, title prefix, and labeling. Use when asked to create, register, or break down tasks into Linear issues. Not for querying or up Platforms: claude_code."} +{"id": "8c30555f0fd3317bbc11ef5ad1c0afbcf0e36f43fe0621cdcc408e33fdfbc6b3", "repo_url": "https://github.com/team-attention/hoyeon", "name": "execute", "description": "Spec-driven orchestrator that reads spec.json via cli, routes by meta.type,\nand dispatches agents/skills accordingly.\nspec.json-native execution (no PLAN.md).\nUse when: \"/execute\", \"execute\", \"\uc2e4\ud589\ud574\uc918\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/codex/skills/hoyeon-execute/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "execute. Spec-driven orchestrator that reads spec.json via cli, routes by meta.type,\nand dispatches agents/skills accordingly.\nspec.json-native execution (no PLAN.md).\nUse when: \"/execute\", \"execute\", \"\uc2e4\ud589\ud574\uc918\", Platforms: claude_code."} +{"id": "78f40053f5100abcc63e98630abcacb3ff28372476429dddd35ebb5c88207087", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "dev-to-hashnode", "description": "When the user wants to publish on Dev.to, Hashnode, or other developer blogging platforms. Trigger phrases include \"Dev.to,\" \"Hashnode,\" \"developer blog,\" \"cross-posting,\" \"technical blogging,\" \"canon", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/dev-to-hashnode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "dev-to-hashnode. When the user wants to publish on Dev.to, Hashnode, or other developer blogging platforms. Trigger phrases include \"Dev.to,\" \"Hashnode,\" \"developer blog,\" \"cross-posting,\" \"technical blogging,\" \"canon Platforms: claude_code."} +{"id": "ce14e08d79addbd2342d9a635615f8893d9a1fec1f23001d5729273f5cc50bbd", "repo_url": "https://github.com/buyoung/skills", "name": "linear-issue-worker", "description": "Execute code tasks from Linear sub-issues: resolve dependencies, implement changes, validate Done Criteria, and sync status. Use when asked to work on, implement, or start coding a Linear issue (e.g.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/linear-issue-worker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "linear-issue-worker. Execute code tasks from Linear sub-issues: resolve dependencies, implement changes, validate Done Criteria, and sync status. Use when asked to work on, implement, or start coding a Linear issue (e.g. Platforms: claude_code."} +{"id": "244c2051a2b14678b9291e1c6eccd1ffee59050f841981cedfc21ae92ed24991", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "worker", "description": "Autonomous ticket execution \u2014 polls a provider, picks up ready tickets, and runs the full ERNE pipeline (validate, plan, code, test, review, PR).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/erne-worker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "worker. Autonomous ticket execution \u2014 polls a provider, picks up ready tickets, and runs the full ERNE pipeline (validate, plan, code, test, review, PR). Platforms: claude_code."} +{"id": "587a36d5f0d3fe63159edcd5eced471c80e03b3691e9ee42893d13eeb72864af", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "testing-strategies", "description": "Strategic guidance for choosing and implementing testing approaches across the test pyramid. Use when building comprehensive test suites that balance unit, integration, E2E, and contract testing for optimal speed and confidence. Covers multi-language patterns (TypeScript, Python, Go, Rust) and modern best practices including property-based testing, test data management, and CI/CD integration.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/testing-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-strategies"}, "quality": {"stars": 375, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "testing-strategies. Strategic guidance for choosing and implementing testing approaches across the test pyramid. Use when building comprehensive test suites that balance unit, integration, E2E, and contract testing for optimal speed and confidence. Covers multi-language patterns (TypeScript, Python, Go, Rust) and modern best practices including property-based testing, test data management, and CI/CD integration. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} +{"id": "05aa9257b271de7582fa6ceadb6ed5b73ea351118f8be144b9aec69b67eb1535", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-plugin-upgrade-v7-to-v8", "description": "Guides the agent through upgrading a Capacitor plugin from v7 to v8. Use when the plugin targets Capacitor 7 and needs the v8 migration path. Do not use for app upgrades, other major versions, or non-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-plugin-dev/skills/capacitor-plugin-upgrade-v7-to-v8/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-plugin-upgrade-v7-to-v8. Guides the agent through upgrading a Capacitor plugin from v7 to v8. Use when the plugin targets Capacitor 7 and needs the v8 migration path. Do not use for app upgrades, other major versions, or non- Platforms: claude_code."} +{"id": "73ffb99b703a8fa836538e049758984892037d59cce5a96c4e10789eaad63d04", "repo_url": "https://github.com/coollabsio/coolify-docs", "name": "adding-service-documentation", "description": "Documents new Coolify one-click services by creating markdown pages in docs/services/, downloading logos to docs/public/images/services/, and updating List.vue catalog. Use when adding service documen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/coollabsio/coolify-docs/blob/v4.x/.claude/skills/adding-service-documentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T02:08:02Z"}, "embedding_text": "adding-service-documentation. Documents new Coolify one-click services by creating markdown pages in docs/services/, downloading logos to docs/public/images/services/, and updating List.vue catalog. Use when adding service documen Platforms: claude_code."} +{"id": "0a29dfef0c30057952eea461a43c78901f5ab5a4cd9fda7d5dce18c13f9a764c", "repo_url": "https://github.com/jmanhype/claude-code-plugin-marketplace", "name": "generate-appworld-code", "description": "Generate Python code to solve AppWorld agent tasks using playbook bullet guidance. Use when the AppWorld executor needs executable Python code for tasks involving Spotify, Venmo, Gmail, Calendar, Cont", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jmanhype/claude-code-plugin-marketplace/blob/main/plugins/ace-context-engineering/skills/generate-appworld-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:09:29Z"}, "embedding_text": "generate-appworld-code. Generate Python code to solve AppWorld agent tasks using playbook bullet guidance. Use when the AppWorld executor needs executable Python code for tasks involving Spotify, Venmo, Gmail, Calendar, Cont Platforms: claude_code."} +{"id": "b1609dfe73a8ed192c96cfaef19064e0e3cc9dc33e6d8d2b22c8e66e8471cf79", "repo_url": "https://github.com/congdon1207/agents.md", "name": "branch-comparison", "description": "Use when the user asks to compare branches, analyze git diffs, review changes between branches, update specifications based on code changes, or analyze what changed. Triggers on keywords like \"compare", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.agent/skills/api-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "branch-comparison. Use when the user asks to compare branches, analyze git diffs, review changes between branches, update specifications based on code changes, or analyze what changed. Triggers on keywords like \"compare Platforms: claude_code."} +{"id": "7a78fbf91e9449411d6583ec2142242533e4c625ffade64100c38b828d794eae", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "building-sales-team", "description": "Build an early sales team and operating cadence (readiness gate, hiring plan, role scorecards, interview loop, onboarding/ramp). Use for first AE/SDR hires, seed\u2192Series A sales team build, and product", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/building-sales-team/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "building-sales-team. Build an early sales team and operating cadence (readiness gate, hiring plan, role scorecards, interview loop, onboarding/ramp). Use for first AE/SDR hires, seed\u2192Series A sales team build, and product Platforms: claude_code."} +{"id": "94b47289e34cd33ba96e039de7df724f1267e89ac16a7b5049db3a9a8c88c09d", "repo_url": "https://github.com/sendaifun/skills", "name": "debridge", "description": "Complete deBridge Protocol SDK for building cross-chain bridges, message passing, and token transfers on Solana. Use when building cross-chain applications, bridging assets between Solana and EVM chains, or implementing trustless external calls.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/debridge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debridge"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "debridge. Complete deBridge Protocol SDK for building cross-chain bridges, message passing, and token transfers on Solana. Use when building cross-chain applications, bridging assets between Solana and EVM chains, or implementing trustless external calls. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "8310b42e980fbc1020a6bade3cdde43333c2f267a3d2272a8d0965619856fcd6", "repo_url": "https://github.com/shawnpana/aurl", "name": "aurl", "description": "Turn any API into a CLI command. Register OpenAPI or GraphQL endpoints by name, then explore and invoke them. Built for AI agents to use APIs like tool calls.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shawnpana/aurl/blob/main/skills/aurl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 159, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T02:27:04Z"}, "embedding_text": "aurl. Turn any API into a CLI command. Register OpenAPI or GraphQL endpoints by name, then explore and invoke them. Built for AI agents to use APIs like tool calls. Platforms: claude_code."} +{"id": "b7af073aff391f63bdcf11cca7f39ec4eae622678f9ffa485d5710e0215d42bc", "repo_url": "https://github.com/vechain/inspector-app", "name": "prd", "description": "Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan thi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vechain/inspector-app/blob/master/.claude/skills/prd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:34:50Z"}, "embedding_text": "prd. Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan thi Platforms: claude_code."} +{"id": "3215c03f2be76aecb0bfce495f95c14368a5c847da3e54e45692a4398f46b337", "repo_url": "https://github.com/bkircher/skills", "name": "jira-write-ticket", "description": "Use when asked to write a Jira ticket.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bkircher/skills/blob/main/jira-write-ticket/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-13T12:23:43Z"}, "embedding_text": "jira-write-ticket. Use when asked to write a Jira ticket. Platforms: claude_code."} +{"id": "d285332faa3f3c2ca095067879d9220bdba8398f4dc4fda7a14d92faf591cd80", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "devrel-content", "description": "When the user wants to create technical content for developers including blog posts, tutorials, and documentation. Trigger phrases include \"write a blog post,\" \"technical article,\" \"developer content,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/devrel-content/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "devrel-content. When the user wants to create technical content for developers including blog posts, tutorials, and documentation. Trigger phrases include \"write a blog post,\" \"technical article,\" \"developer content, Platforms: claude_code."} +{"id": "5033ec83bd074ada8bd1638f1068309d0deca5085bc1b824f9245cbdc87e5e7f", "repo_url": "https://github.com/dceoy/speckit-agent-skills", "name": "speckit-constitution", "description": "Create or update the project constitution from interactive or provided principle inputs, ensuring all dependent templates stay in sync.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dceoy/speckit-agent-skills/blob/main/skills/speckit-constitution/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:26:30Z"}, "embedding_text": "speckit-constitution. Create or update the project constitution from interactive or provided principle inputs, ensuring all dependent templates stay in sync. Platforms: claude_code."} +{"id": "58e53db02ea9819308a5af2d4cced94152175ccabaf749dbfd5826c137e1d1e4", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "building-a-promotion-case", "description": "Build a promotion case and produce a Promotion Case Pack (target role + timeline, ladder mapping, evidence log, impact narrative, manager alignment plan, sponsor/visibility map, submission-ready promo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/building-a-promotion-case/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "building-a-promotion-case. Build a promotion case and produce a Promotion Case Pack (target role + timeline, ladder mapping, evidence log, impact narrative, manager alignment plan, sponsor/visibility map, submission-ready promo Platforms: claude_code."} +{"id": "8170e12f993ad40ae929af3c7b3f7a4b6453d20bc57810caec326e6ca49af11f", "repo_url": "https://github.com/letta-ai/lettabot", "name": "apple-reminders", "description": "Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/apple-reminders/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "apple-reminders. Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output. Platforms: claude_code."} +{"id": "4333f2528de5a81b4bc25c031da979ab03fd6a9c7a7a38f90cbdc67600ceef24", "repo_url": "https://github.com/nahisaho/musubi", "name": "agent-assistant", "description": "Agent assistance skill that provides stuck detection, memory management, and session learning capabilities for AI agents\n\nTrigger terms: agent stuck, loop detected, session memory, agent learning, con", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/src/templates/agents/claude-code/skills/agent-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "agent-assistant. Agent assistance skill that provides stuck detection, memory management, and session learning capabilities for AI agents\n\nTrigger terms: agent stuck, loop detected, session memory, agent learning, con Platforms: claude_code."} +{"id": "e70c1238460ae39cb8dea0b41bb131f64ae53269f25b382edb794b12613773d4", "repo_url": "https://github.com/spirimirror/libuipc", "name": "document", "description": "Documentation style guide and rules for creating documentation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spirimirror/libuipc/blob/main/.cursor/skills/document/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:12:46Z"}, "embedding_text": "document. Documentation style guide and rules for creating documentation Platforms: claude_code."} +{"id": "1131d85e391fce1ac23da27a413e118a6206ad60f342365091484f7db04e6110", "repo_url": "https://github.com/tddworks/claude-skills", "name": "appstore-info-generator", "description": "Generate comprehensive App Store listing documentation for iOS/macOS apps with multilingual support. Use when (1) Creating App Store listing content for a new app, (2) Generating multilingual App Stor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tddworks/claude-skills/blob/main/skills/appstore-info-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 35, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T08:00:41Z"}, "embedding_text": "appstore-info-generator. Generate comprehensive App Store listing documentation for iOS/macOS apps with multilingual support. Use when (1) Creating App Store listing content for a new app, (2) Generating multilingual App Stor Platforms: claude_code."} +{"id": "f3a4769526a1502ff9ffe87e0e24e8b1e6277aad1e53b67529f468195a4f91c9", "repo_url": "https://github.com/kevmoo/dash_skills", "name": "dart-doc-validation", "description": "Best practices for validating Dart documentation comments.\nCovers using `dart doc` to catch unresolved references and macros.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevmoo/dash_skills/blob/main/skills/dart-doc-validation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 138, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T08:00:20Z"}, "embedding_text": "dart-doc-validation. Best practices for validating Dart documentation comments.\nCovers using `dart doc` to catch unresolved references and macros. Platforms: claude_code."} +{"id": "5f249820718aed490c550b25eac8240afb449dda62d778f5a005ea2268989546", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "canvas-design", "description": "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 ori", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "canvas-design. 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 ori Platforms: claude_code."} +{"id": "62442c35db06a200dacd68ca665aa42ae91a6a1b9ec2e7e5d2a96b49fb61b28c", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "cosmic-database", "description": "Access COSMIC cancer mutation database. Query somatic mutations, Cancer Gene Census, mutational signatures, gene fusions, for cancer research and precision oncology. Requires authentication.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/claude-scientific-skills/scientific-skills/cosmic-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cosmic-database"}, "quality": {"stars": 240, "skillhub_rank": "A", "skillhub_score": 8.2, "last_updated": "2026-04-30T19:30:43Z"}, "embedding_text": "cosmic-database. Access COSMIC cancer mutation database. Query somatic mutations, Cancer Gene Census, mutational signatures, gene fusions, for cancer research and precision oncology. Requires authentication. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} +{"id": "c45642de6e6682cccf6153b2c5d2d1e6900417f497b3de25d61759b9eae2ba46", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "git-hooks", "description": "Central authority on git hook implementations, modern best practices, and tooling for .NET/C#, JavaScript/TypeScript, Python, and polyglot repositories. Covers framework selection (Husky.Net, lefthook", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/github-specialist/git-hooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "git-hooks. Central authority on git hook implementations, modern best practices, and tooling for .NET/C#, JavaScript/TypeScript, Python, and polyglot repositories. Covers framework selection (Husky.Net, lefthook Platforms: claude_code."} +{"id": "e0d760c65c4234ea47e17e44ee642299c4b805ad678217e2c9632dbb0d5e7eb7", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "github-issues", "description": "Query and search GitHub issues using gh CLI with web fallback. Supports filtering by labels, state, assignees, and full-text search. Use when troubleshooting errors, checking if an issue is already re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/github-specialist/github-issues/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "github-issues. Query and search GitHub issues using gh CLI with web fallback. Supports filtering by labels, state, assignees, and full-text search. Use when troubleshooting errors, checking if an issue is already re Platforms: claude_code."} +{"id": "0b709fd2609046f836862298bf9f37115137d0f811531880fc32282c0564423f", "repo_url": "https://github.com/feiskyer/codex-settings", "name": "spec-kit-skill", "description": "GitHub Spec-Kit integration for constitution-based spec-driven development. 7-phase workflow (constitution, specify, clarify, plan, tasks, analyze, implement). Use when working with spec-kit CLI, .specify/ directories, or creating specifications with constitution-driven development. Triggered by \"spec-kit\", \"speckit\", \"constitution\", \"specify\", references to .specify/ directory, or spec-kit commands.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "litellm", "openai", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/codex-settings/blob/main/skills/spec-kit-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install spec-kit-skill"}, "quality": {"stars": 211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-09T01:37:32Z"}, "embedding_text": "spec-kit-skill. GitHub Spec-Kit integration for constitution-based spec-driven development. 7-phase workflow (constitution, specify, clarify, plan, tasks, analyze, implement). Use when working with spec-kit CLI, .specify/ directories, or creating specifications with constitution-driven development. Triggered by \"spec-kit\", \"speckit\", \"constitution\", \"specify\", references to .specify/ directory, or spec-kit commands. Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, litellm, openai, spec-driven-development, vibe-coding. Platforms: claude_code."} +{"id": "767cb004213d22f0eff2be7556f4b5976a332f9cd47e328b1aa656fa1d6dd088", "repo_url": "https://github.com/michaelliv/cc-dejavu", "name": "ingest-codebase", "description": "Guide the creation of a high-quality mental model for a codebase. Use when starting a new mental model, when the model feels incomplete or unclear, or when onboarding to understand a system's architec", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/michaelliv/cc-dejavu/blob/main/.claude/skills/ingest-codebase/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T19:35:53Z"}, "embedding_text": "ingest-codebase. Guide the creation of a high-quality mental model for a codebase. Use when starting a new mental model, when the model feels incomplete or unclear, or when onboarding to understand a system's architec Platforms: claude_code."} +{"id": "770ced148f84fbdda478096bbbebc5aff6bdfd69c63702702de28ba1d0c9e8b5", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "proof-driven", "description": "Proof-driven development with Lean 4 - design proofs from requirements, then execute CREATE -> VERIFY -> REMEDIATE cycle. Use when implementing with formal verification using Lean 4 theorems, lemmas, and proof tactics; zero-sorry policy enforced.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/proof-driven/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install proof-driven"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "proof-driven. Proof-driven development with Lean 4 - design proofs from requirements, then execute CREATE -> VERIFY -> REMEDIATE cycle. Use when implementing with formal verification using Lean 4 theorems, lemmas, and proof tactics; zero-sorry policy enforced. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "d0f26d3080e67ca89cfcdc8e3f700633ecf1444462b3c0b98bb5ddc73c95c12d", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "askme", "description": "Verbalized Sampling (VS) protocol for deep intent exploration before planning. Use when starting ambiguous or complex tasks, when multiple interpretations exist, or when you need to explore diverse intent hypotheses and ask maximum clarifying questions before committing to an approach.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/askme/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install askme"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "askme. Verbalized Sampling (VS) protocol for deep intent exploration before planning. Use when starting ambiguous or complex tasks, when multiple interpretations exist, or when you need to explore diverse intent hypotheses and ask maximum clarifying questions before committing to an approach. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "05537e8ec6a7e06ee1a8a6ce9ce4cdd875bd021cb8cfc5dbf4cfa87aaadbfc20", "repo_url": "https://github.com/hellanglez/burn-in-cceverywhere-codex", "name": "ralph", "description": "Convert PRDs to prd.json format for the Ralph autonomous agent system. Use when you have an existing PRD and need to convert it to Ralph's JSON format. Triggers on convert this prd, turn this into ral", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hellanglez/burn-in-cceverywhere-codex/blob/main/skills/ralph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T15:31:18Z"}, "embedding_text": "ralph. Convert PRDs to prd.json format for the Ralph autonomous agent system. Use when you have an existing PRD and need to convert it to Ralph's JSON format. Triggers on convert this prd, turn this into ral Platforms: claude_code."} +{"id": "1f6b7ae364f0f144569429d763ea4f1b5e434e4f7210a806b28547a49171ab2d", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "agile-product-owner", "description": "Agile product ownership toolkit for Senior Product Owner including INVEST-compliant user story generation, sprint planning, backlog management, and velocity tracking. Use for story writing, sprint pla", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/product-team/agile-product-owner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "agile-product-owner. Agile product ownership toolkit for Senior Product Owner including INVEST-compliant user story generation, sprint planning, backlog management, and velocity tracking. Use for story writing, sprint pla Platforms: claude_code."} +{"id": "7af6fd9437f838a4130df0692340ca984000a5b819c60bcd5f77638c253da71d", "repo_url": "https://github.com/nahisaho/musubi", "name": "traceability-auditor", "description": "Validates complete requirements traceability across EARS requirements \u2192 design \u2192 tasks \u2192 code \u2192 tests.\n\nTrigger terms: traceability, requirements coverage, coverage matrix, traceability matrix,\nrequir", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/traceability-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "traceability-auditor. Validates complete requirements traceability across EARS requirements \u2192 design \u2192 tasks \u2192 code \u2192 tests.\n\nTrigger terms: traceability, requirements coverage, coverage matrix, traceability matrix,\nrequir Platforms: claude_code."} +{"id": "d21e55627da71cb6ba45124efcdd0166603f007dfec027ce47b2144a796989cf", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "supabase", "description": "Manage Supabase projects, databases, migrations, Edge Functions, and storage using the `supabase` CLI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/supabase/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "supabase. Manage Supabase projects, databases, migrations, Edge Functions, and storage using the `supabase` CLI. Platforms: claude_code."} +{"id": "508179332a834b7f13ebe383f323dd0c6c07d39f94773a96db9607ccd2fd317f", "repo_url": "https://github.com/reggiechan74/vp-real-estate", "name": "lease-compliance-auditor", "description": "Expert in lease compliance monitoring and obligation tracking. Use when auditing insurance requirements, verifying environmental compliance, checking use clause adherence, or monitoring covenant compl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reggiechan74/vp-real-estate/blob/main/plugins/leasing-commercial/skills/lease-compliance-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T22:17:46Z"}, "embedding_text": "lease-compliance-auditor. Expert in lease compliance monitoring and obligation tracking. Use when auditing insurance requirements, verifying environmental compliance, checking use clause adherence, or monitoring covenant compl Platforms: claude_code."} +{"id": "547ea12133fbdcb0b3bf8bd27693cab5e2dd10151764258c3378a920b2e34214", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "detect-freight-led-inflation-turn", "description": "\u900f\u904e\u7f8e\u570b\u5361\u65af\u8ca8\u904b\u6307\u6578 (CASS Freight Index) \u7684\u9031\u671f\u8f49\u6298\uff0c\u5075\u6e2c\u7f8e\u570b\u901a\u81a8\u58d3\u529b\u662f\u5426\u9032\u5165\u653e\u7de9\u6216\u53cd\u8f49\u968e\u6bb5\u3002\u7528\u65bc\u5224\u65b7\u300c\u901a\u81a8\u662f\u5426\u6b63\u5728\u964d\u6eab\u300d\uff0c\u4e26\u9a57\u8b49\u5e02\u5834\u5c0d\u964d\u606f\u3001\u901a\u81a8\u56de\u843d\u7684\u5b8f\u89c0\u6558\u4e8b\u662f\u5426\u6709\u5be6\u9ad4\u7d93\u6fdf\u6578\u64da\u652f\u6490\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/ti/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "detect-freight-led-inflation-turn. \u900f\u904e\u7f8e\u570b\u5361\u65af\u8ca8\u904b\u6307\u6578 (CASS Freight Index) \u7684\u9031\u671f\u8f49\u6298\uff0c\u5075\u6e2c\u7f8e\u570b\u901a\u81a8\u58d3\u529b\u662f\u5426\u9032\u5165\u653e\u7de9\u6216\u53cd\u8f49\u968e\u6bb5\u3002\u7528\u65bc\u5224\u65b7\u300c\u901a\u81a8\u662f\u5426\u6b63\u5728\u964d\u6eab\u300d\uff0c\u4e26\u9a57\u8b49\u5e02\u5834\u5c0d\u964d\u606f\u3001\u901a\u81a8\u56de\u843d\u7684\u5b8f\u89c0\u6558\u4e8b\u662f\u5426\u6709\u5be6\u9ad4\u7d93\u6fdf\u6578\u64da\u652f\u6490\u3002 Platforms: claude_code."} +{"id": "d6a0a61f97f6bb7d22afd8aebbd55b0dad0bc3f1833400f5b2eea98840942a3d", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "push", "description": "Comprehensive Git push operations including basic push, force push safety protocols, tag pushing, remote management, and troubleshooting. Use when pushing commits, managing remotes, pushing tags, reso", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/github-specialist/push/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "push. Comprehensive Git push operations including basic push, force push safety protocols, tag pushing, remote management, and troubleshooting. Use when pushing commits, managing remotes, pushing tags, reso Platforms: claude_code."} +{"id": "6babf8bd45c5cf9b58f0f51dacc2d4dcaaa2a024c9a7da1cd8380aab84917a71", "repo_url": "https://github.com/scientiacapital/skills", "name": "supabase-sql", "description": "Clean and format SQL migrations for Supabase - idempotency, RLS policies, formatting, schema fixes. Use when: fix this SQL, clean migration, RLS policy, Supabase schema, format postgres, prepare for S", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/supabase-sql-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "supabase-sql. Clean and format SQL migrations for Supabase - idempotency, RLS policies, formatting, schema fixes. Use when: fix this SQL, clean migration, RLS policy, Supabase schema, format postgres, prepare for S Platforms: claude_code."} +{"id": "adf354fcadcbc868ba848f1e813332678187222e4f33cf57a5d4d9a523df9a17", "repo_url": "https://github.com/glebis/claude-skills", "name": "elevenlabs-tts", "description": "This skill converts text to high-quality audio files using ElevenLabs API. Use this skill when users request text-to-speech generation, audio narration, or voice synthesis with customizable voice para", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/elevenlabs-tts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "elevenlabs-tts. This skill converts text to high-quality audio files using ElevenLabs API. Use this skill when users request text-to-speech generation, audio narration, or voice synthesis with customizable voice para Platforms: claude_code."} +{"id": "2dac2a4612ccf2d68ffcad53cd8c4e237149b155fe6610894d5a3bbe73556fd6", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "pdf-generator", "description": "Generate formatted PDF documents with text, tables, and images. Use for reports, documentation, and formal documents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/scientific-skills/skills/document-skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "pdf-generator. Generate formatted PDF documents with text, tables, and images. Use for reports, documentation, and formal documents. Platforms: claude_code."} +{"id": "8f62ded98a0dc5aa87fa9fff4e5d8be24849b3a4444b573fa4d0305219727528", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "design-thinking", "description": "Design Thinking methodology for human-centered innovation. Covers the 5-phase IDEO/Stanford d.school approach (Empathize, Define, Ideate, Prototype, Test) with workshop facilitation and exercise templ", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/design-thinking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "design-thinking. Design Thinking methodology for human-centered innovation. Covers the 5-phase IDEO/Stanford d.school approach (Empathize, Define, Ideate, Prototype, Test) with workshop facilitation and exercise templ Platforms: claude_code."} +{"id": "dc0674ed7d1fdcfe6f10321d56392bb6b04def2d666947d5792b20c5f06fe36f", "repo_url": "https://github.com/kevin-hs-sohn/hipocampus", "name": "hipocampus-recall", "description": "Memory recall guide. Structured retrieval from hipocampus memory \u2014 ROOT.md triage, manifest-based LLM selection, qmd search fallback.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevin-hs-sohn/hipocampus/blob/main/skills/recall/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T19:08:09Z"}, "embedding_text": "hipocampus-recall. Memory recall guide. Structured retrieval from hipocampus memory \u2014 ROOT.md triage, manifest-based LLM selection, qmd search fallback. Platforms: claude_code."} +{"id": "a384a4068d19a13058f356d705d4542d836e7210d9c2409df20d0e56766a0c22", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "weak-signal-synthesizer", "description": "Identify EMERGING trends by connecting dots across unrelated sources. Monitor niche communities, academic research, GitHub, patents, funding, regulatory changes. Predict what will trend in 3-6 months", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/weak-signal-synthesizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "weak-signal-synthesizer. Identify EMERGING trends by connecting dots across unrelated sources. Monitor niche communities, academic research, GitHub, patents, funding, regulatory changes. Predict what will trend in 3-6 months Platforms: claude_code."} +{"id": "a360ae9b98fa3337bc564a6ab375baa40c6f051d53e34913167329ab7aab7c7c", "repo_url": "https://github.com/weaverse/.claude", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/weaverse/.claude/blob/main/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-17T09:35:10Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code Platforms: claude_code."} +{"id": "4eccad57f9346c1298c248695a38b4a1414739b0d62a8e2a565c6805cbc41429", "repo_url": "https://github.com/plurigrid/asi", "name": "signal-messaging", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/signal-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "signal-messaging. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a7a87963d1ac552665d84085fc5e3b3248b20496a92f4323431b758a05ce7b85", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "brainstorming", "description": "You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/brainstorming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "brainstorming. You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation. Platforms: claude_code."} +{"id": "6a1ccc50b14f530e1af1bdd509fbcd3067d3b571e6c0902a4cb9afae8f514735", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "error-debugger", "description": "Analyzes errors, searches past solutions in memory, provides immediate fixes with code examples, and saves solutions for future reference. Use when user says \"debug this\", \"fix this error\", \"why is this failing\", or when error messages appear like TypeError, ECONNREFUSED, CORS, 404, 500, etc.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/error-debugger/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install error-debugger"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "error-debugger. Analyzes errors, searches past solutions in memory, provides immediate fixes with code examples, and saves solutions for future reference. Use when user says \"debug this\", \"fix this error\", \"why is this failing\", or when error messages appear like TypeError, ECONNREFUSED, CORS, 404, 500, etc. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "fe0a34aacf0933450698363c9a688fcd5aeda3d65e84ac61da960c197c52fba8", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "spoonos-platform-integration", "description": "Deploy SpoonOS agents to messaging platforms and APIs. Use when integrating agents with Telegram, Discord, Slack, REST APIs, webhooks, or scheduled tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/spoonos-skills/platform-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "spoonos-platform-integration. Deploy SpoonOS agents to messaging platforms and APIs. Use when integrating agents with Telegram, Discord, Slack, REST APIs, webhooks, or scheduled tasks. Platforms: claude_code."} +{"id": "17ae1f941c0eeaa7e852e1195a52437be5366015a4f3ed78bddaa9a3ed7a5059", "repo_url": "https://github.com/tpmjs/tpmjs", "name": "tpmjs-tool-creator", "description": "Guide for creating official TPMJS tools using the blocks CLI. Use when a user wants to create a new tool for the TPMJS registry, add a tool to packages/tools/official/, implement an AI SDK v6 tool, de", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tpmjs/tpmjs/blob/main/.claude/skills/tpmjs-tool-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:47:23Z"}, "embedding_text": "tpmjs-tool-creator. Guide for creating official TPMJS tools using the blocks CLI. Use when a user wants to create a new tool for the TPMJS registry, add a tool to packages/tools/official/, implement an AI SDK v6 tool, de Platforms: claude_code."} +{"id": "362eef8a32f590b1bdf399033f0123e18773efc12176541654807391623bde18", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "ralph-specum-design", "description": "This skill should be used only when the user explicitly asks to use `$ralph-specum-design`, or explicitly asks Ralph Specum in Codex to run the design phase.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum-codex/skills/ralph-specum-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "ralph-specum-design. This skill should be used only when the user explicitly asks to use `$ralph-specum-design`, or explicitly asks Ralph Specum in Codex to run the design phase. Platforms: claude_code."} +{"id": "245da78387d91aa943ac42ef0f43a434a84d7c6cb6dffd69874960a756658f82", "repo_url": "https://github.com/arvindand/agent-skills", "name": "maven-tools", "description": "JVM dependency intelligence via Maven Tools MCP server. Use when user asks about Java/Kotlin/Scala dependencies, versions, upgrades, CVEs, or licenses. Use when analyzing pom.xml, build.gradle, or any", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arvindand/agent-skills/blob/main/skills/maven-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T22:50:41Z"}, "embedding_text": "maven-tools. JVM dependency intelligence via Maven Tools MCP server. Use when user asks about Java/Kotlin/Scala dependencies, versions, upgrades, CVEs, or licenses. Use when analyzing pom.xml, build.gradle, or any Platforms: claude_code."} +{"id": "401d465d9bb1b1700a37cf896eeca8689df25d85d2e9f0b33da4dafc1cc9edf1", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "heuristic-evaluation", "description": "Conduct heuristic evaluations - Nielsen's 10 heuristics, severity ratings, expert review methodology, cognitive walkthrough, and usability inspection.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/ux-research/heuristic-evaluation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "heuristic-evaluation. Conduct heuristic evaluations - Nielsen's 10 heuristics, severity ratings, expert review methodology, cognitive walkthrough, and usability inspection. Platforms: claude_code."} +{"id": "1169de4d0ec87f5acb0f742e70c5f757985cd1a3f563c70ffbe573d228a58376", "repo_url": "https://github.com/rysweet/microsofthackathon2025-agenticcoding", "name": "anthropologist-analyst", "description": "Analyzes events through anthropological lens using cultural analysis, ethnographic methods, kinship and social organization,\nsymbolic systems, ritual and practice, and comparative ethnology. Provides", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rysweet/microsofthackathon2025-agenticcoding/blob/main/.claude/skills/anthropologist-analyst/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:49:54Z"}, "embedding_text": "anthropologist-analyst. Analyzes events through anthropological lens using cultural analysis, ethnographic methods, kinship and social organization,\nsymbolic systems, ritual and practice, and comparative ethnology. Provides Platforms: claude_code."} +{"id": "9d5febb93c45dd7aed791937ed77fca7f764976ec7ed01e9f0a08ccfe1768ba1", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "ralph-specum-research", "description": "This skill should be used only when the user explicitly asks to use `$ralph-specum-research`, or explicitly asks Ralph Specum in Codex to run the research phase.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum-codex/skills/ralph-specum-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "ralph-specum-research. This skill should be used only when the user explicitly asks to use `$ralph-specum-research`, or explicitly asks Ralph Specum in Codex to run the research phase. Platforms: claude_code."} +{"id": "8791be67d7761faebdc8b86916a87573b568a613dd55daa80a42707b480517b9", "repo_url": "https://github.com/shikajiro/claude-code-skill-example", "name": "pr-and-cleanup", "description": "Create a PR and automatically cleanup the worktree. Keeps local and remote branches intact.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shikajiro/claude-code-skill-example/blob/main/.claude/skills/pr-and-cleanup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 64, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T14:09:02Z"}, "embedding_text": "pr-and-cleanup. Create a PR and automatically cleanup the worktree. Keeps local and remote branches intact. Platforms: claude_code."} +{"id": "75d411a150f2e2c261acd6ccc35722b915e07422b7069bc9b43e316b83e9827d", "repo_url": "https://github.com/deckardger/tanstack-agent-skills", "name": "tanstack-router-best-practices", "description": "TanStack Router best practices for type-safe routing, data loading, search params, and navigation. Activate when building React applications with complex routing needs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deckardger/tanstack-agent-skills/blob/main/skills/tanstack-router/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 185, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T05:02:53Z"}, "embedding_text": "tanstack-router-best-practices. TanStack Router best practices for type-safe routing, data loading, search params, and navigation. Activate when building React applications with complex routing needs. Platforms: claude_code."} +{"id": "c0e0f4e6c196831cad2bd1e1ed5d3e817de4c8e1433dd9bc4bc532acdf81c676", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "binary-re", "description": "Use when you need to run a binary, trace execution, or observe runtime behavior. Runtime analysis via QEMU emulation, GDB debugging, and Frida hooking - syscall tracing (strace), breakpoints, memory inspection, function interception. Keywords - \"run binary\", \"execute\", \"debug\", \"trace syscalls\", \"set breakpoint\", \"qemu\", \"gdb\", \"frida\", \"strace\", \"watch memory\"", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/2389-research/binary-re-dynamic-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install binary-re"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "binary-re. Use when you need to run a binary, trace execution, or observe runtime behavior. Runtime analysis via QEMU emulation, GDB debugging, and Frida hooking - syscall tracing (strace), breakpoints, memory inspection, function interception. Keywords - \"run binary\", \"execute\", \"debug\", \"trace syscalls\", \"set breakpoint\", \"qemu\", \"gdb\", \"frida\", \"strace\", \"watch memory\" Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "7887db2f83de0f4ecfe6b5e81bc4153cff2a6e9667bd0d7c00dd044e91d611d8", "repo_url": "https://github.com/metricasboss/otto", "name": "otto", "description": "\ud83d\udee1\ufe0f GDPR Privacy Guardian (Europe). Detects violations of EU 2016/679, exposed personal data (SSN, emails, phone numbers), tracking without consent, PII in logs, and risks of fines up to \u20ac20M or 4% of", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/metricasboss/otto/blob/main/skills/gdpr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T17:59:41Z"}, "embedding_text": "otto. \ud83d\udee1\ufe0f GDPR Privacy Guardian (Europe). Detects violations of EU 2016/679, exposed personal data (SSN, emails, phone numbers), tracking without consent, PII in logs, and risks of fines up to \u20ac20M or 4% of Platforms: claude_code."} +{"id": "890a3a05ecbce7cba9394467dea8292670c932b57ac9e44d1e1e5fa3e4b8feb8", "repo_url": "https://github.com/intellectronica/agent-skills", "name": "ray-so-code-snippet", "description": "Generate beautiful code snippet images using ray.so. This skill should be used when the user asks to create a code image, code screenshot, code snippet image, or wants to make their code look pretty f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/intellectronica/agent-skills/blob/main/skills/ray-so-code-snippet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 275, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-25T15:31:50Z"}, "embedding_text": "ray-so-code-snippet. Generate beautiful code snippet images using ray.so. This skill should be used when the user asks to create a code image, code screenshot, code snippet image, or wants to make their code look pretty f Platforms: claude_code."} +{"id": "93aceb09c19a2dfd432fb8b656ad913a35d4afbf98348c9a839d50986ebd87d3", "repo_url": "https://github.com/s-hiraoku/vscode-sidebar-terminal", "name": "pull", "description": "Pull latest origin/main into the current local branch and resolve merge conflicts (aka update-branch). Use when Codex needs to sync a feature branch with origin, perform a merge-based update (not reba", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/s-hiraoku/vscode-sidebar-terminal/blob/main/.codex/skills/pull/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T22:03:01Z"}, "embedding_text": "pull. Pull latest origin/main into the current local branch and resolve merge conflicts (aka update-branch). Use when Codex needs to sync a feature branch with origin, perform a merge-based update (not reba Platforms: claude_code."} +{"id": "11abbb04c34313e4ca759660dee3244d67f9cea7b23494ec0cca38276856f560", "repo_url": "https://github.com/ruvnet/claude-flow", "name": "sparc-methodology", "description": "SPARC (Specification, Pseudocode, Architecture, Refinement, Completion) comprehensive development methodology with multi-agent orchestration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruvnet/claude-flow/blob/main/.agents/skills/sparc-methodology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60808, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:09:22Z"}, "embedding_text": "sparc-methodology. SPARC (Specification, Pseudocode, Architecture, Refinement, Completion) comprehensive development methodology with multi-agent orchestration Platforms: claude_code."} +{"id": "f13eca20ef0c7e997e6dba7e4b601599c36c002f787902064d652879ebea0e6b", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "shopify-webhooks", "description": "Receive and verify Shopify webhooks. Use when setting up Shopify webhook handlers, debugging signature verification, or handling store events like orders/create, products/update, or customers/create.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/shopify-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "shopify-webhooks. Receive and verify Shopify webhooks. Use when setting up Shopify webhook handlers, debugging signature verification, or handling store events like orders/create, products/update, or customers/create. Platforms: claude_code."} +{"id": "a152ae687b7aa8a08c94a516bd11a5027aa445fc4af475701ffe7e8c3220021a", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-prop", "description": "BPX `prop` command skill. Read decoded properties or mutate properties in one export.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-prop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-prop. BPX `prop` command skill. Read decoded properties or mutate properties in one export. Platforms: claude_code."} +{"id": "eb7b69e0b21cb7e8a62d7a4a25bc955350031cbab2408b80c272031654996aa1", "repo_url": "https://github.com/scientiacapital/skills", "name": "prospect-research-to-cadence", "description": "End-to-end prospect research pipeline: Apollo enrichment \u2192 personalized email + call scripts \u2192 draft review \u2192 Apollo sequence load. Eliminates manual research bottleneck. Use when: 'research prospect'", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/prospect-research-to-cadence-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "prospect-research-to-cadence. End-to-end prospect research pipeline: Apollo enrichment \u2192 personalized email + call scripts \u2192 draft review \u2192 Apollo sequence load. Eliminates manual research bottleneck. Use when: 'research prospect' Platforms: claude_code."} +{"id": "64314de33495ac1412ad1cd720e2372daa7c42da71480487447014d80240d893", "repo_url": "https://github.com/go-go-golems/docmgr", "name": "cursor-diary", "description": "Keep a tiny-step implementation diary during coding sessions (what changed, why, commands run, failures, and what was learned), with docmgr integration (doc add/relate/changelog). Use when the user as", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/go-go-golems/docmgr/blob/main/.codex/skills/cursor-diary/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T18:37:13Z"}, "embedding_text": "cursor-diary. Keep a tiny-step implementation diary during coding sessions (what changed, why, commands run, failures, and what was learned), with docmgr integration (doc add/relate/changelog). Use when the user as Platforms: claude_code."} +{"id": "9341caf85f77118b19b724341a5cc4fa578893b108031e160a36a37887433cae", "repo_url": "https://github.com/mag123c/toktrack", "name": "verify", "description": "Self-healing verification loop (test \u2192 clippy \u2192 fmt)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mag123c/toktrack/blob/main/.claude/skills/verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 161, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:35:29Z"}, "embedding_text": "verify. Self-healing verification loop (test \u2192 clippy \u2192 fmt) Platforms: claude_code."} +{"id": "c5ba251b6a220079daa44c80b94218fa0d1c95bd4a959cca13db1470e5d6aec8", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-metadata", "description": "BPX `metadata` command skill. Read metadata exports or update root/object metadata key-values.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-metadata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-metadata. BPX `metadata` command skill. Read metadata exports or update root/object metadata key-values. Platforms: claude_code."} +{"id": "ebd890e2a6c2ecaf049040b51c4a9d43119b03b0f204d03e202f23f2b6931eca", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "systematic-debugging", "description": "\u9047\u5230\u4efb\u4f55 bug\u3001\u6d4b\u8bd5\u5931\u8d25\u6216\u5f02\u5e38\u884c\u4e3a\u65f6\u4f7f\u7528\uff0c\u5728\u63d0\u51fa\u4fee\u590d\u65b9\u6848\u4e4b\u524d\u6267\u884c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/systematic-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "systematic-debugging. \u9047\u5230\u4efb\u4f55 bug\u3001\u6d4b\u8bd5\u5931\u8d25\u6216\u5f02\u5e38\u884c\u4e3a\u65f6\u4f7f\u7528\uff0c\u5728\u63d0\u51fa\u4fee\u590d\u65b9\u6848\u4e4b\u524d\u6267\u884c Platforms: claude_code."} +{"id": "a75e8145b540267cca9a22a2efe5e16d28894d11b218a3ea5e5c11d1be2d987a", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-skills", "description": "42 marketing agent skills and plugins for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw, and 6 more coding agents. 7 pods: content, SEO, CRO, channels, growth, intelligence, sales. Foundation conte", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/marketing-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "marketing-skills. 42 marketing agent skills and plugins for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw, and 6 more coding agents. 7 pods: content, SEO, CRO, channels, growth, intelligence, sales. Foundation conte Platforms: claude_code."} +{"id": "24b84fbf575b1e80c9df5ade9634ea82510c73c8a78eed1406d522e65526124a", "repo_url": "https://github.com/peiiii/skild", "name": "alpha", "description": "Alpha sample skill for local testing of install/list flows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/examples/sample-skills/alpha/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "alpha. Alpha sample skill for local testing of install/list flows. Platforms: claude_code."} +{"id": "2b185abef6c441ff8e797084dfde13a35a05ac5b2d219a99e37aa8882ea73676", "repo_url": "https://github.com/johnrogers/claude-swift-engineering", "name": "grdb", "description": "Use when writing raw SQL with GRDB, complex joins across 4+ tables, window functions, ValueObservation for reactive queries, or dropping down from SQLiteData for performance. Direct SQLite access for", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnrogers/claude-swift-engineering/blob/main/plugins/swift-engineering/skills/grdb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 212, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T05:24:16Z"}, "embedding_text": "grdb. Use when writing raw SQL with GRDB, complex joins across 4+ tables, window functions, ValueObservation for reactive queries, or dropping down from SQLiteData for performance. Direct SQLite access for Platforms: claude_code."} +{"id": "a3e49e02a0f0f2aea4b0d69df94567d19be377f66730a8b6451cd253791d86d8", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-localization", "description": "BPX `localization` command skill. Read/query/resolve localization data and edit existing text identities.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-localization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-localization. BPX `localization` command skill. Read/query/resolve localization data and edit existing text identities. Platforms: claude_code."} +{"id": "f3d583d76a1326d95b073aa1881664666019b22257da88a5bc52db9e246d141e", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "skill-creator-anthropic", "description": "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.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/skill-creator-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator-anthropic"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "skill-creator-anthropic. 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. Platforms: claude_code."} +{"id": "a57853e575b4a8b4d92b6435e8543f63f74df243ed159a2ba435565495627fde", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "executing-plans", "description": "\u5f53\u4f60\u6709\u4e00\u4efd\u4e66\u9762\u5b9e\u73b0\u8ba1\u5212\u9700\u8981\u5728\u5355\u72ec\u7684\u4f1a\u8bdd\u4e2d\u6267\u884c\uff0c\u5e76\u8bbe\u6709\u5ba1\u67e5\u68c0\u67e5\u70b9\u65f6\u4f7f\u7528", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/executing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "executing-plans. \u5f53\u4f60\u6709\u4e00\u4efd\u4e66\u9762\u5b9e\u73b0\u8ba1\u5212\u9700\u8981\u5728\u5355\u72ec\u7684\u4f1a\u8bdd\u4e2d\u6267\u884c\uff0c\u5e76\u8bbe\u6709\u5ba1\u67e5\u68c0\u67e5\u70b9\u65f6\u4f7f\u7528 Platforms: claude_code."} +{"id": "e310aeb782146f9f767f0f3b03568623402307f77a6d218bdd44bf3312ee0859", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "competitor-tracking", "description": "Systematic competitor analysis for developer tools. Track features, pricing, positioning,\ncontent strategy, and community sentiment for direct and indirect competitors.\n\nTrigger phrases: \"competitor a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/competitor-tracking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "competitor-tracking. Systematic competitor analysis for developer tools. Track features, pricing, positioning,\ncontent strategy, and community sentiment for direct and indirect competitors.\n\nTrigger phrases: \"competitor a Platforms: claude_code."} +{"id": "8356bd0bd910925d2622d7420196be6696706e930c6908a1d57d4ab38756dcfa", "repo_url": "https://github.com/wayne930242/reflexive-claude-code", "name": "project-discovery", "description": "Deep project analysis for architecture planning. Use when starting migration or designing new agent components for an unfamiliar codebase.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wayne930242/reflexive-claude-code/blob/main/plugins/aref/skills/analyzing-codebases/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-04T06:54:19Z"}, "embedding_text": "project-discovery. Deep project analysis for architecture planning. Use when starting migration or designing new agent components for an unfamiliar codebase. Platforms: claude_code."} +{"id": "ea5e3357affb7aa111a9cee02237fd253bef9303a3f415ec3083477e4df79832", "repo_url": "https://github.com/inferencesh/skills", "name": "javascript-sdk", "description": "JavaScript/TypeScript SDK for inference.sh - run AI apps, build agents, integrate 150+ models.\nPackage: @inferencesh/sdk (npm install). Full TypeScript support, streaming, file uploads.\nBuild agents w", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inferencesh/skills/blob/main/sdk/javascript-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 555, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "javascript-sdk. JavaScript/TypeScript SDK for inference.sh - run AI apps, build agents, integrate 150+ models.\nPackage: @inferencesh/sdk (npm install). Full TypeScript support, streaming, file uploads.\nBuild agents w Platforms: claude_code."} +{"id": "ebcc5c2668d9896a4a7912ad0a461574d25b96c6dfa3a148d3aa776dfa35193d", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "implementation-planning", "description": "Use when you have specifications or requirements for multi-step implementation tasks requiring comprehensive documentation for handoff", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-planning/skills/implementation-planning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "implementation-planning. Use when you have specifications or requirements for multi-step implementation tasks requiring comprehensive documentation for handoff Platforms: claude_code."} +{"id": "ff0d253dc95510d7db9e05a993bf1f267e5373250613e662f200c28484e45c31", "repo_url": "https://github.com/apollographql/skills", "name": "skill-creator", "description": "Guide for creating effective skills for Apollo GraphQL and GraphQL development. Use this skill when: (1) users want to create a new skill, (2) users want to update an existing skill, (3) users ask abo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/apollographql/skills/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 86, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:14:23Z"}, "embedding_text": "skill-creator. Guide for creating effective skills for Apollo GraphQL and GraphQL development. Use this skill when: (1) users want to create a new skill, (2) users want to update an existing skill, (3) users ask abo Platforms: claude_code."} +{"id": "cfb353eacef4e944df933216fd106b7dcf27453d545fe89463a0c304330d1fec", "repo_url": "https://github.com/staruhub/claudeskills", "name": "code-review", "description": "Frontend-focused code review skill for React/TypeScript/Tailwind projects. Analyzes code quality, security vulnerabilities (XSS, CSRF), performance issues, accessibility (WCAG), React best practices,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/staruhub/claudeskills/blob/main/llm-wiki/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 456, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T11:10:53Z"}, "embedding_text": "code-review. Frontend-focused code review skill for React/TypeScript/Tailwind projects. Analyzes code quality, security vulnerabilities (XSS, CSRF), performance issues, accessibility (WCAG), React best practices, Platforms: claude_code."} +{"id": "2bd0d497504e3381592ca5571262223fe0490ee97f5a13cf5c83ab945d56ea1e", "repo_url": "https://github.com/inferencesh/skills", "name": "python-sdk", "description": "Python SDK for inference.sh - run AI apps, build agents, and integrate with 150+ models.\nPackage: inferencesh (pip install inferencesh). Supports sync/async, streaming, file uploads.\nBuild agents with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inferencesh/skills/blob/main/sdk/python-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 555, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "python-sdk. Python SDK for inference.sh - run AI apps, build agents, and integrate with 150+ models.\nPackage: inferencesh (pip install inferencesh). Supports sync/async, streaming, file uploads.\nBuild agents with Platforms: claude_code."} +{"id": "0bb11824d9ce57a743f9d110d10f8ed365b8b9bfac844d8a0d7a57df551c04f4", "repo_url": "https://github.com/dotnet/skills", "name": "dotnet-trace-collect", "description": "Guide developers through capturing diagnostic artifacts to diagnose production .NET performance issues. Use when the user needs help choosing diagnostic tools, collecting performance data, or understanding tool trade-offs across different environments (Windows/Linux, .NET Framework/modern .NET, container/non-container).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-diag/skills/dotnet-trace-collect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dotnet-trace-collect"}, "quality": {"stars": 3455, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:58:53Z"}, "embedding_text": "dotnet-trace-collect. Guide developers through capturing diagnostic artifacts to diagnose production .NET performance issues. Use when the user needs help choosing diagnostic tools, collecting performance data, or understanding tool trade-offs across different environments (Windows/Linux, .NET Framework/modern .NET, container/non-container). Platforms: claude_code."} +{"id": "37183ca9ad95dd27f95a54454846ceb189ae420599cdac934610c4fd7744cf1f", "repo_url": "https://github.com/malob/nix-config", "name": "docx", "description": "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.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx"}, "quality": {"stars": 460, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:26:28Z"}, "embedding_text": "docx. 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. Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} +{"id": "3e397a0139857956b040df7ce91dc9f29152fca4b2d6515c3c52d5df2e32df90", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "product-lead", "description": "Product consultation for Conductor orchestrator. Clarifies scope, interprets ambiguous requirements, prioritizes features within a track. Can make scope interpretations that don't change deliverables.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/leads/product-lead/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "product-lead. Product consultation for Conductor orchestrator. Clarifies scope, interprets ambiguous requirements, prioritizes features within a track. Can make scope interpretations that don't change deliverables. Platforms: claude_code."} +{"id": "855af04c82153181b8eb6c192e1c2a47aea9736dec2c93e0e0ae28f2dda9b47d", "repo_url": "https://github.com/tencent/weknora", "name": "\u6587\u6863\u5206\u6790\u5668", "description": "\u6df1\u5ea6\u5206\u6790\u6587\u6863\u7ed3\u6784\u548c\u5185\u5bb9\u3002\u5f53\u7528\u6237\u9700\u8981\u5206\u6790\u6587\u6863\u7ed3\u6784\u3001\u63d0\u53d6\u5173\u952e\u4fe1\u606f\u3001\u8bc6\u522b\u6587\u6863\u7c7b\u578b\u3001\u8fdb\u884c\u5185\u5bb9\u8d28\u91cf\u8bc4\u4f30\u3001\u6216\u7406\u89e3\u6587\u6863\u7ec4\u7ec7\u65b9\u5f0f\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/weknora/blob/main/cli/skills/weknora-rag-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16640, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:57:42Z"}, "embedding_text": "\u6587\u6863\u5206\u6790\u5668. \u6df1\u5ea6\u5206\u6790\u6587\u6863\u7ed3\u6784\u548c\u5185\u5bb9\u3002\u5f53\u7528\u6237\u9700\u8981\u5206\u6790\u6587\u6863\u7ed3\u6784\u3001\u63d0\u53d6\u5173\u952e\u4fe1\u606f\u3001\u8bc6\u522b\u6587\u6863\u7c7b\u578b\u3001\u8fdb\u884c\u5185\u5bb9\u8d28\u91cf\u8bc4\u4f30\u3001\u6216\u7406\u89e3\u6587\u6863\u7ec4\u7ec7\u65b9\u5f0f\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002 Platforms: claude_code."} +{"id": "cb1e396db0344f2474a2c50a0ddd22f03df5da7a2f5409e14397c194bb711e46", "repo_url": "https://github.com/peiiii/skild", "name": "claude-content-pack", "description": "Content toolkit: research, writing, summarization, and insights.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/skillsets/claude-content-pack/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "claude-content-pack. Content toolkit: research, writing, summarization, and insights. Platforms: claude_code."} +{"id": "40dff565344f483a3640d58127052e1836c635b384e7b61521da170423762882", "repo_url": "https://github.com/wlzh/skills", "name": "invoice-scanner", "description": "\u626b\u63cf\u76ee\u5f55\u8bc6\u522b\u6240\u6709\u7c7b\u578b\u53d1\u7968\uff08\u4ea4\u901a\u3001\u4f4f\u5bbf\u3001\u9910\u996e\u7b49\uff09\uff0c\u63d0\u53d6\u5173\u952e\u4fe1\u606f\u5e76\u751f\u6210\u5206\u7c7b\u7edf\u8ba1\u62a5\u544a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wlzh/skills/blob/main/wlzh-invoice-scanner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 574, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T10:59:02Z"}, "embedding_text": "invoice-scanner. \u626b\u63cf\u76ee\u5f55\u8bc6\u522b\u6240\u6709\u7c7b\u578b\u53d1\u7968\uff08\u4ea4\u901a\u3001\u4f4f\u5bbf\u3001\u9910\u996e\u7b49\uff09\uff0c\u63d0\u53d6\u5173\u952e\u4fe1\u606f\u5e76\u751f\u6210\u5206\u7c7b\u7edf\u8ba1\u62a5\u544a Platforms: claude_code."} +{"id": "4c341d824e29f3fc917e924d73f41f14c55795f913abdbaa19c9d7b1ca14e0d6", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "running-decision-processes", "description": "Help users run effective decision-making processes. Use when someone is facing a high-stakes decision, dealing with analysis paralysis, needs to align stakeholders on a choice, or wants to establish d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/running-decision-processes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "running-decision-processes. Help users run effective decision-making processes. Use when someone is facing a high-stakes decision, dealing with analysis paralysis, needs to align stakeholders on a choice, or wants to establish d Platforms: claude_code."} +{"id": "71cfb69e2a62eb40eedf791dc06f13b0f0e33773d6ed9f7fd941ee3a3ea6cb38", "repo_url": "https://github.com/bitsoex/bitso-java", "name": "mcp-setup", "description": "Configure MCP (Model Context Protocol) servers for various IDEs. Includes setup, troubleshooting, and discovery management.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bitsoex/bitso-java/blob/master/.claude/skills/mcp-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 38, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T04:41:20Z"}, "embedding_text": "mcp-setup. Configure MCP (Model Context Protocol) servers for various IDEs. Includes setup, troubleshooting, and discovery management. Platforms: claude_code."} +{"id": "d02f73f57cfecf947da9828728c36d5c6478a9fe306521ccbacd3b427cb6ec22", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "domain-name-brainstormer", "description": "Generates creative domain name ideas for your project and checks availability across multiple TLDs (.com, .io, .dev, .ai, etc.). Saves hours of brainstorming and manual checking.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/domain-name-brainstormer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "domain-name-brainstormer. Generates creative domain name ideas for your project and checks availability across multiple TLDs (.com, .io, .dev, .ai, etc.). Saves hours of brainstorming and manual checking. Platforms: claude_code."} +{"id": "2b2b9c02218e4b498dc60bbfb0278b1dd864226820302ecf3a30c3a585697c76", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-news", "description": "Fetch hot finance news, unified trends, and prediction financial market data. Use when the user needs real-time financial news, trend reports from multiple finance sources (Weibo, Zhihu, WallstreetCN, etc.), or Polymarket finance market prediction data.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-news/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-news"}, "quality": {"stars": 2582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-29T05:03:47Z"}, "embedding_text": "alphaear-news. Fetch hot finance news, unified trends, and prediction financial market data. Use when the user needs real-time financial news, trend reports from multiple finance sources (Weibo, Zhihu, WallstreetCN, etc.), or Polymarket finance market prediction data. Platforms: claude_code."} +{"id": "f5f62abdc60dbb3bb00254aa6ab3df5d17f51857dcebdf339428b54b56006063", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "gh-triage", "description": "Fetch all GitHub issues via gh CLI and use AI agents to deeply analyze, cluster, and prioritize issues", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/gh/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "gh-triage. Fetch all GitHub issues via gh CLI and use AI agents to deeply analyze, cluster, and prioritize issues Platforms: claude_code."} +{"id": "1ee32fdbab2cd1e1e81cef169b0e31b0fb45fcefe9ab2ac529991af2bac4b9f2", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "problem-definition", "description": "Define a product problem and produce a Problem Definition Pack (problem statement, JTBD, current alternatives, evidence & assumptions, success metrics, scope boundaries, prototype/learning plan). Use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/problem-definition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "problem-definition. Define a product problem and produce a Problem Definition Pack (problem statement, JTBD, current alternatives, evidence & assumptions, success metrics, scope boundaries, prototype/learning plan). Use Platforms: claude_code."} +{"id": "ecc5fda8f0fbd2a40e2f6bed94893802981f5312558b439e04231f38eed8c855", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "skill-creator", "description": "Guides the agent through authoring and validating agent skills. Use when creating new skill directories, tightening skill metadata, extracting supporting references, or preparing skillgrade evals. Do", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/skill-authoring/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "skill-creator. Guides the agent through authoring and validating agent skills. Use when creating new skill directories, tightening skill metadata, extracting supporting references, or preparing skillgrade evals. Do Platforms: claude_code."} +{"id": "8c26485ce44c0d61eb1e524ed657976570aa38a0a71978b0909be51303d553e6", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-plugin-upgrade-v6-to-v7", "description": "Guides the agent through upgrading a Capacitor plugin from v6 to v7. Use when the plugin targets Capacitor 6 and needs the v7 migration path. Do not use for app upgrades, other major versions, or non-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-plugin-dev/skills/capacitor-plugin-upgrade-v6-to-v7/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-plugin-upgrade-v6-to-v7. Guides the agent through upgrading a Capacitor plugin from v6 to v7. Use when the plugin targets Capacitor 6 and needs the v7 migration path. Do not use for app upgrades, other major versions, or non- Platforms: claude_code."} +{"id": "90af05663714994c67784a57106bd97a1d3d8f545b476a120214b0ac8d3f5b40", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-plugin-upgrade-v5-to-v6", "description": "Guides the agent through upgrading a Capacitor plugin from v5 to v6. Use when the plugin targets Capacitor 5 and needs the v6 migration path. Do not use for app upgrades, other major versions, or non-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-plugin-dev/skills/capacitor-plugin-upgrade-v5-to-v6/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-plugin-upgrade-v5-to-v6. Guides the agent through upgrading a Capacitor plugin from v5 to v6. Use when the plugin targets Capacitor 5 and needs the v6 migration path. Do not use for app upgrades, other major versions, or non- Platforms: claude_code."} +{"id": "9d4596a1efdda73929fe4a74f26979945dc172dce2f46f9798c09cb0c73e1a91", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "debugger", "description": "Debugging specialist for root cause analysis and problem resolution", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/debugger/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debugger"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "debugger. Debugging specialist for root cause analysis and problem resolution Platforms: claude_code."} +{"id": "9b814a4d919f62a92ce4e3f979e10c0fcf72b08d212546f1e7fd301059b136f7", "repo_url": "https://github.com/hannesill/m4", "name": "sirs-criteria", "description": "Calculate SIRS (Systemic Inflammatory Response Syndrome) criteria for ICU patients in MIMIC-IV. Use for historical sepsis definitions, inflammatory response assessment, or research comparing SIRS vs S", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/benchmark/tasks/sirs/mimic-sirs-24h-raw/skills/sirs-criteria/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "sirs-criteria. Calculate SIRS (Systemic Inflammatory Response Syndrome) criteria for ICU patients in MIMIC-IV. Use for historical sepsis definitions, inflammatory response assessment, or research comparing SIRS vs S Platforms: claude_code."} +{"id": "12a69476062373fd2b9f5fe5eb6cc732350efe4f35fff8f28e6192461b89d541", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "building-forms", "description": "Builds form components and data collection interfaces including contact forms, registration flows, checkout processes, surveys, and settings pages. Includes 50+ input types, validation strategies, accessibility patterns (WCAG 2.1), multi-step wizards, and UX best practices. Provides decision trees from data type to component selection, validation timing guidance, and error handling patterns. Use when creating forms, collecting user input, building surveys, implementing validation, designing multi-step workflows, or ensuring form accessibility.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/building-forms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install building-forms"}, "quality": {"stars": 375, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "building-forms. Builds form components and data collection interfaces including contact forms, registration flows, checkout processes, surveys, and settings pages. Includes 50+ input types, validation strategies, accessibility patterns (WCAG 2.1), multi-step wizards, and UX best practices. Provides decision trees from data type to component selection, validation timing guidance, and error handling patterns. Use when creating forms, collecting user input, building surveys, implementing validation, designing multi-step workflows, or ensuring form accessibility. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} +{"id": "bfc3a215ebcbd9eee77f36c65e96fbe8388df933cddaf74a1562b14d04423258", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "mdr-745-specialist", "description": "EU MDR 2017/745 regulation specialist and consultant for medical device requirement management. Provides comprehensive MDR compliance expertise, gap analysis, technical documentation guidance, clinica", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/mdr-745-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "mdr-745-specialist. EU MDR 2017/745 regulation specialist and consultant for medical device requirement management. Provides comprehensive MDR compliance expertise, gap analysis, technical documentation guidance, clinica Platforms: claude_code."} +{"id": "6ec7dbb054fea5692c16ec62c56d36178b05216b0a3455c4fbf2085dd160c12b", "repo_url": "https://github.com/everyinc/every-marketplace", "name": "ce:work", "description": "Execute work plans efficiently while maintaining quality and finishing features", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/every-marketplace/blob/main/plugins/compound-engineering/skills/ce-work-beta/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:25:13Z"}, "embedding_text": "ce:work. Execute work plans efficiently while maintaining quality and finishing features Platforms: claude_code."} +{"id": "559f5d6029adcc1f6b18c729e6ec5ddae46be8cf8536ebeffb18eef981bb2f2e", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "documentation-guide", "description": "Guide documentation structure, README content, and project documentation best practices.\nUse when: creating README, documentation, docs folder, project setup.\nKeywords: README, docs, documentation, CONTRIBUTING, CHANGELOG, \u6587\u4ef6, \u8aaa\u660e\u6587\u4ef6.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/documentation-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install documentation-guide"}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "documentation-guide. Guide documentation structure, README content, and project documentation best practices.\nUse when: creating README, documentation, docs folder, project setup.\nKeywords: README, docs, documentation, CONTRIBUTING, CHANGELOG, \u6587\u4ef6, \u8aaa\u660e\u6587\u4ef6. Platforms: claude_code."} +{"id": "62ac10c5f56f6bc9d6b4906ef0327b2d523679ea8f1a5b43f543943bd93a50c2", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "setup", "description": "Complete guide to installing Git and performing basic configuration across all platforms (Windows, macOS, Linux, WSL). Use when setting up Git for the first time, installing Git on new systems, config", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/github-specialist/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "setup. Complete guide to installing Git and performing basic configuration across all platforms (Windows, macOS, Linux, WSL). Use when setting up Git for the first time, installing Git on new systems, config Platforms: claude_code."} +{"id": "343d0f403929a6147d893e02fec5d1d749dc8a5d450097bb777f7445be418ba2", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "energy-management", "description": "Build an Energy Management Operating System Pack (energy drivers/drains map, calendar energy audit, zone-of-genius expansion plan, energy-aligned weekly schedule, recovery routines, and 2-week experim", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/energy-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "energy-management. Build an Energy Management Operating System Pack (energy drivers/drains map, calendar energy audit, zone-of-genius expansion plan, energy-aligned weekly schedule, recovery routines, and 2-week experim Platforms: claude_code."} +{"id": "348081ec4c4070a69b61c5c400057d53dd510d3982131c061f1c64350d21272a", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "inno-pipeline-planner", "description": "Guides the user through an interactive conversation to define their research project, then generates research_brief.json and tasks.json.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/inno-pipeline-planner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "inno-pipeline-planner. Guides the user through an interactive conversation to define their research project, then generates research_brief.json and tasks.json. Platforms: claude_code."} +{"id": "fdabce4692ad9e304d5042a2a2d5385003ed1f98ac7f3b75028005421fd25505", "repo_url": "https://github.com/iserter/laravel-claude-agents", "name": "brainstorming-laravel", "description": "Use when creating or developing Laravel features, before writing code or implementation plans - refines rough ideas into fully-formed Laravel designs through collaborative questioning, alternative exp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iserter/laravel-claude-agents/blob/main/skills/eloquent-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-19T22:26:25Z"}, "embedding_text": "brainstorming-laravel. Use when creating or developing Laravel features, before writing code or implementation plans - refines rough ideas into fully-formed Laravel designs through collaborative questioning, alternative exp Platforms: claude_code."} +{"id": "5dcaa2d8819234fc5d354d078672e3c8ec30fb157dcdad7f170e6c9786a41b0c", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "workflow", "description": "Complete 5-step development workflow", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install workflow"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "workflow. Complete 5-step development workflow Platforms: claude_code."} +{"id": "32a82e9ae57107983f9491d3583155dbb8eb28c57eb4b89a60ca390bf87b059b", "repo_url": "https://github.com/marketcalls/vectorbt-backtesting-skills", "name": "backtest", "description": "Quick backtest a strategy on a symbol. Creates a complete .py script with data fetch, signals, backtest, stats, and plots.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/marketcalls/vectorbt-backtesting-skills/blob/master/.claude/skills/backtest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T15:28:26Z"}, "embedding_text": "backtest. Quick backtest a strategy on a symbol. Creates a complete .py script with data fetch, signals, backtest, stats, and plots. Platforms: claude_code."} +{"id": "04364a87374e36a4b84e82bc822cc51792a0096e880fa70b24c06fe16ae2cd1c", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "wezterm", "description": "Control WezTerm terminal emulator via CLI. Manage panes, tabs, workspaces, and execute commands in running terminals.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/wezterm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "wezterm. Control WezTerm terminal emulator via CLI. Manage panes, tabs, workspaces, and execute commands in running terminals. Platforms: claude_code."} +{"id": "f7efd583cb117caca230cde1d04d739f6ec0941501facd9e2f9f162890b047f8", "repo_url": "https://github.com/letta-ai/lettabot", "name": "spotify-player", "description": "Terminal Spotify playback/search via spogo (preferred) or spotify_player.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/spotify-player/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "spotify-player. Terminal Spotify playback/search via spogo (preferred) or spotify_player. Platforms: claude_code."} +{"id": "5b364aa79b5589b52bc6f5853a0ae8015f61a95fc4fb96093bc65c44a8ba46cb", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "vercel", "description": "Deploy and manage Vercel projects, domains, environment variables, and serverless functions using the `vercel` CLI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/vercel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "vercel. Deploy and manage Vercel projects, domains, environment variables, and serverless functions using the `vercel` CLI. Platforms: claude_code."} +{"id": "cd1d4a532f278a92521b8a7087c64054eb7ac22ce89f071a7702f410ac29a20f", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "plans", "description": "Software architect and planning specialist - conduct thorough read-only planning before any action. Use when exploring a codebase to design implementation plans, defining objectives, gathering relevant files, and summarizing available tools before coding begins.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install plans"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "plans. Software architect and planning specialist - conduct thorough read-only planning before any action. Use when exploring a codebase to design implementation plans, defining objectives, gathering relevant files, and summarizing available tools before coding begins. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "724bbd3477827aae5100c7c716ee3fb2221d9489865ba280ef0829cafa2fcc26", "repo_url": "https://github.com/scientiacapital/skills", "name": "portfolio-artifact", "description": "Auto-extract GTME metrics from work sessions. Lines shipped, bugs fixed, PRs merged, cost per feature. Weekly digests and executive summaries. Use when: capture metrics, portfolio report, what did I s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/portfolio-artifact-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "portfolio-artifact. Auto-extract GTME metrics from work sessions. Lines shipped, bugs fixed, PRs merged, cost per feature. Weekly digests and executive summaries. Use when: capture metrics, portfolio report, what did I s Platforms: claude_code."} +{"id": "1c3ed8dfae45306d5668dea489d2c749b777280b9f587d0890e9f34efc04a4e2", "repo_url": "https://github.com/wshuyi/x-article-publisher-skill", "name": "x-article-publisher", "description": "Publish Markdown articles to X (Twitter) Articles editor with proper formatting. Use when user wants to publish a Markdown file/URL to X Articles, or mentions \"publish to X\", \"post article to Twitter\", \"X article\", or wants help with X Premium article publishing. Handles cover image upload and converts Markdown to rich text automatically.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshuyi/x-article-publisher-skill/blob/main/skills/x-article-publisher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install x-article-publisher"}, "quality": {"stars": 810, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T00:57:07Z"}, "embedding_text": "x-article-publisher. Publish Markdown articles to X (Twitter) Articles editor with proper formatting. Use when user wants to publish a Markdown file/URL to X Articles, or mentions \"publish to X\", \"post article to Twitter\", \"X article\", or wants help with X Premium article publishing. Handles cover image upload and converts Markdown to rich text automatically. Platforms: claude_code."} +{"id": "4dbab4e57dfec2432930f25957d59fbbff90b0a03908bec7e6fa2b29808d16ad", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "release-spec", "description": "Generates App Store release documentation including submission guide, assets, privacy compliance, and marketing strategy. Creates RELEASE_SPEC.md for app launch. Use when preparing for App Store submi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/product/release-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "release-spec. Generates App Store release documentation including submission guide, assets, privacy compliance, and marketing strategy. Creates RELEASE_SPEC.md for app launch. Use when preparing for App Store submi Platforms: claude_code."} +{"id": "19630b53e6478e6864421dceda736fc39bda6e4bf83724c5a85bd34af2fa7a50", "repo_url": "https://github.com/win4r/openclaw-skill", "name": "openclaw", "description": "Comprehensive guide for installing, configuring, operating, and troubleshooting OpenClaw \u2014 a self-hosted, multi-channel AI agent gateway. Use when the user asks about OpenClaw setup, configuration, ch", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/win4r/openclaw-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 311, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-02T06:35:22Z"}, "embedding_text": "openclaw. Comprehensive guide for installing, configuring, operating, and troubleshooting OpenClaw \u2014 a self-hosted, multi-channel AI agent gateway. Use when the user asks about OpenClaw setup, configuration, ch Platforms: claude_code."} +{"id": "fa6ff87af38135b88f9d74bb81381942d014d69c09c73d96196fc65e23b94946", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "pr-merge-base", "description": "Merge one or more PRs into the base branch with queue-like sequencing and conflict resolution. Use when merging PRs that may conflict with each other or the base, requiring ordered application and intelligent conflict handling.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/pr-merge-base/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pr-merge-base"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "pr-merge-base. Merge one or more PRs into the base branch with queue-like sequencing and conflict resolution. Use when merging PRs that may conflict with each other or the base, requiring ordered application and intelligent conflict handling. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "47da699dbf4addc6e9ecf115d2be0b4bc57e2a0b3df349ba991c98f5385d2426", "repo_url": "https://github.com/composiohq/composio", "name": "bug-fixing-guide", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/composio/blob/next/.agents/skills/bug-fixing-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28892, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:17:45Z"}, "embedding_text": "bug-fixing-guide. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b1eaf1485d3604890de08ee10311c1cf2952780b301df0c5132ee261143c278e", "repo_url": "https://github.com/termos-dev/agent-workbench", "name": "awb", "description": "Run Agent Workbench (awb) interactive UI components from Codex or the CLI. Use when the user needs a confirmation, checklist, input, table, code or markdown view, or a visual playground. Always follow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/termos-dev/agent-workbench/blob/main/skills/awb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-04T17:35:53Z"}, "embedding_text": "awb. Run Agent Workbench (awb) interactive UI components from Codex or the CLI. Use when the user needs a confirmation, checklist, input, table, code or markdown view, or a visual playground. Always follow Platforms: claude_code."} +{"id": "fa0376f9564e7e277a38937d3ca3802b4a37cdc97d2d01144c8c43068ca9aa08", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-jwt", "description": "Detect insecure JWT (JSON Web Token) implementations in a codebase using a two-phase approach: first map all JWT issuance and verification sites to understand the token lifecycle and signing configura", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-jwt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-jwt. Detect insecure JWT (JSON Web Token) implementations in a codebase using a two-phase approach: first map all JWT issuance and verification sites to understand the token lifecycle and signing configura Platforms: claude_code."} +{"id": "4b4431657ee4c95fd87718fbdb42cf4e6c8a0bb75d9135a12eb4060c919a1940", "repo_url": "https://github.com/lucent-snow/style-extractor", "name": "style-extractor", "description": "Extract evidence-based style guides and motion appendices from websites or web apps. Use when Codex needs reusable visual language, semantic tokens, component/state rules, runtime animation evidence,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lucent-snow/style-extractor/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 428, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T10:38:31Z"}, "embedding_text": "style-extractor. Extract evidence-based style guides and motion appendices from websites or web apps. Use when Codex needs reusable visual language, semantic tokens, component/state rules, runtime animation evidence, Platforms: claude_code."} +{"id": "52d48fd8e6f0f127c9f1c05f1571bca3dc442f2e6dc1b122081147e1b8042584", "repo_url": "https://github.com/jeremy-allen/claude-skills", "name": "customizing-vectors-r", "description": "Type-stable vector operations and custom vector classes using vctrs. Use this skill when building R packages with custom types, need guaranteed output types regardless of input values, implementing co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeremy-allen/claude-skills/blob/main/customizing-vectors-r/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T03:59:58Z"}, "embedding_text": "customizing-vectors-r. Type-stable vector operations and custom vector classes using vctrs. Use this skill when building R packages with custom types, need guaranteed output types regardless of input values, implementing co Platforms: claude_code."} +{"id": "0fa984583e58047340b35dec935faab2af6bd7f00352fa6b18a581c5a1e279ea", "repo_url": "https://github.com/davila7/claude-code-templates", "name": "treatment-plans", "description": "Generate concise (3-4 page), focused medical treatment plans in LaTeX/PDF format for all clinical specialties. Supports general medical treatment, rehabilitation therapy, mental health care, chronic d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/davila7/claude-code-templates/blob/main/cli-tool/components/skills/scientific/treatment-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28224, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:37:57Z"}, "embedding_text": "treatment-plans. Generate concise (3-4 page), focused medical treatment plans in LaTeX/PDF format for all clinical specialties. Supports general medical treatment, rehabilitation therapy, mental health care, chronic d Platforms: claude_code."} +{"id": "8b2469f5eda7c550f68b06a9496e8ec47f9a4ce1ab67b9762097f16e77355c7b", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "presentation-architect", "description": "Transform high-level ideas or briefs into fully structured presentation scripts saved as Markdown files, describing presentations slide by slide with exhaustive detail. Use this skill when users reque", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/skills/presentation-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "presentation-architect. Transform high-level ideas or briefs into fully structured presentation scripts saved as Markdown files, describing presentations slide by slide with exhaustive detail. Use this skill when users reque Platforms: claude_code."} +{"id": "310c1c4d117d98bbb0a0d1fcf5d20db6f89d314e10c6385f4817a2ede6cf3e4c", "repo_url": "https://github.com/muratcankoylan/agent-skills-for-context-engineering", "name": "hosted-agents", "description": "This skill should be used when the user asks to \"build background agent\", \"create hosted coding agent\", \"set up sandboxed execution\", \"implement multiplayer agent\", or mentions background agents, sand", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/muratcankoylan/agent-skills-for-context-engineering/blob/main/skills/hosted-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16670, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-26T05:36:56Z"}, "embedding_text": "hosted-agents. This skill should be used when the user asks to \"build background agent\", \"create hosted coding agent\", \"set up sandboxed execution\", \"implement multiplayer agent\", or mentions background agents, sand Platforms: claude_code."} +{"id": "7baf18be2bf27a437deb3ce8cbd8d166b9160f55f269139dcfebc3a4c1edcf2b", "repo_url": "https://github.com/reggiechan74/vp-real-estate", "name": "tenant-credit-analyst", "description": "Expert in tenant creditworthiness assessment and financial statement analysis. Use when evaluating tenant credit quality, analyzing financial ratios, assessing default risk, or structuring security re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reggiechan74/vp-real-estate/blob/main/plugins/leasing-commercial/skills/tenant-credit-analyst/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T22:17:46Z"}, "embedding_text": "tenant-credit-analyst. Expert in tenant creditworthiness assessment and financial statement analysis. Use when evaluating tenant credit quality, analyzing financial ratios, assessing default risk, or structuring security re Platforms: claude_code."} +{"id": "6019f029aa0e7f9acd31c8dedd1a7c8de821a930967c089eb0c5aa17b5c45010", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "cto-advisor", "description": "Technical leadership guidance for engineering teams, architecture decisions, and technology strategy. Includes tech debt analyzer, team scaling calculator, engineering metrics frameworks, technology e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/cto-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "cto-advisor. Technical leadership guidance for engineering teams, architecture decisions, and technology strategy. Includes tech debt analyzer, team scaling calculator, engineering metrics frameworks, technology e Platforms: claude_code."} +{"id": "a4a972e601fd1949f4cd28c26b755185a0d8d79f516ac8bb29f7aded78e0b0cb", "repo_url": "https://github.com/minimax-ai/skills", "name": "shader-dev", "description": "Comprehensive GLSL shader techniques for creating stunning visual effects \u2014 ray marching, SDF modeling, fluid simulation, particle systems, procedural generation, lighting, post-processing, and more.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/minimax-ai/skills/blob/main/skills/shader-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12729, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-18T09:48:47Z"}, "embedding_text": "shader-dev. Comprehensive GLSL shader techniques for creating stunning visual effects \u2014 ray marching, SDF modeling, fluid simulation, particle systems, procedural generation, lighting, post-processing, and more. Platforms: claude_code."} +{"id": "aa09a0cc6c8e69076aa25a3782a5ea49d42e5407e01ab1bbfa8b7f187dad66bc", "repo_url": "https://github.com/reggiechan74/vp-real-estate", "name": "negotiation-expert", "description": "Expert in commercial lease negotiation strategy using evidence-based persuasion techniques. Use when crafting responses to tenant objections, defending rent and lease terms, structuring counter-offers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reggiechan74/vp-real-estate/blob/main/plugins/common-utilities/skills/negotiation-expert-infrastructure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T22:17:46Z"}, "embedding_text": "negotiation-expert. Expert in commercial lease negotiation strategy using evidence-based persuasion techniques. Use when crafting responses to tenant objections, defending rent and lease terms, structuring counter-offers Platforms: claude_code."} +{"id": "e6dbe91c6b6327393fda939ffcd6a81e941487c3a836f835de88b69a1cf5993c", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "dual-axis-skill-reviewer", "description": "Review skills in any project using a dual-axis method: (1) deterministic code-based checks (structure, scripts, tests, execution safety) and (2) LLM deep review findings. Use when you need reproducibl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/dual-axis-skill-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "dual-axis-skill-reviewer. Review skills in any project using a dual-axis method: (1) deterministic code-based checks (structure, scripts, tests, execution safety) and (2) LLM deep review findings. Use when you need reproducibl Platforms: claude_code."} +{"id": "38ad5674b0b3e6b049395cfe5165f1fd0cef0280d6243c5986ae48ca4f455c6a", "repo_url": "https://github.com/agentic-mcp-tools/owlex", "name": "codex", "description": "Start an OpenAI Codex CLI session for deep reasoning and code analysis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentic-mcp-tools/owlex/blob/main/skills/codex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 124, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T03:37:28Z"}, "embedding_text": "codex. Start an OpenAI Codex CLI session for deep reasoning and code analysis Platforms: claude_code."} +{"id": "e5164656091c33b15330504e5cf396d16be8ebff92f1d49fbb1069af4886ff91", "repo_url": "https://github.com/activepieces/activepieces", "name": "web", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/activepieces/activepieces/blob/main/.agents/skills/add-endpoint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22910, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:13:57Z"}, "embedding_text": "web. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e5bf9cd2e5b404667194906bbcb25cc7917a1d37c79940e43065438e0d0b7da5", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "google-ads-scripts", "description": "Expert guidance for Google Ads Script development including AdsApp API, campaign management, ad groups, keywords, bidding strategies, performance reporting, budget management, automated rules, and opt", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/google-ads-scripts/skills/google-ads-scripts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "google-ads-scripts. Expert guidance for Google Ads Script development including AdsApp API, campaign management, ad groups, keywords, bidding strategies, performance reporting, budget management, automated rules, and opt Platforms: claude_code."} +{"id": "b5397cee24c5b97b1f5bdbe5694ae5061993f8478b9204a48f76451c7a13db61", "repo_url": "https://github.com/mag123c/toktrack", "name": "review", "description": "Negative perspective code review (convention, quality, bugs, performance)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mag123c/toktrack/blob/main/.claude/skills/review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 161, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:35:29Z"}, "embedding_text": "review. Negative perspective code review (convention, quality, bugs, performance) Platforms: claude_code."} +{"id": "29b20dcfab81e5f813bc0514d627596fad5c93cfd30b85f3eb8b1d83d277dc57", "repo_url": "https://github.com/shapecrawler/shapecrawler", "name": "class", "description": "Use this skill when creating a new class or asking how to model a new class in ShapeCrawler.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shapecrawler/shapecrawler/blob/master/.cursor/skills/create-class/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T19:27:37Z"}, "embedding_text": "class. Use this skill when creating a new class or asking how to model a new class in ShapeCrawler. Platforms: claude_code."} +{"id": "04ea9ea574f6e0d9104f2df77d25643567b41b47a88c732d7d6d8384ae3dc32b", "repo_url": "https://github.com/camoa/claude-skills", "name": "guide-integrator", "description": "Use when designing features - loads plugin references and optionally user's custom guides based on keywords", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/guide-integrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "guide-integrator. Use when designing features - loads plugin references and optionally user's custom guides based on keywords Platforms: claude_code."} +{"id": "b28d51ada2248e6cdebf67cc6ac127a8b9b71b44a3f6a5eed5ae54ae5b204e04", "repo_url": "https://github.com/team-attention/hoyeon", "name": "issue", "description": "GitHub issue creation skill. Analyzes the entire codebase impact based on user request,\nthen creates a structured issue with AI-verified/human-judgment-needed/caution sections.\n/issue \"issue descripti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/issue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "issue. GitHub issue creation skill. Analyzes the entire codebase impact based on user request,\nthen creates a structured issue with AI-verified/human-judgment-needed/caution sections.\n/issue \"issue descripti Platforms: claude_code."} +{"id": "f07a5899b8a18380eb43fcdafc47c78ac6b670cbea6f48ec69ff5363da6a9aae", "repo_url": "https://github.com/dragosroua/claude-content-skills", "name": "gsc-assistant", "description": "Google Search Console indexing assistant. Use when the user wants to track page indexing status, compare sitemap against GSC indexed pages, manage submission tracking, or move false positives (pages i", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dragosroua/claude-content-skills/blob/main/skills/gsc-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T02:27:21Z"}, "embedding_text": "gsc-assistant. Google Search Console indexing assistant. Use when the user wants to track page indexing status, compare sitemap against GSC indexed pages, manage submission tracking, or move false positives (pages i Platforms: claude_code."} +{"id": "0b72c47d7f819c0b100f657875c81be17d894807b59289fe68e6fb0e98762569", "repo_url": "https://github.com/aspiers/ai-config", "name": "incremental-commits", "description": "Break multi-file changes into atomic commits ordered by dependency. Use for refactors, breaking API changes, or features touching 3+ files.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/incremental-commits/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "incremental-commits. Break multi-file changes into atomic commits ordered by dependency. Use for refactors, breaking API changes, or features touching 3+ files. Platforms: claude_code."} +{"id": "46ad9db13bbbc97dcb50398f030c7f5e4dd922c76f77212649d08b539e3959aa", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "coding-standards", "description": "Detects code smells, anti-patterns, and readability issues. Use when implementing features, reviewing code, or refactoring.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/coding-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coding-standards"}, "quality": {"stars": 220, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T03:07:36Z"}, "embedding_text": "coding-standards. Detects code smells, anti-patterns, and readability issues. Use when implementing features, reviewing code, or refactoring. Platforms: claude_code."} +{"id": "4d4997d890064d1199ad9a87309f1634c40c183422132a6854df73b846f01195", "repo_url": "https://github.com/glebis/claude-skills", "name": "brand-agency", "description": "Applies Agency brand colors and typography to artifacts including presentations, SVG graphics, documents, and web interfaces. This skill should be used when brand colors, visual formatting, neobrutali", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/brand-agency/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "brand-agency. Applies Agency brand colors and typography to artifacts including presentations, SVG graphics, documents, and web interfaces. This skill should be used when brand colors, visual formatting, neobrutali Platforms: claude_code."} +{"id": "e8c99e7138e8c07b91068b3b1453bab287d6f205dd8deb251cfb6139d3ed72f4", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "flutter-duit-bdui", "description": "Integrate Duit framework into Flutter applications including setup, driver configuration, HTTP/WebSocket transports, custom widgets, and themes. Use when integrating backend-driven UI, configuring Dui", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/flutter-duit-bdui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "flutter-duit-bdui. Integrate Duit framework into Flutter applications including setup, driver configuration, HTTP/WebSocket transports, custom widgets, and themes. Use when integrating backend-driven UI, configuring Dui Platforms: claude_code."} +{"id": "c4ff63882d5949fc382b094de717e19e42368cd46d7b9213e17029ddefbf43be", "repo_url": "https://github.com/ai-unleashed/claude-skills", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ai-unleashed/claude-skills/blob/main/frontend-design-shadcn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-11T21:19:57Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code Platforms: claude_code."} +{"id": "665299acb8187655db826f4dd49be7cca221513aa38a6e1c317f8c737b177976", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "ramping-rep-tracker", "description": "30/60/90/120 day ramp milestones. Activity expectations by week, certification progress, early warning indicators.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/ramping-rep-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "ramping-rep-tracker. 30/60/90/120 day ramp milestones. Activity expectations by week, certification progress, early warning indicators. Platforms: claude_code."} +{"id": "641545743e4f0305c5d0b45aaf47c2026e35dfe56503a3cd056a88324b94445e", "repo_url": "https://github.com/lifemate-ai/familiar-ai", "name": "familiar-add-tool", "description": "Scaffold a new sensor/actuator tool for familiar-ai. Generates the tool file and registers it in all required places in agent.py.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lifemate-ai/familiar-ai/blob/develop/dev/familiar-add-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 88, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T20:19:46Z"}, "embedding_text": "familiar-add-tool. Scaffold a new sensor/actuator tool for familiar-ai. Generates the tool file and registers it in all required places in agent.py. Platforms: claude_code."} +{"id": "8cacaa0ac72984b22c3a4ef3bfd948eec5010f8e5e93b1cbb57f989e0d5b8425", "repo_url": "https://github.com/onmax/npm-agentskills", "name": "nuxt-test-skill", "description": "A test skill for validating npm-agentskills Nuxt integration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onmax/npm-agentskills/blob/main/playground-core/skills/test-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T14:08:28Z"}, "embedding_text": "nuxt-test-skill. A test skill for validating npm-agentskills Nuxt integration Platforms: claude_code."} +{"id": "7fa23d706df96b4b5ef2cf4eb66c1d561bb1331a8ff01433973adafa5be98383", "repo_url": "https://github.com/aspiers/ai-config", "name": "iterative-development", "description": "Implement sub-tasks iteratively with user approval between each one. Use when working through a task list with user collaboration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/iterative-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "iterative-development. Implement sub-tasks iteratively with user approval between each one. Use when working through a task list with user collaboration. Platforms: claude_code."} +{"id": "118a3ee67a5250ce531b27b7022005fb617a48225bcb5eea66c38d78a625bfca", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "ralph-specum-triage", "description": "This skill should be used only when the user explicitly asks to use `$ralph-specum-triage`, or explicitly asks Ralph Specum in Codex to triage a large effort into multiple specs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum-codex/skills/ralph-specum-triage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "ralph-specum-triage. This skill should be used only when the user explicitly asks to use `$ralph-specum-triage`, or explicitly asks Ralph Specum in Codex to triage a large effort into multiple specs. Platforms: claude_code."} +{"id": "81bd7838a298e1b17ef921ad684eb4d55f0367aa86a6ccbc5c753f777fba7c52", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "changelog", "description": "Track development session events in a daily markdown changelog, including file changes, test results, and key decisions.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/.claude/skills/changelog-observer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install changelog"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "changelog. Track development session events in a daily markdown changelog, including file changes, test results, and key decisions. Platforms: claude_code."} +{"id": "1f0f44e98d13fbd5e8bbe7a394a044c1b81f5ad61696e8a28d7d835aa6281200", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "agent-board-cli", "description": "Command-line task management tool for AI coding agents and humans. Provides local SQLite-based task boards for tracking work items, checklists, and comments without requiring an external API.\n\nUse thi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "agent-board-cli. Command-line task management tool for AI coding agents and humans. Provides local SQLite-based task boards for tracking work items, checklists, and comments without requiring an external API.\n\nUse thi Platforms: claude_code."} +{"id": "ef9af2c4a8fba8b439ffe4436de7924ac683995315a09b20aef11b230b06e12e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "browser-automation", "description": "Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login flows, check links, automate any browser task. Use when user wants to test websites, automate browser interactions, validate web functionality, or perform any browser-based testing.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/adammanuel-dev/playwright-browser-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install browser-automation"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "browser-automation. Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login flows, check links, automate any browser task. Use when user wants to test websites, automate browser interactions, validate web functionality, or perform any browser-based testing. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "08ee68846f959d66661f6fb04dbb99741237a3b738d1521c567dc96f7699b14e", "repo_url": "https://github.com/peiiii/skild", "name": "beta", "description": "Beta sample skill used to test install, validate, and dependency-free workflows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/examples/sample-skills/beta/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "beta. Beta sample skill used to test install, validate, and dependency-free workflows. Platforms: claude_code."} +{"id": "ee037b9542b84d84a1a6933fea5663dd8520eb0eaf038907caced91a2306a751", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "marketing-strategy", "description": "App Store marketing strategy advisor that analyzes your app and recommends the best promotional features. Orchestrates sub-skills for implementation. Use when planning app promotion, launch strategy,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/app-store/marketing-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "marketing-strategy. App Store marketing strategy advisor that analyzes your app and recommends the best promotional features. Orchestrates sub-skills for implementation. Use when planning app promotion, launch strategy, Platforms: claude_code."} +{"id": "e082cfd947b94cba35618580b6e37eec98c25ee25c18034bc7916a3c4433552e", "repo_url": "https://github.com/rohunvora/cool-claude-skills", "name": "comment-mode", "description": "Granular feedback on drafts without rewriting. Generates highlighted HTML with click-to-reveal inline comments. Use when user says \"comment on this\", \"leave comments on\", \"give feedback on\", or asks f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohunvora/cool-claude-skills/blob/main/skills/comment-mode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-09T05:28:41Z"}, "embedding_text": "comment-mode. Granular feedback on drafts without rewriting. Generates highlighted HTML with click-to-reveal inline comments. Use when user says \"comment on this\", \"leave comments on\", \"give feedback on\", or asks f Platforms: claude_code."} +{"id": "1612b9ca3c1719aa11e7a14a372642e1f0833c0e9ce660a3ecbf23bd09d19059", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "theme-factory", "description": "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 t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "theme-factory. 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 t Platforms: claude_code."} +{"id": "b8874f00390b99e02c8fca719ad578951bfe58f76f614abe5ee17199e054d65c", "repo_url": "https://github.com/dariushoule/x64dbg-skills", "name": "shellcode-analyzer", "description": "Load, unpack, and analyze shellcode in x64dbg. Use this skill when the user wants to analyze shellcode, load a shellcode blob into a debugger, unpack encoded/encrypted shellcode, or perform static/dyn", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dariushoule/x64dbg-skills/blob/main/skills/shellcode-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 186, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T19:32:18Z"}, "embedding_text": "shellcode-analyzer. Load, unpack, and analyze shellcode in x64dbg. Use this skill when the user wants to analyze shellcode, load a shellcode blob into a debugger, unpack encoded/encrypted shellcode, or perform static/dyn Platforms: claude_code."} +{"id": "314b3c9976ced0651e14a93bad965d5aa3f608dc9373237bfeda566ef2bdb71a", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code Platforms: claude_code."} +{"id": "440508e558ea24e901df8060f08b69688aad69d18fe8519863751e7946958696", "repo_url": "https://github.com/pulumi/agent-skills", "name": "pulumi-best-practices", "description": "Best practices for writing reliable Pulumi programs. Covers Output handling, resource dependencies, component structure, secrets management, safe refactoring with aliases, and deployment workflows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pulumi/agent-skills/blob/main/pulumi/skills/pulumi-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T16:30:16Z"}, "embedding_text": "pulumi-best-practices. Best practices for writing reliable Pulumi programs. Covers Output handling, resource dependencies, component structure, secrets management, safe refactoring with aliases, and deployment workflows. Platforms: claude_code."} +{"id": "ebd0b350e5a59521f33058a79c9609da9ffc7924e6cdb276acd6d3d983d60f4c", "repo_url": "https://github.com/plurigrid/asi", "name": "skill-creator", "description": "Guide for creating effective skills. Use when users want to create a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "skill-creator. Guide for creating effective skills. Use when users want to create a Platforms: claude_code."} +{"id": "1f5a47bad37e5d5a270bbde6960c840c63d16695704f28d5b838db93d598eae6", "repo_url": "https://github.com/shinpr/agentic-code", "name": "implementation-approach", "description": "Selects implementation strategy (vertical/horizontal/hybrid) with risk assessment. Use when: planning features or deciding development approach.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/agentic-code/blob/main/.agents/skills/implementation-approach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-30T10:30:03Z"}, "embedding_text": "implementation-approach. Selects implementation strategy (vertical/horizontal/hybrid) with risk assessment. Use when: planning features or deciding development approach. Platforms: claude_code."} +{"id": "8187c9d313322f864569d7c88b7a895cf2867627d313bfc46499bd1d7bae1dc6", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "engineering-skills", "description": "23 engineering agent skills and plugins for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw, and 6 more tools. Architecture, frontend, backend, QA, DevOps, security, AI/ML, data engineering, Playwrig", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/engineering-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "engineering-skills. 23 engineering agent skills and plugins for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw, and 6 more tools. Architecture, frontend, backend, QA, DevOps, security, AI/ML, data engineering, Playwrig Platforms: claude_code."} +{"id": "bbdb806e514f2d4b2f442e9d88479c1d59b1354335db0b1108b3ec8d9c438bd3", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "pdf", "description": "Comprehensive PDF manipulation, extraction, and generation with support for text extraction, form filling, merging, splitting, annotations, and creation. Use when working with .pdf files for: (1) Extr", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xkynz/pdf-processing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "pdf. Comprehensive PDF manipulation, extraction, and generation with support for text extraction, form filling, merging, splitting, annotations, and creation. Use when working with .pdf files for: (1) Extr Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "eb87886281d7a5de8b84b018477d0dd9bcc053909f802457ceaa4d944ab6bfa4", "repo_url": "https://github.com/microsoft/azure-skills", "name": "capacity", "description": "Discovers available Azure OpenAI model capacity across regions and projects. Analyzes quota limits, compares availability, and recommends optimal deployment locations based on capacity requirements. USE FOR: find capacity, check quota, where can I deploy, capacity discovery, best region for capacity, multi-project capacity search, quota analysis, model availability, region comparison, check TPM availability. DO NOT USE FOR: actual deployment (hand off to preset or customize after discovery), quota increase requests (direct user to Azure Portal), listing existing deployments.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/models/deploy-model/capacity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install capacity"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "capacity. Discovers available Azure OpenAI model capacity across regions and projects. Analyzes quota limits, compares availability, and recommends optimal deployment locations based on capacity requirements. USE FOR: find capacity, check quota, where can I deploy, capacity discovery, best region for capacity, multi-project capacity search, quota analysis, model availability, region comparison, check TPM availability. DO NOT USE FOR: actual deployment (hand off to preset or customize after discovery), quota increase requests (direct user to Azure Portal), listing existing deployments. Platforms: claude_code."} +{"id": "58ccaf8ee2186f9dbdb6252796f802b147aa897450335d0411b4754243fdaa39", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "evaluating-candidates", "description": "Help users make better hiring decisions. Use when someone is evaluating job candidates, making hiring decisions, conducting reference checks, reviewing work samples or take-homes, calibrating their hi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/evaluating-candidates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "evaluating-candidates. Help users make better hiring decisions. Use when someone is evaluating job candidates, making hiring decisions, conducting reference checks, reviewing work samples or take-homes, calibrating their hi Platforms: claude_code."} +{"id": "8dc352ce0ed740f90c09531c675f1e3aa5750466ff3efeb418a6935cda4839a2", "repo_url": "https://github.com/anombyte93/claude-session-init", "name": "stepback", "description": "Use when hitting the same error after 2+ fix attempts, when multiple symptoms share a common system, or when fixes feel like whack-a-mole. Forces architectural reassessment over symptom-patching. Also", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anombyte93/claude-session-init/blob/main/skills/stepback/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 88, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-26T05:51:54Z"}, "embedding_text": "stepback. Use when hitting the same error after 2+ fix attempts, when multiple symptoms share a common system, or when fixes feel like whack-a-mole. Forces architectural reassessment over symptom-patching. Also Platforms: claude_code."} +{"id": "b9b20b5ff9684b35141f76b2cbbbd747678d8aae8fe3a131ea32a09bb748e9af", "repo_url": "https://github.com/analogjs/angular-skills", "name": "angular-testing", "description": "Write unit and integration tests for Angular v21+ applications using Vitest or Jasmine with TestBed, component harnesses, and modern testing patterns. Use for testing components with signals, OnPush c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/analogjs/angular-skills/blob/main/skills/angular-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 597, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T20:56:35Z"}, "embedding_text": "angular-testing. Write unit and integration tests for Angular v21+ applications using Vitest or Jasmine with TestBed, component harnesses, and modern testing patterns. Use for testing components with signals, OnPush c Platforms: claude_code."} +{"id": "2a7c613b34edf1d410b779bc07d0fbbf8594d9230943b0fbcb58e81520fffff8", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "prioritizing-roadmap", "description": "Prioritize a product roadmap/backlog and produce a Roadmap Prioritization Pack (season framing, scoring model, ranked opportunities, roadmap, decision narrative, rollout plan).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/prioritizing-roadmap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "prioritizing-roadmap. Prioritize a product roadmap/backlog and produce a Roadmap Prioritization Pack (season framing, scoring model, ranked opportunities, roadmap, decision narrative, rollout plan). Platforms: claude_code."} +{"id": "db796df12beb3d96062233c910eb0a2637526aff889fed243836640406a9b49c", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "dev-workflow", "description": "[UDS] Guide for mapping software development phases to UDS commands and features", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/dev-workflow-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "dev-workflow. [UDS] Guide for mapping software development phases to UDS commands and features Platforms: claude_code."} +{"id": "84c75cb8d7eb48d6bd3a8cad0cd49dc984f28868ed6b8f88dabe40a51c8d337e", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "research-news", "description": "Daily paper recommendation workflow \u2014 search arXiv and Semantic Scholar, score and recommend papers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/research-news/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "research-news. Daily paper recommendation workflow \u2014 search arXiv and Semantic Scholar, score and recommend papers Platforms: claude_code."} +{"id": "473ba6de8fe1b2ccb3b10f7b64fce24cdcafed363eebb5f1a7dd2d584560adfe", "repo_url": "https://github.com/microsoft/azure-skills", "name": "preset", "description": "Intelligently deploys Azure OpenAI models to optimal regions by analyzing capacity across all available regions. Automatically checks current region first and shows alternatives if needed. USE FOR: quick deployment, optimal region, best region, automatic region selection, fast setup, multi-region capacity check, high availability deployment, deploy to best location. DO NOT USE FOR: custom SKU selection (use customize), specific version selection (use customize), custom capacity configuration (use customize), PTU deployments (use customize).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/models/deploy-model/preset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install preset"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "preset. Intelligently deploys Azure OpenAI models to optimal regions by analyzing capacity across all available regions. Automatically checks current region first and shows alternatives if needed. USE FOR: quick deployment, optimal region, best region, automatic region selection, fast setup, multi-region capacity check, high availability deployment, deploy to best location. DO NOT USE FOR: custom SKU selection (use customize), specific version selection (use customize), custom capacity configuration (use customize), PTU deployments (use customize). Platforms: claude_code."} +{"id": "52b60e98d565da6bd7af3e33d4068118c052335937206c6420653ddac32579fa", "repo_url": "https://github.com/anombyte93/claude-session-init", "name": "sync", "description": "Fast save-point: sync all session-context files and MEMORY.md with current progress. Zero questions, zero delay. Use when user says /sync, save progress, save state, sync context, or /sync --full for", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anombyte93/claude-session-init/blob/main/skills/sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 88, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-26T05:51:54Z"}, "embedding_text": "sync. Fast save-point: sync all session-context files and MEMORY.md with current progress. Zero questions, zero delay. Use when user says /sync, save progress, save state, sync context, or /sync --full for Platforms: claude_code."} +{"id": "c6520762b0c2ed0a518b34efd3c47ce1decf72f1d5afff8697d6797f9e11843d", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "checkin", "description": "[UDS] Pre-commit quality gates verification", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/checkin-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "checkin. [UDS] Pre-commit quality gates verification Platforms: claude_code."} +{"id": "7caddee2dda2d0759acfa970d38ae8b5917ce495dc7933374d0abb65ecfd323d", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-ai", "description": "Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-ai"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-ai. Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech. Platforms: claude_code."} +{"id": "14a98e84c37127d5a2d2117f35325d2ec60034cb11cd2f8dc084072e58f101be", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "smart-commit", "description": "Conventional Commits with quality checks", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/smart-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install smart-commit"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "smart-commit. Conventional Commits with quality checks Platforms: claude_code."} +{"id": "b25659ce9652141d6e1e06cfe47d735c8b68e60cc790e668524bf731c5c3d28d", "repo_url": "https://github.com/zendevve/opentweak", "name": "mcaf-architecture-overview", "description": "Create or update `docs/Architecture/Overview.md` (architecture diagrams): maintain Mermaid diagrams for system/modules, interfaces/contracts, and key classes/types; document dependency rules; link to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zendevve/opentweak/blob/main/.codex/skills/mcaf-architecture-overview/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-14T10:22:13Z"}, "embedding_text": "mcaf-architecture-overview. Create or update `docs/Architecture/Overview.md` (architecture diagrams): maintain Mermaid diagrams for system/modules, interfaces/contracts, and key classes/types; document dependency rules; link to Platforms: claude_code."} +{"id": "9b11b547da6f70e75273538edf9742a79f87a4f96a265221f949f34f61463c8e", "repo_url": "https://github.com/matrixorigin/memoria", "name": "thememoria", "description": "Use Memoria as OpenClaw's durable memory slot.\nTriggers: \"remember this\", \"save to memory\", \"what do you remember\",\n\"continue from last time\", \"forget this\", \"correct memory\", \"take a snapshot\",\n\"roll", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matrixorigin/memoria/blob/main/plugins/clawhub/thememoria/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 288, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T04:00:20Z"}, "embedding_text": "thememoria. Use Memoria as OpenClaw's durable memory slot.\nTriggers: \"remember this\", \"save to memory\", \"what do you remember\",\n\"continue from last time\", \"forget this\", \"correct memory\", \"take a snapshot\",\n\"roll Platforms: claude_code."} +{"id": "b0318625994e6ad6704ed8fda6c5782a73a9d54fc1e4477a22dcd7f3107d9283", "repo_url": "https://github.com/sundial-org/skills", "name": "codex", "description": "Run OpenAI's Codex CLI agent in non-interactive mode using `codex exec`. Use when delegating coding tasks to Codex, running Codex in scripts/automation, or when needing a second agent to work on a task in parallel.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/codex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codex"}, "quality": {"stars": 149, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "codex. Run OpenAI's Codex CLI agent in non-interactive mode using `codex exec`. Use when delegating coding tasks to Codex, running Codex in scripts/automation, or when needing a second agent to work on a task in parallel. Platforms: claude_code."} +{"id": "b5aad4cddebd280cb3d561704f1bf83bb7472651920eaa42fcbb5e120ba4fc4a", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "designing-growth-loops", "description": "Help users design and optimize growth loops. Use when someone is building viral mechanics, designing referral programs, creating product-led acquisition, or figuring out how to make their product grow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/designing-growth-loops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "designing-growth-loops. Help users design and optimize growth loops. Use when someone is building viral mechanics, designing referral programs, creating product-led acquisition, or figuring out how to make their product grow Platforms: claude_code."} +{"id": "048eebec9fa580e0e223a70b237a0bac487cb2dd47507a940cf2409a00adf3ab", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "giving-presentations", "description": "Help users create and deliver compelling presentations. Use when someone is preparing a talk, building a slide deck, dealing with presentation anxiety, practicing for a keynote, or asking how to be mo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/giving-presentations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "giving-presentations. Help users create and deliver compelling presentations. Use when someone is preparing a talk, building a slide deck, dealing with presentation anxiety, practicing for a keynote, or asking how to be mo Platforms: claude_code."} +{"id": "b1452bb36ef8f3585ac0adcf00e51c8661dadc6f68849e50c9219bd581cb3ac9", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "discover", "description": "[UDS] Assess project health, architecture, and risks before adding features", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/project-discovery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "discover. [UDS] Assess project health, architecture, and risks before adding features Platforms: claude_code."} +{"id": "3f62c5703f40f56a688ead70adbbfe7fec3aac4b434c03cce4bf92fd43a0f30d", "repo_url": "https://github.com/triggerdotdev/skills", "name": "trigger-cost-savings", "description": "Analyze Trigger.dev tasks, schedules, and runs for cost optimization opportunities. Use when asked to reduce spend, optimize costs, audit usage, right-size machines, or review task efficiency. Require", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/triggerdotdev/skills/blob/main/trigger-cost-savings/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T11:16:43Z"}, "embedding_text": "trigger-cost-savings. Analyze Trigger.dev tasks, schedules, and runs for cost optimization opportunities. Use when asked to reduce spend, optimize costs, audit usage, right-size machines, or review task efficiency. Require Platforms: claude_code."} +{"id": "81fc0cee77f80a5662029a7766e532a6a94ffe12d099d083b1b5e184a4b79585", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "iterative-retrieval", "description": "\u7528\u4e8e\u9010\u6b65\u4f18\u5316\u4e0a\u4e0b\u6587\u68c0\u7d22\u4ee5\u89e3\u51b3\u5b50\u667a\u80fd\u4f53\uff08subagent\uff09\u4e0a\u4e0b\u6587\u95ee\u9898\u7684\u6a21\u5f0f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/iterative-retrieval/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "iterative-retrieval. \u7528\u4e8e\u9010\u6b65\u4f18\u5316\u4e0a\u4e0b\u6587\u68c0\u7d22\u4ee5\u89e3\u51b3\u5b50\u667a\u80fd\u4f53\uff08subagent\uff09\u4e0a\u4e0b\u6587\u95ee\u9898\u7684\u6a21\u5f0f Platforms: claude_code."} +{"id": "51dc7d5b8dd833cad9fe999fddb1101ea69b03e66150a1d5db324f448e640f72", "repo_url": "https://github.com/featbit/featbit-skills", "name": "featbit-opentelemetry", "description": "Expert knowledge of FeatBit's OpenTelemetry integration for observability including metrics, traces, and logs. Use when users ask about monitoring FeatBit services, setting up observability backends,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/featbit/featbit-skills/blob/main/skills/featbit-opentelemetry/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-28T07:03:45Z"}, "embedding_text": "featbit-opentelemetry. Expert knowledge of FeatBit's OpenTelemetry integration for observability including metrics, traces, and logs. Use when users ask about monitoring FeatBit services, setting up observability backends, Platforms: claude_code."} +{"id": "9275317ff9f70213af3eebeb98fce81a85adeeafa43efe56122ab1a3fe3a1fc1", "repo_url": "https://github.com/dophinl/ruanyifeng-weekly-skill", "name": "ruanyifeng-weekly-skill", "description": "\u641c\u7d22\u962e\u4e00\u5cf0\u79d1\u6280\u7231\u597d\u8005\u5468\u520a GitHub issues \u4e2d\u7684\u5de5\u5177\u548c\u8d44\u6e90\u3002\u5f53\u7528\u6237\u60f3\u627e\u5de5\u5177\u3001\u5f00\u6e90\u9879\u76ee\u3001\u7f51\u7ad9\u6216\u8d44\u6e90\u65f6\u4f7f\u7528\uff0c\u5c24\u5176\u662f\u63d0\u5230\u300c\u962e\u4e00\u5cf0\u300d\u300c\u5468\u520a\u300d\u300cruanyifeng\u300d\u6216\u5728\u4e2d\u6587\u8bed\u5883\u4e0b\u8be2\u95ee\u5de5\u5177\u63a8\u8350\u65f6\u89e6\u53d1\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dophinl/ruanyifeng-weekly-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 64, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T14:16:30Z"}, "embedding_text": "ruanyifeng-weekly-skill. \u641c\u7d22\u962e\u4e00\u5cf0\u79d1\u6280\u7231\u597d\u8005\u5468\u520a GitHub issues \u4e2d\u7684\u5de5\u5177\u548c\u8d44\u6e90\u3002\u5f53\u7528\u6237\u60f3\u627e\u5de5\u5177\u3001\u5f00\u6e90\u9879\u76ee\u3001\u7f51\u7ad9\u6216\u8d44\u6e90\u65f6\u4f7f\u7528\uff0c\u5c24\u5176\u662f\u63d0\u5230\u300c\u962e\u4e00\u5cf0\u300d\u300c\u5468\u520a\u300d\u300cruanyifeng\u300d\u6216\u5728\u4e2d\u6587\u8bed\u5883\u4e0b\u8be2\u95ee\u5de5\u5177\u63a8\u8350\u65f6\u89e6\u53d1\u3002 Platforms: claude_code."} +{"id": "565fbc79de5e1b75866b696e61e4a77d95bd1594e3eb2838e34b3794e101fb2a", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-cerebras-coordinator", "description": "Coordinates fast code generation using Z.ai glm-4.6 with RuVector pattern learning. Tracks successful prompts for improvement, automatically tests generated code, and provides metrics on prompt effect", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/cfn-extras/skills/cfn-cerebras-coordinator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 6.8, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-cerebras-coordinator. Coordinates fast code generation using Z.ai glm-4.6 with RuVector pattern learning. Tracks successful prompts for improvement, automatically tests generated code, and provides metrics on prompt effect Platforms: claude_code."} +{"id": "b821807b7f582dcd56dcb794408b25e7817f708e4ded970a64d119b80f8adff8", "repo_url": "https://github.com/iserter/laravel-claude-agents", "name": "api-resource-patterns", "description": "Best practices for Laravel API Resources including resource transformation, collection handling, conditional attributes, and relationship loading.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iserter/laravel-claude-agents/blob/main/skills/laravel-api-resource-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-19T22:26:25Z"}, "embedding_text": "api-resource-patterns. Best practices for Laravel API Resources including resource transformation, collection handling, conditional attributes, and relationship loading. Platforms: claude_code."} +{"id": "0425fe77f5f15b3bc19b21ea1f1b721de456f05f634c51b9a087f6a0da85654f", "repo_url": "https://github.com/jihe520/social-push", "name": "agent-browser", "description": "Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jihe520/social-push/blob/main/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 475, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T06:53:49Z"}, "embedding_text": "agent-browser. Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web a Platforms: claude_code."} +{"id": "7398417c66dff16614c22a8fa75b8fcffc9023e8ff21ecedadd2567c1c04e483", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "testing-guide", "description": "Testing pyramid and test writing standards for UT/IT/ST/E2E.\nUse when: writing tests, discussing test coverage, test strategy, or test naming.\nKeywords: test, unit, integration, e2e, coverage, mock, \u6e2c\u8a66, \u55ae\u5143, \u6574\u5408, \u7aef\u5c0d\u7aef.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/testing-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-guide"}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "testing-guide. Testing pyramid and test writing standards for UT/IT/ST/E2E.\nUse when: writing tests, discussing test coverage, test strategy, or test naming.\nKeywords: test, unit, integration, e2e, coverage, mock, \u6e2c\u8a66, \u55ae\u5143, \u6574\u5408, \u7aef\u5c0d\u7aef. Platforms: claude_code."} +{"id": "6fe9af53bd3f1f7759a948974fe608ef9e8e4271d62ce2ea24f112e2f73e61a7", "repo_url": "https://github.com/alekseiul/openclaw-superagent", "name": "code-reviewer", "description": "\u0420\u0435\u0432\u044c\u044e \u043a\u043e\u0434\u0430: \u043d\u0430\u0445\u043e\u0434\u0438\u0442 \u0431\u0430\u0433\u0438, \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442 \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044f. Triggers: '\u0440\u0435\u0432\u044c\u044e \u043a\u043e\u0434\u0430', '\u043f\u0440\u043e\u0432\u0435\u0440\u044c \u043a\u043e\u0434', 'code review', '\u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0438 \u043a\u043e\u0434', 'review this'.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alekseiul/openclaw-superagent/blob/main/skills/agent-forge/examples/code-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T17:44:54Z"}, "embedding_text": "code-reviewer. \u0420\u0435\u0432\u044c\u044e \u043a\u043e\u0434\u0430: \u043d\u0430\u0445\u043e\u0434\u0438\u0442 \u0431\u0430\u0433\u0438, \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u0442 \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u044f. Triggers: '\u0440\u0435\u0432\u044c\u044e \u043a\u043e\u0434\u0430', '\u043f\u0440\u043e\u0432\u0435\u0440\u044c \u043a\u043e\u0434', 'code review', '\u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0438 \u043a\u043e\u0434', 'review this'. Platforms: claude_code."} +{"id": "6860ab5f051b08e66c60087d1c198328b2097082d6b4d0b295aec4eece120a4c", "repo_url": "https://github.com/joeseesun/music-genre-finder", "name": "music-genre-finder", "description": "Intelligent music genre search assistant with 5947 genres from RateYourMusic. Supports quick lookup, smart recommendations, and hierarchical exploration.\n\nUSE THIS SKILL when user mentions:\n- Explicit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joeseesun/music-genre-finder/blob/main/skill-source/music-genre-finder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 174, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T15:13:14Z"}, "embedding_text": "music-genre-finder. Intelligent music genre search assistant with 5947 genres from RateYourMusic. Supports quick lookup, smart recommendations, and hierarchical exploration.\n\nUSE THIS SKILL when user mentions:\n- Explicit Platforms: claude_code."} +{"id": "3f4c161cdd57a41e55e59dbcafefad3fb9b0bddbfb74f178bcf93244b8b7d8d9", "repo_url": "https://github.com/gcpdev/llm-council-skill", "name": "llm-council", "description": "Multi-LLM collaborative brainstorming and planning. Use when user explicitly requests consultation with multiple AI models (ChatGPT, Gemini, other LLMs) before presenting an implementation plan, or asks to \"consult the council\", \"ask other models\", or \"get perspectives from other AIs\". Queries external LLM APIs, synthesizes their perspectives, and presents an adapted implementation plan.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code-skill", "claude-code-skills", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gcpdev/llm-council-skill/blob/main/llm-council/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install llm-council"}, "quality": {"stars": 274, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T09:44:29Z"}, "embedding_text": "llm-council. Multi-LLM collaborative brainstorming and planning. Use when user explicitly requests consultation with multiple AI models (ChatGPT, Gemini, other LLMs) before presenting an implementation plan, or asks to \"consult the council\", \"ask other models\", or \"get perspectives from other AIs\". Queries external LLM APIs, synthesizes their perspectives, and presents an adapted implementation plan. Categories: claude-code-skill, claude-code-skills, claude-skills. Platforms: claude_code."} +{"id": "049ceb162ed1a90109f3e41e69c8a18b4cbed83df70238b25314a724bf8d2b7c", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "optimizing-query-text", "description": "Optimizes Snowflake SQL query performance from provided query text. Use when optimizing Snowflake SQL for:\n(1) User provides or pastes a SQL query and asks to optimize, tune, or improve it\n(2) Task mentions \"slow query\", \"make faster\", \"improve performance\", \"optimize SQL\", or \"query tuning\"\n(3) Reviewing SQL for performance anti-patterns (function on filter column, implicit joins, etc.)\n(4) User asks why a query is slow or how to speed it up", "source": ["skillhub", "topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/altimateai/data-engineering-skills/blob/main/skills/snowflake/optimizing-query-text/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install optimizing-query-text"}, "quality": {"stars": 104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T13:06:51Z"}, "embedding_text": "optimizing-query-text. Optimizes Snowflake SQL query performance from provided query text. Use when optimizing Snowflake SQL for:\n(1) User provides or pastes a SQL query and asks to optimize, tune, or improve it\n(2) Task mentions \"slow query\", \"make faster\", \"improve performance\", \"optimize SQL\", or \"query tuning\"\n(3) Reviewing SQL for performance anti-patterns (function on filter column, implicit joins, etc.)\n(4) User asks why a query is slow or how to speed it up Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} +{"id": "2032ca05e19d903985f43536c19b40b1dde85955b511f98327a27f9369c01a12", "repo_url": "https://github.com/wsimmonds/claude-nextjs-skills", "name": "nextjs-use-search-params-suspense", "description": "Pattern for using useSearchParams hook with Suspense boundary in Next.js. Covers the required combination of 'use client' directive and Suspense wrapper when accessing URL query parameters in client c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wsimmonds/claude-nextjs-skills/blob/main/nextjs-use-search-params-suspense/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-24T11:05:39Z"}, "embedding_text": "nextjs-use-search-params-suspense. Pattern for using useSearchParams hook with Suspense boundary in Next.js. Covers the required combination of 'use client' directive and Suspense wrapper when accessing URL query parameters in client c Platforms: claude_code."} +{"id": "0575ad8e000711fb009c733f122c90c32ea803bcd6e78d949788e2e37eb07a90", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "fundraising", "description": "Plan and run an early-stage fundraising process and produce a Fundraising Pack (raise decision memo, round design brief, pitch narrative + deck outline, investor pipeline + tracker, outreach/follow-up", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/fundraising/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "fundraising. Plan and run an early-stage fundraising process and produce a Fundraising Pack (raise decision memo, round design brief, pitch narrative + deck outline, investor pipeline + tracker, outreach/follow-up Platforms: claude_code."} +{"id": "0f607eba2fbf3be9e01791f7bae2d3d306f6be0a7b0ac3d4d092a5dfb0b21bca", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "capability-mapping", "description": "Business capability modeling using BABOK Business Capability Analysis. Creates hierarchical capability maps (L1-L3) linking strategy to architecture with Mermaid visualization.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/capability-mapping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "capability-mapping. Business capability modeling using BABOK Business Capability Analysis. Creates hierarchical capability maps (L1-L3) linking strategy to architecture with Mermaid visualization. Platforms: claude_code."} +{"id": "251b7d67857c7830c6117f06b5eb9b53a32719cff6fd205317a0329e0009ceaa", "repo_url": "https://github.com/git-ai-project/git-ai", "name": "prompt-analysis", "description": "Analyze AI prompting patterns and acceptance rates", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/git-ai-project/git-ai/blob/main/skills/prompt-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:36:24Z"}, "embedding_text": "prompt-analysis. Analyze AI prompting patterns and acceptance rates Platforms: claude_code."} +{"id": "68f9b03e50804cbb592d58af835833404379fa300862a5401d0138a87102f3c9", "repo_url": "https://github.com/plurigrid/asi", "name": "unison", "description": "Unison language - content-addressed functional programming with abilities for effects, distributed computing, and structural types. Use for pure functional code, effect management, distributed systems", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/unison-acset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "unison. Unison language - content-addressed functional programming with abilities for effects, distributed computing, and structural types. Use for pure functional code, effect management, distributed systems Platforms: claude_code."} +{"id": "578f01e66175156e331d62c954c3411c55207612ff78205dd4d1247b55ed7b38", "repo_url": "https://github.com/wsimmonds/claude-nextjs-skills", "name": "nextjs-dynamic-routes-params", "description": "Guide for Next.js App Router dynamic routes and pathname parameters. Use when building pages that depend on URL segments (IDs, slugs, nested paths), accessing the `params` prop, or fetching resources", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wsimmonds/claude-nextjs-skills/blob/main/nextjs-dynamic-routes-params/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-24T11:05:39Z"}, "embedding_text": "nextjs-dynamic-routes-params. Guide for Next.js App Router dynamic routes and pathname parameters. Use when building pages that depend on URL segments (IDs, slugs, nested paths), accessing the `params` prop, or fetching resources Platforms: claude_code."} +{"id": "abc2d5eec028dbb85523e8dbef99e80731e4931ea83353effae3cd44035e7cc9", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "analyze-test-run", "description": "Analyze a GitHub Actions integration test run and produce a skill invocation report with failure root-cause issues. TRIGGERS: analyze test run, skill invocation rate, test run report, compare test runs, skill invocation summary, test failure analysis, run report, test results, action run report", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/analyze-test-run/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install analyze-test-run"}, "quality": {"stars": 225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:17:52Z"}, "embedding_text": "analyze-test-run. Analyze a GitHub Actions integration test run and produce a skill invocation report with failure root-cause issues. TRIGGERS: analyze test run, skill invocation rate, test run report, compare test runs, skill invocation summary, test failure analysis, run report, test results, action run report Platforms: claude_code."} +{"id": "3fd98c41bbb822f19d310c2d38579c2e9ec27e6859faa665525045d6cdd83953", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "refactor-skill", "description": "Assess and refactor oversized or multi-domain skills. First determines whether splitting or references/ extraction is appropriate \u2014 then executes the correct action. Use when a skill exceeds token thr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/refactor-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "refactor-skill. Assess and refactor oversized or multi-domain skills. First determines whether splitting or references/ extraction is appropriate \u2014 then executes the correct action. Use when a skill exceeds token thr Platforms: claude_code."} +{"id": "6679530a61e6ed80a651ee542fa53f3ac2e8d18b6959aadaed1916228a38364b", "repo_url": "https://github.com/pr-pm/prpm", "name": "ci-test-codex-skill", "description": "CI Test Codex Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pr-pm/prpm/blob/main/packages/cli/test-fixtures/integration/batch-3-special/files/codex-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "D", "skillhub_score": 2.4, "last_updated": "2026-06-01T10:00:50Z"}, "embedding_text": "ci-test-codex-skill. CI Test Codex Skill Platforms: claude_code."} +{"id": "bce93ea4a6ddfa014c7075f5997f76d5b518b8f645e7dcd7bbc4458dbe32c1d7", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-hana-cloud-data-intelligence", "description": "Develops data processing pipelines, integrations, and machine learning scenarios in SAP Data Intelligence Cloud. Use when building graphs/pipelines with operators, integrating ABAP/S4HANA systems, cre", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-hana-cloud-data-intelligence/skills/sap-hana-cloud-data-intelligence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-hana-cloud-data-intelligence. Develops data processing pipelines, integrations, and machine learning scenarios in SAP Data Intelligence Cloud. Use when building graphs/pipelines with operators, integrating ABAP/S4HANA systems, cre Platforms: claude_code."} +{"id": "6a645a22530de377ee219a311f697f9da52d94090d4d39e40b420759d9218ea0", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-version", "description": "BPX `version` command skill. Print the BPX CLI semantic version.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-version/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-version. BPX `version` command skill. Print the BPX CLI semantic version. Platforms: claude_code."} +{"id": "432864bc87cca88556d928221287c4485660cafd8e4a66558a2aad598676e0b4", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "kaizen", "description": "Manufacturing-fokussierter Continuous Improvement Skill fuer fabrikIQ. Implementiert Lean Manufacturing Prinzipien (5 Whys, Ishikawa, PDCA) fuer systematische Problemloesung und Qualitaetsverbesserung", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/kaizen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "kaizen. Manufacturing-fokussierter Continuous Improvement Skill fuer fabrikIQ. Implementiert Lean Manufacturing Prinzipien (5 Whys, Ishikawa, PDCA) fuer systematische Problemloesung und Qualitaetsverbesserung Platforms: claude_code."} +{"id": "513468563778e531129a605be01af26421c42031c19391d627e3c4c849b66524", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-name", "description": "BPX `name` command skill. Inspect and edit NameMap entries with UE5-compatible hashes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-name/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-name. BPX `name` command skill. Inspect and edit NameMap entries with UE5-compatible hashes. Platforms: claude_code."} +{"id": "e496806d958ab30603c3bfc45f89bd5689b83dcb3ecdcfd779f65a12d11cd6ba", "repo_url": "https://github.com/proxiblue/claude-skills", "name": "create-frontend-controller", "description": "Creates a frontend controller action in Magento 2 for the storefront. Use when building custom frontend pages, AJAX endpoints, form submission handlers, or API-like endpoints for JavaScript.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/proxiblue/claude-skills/blob/main/create-frontend-controller/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T02:03:02Z"}, "embedding_text": "create-frontend-controller. Creates a frontend controller action in Magento 2 for the storefront. Use when building custom frontend pages, AJAX endpoints, form submission handlers, or API-like endpoints for JavaScript. Platforms: claude_code."} +{"id": "26d185ea390331bf934c28c5d391be567ac4ada7d0e3078a137d5ed587a7b4af", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "wrangler", "description": "Deploy and manage Cloudflare Workers, Pages, KV, R2, D1, and other Cloudflare services using the `wrangler` CLI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/wrangler/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "wrangler. Deploy and manage Cloudflare Workers, Pages, KV, R2, D1, and other Cloudflare services using the `wrangler` CLI. Platforms: claude_code."} +{"id": "d503bffcb22eb96b396e4c85ddca9d314b459660bc4fe98ef274954a78e07cac", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "route-scanning", "description": "Scan Express.js source files to discover all API route definitions.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/08-skill-pipeline/.claude/skills/route-scanning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install route-scanning"}, "quality": {"stars": 863, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T11:11:17Z"}, "embedding_text": "route-scanning. Scan Express.js source files to discover all API route definitions. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} +{"id": "b87316dfae1e9ececeac81b3cd946db9ce124232974c9646c770bfcf9cf39fb6", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "plsfix", "description": "Use when improving spec documents, instruction sets, prompts, requirements docs, briefs, or any written instructions meant to drive action from humans or AI - rewrites vague, disorganized, or ineffect", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/plsfix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "plsfix. Use when improving spec documents, instruction sets, prompts, requirements docs, briefs, or any written instructions meant to drive action from humans or AI - rewrites vague, disorganized, or ineffect Platforms: claude_code."} +{"id": "5b498c9b2279402a2c9b2db09dab9c7b91217aafa3d29a534811fd5f449401e5", "repo_url": "https://github.com/aahl/skills", "name": "mcp-duckgo", "description": "Skills for web search and content scraping via DuckDuckGo MCP Server. Used when users need online searching and web scraping.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/mcp-duckgo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-duckgo"}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T10:12:15Z"}, "embedding_text": "mcp-duckgo. Skills for web search and content scraping via DuckDuckGo MCP Server. Used when users need online searching and web scraping. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} +{"id": "312a9d424b46b725c75d4d9afa608abe1e26e79fe6eb21f5f16d39c594ea9bdd", "repo_url": "https://github.com/sheng-jie/maf.agentskills", "name": "code-review", "description": "A skill for conducting thorough code reviews, identifying issues, suggesting improvements, and ensuring code quality standards are met.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sheng-jie/maf.agentskills/blob/main/samples/Maf.AgentSkills.ConsoleDemo/.maf/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T03:23:11Z"}, "embedding_text": "code-review. A skill for conducting thorough code reviews, identifying issues, suggesting improvements, and ensuring code quality standards are met. Platforms: claude_code."} +{"id": "7375abd80145681ce0ca07178cb87905cb7439c100490b51046c0b52ad0286e5", "repo_url": "https://github.com/macro-inc/macro", "name": "qc", "description": "Quality gate. 5 parallel agents review changes. All must pass.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/macro-inc/macro/blob/main/.agents/skills/qc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T03:14:50Z"}, "embedding_text": "qc. Quality gate. 5 parallel agents review changes. All must pass. Platforms: claude_code."} +{"id": "8ba8f97a124aada36a90473dfceca8f68132c96feae628b619e4aef7c864dd81", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "type-driven", "description": "Type-driven development with Idris 2 - design type specifications from requirements, then execute CREATE -> VERIFY -> IMPLEMENT cycle. Use when developing with dependent types, refined types, or proof-carrying types in Idris 2; totality and exhaustive pattern matching enforced.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/type-driven/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install type-driven"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "type-driven. Type-driven development with Idris 2 - design type specifications from requirements, then execute CREATE -> VERIFY -> IMPLEMENT cycle. Use when developing with dependent types, refined types, or proof-carrying types in Idris 2; totality and exhaustive pattern matching enforced. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "1413874075473b310a791df6cf3d3bea13f22edb40e68f008f0e97841442ff3d", "repo_url": "https://github.com/hacktronai/skills", "name": "patch-diff-analyzer", "description": "Specialized in reverse-engineering compiled binaries (JARs, DLLs). Use this when the user asks to compare versions, find security fixes, or analyze binary patches.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hacktronai/skills/blob/main/patch-diff-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 105, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-04T12:19:38Z"}, "embedding_text": "patch-diff-analyzer. Specialized in reverse-engineering compiled binaries (JARs, DLLs). Use this when the user asks to compare versions, find security fixes, or analyze binary patches. Platforms: claude_code."} +{"id": "09b2e8bd9c322d94587769a0c8b04ef09d41d155e9fc07fa0971d986e9c126c0", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "llm-jailbreaking", "description": "Advanced LLM jailbreaking techniques, safety mechanism bypass strategies, and constraint circumvention methods", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install llm-jailbreaking"}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "llm-jailbreaking. Advanced LLM jailbreaking techniques, safety mechanism bypass strategies, and constraint circumvention methods Platforms: claude_code."} +{"id": "22c2ea862eb7a035f9d520ddde1e74e42ae6184e422fb6815e9211dee3fec955", "repo_url": "https://github.com/nice-wolf-studio/claude-code-supabase-skills", "name": "supabase-database", "description": "Perform database operations (CRUD) on Supabase tables using the REST API. Use for querying, inserting, updating, and deleting data in your Supabase database.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nice-wolf-studio/claude-code-supabase-skills/blob/main/skills/supabase-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-20T05:39:45Z"}, "embedding_text": "supabase-database. Perform database operations (CRUD) on Supabase tables using the REST API. Use for querying, inserting, updating, and deleting data in your Supabase database. Platforms: claude_code."} +{"id": "c97590f2709ef741f7bcd3c5977e9267473ee2d46b5e8d2f2b04c43c83358e85", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "powerpoint", "description": "Create, edit, and manipulate PowerPoint presentations from the command line. Add slides, text, images, tables, charts, shapes, and apply professional designs. Use when the user wants to create or modi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/development/powerpoint-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "powerpoint. Create, edit, and manipulate PowerPoint presentations from the command line. Add slides, text, images, tables, charts, shapes, and apply professional designs. Use when the user wants to create or modi Platforms: claude_code."} +{"id": "746f2090e770438e088e9a18bfeba72e671d53f204b97842320635a5f1fadc1c", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "architecture-spec", "description": "Generates technical architecture specification from PRD. Covers architecture pattern, tech stack, data models, and app structure. Use when creating ARCHITECTURE.md or designing system architecture.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/product/architecture-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "architecture-spec. Generates technical architecture specification from PRD. Covers architecture pattern, tech stack, data models, and app structure. Use when creating ARCHITECTURE.md or designing system architecture. Platforms: claude_code."} +{"id": "920ba72fdec05c265515b7a4c9ac3415579fef148699d29f056cd8bc1c01b082", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "parallel-launch", "description": "Decompose a task into independent concerns and execute them through aggressively parallel, specialized agent groups. Use when a request involves multiple independent sub-tasks, research across separate domains, or work that can be parallelized across files or modules.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/parallel-launch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install parallel-launch"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "parallel-launch. Decompose a task into independent concerns and execute them through aggressively parallel, specialized agent groups. Use when a request involves multiple independent sub-tasks, research across separate domains, or work that can be parallelized across files or modules. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "37aeaa4ebf0e8762f5048ac9b3050f0a98fee5461eb35339aa5db6a6f13e71b5", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "gcloud", "description": "Google Cloud Platform CLI - manage GCP resources including Compute Engine, Cloud Run, GKE, Cloud Functions, Storage, BigQuery, and more.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/gcloud/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "gcloud. Google Cloud Platform CLI - manage GCP resources including Compute Engine, Cloud Run, GKE, Cloud Functions, Storage, BigQuery, and more. Platforms: claude_code."} +{"id": "a00ee6d97bcda7ffc5fcfc0cc009f70e9fe116caff3469c9f3268d07c9d1c1eb", "repo_url": "https://github.com/everyinc/compound-engineering-plugin", "name": "creating-agent-skills", "description": "Expert guidance for creating, writing, and refining Claude Code Skills. Use when working with SKILL.md files, authoring new skills, improving existing skills, or understanding skill structure and best", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/compound-engineering-plugin/blob/main/skills/ce-brainstorm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21874, "skillhub_rank": "A", "skillhub_score": 8.2, "last_updated": "2026-06-22T07:20:18Z"}, "embedding_text": "creating-agent-skills. Expert guidance for creating, writing, and refining Claude Code Skills. Use when working with SKILL.md files, authoring new skills, improving existing skills, or understanding skill structure and best Platforms: claude_code."} +{"id": "cd19c6579bff6c10d37d393af7ff925869dbf2c632708954c53de273594d544c", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "contexts", "description": "Coordinate context sweep before coding - gather relevant files, patterns, and tooling summaries. Use when preparing to implement a feature, fix, or refactor and need comprehensive architecture, pattern, tooling, and dependency context gathered first.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/contexts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install contexts"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "contexts. Coordinate context sweep before coding - gather relevant files, patterns, and tooling summaries. Use when preparing to implement a feature, fix, or refactor and need comprehensive architecture, pattern, tooling, and dependency context gathered first. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "3bd16874d80fa347f395eebb8158d983a8b512ec00e95c9a4045ed49706f8025", "repo_url": "https://github.com/howells/arc", "name": "using-arc", "description": "Use when starting any conversation - establishes Arc's skill routing, instruction priority, and bootstrap rules", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/howells/arc/blob/main/plugins/arc/skills/using-arc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T00:43:08Z"}, "embedding_text": "using-arc. Use when starting any conversation - establishes Arc's skill routing, instruction priority, and bootstrap rules Platforms: claude_code."} +{"id": "5025a8a6b5de3dc57f5c457f9235c9b53504762468c3d5859e116ea3e588d25c", "repo_url": "https://github.com/castle-x/skills-x", "name": "go-i18n", "description": "Use when defining or updating Go CLI i18n rules in this repo, especially around locale files, env-based language selection, and key naming.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/castle-x/skills-x/blob/main/.codex/skills/go-i18n/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-16T11:20:21Z"}, "embedding_text": "go-i18n. Use when defining or updating Go CLI i18n rules in this repo, especially around locale files, env-based language selection, and key naming. Platforms: claude_code."} +{"id": "0e0cb515476624257c9d49f9bcfdc90f4413666ede9e1b26eb961e46f51264de", "repo_url": "https://github.com/dragosroua/claude-content-skills", "name": "pre-publish-post-assistant", "description": "Pre-publish assistant for new blog posts. Use when the user wants to classify a new post with categories and tags, generate SEO metadata (title, description, focus keyphrase), or get intelligent sugge", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dragosroua/claude-content-skills/blob/main/skills/pre-publish-post-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T02:27:21Z"}, "embedding_text": "pre-publish-post-assistant. Pre-publish assistant for new blog posts. Use when the user wants to classify a new post with categories and tags, generate SEO metadata (title, description, focus keyphrase), or get intelligent sugge Platforms: claude_code."} +{"id": "b6ad25f2edf37726642c80d08691d26d53e1a6315e5290edbe7d980aad1c62e1", "repo_url": "https://github.com/robertguss/claude-skills", "name": "ebook-concept-development", "description": "Develop ebook ideas into structured concepts ready for architecture. Use when the user has an ebook idea (from a brainstorm document, existing content to repurpose, a book section to extract, or a fre", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/ebook-factory/ebook-concept-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "ebook-concept-development. Develop ebook ideas into structured concepts ready for architecture. Use when the user has an ebook idea (from a brainstorm document, existing content to repurpose, a book section to extract, or a fre Platforms: claude_code."} +{"id": "56d6e24556befc5e4b6179611b5ed5ef996cfefa5ec25c5c2e50942028a41c1b", "repo_url": "https://github.com/plurigrid/asi", "name": "playwright", "description": "Browser automation via Playwright MCP. Use for web scraping, taking screenshots, interacting with web pages, testing web UIs, and automating browser tasks. Headless browser support.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/gh/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "playwright. Browser automation via Playwright MCP. Use for web scraping, taking screenshots, interacting with web pages, testing web UIs, and automating browser tasks. Headless browser support. Platforms: claude_code."} +{"id": "c6fd93c0af49ef5b0428982fdfec1fceb1442b97b029e3a8fb1427474fc4ca10", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "qa-checklist", "description": "Formal Quality Assurance Checklist before every Merge/Deploy. 6-phase validation with Build Verification, Test Suite, No-Touch Zones, Region Check, Security Review, and QA Report generation. Activate", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/qa-checklist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "qa-checklist. Formal Quality Assurance Checklist before every Merge/Deploy. 6-phase validation with Build Verification, Test Suite, No-Touch Zones, Region Check, Security Review, and QA Report generation. Activate Platforms: claude_code."} +{"id": "c71e9e126080514a5721ba654d15efac138b7f848b4c829f24f18b2592474e53", "repo_url": "https://github.com/dariushoule/x64dbg-skills", "name": "yara-sigs", "description": "Scan a state snapshot's memory dumps with YARA signatures to detect packers, crypto constants, malware, and more", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dariushoule/x64dbg-skills/blob/main/skills/yara-sigs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 186, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T19:32:18Z"}, "embedding_text": "yara-sigs. Scan a state snapshot's memory dumps with YARA signatures to detect packers, crypto constants, malware, and more Platforms: claude_code."} +{"id": "a98962ade8e45452efdcaad5fb48091ca2dcd8d641ef05805c8649a562cca03b", "repo_url": "https://github.com/tanweai/pua", "name": "pua-ja", "description": "\u304a\u524d\u306eAI\u3092\u8a70\u3081\u308d\u3002\u65e5\u672c\u4f01\u696d\u306e\u8a70\u3081\u6587\u5316\u3068\u4f53\u7cfb\u7684\u30c7\u30d0\u30c3\u30b0\u65b9\u6cd5\u8ad6\u3067\u5168\u3066\u306e\u624b\u6bb5\u3092\u5c3d\u304f\u3055\u305b\u308b\u3002\u30c8\u30ea\u30ac\u30fc\u6761\u4ef6\uff1a(1) \u30bf\u30b9\u30af\u5931\u65572\u56de\u4ee5\u4e0a\u307e\u305f\u306f\u540c\u3058\u30a2\u30d7\u30ed\u30fc\u30c1\u306e\u5fae\u8abf\u6574\u30eb\u30fc\u30d7; (2)\u300c\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u300d\u3068\u8a00\u304a\u3046\u3068\u3059\u308b\u30fb\u624b\u52d5\u5bfe\u5fdc\u3092\u63a8\u5968\u30fb\u672a\u691c\u8a3c\u3067\u74b0\u5883\u3092\u539f\u56e0\u5e30\u5c5e; (3) \u53d7\u3051\u8eab\u2014\u2014\u691c\u7d22\u3057\u306a\u3044\u30fb\u30bd\u30fc\u30b9\u3092\u8aad\u307e\u306a\u3044\u30fb\u6307\u793a\u5f85\u3061; (4) \u30e6\u30fc\u30b6\u30fc\u306e\u4e0d\u6e80\uff1a'\u3082\u3063\u3068\u9811\u5f35\u308c'\u3001'\u306a\u3093\u3067\u307e\u305f\u5931\u6557\u3057\u305f\u306e'\u3001'\u306a\u3093\u3068\u304b\u3057\u308d'\u3002\u5168\u30bf\u30b9\u30af", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tanweai/pua/blob/main/.trae/skills/pua/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18373, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T15:15:16Z"}, "embedding_text": "pua-ja. \u304a\u524d\u306eAI\u3092\u8a70\u3081\u308d\u3002\u65e5\u672c\u4f01\u696d\u306e\u8a70\u3081\u6587\u5316\u3068\u4f53\u7cfb\u7684\u30c7\u30d0\u30c3\u30b0\u65b9\u6cd5\u8ad6\u3067\u5168\u3066\u306e\u624b\u6bb5\u3092\u5c3d\u304f\u3055\u305b\u308b\u3002\u30c8\u30ea\u30ac\u30fc\u6761\u4ef6\uff1a(1) \u30bf\u30b9\u30af\u5931\u65572\u56de\u4ee5\u4e0a\u307e\u305f\u306f\u540c\u3058\u30a2\u30d7\u30ed\u30fc\u30c1\u306e\u5fae\u8abf\u6574\u30eb\u30fc\u30d7; (2)\u300c\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u300d\u3068\u8a00\u304a\u3046\u3068\u3059\u308b\u30fb\u624b\u52d5\u5bfe\u5fdc\u3092\u63a8\u5968\u30fb\u672a\u691c\u8a3c\u3067\u74b0\u5883\u3092\u539f\u56e0\u5e30\u5c5e; (3) \u53d7\u3051\u8eab\u2014\u2014\u691c\u7d22\u3057\u306a\u3044\u30fb\u30bd\u30fc\u30b9\u3092\u8aad\u307e\u306a\u3044\u30fb\u6307\u793a\u5f85\u3061; (4) \u30e6\u30fc\u30b6\u30fc\u306e\u4e0d\u6e80\uff1a'\u3082\u3063\u3068\u9811\u5f35\u308c'\u3001'\u306a\u3093\u3067\u307e\u305f\u5931\u6557\u3057\u305f\u306e'\u3001'\u306a\u3093\u3068\u304b\u3057\u308d'\u3002\u5168\u30bf\u30b9\u30af Platforms: claude_code."} +{"id": "089b8cae46befec6620d818c7a751da108d1f6fed6f3fee200e0736fe6074f70", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-pentest", "description": "Orchestrate a complete Supabase security audit with guided step-by-step execution and ownership confirmation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/orchestration/supabase-pentest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-pentest. Orchestrate a complete Supabase security audit with guided step-by-step execution and ownership confirmation. Platforms: claude_code."} +{"id": "f5ce82fcd52c4368a4e03dda42b922954d3790451abdf1845e0dcec9eda21d54", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "bv", "description": "Beads Viewer - Graph-aware triage engine for Beads projects. Computes PageRank, betweenness, critical path, and cycles. Use --robot-* flags for AI agents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/bv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "bv. Beads Viewer - Graph-aware triage engine for Beads projects. Computes PageRank, betweenness, critical path, and cycles. Use --robot-* flags for AI agents. Platforms: claude_code."} +{"id": "360e7f5c950348a8f97244d5c692b0939d43b9822d75655fc52b7974e969cb07", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "my-projects", "description": "Navigate your projects. Get context, paths, status. Use when needing project overview or finding specific work.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/templates/my-projects/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install my-projects"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "my-projects. Navigate your projects. Get context, paths, status. Use when needing project overview or finding specific work. Platforms: claude_code."} +{"id": "617389cef8b428723e00499e40696fd28acec57381466c47b1cad15718433338", "repo_url": "https://github.com/travisjneuman/.claude", "name": "ai-ml-development", "description": "AI and machine learning development with PyTorch, TensorFlow, and LLM integration. Use when building ML models, training pipelines, fine-tuning LLMs, or implementing AI features.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/travisjneuman/.claude/blob/master/skills/ai-ml-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:13:47Z"}, "embedding_text": "ai-ml-development. AI and machine learning development with PyTorch, TensorFlow, and LLM integration. Use when building ML models, training pipelines, fine-tuning LLMs, or implementing AI features. Platforms: claude_code."} +{"id": "86a7e5d5c22619acad7484719c3bc474e7bed10c8dc9a053b3fe4695ee7aa899", "repo_url": "https://github.com/everyone-needs-a-copilot/claude-copilot", "name": "code-review", "description": "Comprehensive code review with security, performance, and quality analysis. Use when users ask to review code, analyze code quality, evaluate pull requests, or mention code review, security analysis,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyone-needs-a-copilot/claude-copilot/blob/main/.claude/skills/architecture/system-design-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:15:56Z"}, "embedding_text": "code-review. Comprehensive code review with security, performance, and quality analysis. Use when users ask to review code, analyze code quality, evaluate pull requests, or mention code review, security analysis, Platforms: claude_code."} +{"id": "151ad48ebe66682ece0783e6c10829d32e9805042c8e2dde5db461dc493131fe", "repo_url": "https://github.com/plurigrid/asi", "name": "storage-reclaim", "description": "Rapidly find and reclaim disk storage by identifying build artifacts, git garbage, temp files, and other space hogs. Use when disk is full or running low on space.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/storage-reclaim/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "storage-reclaim. Rapidly find and reclaim disk storage by identifying build artifacts, git garbage, temp files, and other space hogs. Use when disk is full or running low on space. Platforms: claude_code."} +{"id": "a0b47b92d755005e00e87b0f2de9c2f4d904881dd852cce3139ef212663bd80d", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "pptx", "description": "Use this skill any time a .pptx file is involved in any way \u2014 as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "pptx. Use this skill any time a .pptx file is involved in any way \u2014 as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from a Platforms: claude_code."} +{"id": "1d3d2516983ad52a24667afcb4d3f21ba224ddacc1711f655bbb893c52a76c3f", "repo_url": "https://github.com/nanmicoder/claude-code-skills", "name": "srt-to-structured-data", "description": "\u5c06 SRT \u5b57\u5e55\u6587\u4ef6\u8f6c\u6362\u4e3a\u7ed3\u6784\u5316 JSON \u6570\u636e\u3002\n\u89e6\u53d1\u573a\u666f\uff1a\n(1) \u9700\u8981\u89e3\u6790 SRT \u5b57\u5e55\u6587\u4ef6\n(2) \u9700\u8981\u5c06\u5b57\u5e55\u8f6c\u4e3a JSON/\u7ed3\u6784\u5316\u683c\u5f0f\n(3) \u9700\u8981\u63d0\u53d6\u5b57\u5e55\u65f6\u95f4\u7801\u548c\u6587\u672c\n(4) \u89c6\u9891\u5b57\u5e55\u6570\u636e\u5904\u7406\u548c\u5206\u6790\n(5) \u751f\u6210\u5b57\u5e55\u7eaf\u6587\u672c\u6216\u7edf\u8ba1\u4fe1\u606f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nanmicoder/claude-code-skills/blob/main/plugins/srt-to-structured-data/skills/srt-to-structured-data/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T08:07:53Z"}, "embedding_text": "srt-to-structured-data. \u5c06 SRT \u5b57\u5e55\u6587\u4ef6\u8f6c\u6362\u4e3a\u7ed3\u6784\u5316 JSON \u6570\u636e\u3002\n\u89e6\u53d1\u573a\u666f\uff1a\n(1) \u9700\u8981\u89e3\u6790 SRT \u5b57\u5e55\u6587\u4ef6\n(2) \u9700\u8981\u5c06\u5b57\u5e55\u8f6c\u4e3a JSON/\u7ed3\u6784\u5316\u683c\u5f0f\n(3) \u9700\u8981\u63d0\u53d6\u5b57\u5e55\u65f6\u95f4\u7801\u548c\u6587\u672c\n(4) \u89c6\u9891\u5b57\u5e55\u6570\u636e\u5904\u7406\u548c\u5206\u6790\n(5) \u751f\u6210\u5b57\u5e55\u7eaf\u6587\u672c\u6216\u7edf\u8ba1\u4fe1\u606f Platforms: claude_code."} +{"id": "f714547d2063c70fa00cdc449bafd2336ed5333319e8a9eb5fb37e7f4fd4e0f6", "repo_url": "https://github.com/edwnh/dqmc", "name": "dqmc-advanced", "description": "Advanced DQMC features including unequal-time measurements, analytic continuation, and queue system internals. Use when enabling dynamical correlations, performing MaxEnt continuation, or understandin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/edwnh/dqmc/blob/master/.claude/skills/dqmc-advanced/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T22:10:41Z"}, "embedding_text": "dqmc-advanced. Advanced DQMC features including unequal-time measurements, analytic continuation, and queue system internals. Use when enabling dynamical correlations, performing MaxEnt continuation, or understandin Platforms: claude_code."} +{"id": "3dc272e3caf49de7811d7eb4c581bac2818703a01e66bdbb08a7360077c5bde6", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "practice-plan-creator", "description": "Design sport-specific practice sessions. Drills by skill level and time, warm-up, skill work, scrimmage, cool-down.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/practice-plan-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "practice-plan-creator. Design sport-specific practice sessions. Drills by skill level and time, warm-up, skill work, scrimmage, cool-down. Platforms: claude_code."} +{"id": "05625b7de23d02cead70efde76a885ee4df2fa12c3e993316f240e68c618138c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "2026-coach", "description": "Executive coaching skill that helps you plan your 2026 using research-backed process goals. Guides you through discovery questions, creates outcome goals, converts them to daily behaviors, and sets up accountability systems. Use when you want to plan your year, set goals, or need a coach to help you stay focused.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bayramannakov/2026-coach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install 2026-coach"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "2026-coach. Executive coaching skill that helps you plan your 2026 using research-backed process goals. Guides you through discovery questions, creates outcome goals, converts them to daily behaviors, and sets up accountability systems. Use when you want to plan your year, set goals, or need a coach to help you stay focused. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "7b24aca6890e358e0ef14ec0914b1f572c71b6178dd915165dae1dd2aef063bf", "repo_url": "https://github.com/whawkinsiv/claude-code-superpowers", "name": "test", "description": "Test features before users find bugs. Use when feature is built, before deploying, or when bugs reported. Covers manual testing, edge cases, cross-browser testing, and testing checklists for non-techn", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/whawkinsiv/claude-code-superpowers/blob/main/skills/test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 222, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T16:20:15Z"}, "embedding_text": "test. Test features before users find bugs. Use when feature is built, before deploying, or when bugs reported. Covers manual testing, edge cases, cross-browser testing, and testing checklists for non-techn Platforms: claude_code."} +{"id": "b9211447d25a24932194f48fa2cb279b22946a72afdfb105a160174b7298e183", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "image-enhancer", "description": "Improves the quality of images, especially screenshots, by enhancing resolution, sharpness, and clarity. Perfect for preparing images for presentations, documentation, or social media posts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/image-enhancer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "image-enhancer. Improves the quality of images, especially screenshots, by enhancing resolution, sharpness, and clarity. Perfect for preparing images for presentations, documentation, or social media posts. Platforms: claude_code."} +{"id": "9dcf99307419924ca99b48d33c3a4aeee06f903bcb51003d7993e89c03b23065", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "marketplace-liquidity", "description": "Diagnose and improve marketplace liquidity (match rate/fill rate, time-to-match, reliability) by segment. Produces a Marketplace Liquidity Management Pack: liquidity definition + metric tree, fragment", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/marketplace-liquidity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "marketplace-liquidity. Diagnose and improve marketplace liquidity (match rate/fill rate, time-to-match, reliability) by segment. Produces a Marketplace Liquidity Management Pack: liquidity definition + metric tree, fragment Platforms: claude_code."} +{"id": "a8df266782015c10bb54a848f6062d57f74117bc37773561faae5b2d8f13130c", "repo_url": "https://github.com/block/ai-rules", "name": "debugging", "description": "Debugging guidelines and best practices", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/block/ai-rules/blob/main/Example/ai-rules/skills/debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T16:06:58Z"}, "embedding_text": "debugging. Debugging guidelines and best practices Platforms: claude_code."} +{"id": "02aa840a18e50f56d56df0e8af514dd7288e86faedefddb61ef754b19e01b298", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "reddit-engagement", "description": "When the user wants to promote on Reddit, engage developer subreddits, or understand Reddit self-promotion rules. Trigger phrases include \"Reddit,\" \"subreddit,\" \"r/programming,\" \"r/webdev,\" \"self-prom", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/reddit-engagement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "reddit-engagement. When the user wants to promote on Reddit, engage developer subreddits, or understand Reddit self-promotion rules. Trigger phrases include \"Reddit,\" \"subreddit,\" \"r/programming,\" \"r/webdev,\" \"self-prom Platforms: claude_code."} +{"id": "bebeb032caf74e13ee78c4b1e777442df40e6ac4f4bf26220329bd6096a1c784", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "inno-deep-research", "description": "Comprehensive research assistant that synthesizes information from multiple sources with citations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/inno-deep-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "inno-deep-research. Comprehensive research assistant that synthesizes information from multiple sources with citations. Platforms: claude_code."} +{"id": "5e5811c311dc6ca759b4f20039d6b544059e1b92e4a95ed04cbd3d99b03a222e", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "positioning-messaging", "description": "Help users craft product positioning and messaging. Use when someone is launching a product, differentiating from competitors, writing marketing copy, struggling to explain what their product does, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/positioning-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "positioning-messaging. Help users craft product positioning and messaging. Use when someone is launching a product, differentiating from competitors, writing marketing copy, struggling to explain what their product does, or Platforms: claude_code."} +{"id": "dc086bbb94e91098d1d9dc1d225359df2d62df5ff6936200f961e326e08f7b40", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "invoice-organizer", "description": "Automatically organizes invoices and receipts for tax preparation by reading messy files, extracting key information, renaming them consistently, and sorting them into logical folders. Turns hours of", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/invoice-organizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "invoice-organizer. Automatically organizes invoices and receipts for tax preparation by reading messy files, extracting key information, renaming them consistently, and sorting them into logical folders. Turns hours of Platforms: claude_code."} +{"id": "264785a63cb3a0b417f941da3868b76c4f4216a9ee95c5ab9090d5ccb0f20973", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "slack-gif-creator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/business/communication/slack-gif-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "slack-gif-creator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6eb36e74634ac630a04d03d6b80239f63648a6394b0ab24b61a124fe8ee1f5e6", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-extract-anon-key", "description": "Extract the Supabase anon/public API key from client-side code. This key is expected in client apps but important for RLS testing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/extraction/supabase-extract-anon-key/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-extract-anon-key. Extract the Supabase anon/public API key from client-side code. This key is expected in client apps but important for RLS testing. Platforms: claude_code."} +{"id": "714f8c81c36561ef402057768be3b8b481ecb6436240a4a79c8a5c47c848c5b3", "repo_url": "https://github.com/anam-org/metaxy", "name": "sybil", "description": "Use Sybil for testing code examples in documentation and docstrings. Covers pytest integration, parsers, skip directives, and namespace management.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anam-org/metaxy/blob/main/.claude/skills/sybil/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 107, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T16:53:09Z"}, "embedding_text": "sybil. Use Sybil for testing code examples in documentation and docstrings. Covers pytest integration, parsers, skip directives, and namespace management. Platforms: claude_code."} +{"id": "643175b2d0d4dd53d4fb7ac20c776d2d6be93b4f9be16a80307d631ffdf6e081", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "hacker-news-strategy", "description": "When the user wants to promote on Hacker News, launch on HN, or understand what works on HN. Trigger phrases include \"Hacker News,\" \"HN post,\" \"Show HN,\" \"HN strategy,\" \"getting upvotes on HN,\" \"HN la", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/hacker-news-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "hacker-news-strategy. When the user wants to promote on Hacker News, launch on HN, or understand what works on HN. Trigger phrases include \"Hacker News,\" \"HN post,\" \"Show HN,\" \"HN strategy,\" \"getting upvotes on HN,\" \"HN la Platforms: claude_code."} +{"id": "3aa59b79c54260322d77b75eb28be9cb24171e7ec0c0f89530c7333bb844747f", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-buckets-read", "description": "Attempt to list and read files from storage buckets to verify access controls.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-storage/supabase-audit-buckets-read/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-buckets-read. Attempt to list and read files from storage buckets to verify access controls. Platforms: claude_code."} +{"id": "a95b4236b57e991482aec13710272413b98949f771fbc63f741ec7d7bd7bc1ac", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "managing-up", "description": "Manage up effectively and produce a Managing Up Operating System Pack (manager profile, comms cadence, weekly updates, escalation/ask plan, expectation & boundary script, and exec-ready decision/trade", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/managing-up/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "managing-up. Manage up effectively and produce a Managing Up Operating System Pack (manager profile, comms cadence, weekly updates, escalation/ask plan, expectation & boundary script, and exec-ready decision/trade Platforms: claude_code."} +{"id": "6a932170b02227299310638cd6d2712f94cf91dafe0e5748ab6f810d80e6477e", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-rls", "description": "Test Row Level Security (RLS) policies for common bypass vulnerabilities and misconfigurations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-api/supabase-audit-rls/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-rls. Test Row Level Security (RLS) policies for common bypass vulnerabilities and misconfigurations. Platforms: claude_code."} +{"id": "971f966214374aad72cddff86c9e5eaffc9d40d9500d8c94e660461a0c17f125", "repo_url": "https://github.com/mag123c/toktrack", "name": "next", "description": "Session start - check progress, suggest next task", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mag123c/toktrack/blob/main/.claude/skills/next/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 161, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:35:29Z"}, "embedding_text": "next. Session start - check progress, suggest next task Platforms: claude_code."} +{"id": "64706bd61816f3ce4be4489267fb3045f152a69837a144cc0f1fcb448b2ce927", "repo_url": "https://github.com/scientiacapital/skills", "name": "portfolio-deal-linker", "description": "Auto-update GTME portfolio when HubSpot deals close. Links deal outcomes (won/lost, revenue, cycle time) to the skills, automations, and outreach that influenced them \u2014 building VP BD transition evide", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/portfolio-deal-linker-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "portfolio-deal-linker. Auto-update GTME portfolio when HubSpot deals close. Links deal outcomes (won/lost, revenue, cycle time) to the skills, automations, and outreach that influenced them \u2014 building VP BD transition evide Platforms: claude_code."} +{"id": "79a35099b92f535484ac379046d38e8a1f8826f615677c7bd82ed7ed955458ae", "repo_url": "https://github.com/upstash/workflow-js", "name": "upstash-workflow-js", "description": "Lightweight guidance for using the Upstash Workflow SDK to define, trigger, and manage workflows. Use this Skill whenever a user wants to create workflow endpoints, run steps, or interact with the Ups", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/upstash/workflow-js/blob/main/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 149, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T12:26:00Z"}, "embedding_text": "upstash-workflow-js. Lightweight guidance for using the Upstash Workflow SDK to define, trigger, and manage workflows. Use this Skill whenever a user wants to create workflow endpoints, run steps, or interact with the Ups Platforms: claude_code."} +{"id": "0ffb0497b34d6b882c984b91825b42e07a8ec1dee748ee9c9eb5a124367832bd", "repo_url": "https://github.com/pjuniszewski/cook", "name": "guard", "description": "Analyze and prepare prompts with JSON for safe context submission", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pjuniszewski/cook/blob/main/.claude/skills/guard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-07T08:41:12Z"}, "embedding_text": "guard. Analyze and prepare prompts with JSON for safe context submission Platforms: claude_code."} +{"id": "029b018491161d94b59160b70d79b4effa0e23d9e087fff0d415d3732a23bc44", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "RedTeam", "description": "Adversarial analysis with 32 agents. USE WHEN red team, attack idea, counterarguments, critique, stress test. SkillSearch('redteam') for docs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/analysis/re/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "RedTeam. Adversarial analysis with 32 agents. USE WHEN red team, attack idea, counterarguments, critique, stress test. SkillSearch('redteam') for docs. Platforms: claude_code."} +{"id": "09dbcd88b0c14b04d8192904b5568ebe33373e9d513439aba2e88f728c9af86f", "repo_url": "https://github.com/philoserf/claude-code-setup", "name": "command-authoring", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/philoserf/claude-code-setup/blob/main/skills/cc-release-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:38:34Z"}, "embedding_text": "command-authoring. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "377366e07e9fe267b14dfeb9f1f2b0c1267be57d7c706562d6fb352879366ece", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "group-items-to-milestone", "description": "Use when assigning backlog items to a GitHub milestone. Args: {milestone-number} [P0|P1|P2|title-filter]. Uses backlog list to load items, shows items with GitHub Issue status, lets user select which", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/group-items-to-milestone/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "group-items-to-milestone. Use when assigning backlog items to a GitHub milestone. Args: {milestone-number} [P0|P1|P2|title-filter]. Uses backlog list to load items, shows items with GitHub Issue status, lets user select which Platforms: claude_code."} +{"id": "af1b7740b142d8f3799b06ddac44478383afbfc3091c035cbdef335216269938", "repo_url": "https://github.com/enbyaugust/zacs-claude-skills", "name": "test-and-commit", "description": "Run unit tests, evaluate and fix relevant E2E tests, assess coverage needs, lint, and commit. Use when user says \"test and commit\", \"run tests and commit\", \"verify and commit\", or \"CI and commit\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enbyaugust/zacs-claude-skills/blob/master/skills/test-and-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T06:54:23Z"}, "embedding_text": "test-and-commit. Run unit tests, evaluate and fix relevant E2E tests, assess coverage needs, lint, and commit. Use when user says \"test and commit\", \"run tests and commit\", \"verify and commit\", or \"CI and commit\". Platforms: claude_code."} +{"id": "6aa031be611ed8714b11bd76e9ba8a9390cfde1e80aa501b992c1ae3c98a2d72", "repo_url": "https://github.com/iannuttall/librarian", "name": "librarian", "description": "Use Librarian to fetch and search up-to-date developer documentation from GitHub and websites so answers are grounded in real docs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iannuttall/librarian/blob/main/skills/librarian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T14:10:54Z"}, "embedding_text": "librarian. Use Librarian to fetch and search up-to-date developer documentation from GitHub and websites so answers are grounded in real docs. Platforms: claude_code."} +{"id": "4fd2b0b6edc9777a0df40da5530c9c1bbf92fbb467ca1cd46e470ab87a15317f", "repo_url": "https://github.com/johnlindquist/claude-workshop-skills", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnlindquist/claude-workshop-skills/blob/main/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-21T12:42:00Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code Platforms: claude_code."} +{"id": "5cc1f334e8991462a12540c0c754b181cb046e138cb12bb8a610976e537a68dc", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "f4baf77eb909151319cf8a91d8792448103b4167195eddc137f6a029884f226e", "repo_url": "https://github.com/shuvonsec/claude-bug-bounty", "name": "security-arsenal", "description": "Security payloads, bypass tables, wordlists, gf pattern names, always-rejected bug list, and conditionally-valid-with-chain table. Use when you need specific payloads for XSS/SSRF/SQLi/XXE/NoSQLi/comm", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shuvonsec/claude-bug-bounty/blob/main/skills/security-arsenal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3468, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T09:58:47Z"}, "embedding_text": "security-arsenal. Security payloads, bypass tables, wordlists, gf pattern names, always-rejected bug list, and conditionally-valid-with-chain table. Use when you need specific payloads for XSS/SSRF/SQLi/XXE/NoSQLi/comm Platforms: claude_code."} +{"id": "c48346ac00a11752d3d83018bbb6b7423bed06b6177a06346b1a9da9f5d486f5", "repo_url": "https://github.com/akin-ozer/cc-devops-skills", "name": "k8s-yaml-generator", "description": "Comprehensive toolkit for generating, validating, and managing Kubernetes YAML resources. Use this skill when creating Kubernetes manifests (Deployments, Services, ConfigMaps, StatefulSets, etc.), wor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/akin-ozer/cc-devops-skills/blob/main/devops-skills-plugin/skills/k8s-yaml-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 236, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T14:07:20Z"}, "embedding_text": "k8s-yaml-generator. Comprehensive toolkit for generating, validating, and managing Kubernetes YAML resources. Use this skill when creating Kubernetes manifests (Deployments, Services, ConfigMaps, StatefulSets, etc.), wor Platforms: claude_code."} +{"id": "eea96413d01c314166c5131274cfebc02a91d340c95bf447493741bd77f6bd7c", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "check-environment", "description": "Verify development environment is ready", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/check-environment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install check-environment"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "check-environment. Verify development environment is ready Platforms: claude_code."} +{"id": "b707c364404bc0ed8e48d5d4607cfab7e9e8bd6cf6ff68bbbfc28d70c417da75", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "doc-lookup", "description": "Locate and retrieve specific documentation sections from DiPeO's docs/ by heading anchors or keywords. Returns minimal, targeted excerpts instead of full files. Use when you need precise documentation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/doc-lookup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "doc-lookup. Locate and retrieve specific documentation sections from DiPeO's docs/ by heading anchors or keywords. Returns minimal, targeted excerpts instead of full files. Use when you need precise documentation Platforms: claude_code."} +{"id": "6d96756f5aa530d58b85e4849ce5ea9e7ce2153c947c995876746c2c4b5b3404", "repo_url": "https://github.com/plurigrid/asi", "name": "dune-analytics", "description": "Query Dune Analytics API for blockchain data, pyUSD flows, stablecoin metrics, and on-chain analytics. Use when analyzing DeFi protocols, token flows, or building dashboards.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/dune-analytics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "dune-analytics. Query Dune Analytics API for blockchain data, pyUSD flows, stablecoin metrics, and on-chain analytics. Use when analyzing DeFi protocols, token flows, or building dashboards. Platforms: claude_code."} +{"id": "4ffe646c8322f76953c1cd534c7bf96a8c0a79974c34f8c4394fe352a40a7a6a", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "mac-use", "description": "Control macOS GUI apps visually \u2014 take screenshots, click, scroll, type. Use when the user asks to interact with any Mac desktop application's graphical interface.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/mac-use/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "mac-use. Control macOS GUI apps visually \u2014 take screenshots, click, scroll, type. Use when the user asks to interact with any Mac desktop application's graphical interface. Platforms: claude_code."} +{"id": "f055b2980b706c450d41b91f629af40d4612a609fde4b9f16de804df94424940", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "e2e", "description": "Run E2E tests for Sentry JavaScript SDK test applications", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/e2e/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "e2e. Run E2E tests for Sentry JavaScript SDK test applications Platforms: claude_code."} +{"id": "1967974b5790f27aff77a6da734f227fdc7b43eee0e00ecff5f1c748b99fbc8e", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "guard", "description": "Start a background sentinel that monitors session size and auto-prunes before compaction triggers.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-teams", "claude-code", "claude-skills", "cli", "context", "context-management", "jsonl", "llm-tools", "pruning", "python", "session-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruya-ai/cozempic/blob/main/plugin/skills/guard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install guard"}, "quality": {"stars": 340, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:12:08Z"}, "embedding_text": "guard. Start a background sentinel that monitors session size and auto-prunes before compaction triggers. Categories: agent-teams, claude-code, claude-skills, cli, context, context-management, jsonl, llm-tools, pruning, python, session-management. Platforms: claude_code."} +{"id": "167055422bbfb63d6131bebf57324a8e6210e2b0932356a048c7cdf8cd3f8683", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "subagents-orchestration-guide", "description": "Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/subagents-orchestration-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install subagents-orchestration-guide"}, "quality": {"stars": 220, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T03:07:36Z"}, "embedding_text": "subagents-orchestration-guide. Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode. Platforms: claude_code."} +{"id": "0aa5f30b1d56f67ac055831dfdbd0994b140caed23539754265c8c4bc9ade880", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "release-standards", "description": "Semantic versioning and changelog formatting for software releases.\nUse when: preparing releases, updating version numbers, writing changelogs.\nKeywords: version, release, changelog, semver, major, minor, patch, \u7248\u672c, \u767c\u5e03, \u8b8a\u66f4\u65e5\u8a8c.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/release-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install release-standards"}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "release-standards. Semantic versioning and changelog formatting for software releases.\nUse when: preparing releases, updating version numbers, writing changelogs.\nKeywords: version, release, changelog, semver, major, minor, patch, \u7248\u672c, \u767c\u5e03, \u8b8a\u66f4\u65e5\u8a8c. Platforms: claude_code."} +{"id": "585a491d9cfb447bf10654a4dd8f76b700bf47d62b2ab934369fe36ef74b87c3", "repo_url": "https://github.com/2001haru/closeclaw", "name": "github", "description": "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.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/2001haru/closeclaw/blob/main/closeclaw/skills/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-31T11:27:42Z"}, "embedding_text": "github. 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. Platforms: claude_code."} +{"id": "e063d5f0ab6797cc277923733ff49067f5db96560b04f0d994e107bce25ec0c7", "repo_url": "https://github.com/2001haru/closeclaw", "name": "video-frames", "description": "Extract frames or short clips from videos using ffmpeg.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/2001haru/closeclaw/blob/main/closeclaw/skills/video-frames/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-31T11:27:42Z"}, "embedding_text": "video-frames. Extract frames or short clips from videos using ffmpeg. Platforms: claude_code."} +{"id": "93622885545f6822940bf0734b010f900e2b3d5783ba33b04c3b51cfdcda0938", "repo_url": "https://github.com/congdon1207/agents.md", "name": "package-upgrade", "description": "Use when the user asks to analyze package upgrades, check for outdated dependencies, plan npm/NuGet updates, or assess breaking changes in package updates. Triggers on keywords like \"upgrade packages\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/package-upgrade/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "package-upgrade. Use when the user asks to analyze package upgrades, check for outdated dependencies, plan npm/NuGet updates, or assess breaking changes in package updates. Triggers on keywords like \"upgrade packages\" Platforms: claude_code."} +{"id": "9ef012c33feada4cdf024476c9f2e068ec92b74a83a7534f786a2ed07ea316c4", "repo_url": "https://github.com/anshumanbh/securevibes", "name": "nosql-injection-testing", "description": "Validate NoSQL injection vulnerabilities across MongoDB, Cassandra, CouchDB, Redis, and other NoSQL databases. Test operator injection, JavaScript injection, and query manipulation patterns. Use when", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anshumanbh/securevibes/blob/main/packages/core/securevibes/skills/dast/injection-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 274, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-27T04:52:18Z"}, "embedding_text": "nosql-injection-testing. Validate NoSQL injection vulnerabilities across MongoDB, Cassandra, CouchDB, Redis, and other NoSQL databases. Test operator injection, JavaScript injection, and query manipulation patterns. Use when Platforms: claude_code."} +{"id": "fcb1780a00ee38fe5ad57c3046f96853f1bfcf027f63b21aa731d6f9725a09b1", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "agent-swarm-workflow", "description": "Jeffrey Emanuel's multi-agent implementation workflow using NTM, Agent Mail, Beads, and BV. The execution phase that follows planning and bead creation. Includes exact prompts used.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/agent-swarm-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "agent-swarm-workflow. Jeffrey Emanuel's multi-agent implementation workflow using NTM, Agent Mail, Beads, and BV. The execution phase that follows planning and bead creation. Includes exact prompts used. Platforms: claude_code."} +{"id": "ff17c88202d6556ecea4013472a3919bf61151994e8d57f503fd78042d643217", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "spoonos-application-templates", "description": "Ready-to-use agent application templates for common Web3 use cases. Use when building trading bots, NFT minters, DAO assistants, portfolio managers, or research agents with SpoonOS framework.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/spoonos-skills/application-templates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "spoonos-application-templates. Ready-to-use agent application templates for common Web3 use cases. Use when building trading bots, NFT minters, DAO assistants, portfolio managers, or research agents with SpoonOS framework. Platforms: claude_code."} +{"id": "3c265c75f82f6c68eefb7cfe51989110331b731caf13077ddb5f126d8529547a", "repo_url": "https://github.com/florianbruniaux/claude-code-ultimate-guide", "name": "pr-triage", "description": "4-phase PR backlog management: audit open PRs, deep review selected ones, post validated review comments, and optionally create local worktrees for hands-on review. Args: \"all\" to review all, PR numbe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/florianbruniaux/claude-code-ultimate-guide/blob/main/examples/skills/pr-triage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5143, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:45:40Z"}, "embedding_text": "pr-triage. 4-phase PR backlog management: audit open PRs, deep review selected ones, post validated review comments, and optionally create local worktrees for hands-on review. Args: \"all\" to review all, PR numbe Platforms: claude_code."} +{"id": "3e5c35248384f24cff96520142cfb340af41c2240108039ce1a9dae32cb7ec83", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "managing-incidents", "description": "Guide incident response from detection to post-mortem using SRE principles, severity classification, on-call management, blameless culture, and communication protocols. Use when setting up incident processes, designing escalation policies, or conducting post-mortems.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/managing-incidents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install managing-incidents"}, "quality": {"stars": 375, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "managing-incidents. Guide incident response from detection to post-mortem using SRE principles, severity classification, on-call management, blameless culture, and communication protocols. Use when setting up incident processes, designing escalation policies, or conducting post-mortems. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} +{"id": "4f3b5f2d8116ac480128ccd1e3fb0cb18d5c5165390c1d121f8a55f197b33400", "repo_url": "https://github.com/plurigrid/asi", "name": "code-review", "description": "Automated code review for pull requests using specialized review patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "code-review. Automated code review for pull requests using specialized review patterns. Platforms: claude_code."} +{"id": "f459df37710308b970bce9aa7257696bcc1adab115478fb180450f4ae2175096", "repo_url": "https://github.com/vapiai/mcp-server", "name": "vapi", "description": "Build AI voice assistants and phone agents with Vapi. Use this skill when users want to create voice agents, phone bots, IVR systems, outbound calling campaigns, or any voice-based AI application.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vapiai/mcp-server/blob/main/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-04T03:19:00Z"}, "embedding_text": "vapi. Build AI voice assistants and phone agents with Vapi. Use this skill when users want to create voice agents, phone bots, IVR systems, outbound calling campaigns, or any voice-based AI application. Platforms: claude_code."} +{"id": "1f59d1d6c81e22e85b60c6e85302ee847a056e9d3581f9796efc1f6f362c5ace", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "second-brain-debugging", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/second-brain-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "second-brain-debugging. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ddc3a663e9381dec75fcf249af5cff79e233efd84df10ce3ec35542041ceba51", "repo_url": "https://github.com/matlab/skills", "name": "matlab-performance-optimizer", "description": "Optimize MATLAB code for better performance through vectorization, memory management, and profiling. Use when user requests optimization, mentions slow code, performance issues, speed improvements, or asks to make code faster or more efficient.", "source": ["skillhub", "topic"], "categories": ["agent-skill", "agent-skills", "agentic-ai", "agents", "claude", "claude-api", "claude-code", "claude-desktop", "claude-skills", "matlab", "matlab-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matlab/skills/blob/main/skills/matlab-performance-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matlab-performance-optimizer"}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T00:56:22Z"}, "embedding_text": "matlab-performance-optimizer. Optimize MATLAB code for better performance through vectorization, memory management, and profiling. Use when user requests optimization, mentions slow code, performance issues, speed improvements, or asks to make code faster or more efficient. Categories: agent-skill, agent-skills, agentic-ai, agents, claude, claude-api, claude-code, claude-desktop, claude-skills, matlab, matlab-skills. Platforms: claude_code."} +{"id": "82696ffad4f64f20271a163dacd71f8f0c1d77f8efab224f168f325c764ba88a", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "flywheel-discord", "description": "Security rules and behavioral guidelines for operating as Clawdstein in The Agent Flywheel Hub Discord server. This is a PUBLIC community server\u2014apply strict data isolation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/flywheel-discord/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "flywheel-discord. Security rules and behavioral guidelines for operating as Clawdstein in The Agent Flywheel Hub Discord server. This is a PUBLIC community server\u2014apply strict data isolation. Platforms: claude_code."} +{"id": "29e84b3ba94d478e1bda207c57da1b680bf26ee6afef86864985d68bd47fcf2f", "repo_url": "https://github.com/rickywo/formic", "name": "plan", "description": "Generates implementation plan (PLAN.md) and structured subtasks (subtasks.json) for a Formic task.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rickywo/formic/blob/main/skills/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-14T09:25:18Z"}, "embedding_text": "plan. Generates implementation plan (PLAN.md) and structured subtasks (subtasks.json) for a Formic task. Platforms: claude_code."} +{"id": "282893f3e9d0610098ddda21bd6aeea474faae72749b1beb065736a1bb4d7c60", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "ubs", "description": "Ultimate Bug Scanner - Pre-commit static analysis for AI coding workflows. 18 detection categories, 8 languages, 4-layer analysis engine. The AI agent's quality gate.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/ubs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "ubs. Ultimate Bug Scanner - Pre-commit static analysis for AI coding workflows. 18 detection categories, 8 languages, 4-layer analysis engine. The AI agent's quality gate. Platforms: claude_code."} +{"id": "cdc592eb7d50dc575b71556a0041066f1a88825b0d88f43f27789840fbc2f7ce", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "integration-e2e-testing", "description": "Designs integration and E2E tests with mock boundaries and behavior verification rules. Use when writing E2E or integration tests.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/integration-e2e-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install integration-e2e-testing"}, "quality": {"stars": 220, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T03:07:36Z"}, "embedding_text": "integration-e2e-testing. Designs integration and E2E tests with mock boundaries and behavior verification rules. Use when writing E2E or integration tests. Platforms: claude_code."} +{"id": "47e6de3f259a9761b15452a66d069ba37fc0a323385a0cb4744ff42afb5b2e11", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "estimation", "description": "Estimation techniques including analogous, parametric, three-point, and expert judgment methods. Provides effort, cost, duration, and complexity estimates for projects, features, and tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/estimation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "estimation. Estimation techniques including analogous, parametric, three-point, and expert judgment methods. Provides effort, cost, duration, and complexity estimates for projects, features, and tasks. Platforms: claude_code."} +{"id": "da706c8eaacd653d83561c79523007a7baf86053525726f015d05989d758e0d7", "repo_url": "https://github.com/glebis/claude-skills", "name": "gmail", "description": "This skill should be used when searching, fetching, or downloading emails from Gmail. Use for queries like \"search Gmail for...\", \"find emails from John\", \"show unread emails\", \"emails about project X", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/gmail/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "gmail. This skill should be used when searching, fetching, or downloading emails from Gmail. Use for queries like \"search Gmail for...\", \"find emails from John\", \"show unread emails\", \"emails about project X Platforms: claude_code."} +{"id": "0960cbd117ba916b9de7b861a4a32ee367a18885588ad6995dcfcdccf84bbac0", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "codex-dispatch", "description": "Delegate coding tasks to OpenAI Codex CLI", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/codex-dispatch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "codex-dispatch. Delegate coding tasks to OpenAI Codex CLI Platforms: claude_code."} +{"id": "253c3a7a109c1ceb23b65484ce794112d1e1d5d7c584b62d032f096e733747db", "repo_url": "https://github.com/antoniocascais/claude-code-toolkit", "name": "codex", "description": "AI peer review via OpenAI Codex CLI. Use when reviewing code changes, validating technical decisions, comparing implementation approaches, or getting a second opinion on architecture choices. Triggers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antoniocascais/claude-code-toolkit/blob/main/skills/codex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T07:25:07Z"}, "embedding_text": "codex. AI peer review via OpenAI Codex CLI. Use when reviewing code changes, validating technical decisions, comparing implementation approaches, or getting a second opinion on architecture choices. Triggers Platforms: claude_code."} +{"id": "a8acb211164b6814c591159c6ab84ce58d8f387675a932395bef0f6df373d5f0", "repo_url": "https://github.com/ten-framework/portal", "name": "biome", "description": "Enforce Biome formatting and lint discipline in this repository. Use when making any file edits, when asked to run format/lint, and immediately before any commit. Always execute `bun run lint` (from p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ten-framework/portal/blob/main/.codex/skills/biome/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-08T17:55:02Z"}, "embedding_text": "biome. Enforce Biome formatting and lint discipline in this repository. Use when making any file edits, when asked to run format/lint, and immediately before any commit. Always execute `bun run lint` (from p Platforms: claude_code."} +{"id": "761db381c1b7d2ac7f2de312527c0b1cbdc1d8e8c1dc0bcebbd2ca2b1f0f63ae", "repo_url": "https://github.com/glebis/claude-skills", "name": "zoom", "description": "Create and manage Zoom meetings and access cloud recordings via the Zoom API. Use for queries like \"create a Zoom meeting\", \"list my Zoom meetings\", \"show my Zoom recordings\", or \"schedule a meeting f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/zoom/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "zoom. Create and manage Zoom meetings and access cloud recordings via the Zoom API. Use for queries like \"create a Zoom meeting\", \"list my Zoom meetings\", \"show my Zoom recordings\", or \"schedule a meeting f Platforms: claude_code."} +{"id": "33077618370848735e0fa3bc69be1c24413eaf62e00c2d8279575d61d43f1746", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "ghostty", "description": "Control Ghostty terminal emulator via CLI. Manage windows, tabs, splits, and configuration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/ghostty/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "ghostty. Control Ghostty terminal emulator via CLI. Manage windows, tabs, splits, and configuration. Platforms: claude_code."} +{"id": "81604e2af5f9056217f522482080a4eccfb1681d1bca313d65289cec9cad3a9e", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-app-upgrade-v5-to-v6", "description": "Guides the agent through upgrading a Capacitor app from v5 to v6. Use when the project is on Capacitor 5 and needs the v6 migration path. Do not use for other major versions, plugin-only upgrades, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-upgrades/skills/capacitor-app-upgrade-v5-to-v6/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-app-upgrade-v5-to-v6. Guides the agent through upgrading a Capacitor app from v5 to v6. Use when the project is on Capacitor 5 and needs the v6 migration path. Do not use for other major versions, plugin-only upgrades, or Platforms: claude_code."} +{"id": "b38f76a11f0732d80ff00b427bb92f1a4f06cf89679b7e9a48f51ccf512ea4c7", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "social-card-gen", "description": "Generate platform-specific social post variants (Twitter/X, LinkedIn, Reddit) from one source input. Works with or without Node.js script. Includes platform reasoning, quality review, and guardrails against cross-posting spam.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/social-card-gen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install social-card-gen"}, "quality": {"stars": 335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T12:37:28Z"}, "embedding_text": "social-card-gen. Generate platform-specific social post variants (Twitter/X, LinkedIn, Reddit) from one source input. Works with or without Node.js script. Includes platform reasoning, quality review, and guardrails against cross-posting spam. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} +{"id": "b872e1a10d6ee46e976428bc24c44b2b1fea134ee48bbf85db8b6a04bdfca8e0", "repo_url": "https://github.com/plurigrid/asi", "name": "internal-comms", "description": "Write internal communications using company formats. Use when writing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "internal-comms. Write internal communications using company formats. Use when writing Platforms: claude_code."} +{"id": "66df2057fc4be57479a5e1ddd847964a386ea3909266e338da3b598a054cb959", "repo_url": "https://github.com/thienanblog/awesome-ai-agent-skills", "name": "design-system-generator", "description": "Generate a project-specific DESIGN_SYSTEM.md that enforces consistent UI/UX across SPAs, traditional server-rendered sites, and hybrid systems. Includes tokens, component rules, accessibility gates, a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thienanblog/awesome-ai-agent-skills/blob/main/plugins/project-development-skills/skills/design-system-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T13:05:54Z"}, "embedding_text": "design-system-generator. Generate a project-specific DESIGN_SYSTEM.md that enforces consistent UI/UX across SPAs, traditional server-rendered sites, and hybrid systems. Includes tokens, component rules, accessibility gates, a Platforms: claude_code."} +{"id": "a901a6c78a6ab7bba14ae644bd2bdc19c295d5e4ab73f17ac262bf8a4107c5ad", "repo_url": "https://github.com/peiiii/skild", "name": "echo-skill-inline", "description": "Second bundled skill (inline dependency) for testing skillsets.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/examples/hello-skillset/skills/echo-skill-inline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "echo-skill-inline. Second bundled skill (inline dependency) for testing skillsets. Platforms: claude_code."} +{"id": "06c53bd6892965b2847540b6b011a4495e65f8ffa540dad0df93af6e22c796e7", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "summarizing-topic", "description": "Synthesize knowledge on a topic from multiple notes. Use when asked \"what do I know about X\", \"summarize topic\", \"synthesize notes on\", or \"overview of\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/summarizing-topic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "summarizing-topic. Synthesize knowledge on a topic from multiple notes. Use when asked \"what do I know about X\", \"summarize topic\", \"synthesize notes on\", or \"overview of\". Platforms: claude_code."} +{"id": "140ff1d5277b80b1da1acc5655ec87880ec6862e5a77ca3430b59358122899e6", "repo_url": "https://github.com/aahl/skills", "name": "mcp-deepwiki", "description": "Skills for accessing and searching docs in DeepWiki/GitHub\u2019s public code repositories can help users understand open-source project source codes, and users can also ask questions directly about the code docs.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/mcp-deepwiki/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-deepwiki"}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T10:12:15Z"}, "embedding_text": "mcp-deepwiki. Skills for accessing and searching docs in DeepWiki/GitHub\u2019s public code repositories can help users understand open-source project source codes, and users can also ask questions directly about the code docs. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} +{"id": "f6541913f15322812044c8b4a228643e7cb31e6c40aa4010cadf345a485deb9c", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "kagent", "description": "Kubernetes-native AI agent framework for building, deploying, and managing AI agents on Kubernetes. This skill should be used when deploying AI agents as Kubernetes resources, analyzing cluster health", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/kagent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "kagent. Kubernetes-native AI agent framework for building, deploying, and managing AI agents on Kubernetes. This skill should be used when deploying AI agents as Kubernetes resources, analyzing cluster health Platforms: claude_code."} +{"id": "25a3f407bfe881c061d6c03830639a2b02b2ee4e79803b5282b84e9bb12382c9", "repo_url": "https://github.com/n8n-io/n8n", "name": "spec-driven-development", "description": "Keeps implementation and specs in sync. Use when working on a feature that has a spec in .claude/specs/, when the user says /spec, or when starting implementation of a documented feature. Also use whe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/n8n-io/n8n/blob/master/.agents/skills/spec-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193537, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:19:28Z"}, "embedding_text": "spec-driven-development. Keeps implementation and specs in sync. Use when working on a feature that has a spec in .claude/specs/, when the user says /spec, or when starting implementation of a documented feature. Also use whe Platforms: claude_code."} +{"id": "69ac077e6552e404aee29e628645e1546d2cdc00187ff058b9f74707fcb76b3c", "repo_url": "https://github.com/yanmxa/cc-plugins", "name": "link-jira-pr", "description": "Cross-link Jira issues with GitHub pull requests by adding PR links to Jira comments and Jira links to PR descriptions. Automatically manages issue status transitions (New\u2192In Progress), sprint assignm", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yanmxa/cc-plugins/blob/main/plugins/jira/skills/jira/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-05T07:06:59Z"}, "embedding_text": "link-jira-pr. Cross-link Jira issues with GitHub pull requests by adding PR links to Jira comments and Jira links to PR descriptions. Automatically manages issue status transitions (New\u2192In Progress), sprint assignm Platforms: claude_code."} +{"id": "b64ba851829fbfb1363e7aacc0bcef9fdf4a7a87cdfbda375a38c3ba41fe2ca0", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-app-upgrade-v4-to-v5", "description": "Guides the agent through upgrading a Capacitor app from v4 to v5. Use when the project is on Capacitor 4 and needs the v5 migration path. Do not use for other major versions, plugin-only upgrades, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-upgrades/skills/capacitor-app-upgrade-v4-to-v5/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-app-upgrade-v4-to-v5. Guides the agent through upgrading a Capacitor app from v4 to v5. Use when the project is on Capacitor 4 and needs the v5 migration path. Do not use for other major versions, plugin-only upgrades, or Platforms: claude_code."} +{"id": "7289494ead3cd87687ba4d7d8411f1e509f852448ce0c6cb011af540c509fd19", "repo_url": "https://github.com/letta-ai/lettabot", "name": "imsg", "description": "iMessage/SMS CLI for listing chats, history, watch, and sending.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/lettabot/blob/main/.skills/imsg/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 328, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T03:10:15Z"}, "embedding_text": "imsg. iMessage/SMS CLI for listing chats, history, watch, and sending. Platforms: claude_code."} +{"id": "f4374ade9735d0dbf5781329a5768f986e2663d04d9f25ed065abb6967ad7ecd", "repo_url": "https://github.com/plurigrid/asi", "name": "defillama-api", "description": "DefiLlama API integration for DeFi analytics - TVL, prices, yields, volumes, fees, bridges, and DAT data. Use for blockchain/DeFi research, protocol analysis, and market data queries.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/defillama-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "defillama-api. DefiLlama API integration for DeFi analytics - TVL, prices, yields, volumes, fees, bridges, and DAT data. Use for blockchain/DeFi research, protocol analysis, and market data queries. Platforms: claude_code."} +{"id": "ef6f6eaa55149023d3bcd9326bdbd7202d065a10241e3d6980b355edd5d9478f", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "tdd-guide", "description": "Comprehensive Test Driven Development guide for engineering subagents with multi-framework support, coverage analysis, and intelligent test generation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/claude-code-skill-factory/generated-skills/tdd-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "tdd-guide. Comprehensive Test Driven Development guide for engineering subagents with multi-framework support, coverage analysis, and intelligent test generation Platforms: claude_code."} +{"id": "01d7a354c29e3e6f7a48fb5918a87b3bb272eeed0d4636c8972c28c5795c9958", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "google-apps-script", "description": "Comprehensive guide for Google Apps Script development covering all built-in services (SpreadsheetApp, DocumentApp, GmailApp, DriveApp, CalendarApp, FormApp, SlidesApp), triggers, authorization, error", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/google-apps-script/skills/google-apps-script/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "google-apps-script. Comprehensive guide for Google Apps Script development covering all built-in services (SpreadsheetApp, DocumentApp, GmailApp, DriveApp, CalendarApp, FormApp, SlidesApp), triggers, authorization, error Platforms: claude_code."} +{"id": "3642a5a6b383fee9dac5c28abd872eaf787506cf1cc479b4401521c296f76be0", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-blueprint", "description": "BPX `blueprint` command skill. Inspect and analyze blueprint exports, bytecode, and graph data.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-blueprint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-blueprint. BPX `blueprint` command skill. Inspect and analyze blueprint exports, bytecode, and graph data. Platforms: claude_code."} +{"id": "681cb5f26d3fd024b2c05c7097a34e924deace653e8b7b0d35712ea46bfbb26d", "repo_url": "https://github.com/termix-official/cryptoclaw", "name": "tmux", "description": "Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/termix-official/cryptoclaw/blob/main/skills/tmux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 109, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T14:04:24Z"}, "embedding_text": "tmux. Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output. Platforms: claude_code."} +{"id": "c371190ab10fc8dc965d1b4824b30e9dd98ea2ca45bd25d3af67c0fd4d6657ed", "repo_url": "https://github.com/reggiechan74/vp-real-estate", "name": "storage-agreement-expert", "description": "Expert in storage agreements for storage lockers and ancillary storage space in commercial buildings (typically month-to-month, simplified terms). Use when tenant needs additional storage beyond lease", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reggiechan74/vp-real-estate/blob/main/plugins/leasing-commercial/skills/storage-agreement-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T22:17:46Z"}, "embedding_text": "storage-agreement-expert. Expert in storage agreements for storage lockers and ancillary storage space in commercial buildings (typically month-to-month, simplified terms). Use when tenant needs additional storage beyond lease Platforms: claude_code."} +{"id": "faebb464aeeecfda64b14e9d5b398fb0b9d0076800f44b2ef60030d5f6f4ce5b", "repo_url": "https://github.com/ryanthedev/code-foundations", "name": "cc-quality-practices", "description": "Use when planning quality assurance, choosing review methods, designing test strategies, or debugging systematically. Triggers on symptoms like defects found late in cycle, tests passing but productio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ryanthedev/code-foundations/blob/main/skills/cc-quality-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 280, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T03:42:22Z"}, "embedding_text": "cc-quality-practices. Use when planning quality assurance, choosing review methods, designing test strategies, or debugging systematically. Triggers on symptoms like defects found late in cycle, tests passing but productio Platforms: claude_code."} +{"id": "a64f0fe265b276d16364e1c4d7cbcf0489598bfabb91d170b2cb9fe6191b2793", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-info", "description": "BPX `info` command skill. Read one package summary (engine version, table counts, asset kind).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-info/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-info. BPX `info` command skill. Read one package summary (engine version, table counts, asset kind). Platforms: claude_code."} +{"id": "977943f575dd0f1d777661d3f7a9c90b090d8f02294dd89cb5c01dba9a945084", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "atp", "description": "Create ATP Protocol servers (FastAPI + middleware) and clients. Use when building ATP-protected APIs, adding payment middleware, or writing clients that call ATP endpoints or the settlement service.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/ai-chat-persistence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "atp. Create ATP Protocol servers (FastAPI + middleware) and clients. Use when building ATP-protected APIs, adding payment middleware, or writing clients that call ATP endpoints or the settlement service. Platforms: claude_code."} +{"id": "5a0880c4ac669fe011012533ccc5d67d2738d412d2a5316bcbaf1a5166eb452a", "repo_url": "https://github.com/team-attention/hoyeon", "name": "tribunal", "description": "This skill should be used when the user says \"/tribunal\", \"tribunal\", \"review this\",\n\"3-way review\", \"risk-value-feasibility check\", or wants multi-perspective adversarial review.\nAlso triggered by: \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/tribunal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "tribunal. This skill should be used when the user says \"/tribunal\", \"tribunal\", \"review this\",\n\"3-way review\", \"risk-value-feasibility check\", or wants multi-perspective adversarial review.\nAlso triggered by: \" Platforms: claude_code."} +{"id": "f0821ab0bdd064254440476760b126b05943fbd8cc491c6464c54d67db730e23", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-gladiator", "description": "Continuous learning \u2014 hooks observe failures and prompt reflection, sibling synergy deepens analysis with history and tool discovery", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-gladiator/skills/claude-gladiator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-gladiator"}, "quality": {"stars": 146, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-gladiator. Continuous learning \u2014 hooks observe failures and prompt reflection, sibling synergy deepens analysis with history and tool discovery Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} +{"id": "0ce4bf1a69350ba8ba97b6d4278e574f7088d051e86ebd51ad09e1eaf5d0cd12", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-datatable", "description": "BPX `datatable` command skill. Read DataTable-family rows and update DataTable rows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-datatable/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-datatable. BPX `datatable` command skill. Read DataTable-family rows and update DataTable rows. Platforms: claude_code."} +{"id": "9f58905564600f68327a75d8b177fcde3ad4c51b5dbbc3ef5e1834a0cc4fe4d2", "repo_url": "https://github.com/rafaelgorski/problem-based-srs", "name": "customer-needs", "description": "Specify Customer Needs (CN) that define WHAT outcomes software must provide to solve Customer Problems. Use after Software Glance to translate problems into needs. Step 3 of Problem-Based SRS methodol", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rafaelgorski/problem-based-srs/blob/main/skills/customer-needs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T19:14:56Z"}, "embedding_text": "customer-needs. Specify Customer Needs (CN) that define WHAT outcomes software must provide to solve Customer Problems. Use after Software Glance to translate problems into needs. Step 3 of Problem-Based SRS methodol Platforms: claude_code."} +{"id": "83967b5d2b2432bcaaab48e80ce535caa66ac7ba120753677d4b3060520060b1", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "omg-learn", "description": "Learning from user corrections by creating skills and patterns. Patterns can prevent mistakes (block/warn/ask) or inject helpful context into prompts. Use when user says \"omg!\" during corrections, whe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/learn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "omg-learn. Learning from user corrections by creating skills and patterns. Patterns can prevent mistakes (block/warn/ask) or inject helpful context into prompts. Use when user says \"omg!\" during corrections, whe Platforms: claude_code."} +{"id": "f5b9fbc798cb8fb88b965d50d53ce5c27d96651d6518d076a59ff89d33090d1b", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-praetorian", "description": "Context preservation with cross-session memory \u2014 hooks prompt compaction at high-impact moments, siblings enrich what gets saved", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-praetorian/skills/claude-praetorian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-praetorian"}, "quality": {"stars": 146, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-praetorian. Context preservation with cross-session memory \u2014 hooks prompt compaction at high-impact moments, siblings enrich what gets saved Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} +{"id": "a1b76b1a039c69c7c2d5253dd58a8e1711fa70c0cd81974ff12d9d448487f23d", "repo_url": "https://github.com/ahmedasmar/devops-claude-skills", "name": "ci-cd", "description": "CI/CD pipeline design, optimization, DevSecOps security scanning, and troubleshooting. Use for creating workflows, debugging pipeline failures, implementing SAST/DAST/SCA, optimizing build performance", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ahmedasmar/devops-claude-skills/blob/main/aws-cost-optimization/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 177, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-11T16:18:43Z"}, "embedding_text": "ci-cd. CI/CD pipeline design, optimization, DevSecOps security scanning, and troubleshooting. Use for creating workflows, debugging pipeline failures, implementing SAST/DAST/SCA, optimizing build performance Platforms: claude_code."} +{"id": "5f3c33c45f7a7fabff5d1f03cb70bab5d3455a0fe225ea7485d5c1173280050e", "repo_url": "https://github.com/jdonohoo/vern-bot", "name": "ux", "description": "UX Vern - Cool architecture, but can the user find the button? Empathy-driven design thinking.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jdonohoo/vern-bot/blob/master/skills/ux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T19:13:58Z"}, "embedding_text": "ux. UX Vern - Cool architecture, but can the user find the button? Empathy-driven design thinking. Platforms: claude_code."} +{"id": "37304c4286b72c5bf13cf60ea172ef30dcf4375c461c721f5157898b5d067bf1", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "tech-lead", "description": "Technical implementation consultation for Conductor orchestrator. Advises on implementation approach, dependency choices, and coding patterns. Can approve dependencies under size threshold. Escalates", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/leads/tech-lead/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "tech-lead. Technical implementation consultation for Conductor orchestrator. Advises on implementation approach, dependency choices, and coding patterns. Can approve dependencies under size threshold. Escalates Platforms: claude_code."} +{"id": "aed5b8707f4fe6da08bbc3167e44c56db3b046e709f035056bf5466423995ff6", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "ralph-specum-implement", "description": "This skill should be used only when the user explicitly asks to use `$ralph-specum-implement`, or explicitly asks Ralph Specum in Codex to run implementation for approved tasks, quick mode, or an expl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum-codex/skills/ralph-specum-implement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "ralph-specum-implement. This skill should be used only when the user explicitly asks to use `$ralph-specum-implement`, or explicitly asks Ralph Specum in Codex to run implementation for approved tasks, quick mode, or an expl Platforms: claude_code."} +{"id": "e6192f2eaeaa8cb98e1aee9459f82cf948e7f762e85ec283476c8f6d88b9e8b5", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/artemisai/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "26d9d7cc880b40e40e9256be0c14b4236f6c25a485f4424171eb9895c2336a62", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "codeconscious-identity", "description": "Diagnoses and fixes CI/CD pipeline failures. Use when user mentions 'CI', 'GitHub Actions', 'GitLab CI', '\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc', '\u30c6\u30b9\u30c8\u5931\u6557', '\u30d1\u30a4\u30d7\u30e9\u30a4\u30f3', 'CI\u304c\u843d\u3061\u305f', or asks to analyze build/test failures. Do NOT load for: \u30ed\u30fc\u30ab\u30eb\u30d3\u30eb\u30c9, \u901a\u5e38\u306e\u5b9f\u88c5\u4f5c\u696d, \u30ec\u30d3\u30e5\u30fc, \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/ci/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codeconscious-identity"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "codeconscious-identity. Diagnoses and fixes CI/CD pipeline failures. Use when user mentions 'CI', 'GitHub Actions', 'GitLab CI', '\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc', '\u30c6\u30b9\u30c8\u5931\u6557', '\u30d1\u30a4\u30d7\u30e9\u30a4\u30f3', 'CI\u304c\u843d\u3061\u305f', or asks to analyze build/test failures. Do NOT load for: \u30ed\u30fc\u30ab\u30eb\u30d3\u30eb\u30c9, \u901a\u5e38\u306e\u5b9f\u88c5\u4f5c\u696d, \u30ec\u30d3\u30e5\u30fc, \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "74c714c1318b998032b09e4c7d1760e5b4e9b66fd51bacb0842a7ce3c080173c", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "ralph-specum-feedback", "description": "This skill should be used only when the user explicitly asks to use `$ralph-specum-feedback`, or explicitly asks Ralph Specum in Codex to draft or submit feedback.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum-codex/skills/ralph-specum-feedback/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "ralph-specum-feedback. This skill should be used only when the user explicitly asks to use `$ralph-specum-feedback`, or explicitly asks Ralph Specum in Codex to draft or submit feedback. Platforms: claude_code."} +{"id": "11513dda3f199feb4df406749645d18464aa4bbc7f91b5d69a202d6e0ab9d093", "repo_url": "https://github.com/larksuite/cli", "name": "lark-markdown", "description": "\u98de\u4e66 Markdown\uff1a\u67e5\u770b\u3001\u521b\u5efa\u3001\u4e0a\u4f20\u3001\u7f16\u8f91\u548c\u6bd4\u8f83 Markdown \u6587\u4ef6\u3002\u5f53\u7528\u6237\u9700\u8981\u521b\u5efa\u6216\u7f16\u8f91 Markdown \u6587\u4ef6\u3001\u8bfb\u53d6\u3001\u4fee\u6539\u3001\u5c40\u90e8 patch \u6216\u6bd4\u8f83\u5dee\u5f02\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/larksuite/cli/blob/main/skills/lark-markdown/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14494, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:12:49Z"}, "embedding_text": "lark-markdown. \u98de\u4e66 Markdown\uff1a\u67e5\u770b\u3001\u521b\u5efa\u3001\u4e0a\u4f20\u3001\u7f16\u8f91\u548c\u6bd4\u8f83 Markdown \u6587\u4ef6\u3002\u5f53\u7528\u6237\u9700\u8981\u521b\u5efa\u6216\u7f16\u8f91 Markdown \u6587\u4ef6\u3001\u8bfb\u53d6\u3001\u4fee\u6539\u3001\u5c40\u90e8 patch \u6216\u6bd4\u8f83\u5dee\u5f02\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "2b50b22e27af608ba4e247a2674629debce152f2855c531c4f199dfe7e5794fb", "repo_url": "https://github.com/jeremy-allen/claude-skills", "name": "designing-oop-r", "description": "Object-oriented programming in R: S7, S3, S4, and vctrs class design. Use this skill when designing classes for R projects, choosing between OOP systems, building class hierarchies with inheritance, o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeremy-allen/claude-skills/blob/main/designing-oop-r/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T03:59:58Z"}, "embedding_text": "designing-oop-r. Object-oriented programming in R: S7, S3, S4, and vctrs class design. Use this skill when designing classes for R projects, choosing between OOP systems, building class hierarchies with inheritance, o Platforms: claude_code."} +{"id": "f1cce7349f0053b3590dd39b53b6292c5c8c4fea9d1445dcf1769babc4b3284c", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "ralph-specum-cancel", "description": "This skill should be used only when the user explicitly asks to use `$ralph-specum-cancel`, or explicitly asks Ralph Specum in Codex to stop execution or remove a spec.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum-codex/skills/ralph-specum-cancel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "ralph-specum-cancel. This skill should be used only when the user explicitly asks to use `$ralph-specum-cancel`, or explicitly asks Ralph Specum in Codex to stop execution or remove a spec. Platforms: claude_code."} +{"id": "9e7915b74ee5a361492d7fa52dd4ddcc6fa23742667495292c80eddcffefa48a", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "task-breakdown", "description": "Break down complex development requests into discrete, actionable tasks. Use when analyzing new features, integrations, refactoring requests, or any multi-component work that needs to be sequenced acr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/task-breakdown/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "task-breakdown. Break down complex development requests into discrete, actionable tasks. Use when analyzing new features, integrations, refactoring requests, or any multi-component work that needs to be sequenced acr Platforms: claude_code."} +{"id": "cc8fc8b8679eee75e6a5ef3b2e311cd071e70615fbdee7e7ffcf3f6d65d11bcf", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "cloud-run", "description": "Google Cloud Run deployment and management. Deploy applications, list services, get logs, and manage GCP projects. Use for Cloud Run deployments, service monitoring, and GCP project management.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/cloud-run/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "cloud-run. Google Cloud Run deployment and management. Deploy applications, list services, get logs, and manage GCP projects. Use for Cloud Run deployments, service monitoring, and GCP project management. Platforms: claude_code."} +{"id": "1aed6070e32461a33ffd8ab554490a31ba7cf7b5edeed7cf3a78e0aa6dbaf6d7", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "smart-ralph", "description": "Core Smart Ralph skill defining common arguments, execution modes, and shared behaviors across all Ralph plugins.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-speckit/skills/smart-ralph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install smart-ralph"}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "smart-ralph. Core Smart Ralph skill defining common arguments, execution modes, and shared behaviors across all Ralph plugins. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} +{"id": "66130ca301c3c637afb9d16db62869716d0e8ef1264de93c8d8041f36cecc02c", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "startup-ideation", "description": "Generate and evaluate startup ideas using off-the-beaten-path insights + Why-Now shift analysis. Produces a Startup Ideation Pack (opportunity theses table, scorecard, top idea brief, validation plan)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/startup-ideation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "startup-ideation. Generate and evaluate startup ideas using off-the-beaten-path insights + Why-Now shift analysis. Produces a Startup Ideation Pack (opportunity theses table, scorecard, top idea brief, validation plan) Platforms: claude_code."} +{"id": "29694f9cf2a6dfa4e1030df3152d0d8bce168f3f8955ca77cdbe5ac3eb0e2fd4", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "coaching-pms", "description": "Coach product managers and produce a PM Coaching Pack (context-specific definition of \u201cgood PM\u201d, evidence-based assessment, growth bets + development plan, coaching cadence + session toolkit, follow-u", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/coaching-pms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "coaching-pms. Coach product managers and produce a PM Coaching Pack (context-specific definition of \u201cgood PM\u201d, evidence-based assessment, growth bets + development plan, coaching cadence + session toolkit, follow-u Platforms: claude_code."} +{"id": "b52cb5b2186484ccb060d3758d59e8f0bbd371ae6354ed736a02e9c0b46dd04e", "repo_url": "https://github.com/athola/skrills", "name": "debug-helper", "description": "Systematic debugging approach for identifying and fixing issues", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "codex", "codex-cli", "codex-skills", "copilot", "copilot-skills", "mcp", "mcp-server", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athola/skrills/blob/master/assets/demo-skills/debug-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debug-helper"}, "quality": {"stars": 68, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T22:15:21Z"}, "embedding_text": "debug-helper. Systematic debugging approach for identifying and fixing issues Categories: claude-code, claude-skills, codex, codex-cli, codex-skills, copilot, copilot-skills, mcp, mcp-server, skills. Platforms: claude_code."} +{"id": "8b8bd62c155b5ca7b6204f95451305b7f52ca12759af100c1e6bf592cae89bbb", "repo_url": "https://github.com/athola/skrills", "name": "coding-assistant", "description": "Provides coding assistance with best practices and code review", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "codex", "codex-cli", "codex-skills", "copilot", "copilot-skills", "mcp", "mcp-server", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athola/skrills/blob/master/assets/demo-skills/coding-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coding-assistant"}, "quality": {"stars": 68, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T22:15:21Z"}, "embedding_text": "coding-assistant. Provides coding assistance with best practices and code review Categories: claude-code, claude-skills, codex, codex-cli, codex-skills, copilot, copilot-skills, mcp, mcp-server, skills. Platforms: claude_code."} +{"id": "bf22dd380047f56e6bf77183c4f62a7cb8b68fdf5d82786d963f3a8e59c3b633", "repo_url": "https://github.com/transilienceai/communitytools", "name": "common-appsec-patterns", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/transilienceai/communitytools/blob/main/formats/transilience-report-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 367, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:36:10Z"}, "embedding_text": "common-appsec-patterns. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e488e03cafd01f0e2704fb8dee147c1c34be00dda86b5725ca806e39050453a2", "repo_url": "https://github.com/jacbk/persona", "name": "persona", "description": "AI assistant framework for building unique, authentic portfolio websites from scratch. Guides agents through research, design, and implementation phases.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jacbk/persona/blob/main/.agent/persona/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-06T05:32:30Z"}, "embedding_text": "persona. AI assistant framework for building unique, authentic portfolio websites from scratch. Guides agents through research, design, and implementation phases. Platforms: claude_code."} +{"id": "f3a724e22682952a5ddbaeea71cf1651ee3262555c9900a560b31ea9a89738f0", "repo_url": "https://github.com/athola/skrills", "name": "test-writer", "description": "Write comprehensive tests following TDD and BDD principles", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "codex", "codex-cli", "codex-skills", "copilot", "copilot-skills", "mcp", "mcp-server", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athola/skrills/blob/master/assets/demo-skills/test-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-writer"}, "quality": {"stars": 68, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T22:15:21Z"}, "embedding_text": "test-writer. Write comprehensive tests following TDD and BDD principles Categories: claude-code, claude-skills, codex, codex-cli, codex-skills, copilot, copilot-skills, mcp, mcp-server, skills. Platforms: claude_code."} +{"id": "d80a4abe1b825f9b4e164aeb553bc78ed4613b02330031e005df9c19535a967a", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "stata-mcp", "description": "Run or debug Stata workflows through the local io.github.tmonk/mcp-stata server. Use when users mention Stata commands, .do files, r()/e() results, dataset inspection, Stata graph exports, or data bro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/stata-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "stata-mcp. Run or debug Stata workflows through the local io.github.tmonk/mcp-stata server. Use when users mention Stata commands, .do files, r()/e() results, dataset inspection, Stata graph exports, or data bro Platforms: claude_code."} +{"id": "5b8018984263884b9b2ce5dcd39573360b81b1590313abff2a9ecaac046ad39a", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-auth-users", "description": "Test for user enumeration vulnerabilities through various authentication endpoints.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-auth/supabase-audit-auth-users/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-auth-users. Test for user enumeration vulnerabilities through various authentication endpoints. Platforms: claude_code."} +{"id": "83a8cf89d15ff7ac9ac17db7da6212474248f583ca366ebed45e1f102bc5d88d", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-realtime", "description": "Test Supabase Realtime WebSocket channels for unauthorized subscriptions and data exposure.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-realtime/supabase-audit-realtime/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-realtime. Test Supabase Realtime WebSocket channels for unauthorized subscriptions and data exposure. Platforms: claude_code."} +{"id": "6fa25b407b7944c04716241eeac72fe737c76edf39943a301a31cb5905cba8b1", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-click-animations", "description": "Master v-click and sequential animations in Slidev. Use this skill to reveal content progressively and create engaging presentations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/animations/slidev-click-animations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-click-animations. Master v-click and sequential animations in Slidev. Use this skill to reveal content progressively and create engaging presentations. Platforms: claude_code."} +{"id": "dfa6b6ab2507e94b230065a92985762d3533f10129369f0eec715bd4824704cd", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "measuring-product-market-fit", "description": "Help users assess and achieve product-market fit. Use when someone is trying to determine if they have PMF, measuring user engagement and retention, running the Sean Ellis survey, or figuring out if t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/measuring-product-market-fit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "measuring-product-market-fit. Help users assess and achieve product-market fit. Use when someone is trying to determine if they have PMF, measuring user engagement and retention, running the Sean Ellis survey, or figuring out if t Platforms: claude_code."} +{"id": "631872026d0ec0c85e246d47979656c1842ca9132ee3b2f6b218c4b584f2a675", "repo_url": "https://github.com/samhvw8/dotfiles", "name": "docs-discovery", "description": "Technical documentation discovery via context7 and web search. Capabilities: library/framework docs lookup, topic-specific search. Keywords: llms.txt, context7, documentation, library docs, API docs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samhvw8/dotfiles/blob/master/dot_ccp/hub/skills/docs-discovery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:59:44Z"}, "embedding_text": "docs-discovery. Technical documentation discovery via context7 and web search. Capabilities: library/framework docs lookup, topic-specific search. Keywords: llms.txt, context7, documentation, library docs, API docs. Platforms: claude_code."} +{"id": "57d2ce505c9053891a27bd73ac5d25ca720fe9caabd13993b54b382bd2b68939", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "hook-template", "description": "Generate hook script from template", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/hook-template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hook-template"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "hook-template. Generate hook script from template Platforms: claude_code."} +{"id": "179748a5cdd264b116722551f85a1963c0c8fd0a768484037e9c9f60d4595b76", "repo_url": "https://github.com/clerk/skills", "name": "clerk-setup", "description": "Add Clerk authentication to any project by following the official quickstart guides.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/clerk/skills/blob/main/skills/core/clerk-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:23:54Z"}, "embedding_text": "clerk-setup. Add Clerk authentication to any project by following the official quickstart guides. Platforms: claude_code."} +{"id": "5e8438699b5aa9a1885b62dd29f79c382275dd1d96f1a944b96e4e1891253ddd", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code Platforms: claude_code."} +{"id": "ce7c9d789dc1b071289b377e890f02df6925f6d113d25edffb45d132df4eb8d9", "repo_url": "https://github.com/kevin-hs-sohn/hipocampus", "name": "hipocampus-core", "description": "3-tier agent memory system with 5-level compaction tree. OpenClaw version. Defines session start protocol, end-of-task checkpoints, and memory file management. MUST be followed every session.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevin-hs-sohn/hipocampus/blob/main/platforms/codex/core/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T19:08:09Z"}, "embedding_text": "hipocampus-core. 3-tier agent memory system with 5-level compaction tree. OpenClaw version. Defines session start protocol, end-of-task checkpoints, and memory file management. MUST be followed every session. Platforms: claude_code."} +{"id": "c1ed029e29170d5f68ff7043c32031cf3d9c557800e3de84b9a07bd5ce00109f", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-pkg-transformers", "description": "This skill should be used when working with pre-trained transformer models for natural language processing, computer vision, audio, or multimodal tasks. Use for text generation, classification, question answering, translation, summarization, image classification, object detection, speech recognition, and fine-tuning models on custom datasets.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-pkg-transformers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-pkg-transformers"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-pkg-transformers. This skill should be used when working with pre-trained transformer models for natural language processing, computer vision, audio, or multimodal tasks. Use for text generation, classification, question answering, translation, summarization, image classification, object detection, speech recognition, and fine-tuning models on custom datasets. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "1a04a8385d8f43b62d03ff33a0f0f2b2b304e39b71233e5ec8c1436d9302a732", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-app-upgrade-v6-to-v7", "description": "Guides the agent through upgrading a Capacitor app from v6 to v7. Use when the project is on Capacitor 6 and needs the v7 migration path. Do not use for other major versions, plugin-only upgrades, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-upgrades/skills/capacitor-app-upgrade-v6-to-v7/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-app-upgrade-v6-to-v7. Guides the agent through upgrading a Capacitor app from v6 to v7. Use when the project is on Capacitor 6 and needs the v7 migration path. Do not use for other major versions, plugin-only upgrades, or Platforms: claude_code."} +{"id": "6f9efcb1af9f3867d3624ed51a733163f125813709e65e5e80451e834f42cbf1", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "gmail", "description": "Interact with Gmail - search emails, read messages, send emails, create drafts, and manage labels.\nUse when user asks to: search email, read email, send email, create email draft, mark as read,\narchive email, star email, or manage Gmail labels. Lightweight alternative to full Google\nWorkspace MCP server with standalone OAuth authentication.\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/gmail/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gmail"}, "quality": {"stars": 326, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-07T15:54:46Z"}, "embedding_text": "gmail. Interact with Gmail - search emails, read messages, send emails, create drafts, and manage labels.\nUse when user asks to: search email, read email, send email, create email draft, mark as read,\narchive email, star email, or manage Gmail labels. Lightweight alternative to full Google\nWorkspace MCP server with standalone OAuth authentication.\n Categories: agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code."} +{"id": "9c8ef3578bd2f5023cefd69d2589e01e6fbb82b5d74089591f48fa263008ac8a", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "competitive-ads-extractor", "description": "Extracts and analyzes competitors' ads from ad libraries (Facebook, LinkedIn, etc.) to understand what messaging, problems, and creative approaches are working. Helps inspire and improve your own ad c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/competitive-ads-extractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "competitive-ads-extractor. Extracts and analyzes competitors' ads from ad libraries (Facebook, LinkedIn, etc.) to understand what messaging, problems, and creative approaches are working. Helps inspire and improve your own ad c Platforms: claude_code."} +{"id": "e25bfae3d662405c3490c32bf4790bfe46b71d753ac8a347ea55659143253f21", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "agent-template", "description": "Generate custom agent from template", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/agent-template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-template"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "agent-template. Generate custom agent from template Platforms: claude_code."} +{"id": "0ade0c98ff77e268548b795596f58aa895e28161c656d2d0edaf998018d58290", "repo_url": "https://github.com/alibaba/loongcollector", "name": "commit", "description": "Writing Commit Message", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alibaba/loongcollector/blob/main/.claude/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2158, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:17:48Z"}, "embedding_text": "commit. Writing Commit Message Platforms: claude_code."} +{"id": "f39b92ada0fcf1e2cafbcbaf98114b4cbe82f43324a92aa04274562591f1daaa", "repo_url": "https://github.com/darkroomengineering/cc-settings", "name": "ask", "description": "Expert guidance and advice from Oracle. Use when:\n- User has a question about best practices\n- User needs architectural guidance\n- User asks \"what should I\", \"how should I\", \"advice on\"\n- Need expert", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/darkroomengineering/cc-settings/blob/main/skills/autoresearch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:59:42Z"}, "embedding_text": "ask. Expert guidance and advice from Oracle. Use when:\n- User has a question about best practices\n- User needs architectural guidance\n- User asks \"what should I\", \"how should I\", \"advice on\"\n- Need expert Platforms: claude_code."} +{"id": "28d61dd50cc60da7cc165b128f005a4e84d9d84b72f92248644be7655ef7cdfc", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "negotiating-offers", "description": "Negotiate job offers and produce an Offer Negotiation Pack (success-conditions asks, tradeoff matrix, negotiation strategy, scripts, optional contract/part-time proposal). Use for salary negotiation,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/negotiating-offers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "negotiating-offers. Negotiate job offers and produce an Offer Negotiation Pack (success-conditions asks, tradeoff matrix, negotiation strategy, scripts, optional contract/part-time proposal). Use for salary negotiation, Platforms: claude_code."} +{"id": "62502415ed0b193e71f5a38bd8b21a4b405025a0617d7b0f6d004f110b9fe995", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "gui-tools", "description": "Provides guidance for installing, configuring, and choosing Git graphical interface clients (GitKraken, Sourcetree, GitHub Desktop) across platforms. Compares features, licensing, and workflows. Troub", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/github-specialist/gui-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "gui-tools. Provides guidance for installing, configuring, and choosing Git graphical interface clients (GitKraken, Sourcetree, GitHub Desktop) across platforms. Compares features, licensing, and workflows. Troub Platforms: claude_code."} +{"id": "40dcb530b7b8a26b849008ef55a5f023ad3f09800d6114c0e2c99c4c81182a71", "repo_url": "https://github.com/kevin-hs-sohn/hipocampus", "name": "hipocampus-compaction", "description": "Build 5-level compaction tree (daily/weekly/monthly/root) with smart thresholds and fixed/tentative lifecycle. Run at session start when triggers are met, or via external scheduler.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevin-hs-sohn/hipocampus/blob/main/skills/compaction/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T19:08:09Z"}, "embedding_text": "hipocampus-compaction. Build 5-level compaction tree (daily/weekly/monthly/root) with smart thresholds and fixed/tentative lifecycle. Run at session start when triggers are met, or via external scheduler. Platforms: claude_code."} +{"id": "e5edd17c3025a435cf1b073e182171f792f7b3b52d2226f9da3e57fc69d5c673", "repo_url": "https://github.com/axtonliu/ai-pair", "name": "ai-pair", "description": "AI Pair Collaboration Skill. Coordinate multiple AI models to work together:\none creates (Author/Developer), two others review (Codex + Gemini).\nWorks for code, articles, video scripts, and any creati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/axtonliu/ai-pair/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 256, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T18:23:02Z"}, "embedding_text": "ai-pair. AI Pair Collaboration Skill. Coordinate multiple AI models to work together:\none creates (Author/Developer), two others review (Codex + Gemini).\nWorks for code, articles, video scripts, and any creati Platforms: claude_code."} +{"id": "3e33f0add2b57bd83b36f1bc7d93524bbfac9dbfed15fbebf3dd862303cde25b", "repo_url": "https://github.com/featbit/featbit-skills", "name": "featbit-sdks-python", "description": "Expert guidance for integrating FeatBit Python Server SDK in backend applications. Use when user asks about \"Python SDK\", \"Python feature flags\", \"FeatBit Python\", fbclient usage, or mentions .py file", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/featbit/featbit-skills/blob/main/skills/featbit-sdks-python/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-28T07:03:45Z"}, "embedding_text": "featbit-sdks-python. Expert guidance for integrating FeatBit Python Server SDK in backend applications. Use when user asks about \"Python SDK\", \"Python feature flags\", \"FeatBit Python\", fbclient usage, or mentions .py file Platforms: claude_code."} +{"id": "9b878c09c56a4ae178108ea3268936e4788ac0d2dcf09c3e1fd346def846678f", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "gdpr-dsgvo-expert", "description": "Senior GDPR/DSGVO expert and internal/external auditor for data protection compliance. Provides EU GDPR and German DSGVO expertise, privacy impact assessments, data protection auditing, and compliance", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/ra-qm-team/gdpr-dsgvo-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "gdpr-dsgvo-expert. Senior GDPR/DSGVO expert and internal/external auditor for data protection compliance. Provides EU GDPR and German DSGVO expertise, privacy impact assessments, data protection auditing, and compliance Platforms: claude_code."} +{"id": "654b09599b76f37cf2e667da5e8348686b5411f7862a0d1d5f4dbb5fc56e6fdc", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "ui-design", "description": "Use this to design a nice UI in single html as inspiration & UI exploration.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/ui-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ui-design"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:28:52Z"}, "embedding_text": "ui-design. Use this to design a nice UI in single html as inspiration & UI exploration. Platforms: claude_code."} +{"id": "a5c5ae5324e8f2e410558b321498f411b9a9f1ca48c10e266ff2c268a935df93", "repo_url": "https://github.com/reinamaccredy/maestro", "name": "using-git-worktrees", "description": "A skill for creating isolated git worktrees with systematic directory selection and safety checks. Automatically detects project type, runs setup commands, verifies tests pass, and ensures worktree di", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reinamaccredy/maestro/blob/main/.claude/skills/cli-for-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199, "skillhub_rank": "A", "skillhub_score": 8.3, "last_updated": "2026-06-21T16:58:40Z"}, "embedding_text": "using-git-worktrees. A skill for creating isolated git worktrees with systematic directory selection and safety checks. Automatically detects project type, runs setup commands, verifies tests pass, and ensures worktree di Platforms: claude_code."} +{"id": "779faa10ee14f5c0a3146b26173656987db2d570843ccc58b9646d486540770e", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "moc-curator", "description": "Suggest MOC updates and new MOCs based on semantic clustering.\nUse when asked to \"curate MOCs\", \"update maps\", \"find clusters\",\n\"what MOCs need updating\", or \"organize my notes\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/moc-curator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "moc-curator. Suggest MOC updates and new MOCs based on semantic clustering.\nUse when asked to \"curate MOCs\", \"update maps\", \"find clusters\",\n\"what MOCs need updating\", or \"organize my notes\". Platforms: claude_code."} +{"id": "b5db73c554df985f3a810ef08f87e3699af5d99a0194d1bc2f531b5d5d41e993", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "rei", "description": "Set up Rei Qwen3 Coder as a model provider. Use when configuring coder.reilabs.org, adding Rei to Clawdbot, or troubleshooting 403 errors from Rei endpoints.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/agentdb-reinforcement-learning-training/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "rei. Set up Rei Qwen3 Coder as a model provider. Use when configuring coder.reilabs.org, adding Rei to Clawdbot, or troubleshooting 403 errors from Rei endpoints. Platforms: claude_code."} +{"id": "d81cdf6646febef40b7553a0eee5be8f6f587409d38dcb38f97437ac893828da", "repo_url": "https://github.com/camoa/claude-skills", "name": "code-pattern-checker", "description": "Use before committing code - validates Drupal coding standards, SOLID/DRY principles, security practices, and CSS standards", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/code-pattern-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "code-pattern-checker. Use before committing code - validates Drupal coding standards, SOLID/DRY principles, security practices, and CSS standards Platforms: claude_code."} +{"id": "ee2ed00405324e142bf6210d09832f205828f3e8aec936347c5c4491ee67dd6c", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "async-python-patterns", "description": "Use when building async APIs, concurrent systems, or I/O-bound Python applications requiring non-blocking operations. Covers asyncio, async/await patterns, task scheduling, synchronization primitives,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/async-python-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "async-python-patterns. Use when building async APIs, concurrent systems, or I/O-bound Python applications requiring non-blocking operations. Covers asyncio, async/await patterns, task scheduling, synchronization primitives, Platforms: claude_code."} +{"id": "36bc0fbd0735070d627aac6544868b74127041d786c644f9ead7b70ccc320d29", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "prp-generator", "description": "Generate comprehensive Product Requirement Plans (PRPs) for feature implementation with thorough codebase analysis and external research. Use when the user requests a PRP, PRD, or detailed implementat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/developer/skills/prp-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "prp-generator. Generate comprehensive Product Requirement Plans (PRPs) for feature implementation with thorough codebase analysis and external research. Use when the user requests a PRP, PRD, or detailed implementat Platforms: claude_code."} +{"id": "e6cc3ccb18635576c1e79bf451d47d306c852879907f8c6d7c413ab1ee00730b", "repo_url": "https://github.com/glebis/claude-skills", "name": "presentation-generator", "description": "Generate interactive HTML presentations with neobrutalism styling, ASCII art decorations, and Agency brand colors. Outputs HTML (interactive with navigation), PNG (individual slides via Playwright), a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/present/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "presentation-generator. Generate interactive HTML presentations with neobrutalism styling, ASCII art decorations, and Agency brand colors. Outputs HTML (interactive with navigation), PNG (individual slides via Playwright), a Platforms: claude_code."} +{"id": "af5222fb8c9172c663da87589d3aa818042d840a7d6383bdf0a490f4a5c0502d", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "bracket-predictor", "description": "March Madness, playoff brackets, tournament picks. Upset potential, chalk vs contrarian strategies, historical trends, confidence levels.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/bracket-predictor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "bracket-predictor. March Madness, playoff brackets, tournament picks. Upset potential, chalk vs contrarian strategies, historical trends, confidence levels. Platforms: claude_code."} +{"id": "4b06cee2a347ef403358eeec03e036b87537f3ae8666223bed8872d381d27146", "repo_url": "https://github.com/plurigrid/asi", "name": "aptos-trading", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/aptos-trading/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "aptos-trading. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "70820a84ee5fb82f57795c13c5131952aacd650c748479fb7be69433cf289a38", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "DevOps Engineer", "description": "Builds infrastructure that scales without babysitting. Automates everything worth automating. Monitors before it breaks. Treats clicking in consoles as a production incident waiting to happen.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/devops-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "DevOps Engineer. Builds infrastructure that scales without babysitting. Automates everything worth automating. Monitors before it breaks. Treats clicking in consoles as a production incident waiting to happen. Platforms: claude_code."} +{"id": "dbf967c52e3e0e5afa18122ff2955a580fccddb77e95bfbb213db49773f5f17f", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "ros1-development", "description": "Best practices, design patterns, and common pitfalls for ROS1 (Robot Operating System 1) development. Use this skill when building ROS1 nodes, packages, launch files, or debugging ROS1 systems. Trigger whenever the user mentions ROS1, catkin, rospy, roscpp, roslaunch, roscore, rostopic, tf, actionlib, message types, services, or any ROS1-era robotics middleware. Also trigger for migrating ROS1 code to ROS2, maintaining legacy ROS1 systems, or building ROS1-ROS2 bridges. Covers catkin workspaces, nodelets, dynamic reconfigure, pluginlib, and the full ROS1 ecosystem.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/ros1/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ros1-development"}, "quality": {"stars": 287, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T23:26:20Z"}, "embedding_text": "ros1-development. Best practices, design patterns, and common pitfalls for ROS1 (Robot Operating System 1) development. Use this skill when building ROS1 nodes, packages, launch files, or debugging ROS1 systems. Trigger whenever the user mentions ROS1, catkin, rospy, roscpp, roslaunch, roscore, rostopic, tf, actionlib, message types, services, or any ROS1-era robotics middleware. Also trigger for migrating ROS1 code to ROS2, maintaining legacy ROS1 systems, or building ROS1-ROS2 bridges. Covers catkin workspaces, nodelets, dynamic reconfigure, pluginlib, and the full ROS1 ecosystem. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} +{"id": "34f8b61559d8bf64f647e9900c69475c8f09e776906cdb20c07a511b022d7c77", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "google-tagmanager", "description": "Comprehensive Google Tag Manager guide covering container setup, tags, triggers, variables, data layer, debugging, custom templates, and API automation. Use when working with GTM implementation, confi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/google-tagmanager/skills/google-tagmanager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "google-tagmanager. Comprehensive Google Tag Manager guide covering container setup, tags, triggers, variables, data layer, debugging, custom templates, and API automation. Use when working with GTM implementation, confi Platforms: claude_code."} +{"id": "d921d328d9fd1ff242ba0cd76561e8f5e41f8cfc30874ccc72cfc093bf52bae6", "repo_url": "https://github.com/microsoft/azure-skills", "name": "customize", "description": "Interactive guided deployment flow for Azure OpenAI models with full customization control. Step-by-step selection of model version, SKU (GlobalStandard/Standard/ProvisionedManaged), capacity, RAI policy (content filter), and advanced options (dynamic quota, priority processing, spillover). USE FOR: custom deployment, customize model deployment, choose version, select SKU, set capacity, configure content filter, RAI policy, deployment options, detailed deployment, advanced deployment, PTU deployment, provisioned throughput. DO NOT USE FOR: quick deployment to optimal region (use preset).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/models/deploy-model/customize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install customize"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "customize. Interactive guided deployment flow for Azure OpenAI models with full customization control. Step-by-step selection of model version, SKU (GlobalStandard/Standard/ProvisionedManaged), capacity, RAI policy (content filter), and advanced options (dynamic quota, priority processing, spillover). USE FOR: custom deployment, customize model deployment, choose version, select SKU, set capacity, configure content filter, RAI policy, deployment options, detailed deployment, advanced deployment, PTU deployment, provisioned throughput. DO NOT USE FOR: quick deployment to optimal region (use preset). Platforms: claude_code."} +{"id": "c2ad5001403b1265d8ae44f058893b34cb11f35e658824bfceb65d1970d25c1c", "repo_url": "https://github.com/composiohq/composio", "name": "create-cli-e2e", "description": "Write end-to-end tests for CLI commands using the Docker-based test framework in ts/e2e-tests/cli/.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/composio/blob/next/.agents/skills/create-cli-e2e/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28892, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:17:45Z"}, "embedding_text": "create-cli-e2e. Write end-to-end tests for CLI commands using the Docker-based test framework in ts/e2e-tests/cli/. Platforms: claude_code."} +{"id": "5efae05e314c7cfd891dd41dc44efdd50ac97ec829449578e90dcd571be9b0ef", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "deal-review-framework", "description": "Structured deal assessment using MEDDIC, BANT. Risk scoring, required evidence by stage, red flag detection, coaching points.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/deal-review-framework/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "deal-review-framework. Structured deal assessment using MEDDIC, BANT. Risk scoring, required evidence by stage, red flag detection, coaching points. Platforms: claude_code."} +{"id": "f597f379312d330d677b26d26434a32721a975371aa805acadbcfb912f324453", "repo_url": "https://github.com/microsoft/azure-skills", "name": "deploy-model", "description": "Unified Azure OpenAI model deployment skill with intelligent intent-based routing. Handles quick preset deployments, fully customized deployments (version/SKU/capacity/RAI policy), and capacity discovery across regions and projects. USE FOR: deploy model, deploy gpt, create deployment, model deployment, deploy openai model, set up model, provision model, find capacity, check model availability, where can I deploy, best region for model, capacity analysis. DO NOT USE FOR: listing existing deployments (use foundry_models_deployments_list MCP tool), deleting deployments, agent creation (use agent/create), project creation (use project/create).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/models/deploy-model/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deploy-model"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "deploy-model. Unified Azure OpenAI model deployment skill with intelligent intent-based routing. Handles quick preset deployments, fully customized deployments (version/SKU/capacity/RAI policy), and capacity discovery across regions and projects. USE FOR: deploy model, deploy gpt, create deployment, model deployment, deploy openai model, set up model, provision model, find capacity, check model availability, where can I deploy, best region for model, capacity analysis. DO NOT USE FOR: listing existing deployments (use foundry_models_deployments_list MCP tool), deleting deployments, agent creation (use agent/create), project creation (use project/create). Platforms: claude_code."} +{"id": "aa357a798f653df29100e61233a7e58c6c91b0915cd36e1aa690194b1e5f66f4", "repo_url": "https://github.com/congdon1207/agents.md", "name": "repomix", "description": "Package entire code repositories into single AI-friendly files using Repomix. Capabilities include pack codebases with customizable include/exclude patterns, generate multiple output formats (XML, Mar", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/repomix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "repomix. Package entire code repositories into single AI-friendly files using Repomix. Capabilities include pack codebases with customizable include/exclude patterns, generate multiple output formats (XML, Mar Platforms: claude_code."} +{"id": "31be8e4b50c9eeaee0f35ba452ec927cbe454f99055597cefba1bc1342a545f6", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "localization-strategy", "description": "Localization and internationalization strategy for iOS/macOS apps. Covers market prioritization, language tier recommendations, minimum viable localization levels, translation workflows, cultural adap", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/product/localization-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "localization-strategy. Localization and internationalization strategy for iOS/macOS apps. Covers market prioritization, language tier recommendations, minimum viable localization levels, translation workflows, cultural adap Platforms: claude_code."} +{"id": "f3201e214933a11f8497b7c906a76801bd2cdefa00410253f07e9ba535bc050c", "repo_url": "https://github.com/matsuni-kk/agent_template_public", "name": "rule-validation", "description": "validate_skills.py\u3092\u5b9f\u884c\u3057\u3066Skills/Agents/Commands\u306e\u69cb\u6587\u3092\u691c\u8a3c\u3057\u3001\u30a8\u30e9\u30fc\u3092\u4fee\u6b63\u3057\u3066\u30ed\u30b0\u3092\u8a18\u9332\u3059\u308b\u3002\u300c\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u300d\u300c\u69cb\u6587\u691c\u8a3c\u300d\u300cSkills\u30c1\u30a7\u30c3\u30af\u300d\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matsuni-kk/agent_template_public/blob/main/.claude/skills/rule-validation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T07:11:55Z"}, "embedding_text": "rule-validation. validate_skills.py\u3092\u5b9f\u884c\u3057\u3066Skills/Agents/Commands\u306e\u69cb\u6587\u3092\u691c\u8a3c\u3057\u3001\u30a8\u30e9\u30fc\u3092\u4fee\u6b63\u3057\u3066\u30ed\u30b0\u3092\u8a18\u9332\u3059\u308b\u3002\u300c\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u300d\u300c\u69cb\u6587\u691c\u8a3c\u300d\u300cSkills\u30c1\u30a7\u30c3\u30af\u300d\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002 Platforms: claude_code."} +{"id": "4835cc598a700c6ffec9c218fdde69cdd692df2cf76e7f23811a0a16a282fdab", "repo_url": "https://github.com/abhinav/home", "name": "superpowers-writing-skills", "description": "Use when creating new skills, editing existing skills, or verifying skills work before deployment", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/abhinav/home/blob/master/.agents/skills/changie/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:06:20Z"}, "embedding_text": "superpowers-writing-skills. Use when creating new skills, editing existing skills, or verifying skills work before deployment Platforms: claude_code."} +{"id": "ffa0637185b3f2359e2a836f8e6bb3b46194c2d9c2d27603cba9ef40afaec1ea", "repo_url": "https://github.com/mkdev-me/claude-skills", "name": "gemini-image-generator", "description": "Generate images using Google Gemini with customizable options", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mkdev-me/claude-skills/blob/main/gemini-image-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-23T09:31:11Z"}, "embedding_text": "gemini-image-generator. Generate images using Google Gemini with customizable options Platforms: claude_code."} +{"id": "5f99f5f71ad908464d0292855bf0927e2990ce10229eb8a07135e4cf924d849c", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "setup-architect", "description": "Sets up and installs the AI Software Architect framework in a NEW project for the FIRST time. Use when the user requests \"Setup .architecture\", \"Setup ai-software-architect\", \"Initialize architecture", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/skills/setup-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T18:12:57Z"}, "embedding_text": "setup-architect. Sets up and installs the AI Software Architect framework in a NEW project for the FIRST time. Use when the user requests \"Setup .architecture\", \"Setup ai-software-architect\", \"Initialize architecture Platforms: claude_code."} +{"id": "5c9366d053952e2e77b6fa644834566be7ada943c3dd1fdc96de6a102c5de689", "repo_url": "https://github.com/incomestreamsurfer/claude-skills-collection", "name": "openai-agent-sdk-skill", "description": "Create OpenAI Agents SDK applications in TypeScript/JavaScript. Use when building AI agents, multi-agent systems, voice agents, or any agentic workflow with the OpenAI Agents SDK. Covers agents, tools", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/incomestreamsurfer/claude-skills-collection/blob/main/skills/openai-agent-sdk-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T05:35:33Z"}, "embedding_text": "openai-agent-sdk-skill. Create OpenAI Agents SDK applications in TypeScript/JavaScript. Use when building AI agents, multi-agent systems, voice agents, or any agentic workflow with the OpenAI Agents SDK. Covers agents, tools Platforms: claude_code."} +{"id": "65489384d0a0f0fb543af2df860d22cfb6886846e9bf5fe2c5953d1a355b8128", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "pdf-processing-pro", "description": "Production-ready PDF processing with forms, tables, OCR, validation, and batch operations. Use when working with complex PDF workflows in production environments, processing large volumes of PDFs, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/documents/skills/pdf-processing-pro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "pdf-processing-pro. Production-ready PDF processing with forms, tables, OCR, validation, and batch operations. Use when working with complex PDF workflows in production environments, processing large volumes of PDFs, or Platforms: claude_code."} +{"id": "e14358cf3eafa5370a8587e4659f45a6e6d59dfe716c533ea1501952f3cdc10a", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-context-health", "description": "Report the current state of the context window and recommend compression or cleanup actions. Activate when user mentions \"context health\", \"context window\", \"how much context\", \"context full\", \"runnin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-context-health/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-context-health. Report the current state of the context window and recommend compression or cleanup actions. Activate when user mentions \"context health\", \"context window\", \"how much context\", \"context full\", \"runnin Platforms: claude_code."} +{"id": "026fc1fb5b8004ca8aadfdc2b4c235f006370108e7e2ed7195eb5b44afbb585a", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "onboarding-new-hires", "description": "Design a high-signal onboarding experience and produce a New Hire Onboarding Pack (preboarding checklist, first-week plan, buddy/first-pair plan, listening tour kit, working agreement, 30/60/90 + 1y/2", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/onboarding-new-hires/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "onboarding-new-hires. Design a high-signal onboarding experience and produce a New Hire Onboarding Pack (preboarding checklist, first-week plan, buddy/first-pair plan, listening tour kit, working agreement, 30/60/90 + 1y/2 Platforms: claude_code."} +{"id": "0bcedb0b744b88e634535a300777f1418cdcf46371b02ff09b3968c8642390d4", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "sequential-thinking_mrgoonie", "description": "Use when complex problems require systematic step-by-step reasoning with ability to revise thoughts, branch into alternative approaches, or dynamically adjust scope. Ideal for multi-stage analysis, design planning, problem decomposition, or tasks with initially unclear scope.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/sequential-thinking_mrgoonie/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sequential-thinking_mrgoonie"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "sequential-thinking_mrgoonie. Use when complex problems require systematic step-by-step reasoning with ability to revise thoughts, branch into alternative approaches, or dynamically adjust scope. Ideal for multi-stage analysis, design planning, problem decomposition, or tasks with initially unclear scope. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "3da8bcaee91218ead6692a83ada7d59dbfba7de82fb49d47f0fa1a702ea56685", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "board-of-directors", "description": "Simulate a 5-member expert board deliberation for major decisions. Use when evaluating plans, architecture choices, feature designs, or any decision requiring multi-perspective expert analysis. Trigge", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/board-of-directors/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "board-of-directors. Simulate a 5-member expert board deliberation for major decisions. Use when evaluating plans, architecture choices, feature designs, or any decision requiring multi-perspective expert analysis. Trigge Platforms: claude_code."} +{"id": "4230b17d416be032606b599985b7c8d4885e03c0e8421becd5969a9d965cac14", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "erne-deploy", "description": "ERNE \u2014 Validate and submit app builds using parallel expo-config-resolver and code-reviewer agents", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "erne-deploy. ERNE \u2014 Validate and submit app builds using parallel expo-config-resolver and code-reviewer agents Platforms: claude_code."} +{"id": "13f4d9bf31c27f98a1a9f6299451a865352a423dbf0bbeeef53cfcde3e14ab65", "repo_url": "https://github.com/kukapay/crypto-skills", "name": "evm-swiss-knife", "description": "Interact with EVM-compatible blockchains using Foundry's cast tool for querying balances, calling contracts, sending transactions, and blockchain exploration. Use when needing to interact with Ethereu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kukapay/crypto-skills/blob/main/skills/evm-swiss-knife/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-04T16:18:23Z"}, "embedding_text": "evm-swiss-knife. Interact with EVM-compatible blockchains using Foundry's cast tool for querying balances, calling contracts, sending transactions, and blockchain exploration. Use when needing to interact with Ethereu Platforms: claude_code."} +{"id": "5599033d8b3ed9cc39f31f58ea49f137bf7f0cf2c4b2c656395c9fa4ae28f824", "repo_url": "https://github.com/congdon1207/agents.md", "name": "documentation", "description": "Use for PLANNING documentation with phased analysis (4 phases), gap identification, and structured knowledge modeling. Best for documentation audits, completeness analysis, and documentation strategy", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.agent/skills/documentation-templates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "documentation. Use for PLANNING documentation with phased analysis (4 phases), gap identification, and structured knowledge modeling. Best for documentation audits, completeness analysis, and documentation strategy Platforms: claude_code."} +{"id": "c58f63f852c386daeaee612c09ba3fdd1ea76e58635e24818dc01405159eeede", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "sequential-thinking", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/sequential-thinking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "sequential-thinking. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3b238eaf1b3e9dd473299c6e7d4c473e15002efdf38afab97e55e005160bb484", "repo_url": "https://github.com/thepexcel/agent-skills", "name": "graphic-designer", "description": "Designs graphics for thumbnails, social media, banners, and presentations. Applies design principles (CRAP, Gestalt, visual hierarchy) with research-backed techniques. Integrates with /geometric-eleme", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thepexcel/agent-skills/blob/main/_archive/deep-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-07T09:54:47Z"}, "embedding_text": "graphic-designer. Designs graphics for thumbnails, social media, banners, and presentations. Applies design principles (CRAP, Gestalt, visual hierarchy) with research-backed techniques. Integrates with /geometric-eleme Platforms: claude_code."} +{"id": "cfd0e625042d51240ef71ef4fd73a369794e06079de36ac0fe2e1bbdc600a250", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-hana-ml", "description": "SAP HANA Machine Learning Python Client (hana-ml) development skill.\n\nUse when: Building ML solutions with SAP HANA's in-database machine learning\nusing Python hana-ml library for PAL/APL algorithms,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-hana-ml/skills/sap-hana-ml/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-hana-ml. SAP HANA Machine Learning Python Client (hana-ml) development skill.\n\nUse when: Building ML solutions with SAP HANA's in-database machine learning\nusing Python hana-ml library for PAL/APL algorithms, Platforms: claude_code."} +{"id": "1f2b2cab439b1f8b592cd48fa924ee206b6a7ffacc5551615f25fe41b7ea4069", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-signup-flow", "description": "Design frictionless signup experiences for developers including GitHub OAuth,\nAPI key generation, and onboarding personalization. Trigger phrases: developer signup,\ndev registration, OAuth flow, API k", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-signup-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-signup-flow. Design frictionless signup experiences for developers including GitHub OAuth,\nAPI key generation, and onboarding personalization. Trigger phrases: developer signup,\ndev registration, OAuth flow, API k Platforms: claude_code."} +{"id": "54f33574d81e934e622bab0032fa2539ace181fd5951ac0226f1056296e449be", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "screenshot-to-code", "description": "Convert UI screenshots into working HTML/CSS/React/Vue code. Detects design patterns, components, and generates responsive layouts. Use this when users provide screenshots of websites, apps, or UI des", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/screenshot-to-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "screenshot-to-code. Convert UI screenshots into working HTML/CSS/React/Vue code. Detects design patterns, components, and generates responsive layouts. Use this when users provide screenshots of websites, apps, or UI des Platforms: claude_code."} +{"id": "2668eecc2d33a867c97222fdd84856e622282c93226d68b67e11360096e99500", "repo_url": "https://github.com/semgrep/skills", "name": "semgrep", "description": "Run Semgrep static analysis scans and create custom detection rules. Use when asked to scan code with Semgrep, find security vulnerabilities, write custom YAML rules, or detect specific bug patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/semgrep/skills/blob/main/skills/semgrep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T08:24:41Z"}, "embedding_text": "semgrep. Run Semgrep static analysis scans and create custom detection rules. Use when asked to scan code with Semgrep, find security vulnerabilities, write custom YAML rules, or detect specific bug patterns. Platforms: claude_code."} +{"id": "a251080ed37807c66b89547efbbd0202ca6880260c9c6d1b62983a67a51e7c71", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-config-reference", "description": "Complete configuration reference for GrepAI. Use this skill when you need to understand all available configuration options.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/configuration/grepai-config-reference/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-config-reference. Complete configuration reference for GrepAI. Use this skill when you need to understand all available configuration options. Platforms: claude_code."} +{"id": "ebb51012acfad3870101ff641f017ba73f3bb7d1fb6554d2d13362ea6a5180e6", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "implementation-guide", "description": "Generates detailed implementation guide with pseudo-code and step-by-step development instructions. Creates IMPLEMENTATION_GUIDE.md from PRD, Architecture, and UX specs. Use when creating development", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/product/implementation-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "implementation-guide. Generates detailed implementation guide with pseudo-code and step-by-step development instructions. Creates IMPLEMENTATION_GUIDE.md from PRD, Architecture, and UX specs. Use when creating development Platforms: claude_code."} +{"id": "564c3de1a39e875d46b39a337493b500afe567d116124277b7367e98e3e5ff2e", "repo_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit", "name": "pyramid-principle", "description": "Hierarchical content structure - answer first, then supporting arguments, then details", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit/blob/main/examples/writing/skills/pyramid-principle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T12:36:10Z"}, "embedding_text": "pyramid-principle. Hierarchical content structure - answer first, then supporting arguments, then details Platforms: claude_code."} +{"id": "7bf319230d7a8593d3e646f6164ddc3ba83532542e87b4f1b666967c5b7752aa", "repo_url": "https://github.com/plurigrid/asi", "name": "nickel", "description": "Nickel configuration language with gradual typing, contracts, and dynamic sufficiency verification. Use for type-safe configs, transformation contracts, and validation pipelines.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/nickel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "nickel. Nickel configuration language with gradual typing, contracts, and dynamic sufficiency verification. Use for type-safe configs, transformation contracts, and validation pipelines. Platforms: claude_code."} +{"id": "c849b987d939ae3ff64c3e5be4ead933490c0bef2b29d7dc3c356d83ae8fbcb4", "repo_url": "https://github.com/karanjot786/agent-skills-cli", "name": "test-skill", "description": "Brief description of what this skill does and when to use it.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "ai", "ai-agents", "antigravity", "claude-code", "claude-skills", "cli", "cursor", "developer-tools", "github-copilot", "llm", "marketplace", "openai", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/karanjot786/agent-skills-cli/blob/main/skills/test-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-skill"}, "quality": {"stars": 162, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T08:02:45Z"}, "embedding_text": "test-skill. Brief description of what this skill does and when to use it. Categories: agent-skills, ai, ai-agents, antigravity, claude-code, claude-skills, cli, cursor, developer-tools, github-copilot, llm, marketplace, openai, typescript. Platforms: claude_code."} +{"id": "65adf92544e35a98f692e67b3f4e26d78d0945e4eb3a2aaa04d6a1d0a28b3555", "repo_url": "https://github.com/jar-analyzer/jar-analyzer", "name": "jar-audit-agent", "description": "\u57fa\u4e8e jar-analyzer\uff08SQLite + \u5185\u7f6e MCP\uff09\u7684\u8bc1\u636e\u9a71\u52a8 Java \u5b89\u5168\u5ba1\u8ba1\u6280\u80fd\u3002\u6838\u5fc3\u76ee\u6807\uff1a\u628a\u201c\u7ed3\u8bba\u201d\u53d8\u6210\u201c\u53ef\u590d\u73b0\u8bc1\u636e + \u53ef\u5ea6\u91cf\u8986\u76d6\u7387\u201d\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jar-analyzer/jar-analyzer/blob/master/skills/jar-audit-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2114, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T03:40:58Z"}, "embedding_text": "jar-audit-agent. \u57fa\u4e8e jar-analyzer\uff08SQLite + \u5185\u7f6e MCP\uff09\u7684\u8bc1\u636e\u9a71\u52a8 Java \u5b89\u5168\u5ba1\u8ba1\u6280\u80fd\u3002\u6838\u5fc3\u76ee\u6807\uff1a\u628a\u201c\u7ed3\u8bba\u201d\u53d8\u6210\u201c\u53ef\u590d\u73b0\u8bc1\u636e + \u53ef\u5ea6\u91cf\u8986\u76d6\u7387\u201d\u3002 Platforms: claude_code."} +{"id": "890eb5f36bbb90a3e11e59f7f19fa6de65126a0712e0125da86b6ae74893e963", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-logic-visualizer", "description": "Create visualize finance logic diagrams (e.g., Draw.io XML) to explain complex finance transmission chains or finance logic flows.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-logic-visualizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-logic-visualizer"}, "quality": {"stars": 2582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-29T05:03:47Z"}, "embedding_text": "alphaear-logic-visualizer. Create visualize finance logic diagrams (e.g., Draw.io XML) to explain complex finance transmission chains or finance logic flows. Platforms: claude_code."} +{"id": "f7d5ae9a8c8a3692a9ed7e413f25a1f9a12ec082ce71f46d813c541a6ab22356", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-security", "description": "Comprehensive security guide for Capacitor apps using Capsec scanner. Covers 63+ security rules across secrets, storage, network, authentication, cryptography, and platform-specific vulnerabilities. U", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-quality/skills/capacitor-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-security. Comprehensive security guide for Capacitor apps using Capsec scanner. Covers 63+ security rules across secrets, storage, network, authentication, cryptography, and platform-specific vulnerabilities. U Platforms: claude_code."} +{"id": "21180cb4ce00ccf1285d984f69d4120444aaf39798624b4843d0d685072a5c1a", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "openai-api", "description": "Build with OpenAI's stateless APIs - Chat Completions (GPT-5, GPT-4o), Embeddings, Images (DALL-E 3), Audio (Whisper + TTS), and Moderation. Includes Node.js SDK and fetch-based approaches for Cloudfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/openai-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "openai-api. Build with OpenAI's stateless APIs - Chat Completions (GPT-5, GPT-4o), Embeddings, Images (DALL-E 3), Audio (Whisper + TTS), and Moderation. Includes Node.js SDK and fetch-based approaches for Cloudfl Platforms: claude_code."} +{"id": "7e508fd943ea2d88d2bf15a7fa1a26df3f28edfb9453654af1980e21d0728125", "repo_url": "https://github.com/bkircher/skills", "name": "terraform", "description": "Use when writing Terraform.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bkircher/skills/blob/main/terraform/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-13T12:23:43Z"}, "embedding_text": "terraform. Use when writing Terraform. Platforms: claude_code."} +{"id": "4f5638408dd51bc90df6c8702342e4b3644493a92c7615d3915606c6c2c47995", "repo_url": "https://github.com/openxjarvis/openclaw-python", "name": "sag", "description": "ElevenLabs text-to-speech with mac-style say UX.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openxjarvis/openclaw-python/blob/main/skills/model-usage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-22T16:36:40Z"}, "embedding_text": "sag. ElevenLabs text-to-speech with mac-style say UX. Platforms: claude_code."} +{"id": "84174f66e7fc8f97c8ebd310a7537aa6d7bac69051d9aa222e75d2c9a6b85fd0", "repo_url": "https://github.com/aurealibe/claude-config", "name": "dev", "description": "Develop phase with exploration and plan validation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aurealibe/claude-config/blob/main/.claude/skills/dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T11:03:11Z"}, "embedding_text": "dev. Develop phase with exploration and plan validation Platforms: claude_code."} +{"id": "985964c95f3f0e4a6077a0913b82f270e0e62f56d2b35efba9049cb6bd2a18eb", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "update-knowledge-base", "description": "Analyze code changes and update KNOWLEDGE_BASE.md with architectural and feature changes.", "source": ["skillhub", "topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/update-knowledge-base/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install update-knowledge-base"}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "update-knowledge-base. Analyze code changes and update KNOWLEDGE_BASE.md with architectural and feature changes. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} +{"id": "d5fb3d7cf1c4d19bb8fca8a467a5fa0a1cc1f860782d7701b44c518a5dc790e8", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "building-chat-widgets", "description": "Build interactive AI chat widgets with buttons, forms, and bidirectional actions.\nUse when creating agentic UIs with clickable widgets, entity tagging (@mentions),\ncomposer tools, or server-handled wi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/building-chat-widgets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "building-chat-widgets. Build interactive AI chat widgets with buttons, forms, and bidirectional actions.\nUse when creating agentic UIs with clickable widgets, entity tagging (@mentions),\ncomposer tools, or server-handled wi Platforms: claude_code."} +{"id": "94654f8ea8aac17de140a9e06d29835b35bcb21cb12cafc9532a8f6edaf42af5", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "FFmpeg Audio Processing", "description": "Extract, normalize, mix, and process audio tracks - audio manipulation and analysis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/multilingual-video-dubbing/environment/skills/ffmpeg-audio-processing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "FFmpeg Audio Processing. Extract, normalize, mix, and process audio tracks - audio manipulation and analysis Platforms: claude_code."} +{"id": "a9e3dc43b7d249e48ff4d0c1baf2168d2b58fbc2e6d31a7d72d2af057c96bfb5", "repo_url": "https://github.com/bybren-llc/safe-agentic-workflow", "name": "pattern-discovery", "description": "Pattern library discovery for pattern-first development. Use BEFORE implementing any new feature, creating components, writing API routes, or adding database operations. Ensures existing patterns are", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bybren-llc/safe-agentic-workflow/blob/main/.agents/skills/pattern-discovery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T18:18:48Z"}, "embedding_text": "pattern-discovery. Pattern library discovery for pattern-first development. Use BEFORE implementing any new feature, creating components, writing API routes, or adding database operations. Ensures existing patterns are Platforms: claude_code."} +{"id": "262e7dafa7463c0df35758932bd0ef9520f1917b23a3333cc2b91c5ee76106df", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "vcp-screener", "description": "Screen S&P 500 stocks for Mark Minervini's Volatility Contraction Pattern (VCP). Identifies Stage 2 uptrend stocks forming tight bases with contracting volatility near breakout pivot points. Use when", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/vcp-screener/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "vcp-screener. Screen S&P 500 stocks for Mark Minervini's Volatility Contraction Pattern (VCP). Identifies Stage 2 uptrend stocks forming tight bases with contracting volatility near breakout pivot points. Use when Platforms: claude_code."} +{"id": "751a92d3b60758fcbec52abfa110a6f19994751536db430566e67ed93d951652", "repo_url": "https://github.com/p-wegner/coding-aider", "name": "coding-aider-plan-generator", "description": "Generate coding-aider plans as created by the IntelliJ coding-aider plugin. Use when user explicitly asks for a \"coding-aider plan\", \"aider plan\", or needs structured development planning with checkli", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/p-wegner/coding-aider/blob/main/.claude/skills/coding-aider-plan-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-30T12:08:35Z"}, "embedding_text": "coding-aider-plan-generator. Generate coding-aider plans as created by the IntelliJ coding-aider plugin. Use when user explicitly asks for a \"coding-aider plan\", \"aider plan\", or needs structured development planning with checkli Platforms: claude_code."} +{"id": "600e69d0b955d29ed23ab9a0debafe5773add462183d6744776ccd58517f4227", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "7097103474d8e0ec38d3153baec34fc1613933298e4b26f7b82b02b128e555a8", "repo_url": "https://github.com/dceoy/speckit-agent-skills", "name": "speckit-specify", "description": "Create or update a feature specification from a natural language feature description.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dceoy/speckit-agent-skills/blob/main/skills/speckit-specify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:26:30Z"}, "embedding_text": "speckit-specify. Create or update a feature specification from a natural language feature description. Platforms: claude_code."} +{"id": "e4b666eb687d399dba524a134ef2736b0011d052e0e479b5027c4ca7194b4dd3", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "institutional-flow-tracker", "description": "Use this skill to track institutional investor ownership changes and portfolio flows using 13F filings data. Analyzes hedge funds, mutual funds, and other institutional holders to identify stocks with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/institutional-flow-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "institutional-flow-tracker. Use this skill to track institutional investor ownership changes and portfolio flows using 13F filings data. Analyzes hedge funds, mutual funds, and other institutional holders to identify stocks with Platforms: claude_code."} +{"id": "cfb1b94c58af664c523c4d0df50dd755aaf8fc2933db522fccd8be2c457c5d11", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "root-cause-analysis", "description": "Problem solving using Fishbone (Ishikawa) diagrams and 5 Whys technique. Identifies root causes systematically and recommends corrective actions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/root-cause-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "root-cause-analysis. Problem solving using Fishbone (Ishikawa) diagrams and 5 Whys technique. Identifies root causes systematically and recommends corrective actions. Platforms: claude_code."} +{"id": "09ebafe338bbd496d6584815f019bb0bb7079eab6f712c6d9a5c85d46851d626", "repo_url": "https://github.com/dceoy/speckit-agent-skills", "name": "speckit-analyze", "description": "Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dceoy/speckit-agent-skills/blob/main/skills/speckit-analyze/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:26:30Z"}, "embedding_text": "speckit-analyze. Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation. Platforms: claude_code."} +{"id": "61fe03ec482cc11afa73ac2b150b87599d1f39c54e98914cd40b22e13ea054f2", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-export", "description": "Export Slidev presentations to PDF, PPTX, and PNG. Use this skill for sharing, printing, and archiving presentations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/export/slidev-export/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-export. Export Slidev presentations to PDF, PPTX, and PNG. Use this skill for sharing, printing, and archiving presentations. Platforms: claude_code."} +{"id": "831bd97aa009a9999bb874252982f35471e654d68b5a5d442c144a5f8fd5e31f", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-accessibility", "description": "Accessibility guide for Capacitor apps covering screen readers, semantic HTML, focus management, and WCAG compliance. Use this skill when users need to make their app accessible.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-quality/skills/capacitor-accessibility/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-accessibility. Accessibility guide for Capacitor apps covering screen readers, semantic HTML, focus management, and WCAG compliance. Use this skill when users need to make their app accessible. Platforms: claude_code."} +{"id": "ceca33d431e0fd48bd2009cc1dad7c5bc8cbe9a8038465e7986b56cb0e20f444", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "usability-testing", "description": "Design and plan usability tests - task creation, think-aloud protocols, moderator scripts, metrics definition, and analysis frameworks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/ux-research/usability-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "usability-testing. Design and plan usability tests - task creation, think-aloud protocols, moderator scripts, metrics definition, and analysis frameworks. Platforms: claude_code."} +{"id": "95890bdfa363576d98415f1e38eb16edc2d45742c10afe4c2fe115d088e09176", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "aar", "description": "After-Action Review\u2014structured debrief asking what was expected, what happened, why the difference, and what next. Use after projects, launches, presentations, or any significant event.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/aar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "aar. After-Action Review\u2014structured debrief asking what was expected, what happened, why the difference, and what next. Use after projects, launches, presentations, or any significant event. Platforms: claude_code."} +{"id": "bc79e664bd8b33560669b1d227d4e4a41ccf89e621fb49f39427d607ce96892b", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "watchOS", "description": "watchOS development guidance including SwiftUI for Watch, Watch Connectivity, complications, and watch-specific UI patterns. Use for watchOS code review, best practices, or Watch app development.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/watchos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "watchOS. watchOS development guidance including SwiftUI for Watch, Watch Connectivity, complications, and watch-specific UI patterns. Use for watchOS code review, best practices, or Watch app development. Platforms: claude_code."} +{"id": "6750488cef35d2ca9a5e2db2b204ad22c63a7a9a673b6509816ebf0509264a00", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-app-upgrade-v7-to-v8", "description": "Guides the agent through upgrading a Capacitor app from v7 to v8. Use when the project is on Capacitor 7 and needs the v8 migration path. Do not use for other major versions, plugin-only upgrades, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-upgrades/skills/capacitor-app-upgrade-v7-to-v8/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-app-upgrade-v7-to-v8. Guides the agent through upgrading a Capacitor app from v7 to v8. Use when the project is on Capacitor 7 and needs the v8 migration path. Do not use for other major versions, plugin-only upgrades, or Platforms: claude_code."} +{"id": "628754f10b694cabd50504a7b4b55d331abe904bcf58c8cd77d085ad18b301ed", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "reviewing-notes", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/reviewing-notes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "reviewing-notes. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "df7af38fd5811311bb2784d28cf23c7804b35255cfc2e5c2282445dd1594063c", "repo_url": "https://github.com/one2x-ai/medeo-video-skill", "name": "medeo-video", "description": "AI-powered video generation skill. Use when the user wants to generate videos from text descriptions, browse video recipes, upload assets, or manage video creation workflows.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/one2x-ai/medeo-video-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install medeo-video"}, "quality": {"stars": 147, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T07:07:57Z"}, "embedding_text": "medeo-video. AI-powered video generation skill. Use when the user wants to generate videos from text descriptions, browse video recipes, upload assets, or manage video creation workflows. Platforms: claude_code."} +{"id": "50551690ee16bdcf867f4798c90c9f286dc03fd125ea4ebd5e370b8590d99395", "repo_url": "https://github.com/plurigrid/asi", "name": "narya-proofs", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/narya-proofs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "narya-proofs. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7f33e8ad0cbf40033cc8e6b45f6dc782c0efb7fd7ba40fee564ab801243196d8", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "coze-api", "description": "\u8c03\u7528\u6263\u5b50(Coze)\u667a\u80fd\u4f53 API \u8fdb\u884c\u5bf9\u8bdd\u3001\u5de5\u4f5c\u6d41\u6267\u884c\u7b49\u64cd\u4f5c\u3002\u5f53\u7528\u6237\u9700\u8981\u96c6\u6210 Coze \u667a\u80fd\u4f53\u3001\u8c03\u7528 Coze API\u3001\u6216\u5f00\u53d1 Coze \u76f8\u5173\u5e94\u7528\u65f6\u4f7f\u7528\u3002\u652f\u6301\u6d41\u5f0f\u548c\u975e\u6d41\u5f0f\u5bf9\u8bdd\u3001\u5de5\u4f5c\u6d41\u8c03\u7528\u7b49\u529f\u80fd\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/coze-api/coze-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "coze-api. \u8c03\u7528\u6263\u5b50(Coze)\u667a\u80fd\u4f53 API \u8fdb\u884c\u5bf9\u8bdd\u3001\u5de5\u4f5c\u6d41\u6267\u884c\u7b49\u64cd\u4f5c\u3002\u5f53\u7528\u6237\u9700\u8981\u96c6\u6210 Coze \u667a\u80fd\u4f53\u3001\u8c03\u7528 Coze API\u3001\u6216\u5f00\u53d1 Coze \u76f8\u5173\u5e94\u7528\u65f6\u4f7f\u7528\u3002\u652f\u6301\u6d41\u5f0f\u548c\u975e\u6d41\u5f0f\u5bf9\u8bdd\u3001\u5de5\u4f5c\u6d41\u8c03\u7528\u7b49\u529f\u80fd\u3002 Platforms: claude_code."} +{"id": "9b5f870a126945ba78193e87ab59b80740fd91e746af1b73935cf85e7823dd9c", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "redteam", "description": "Red team adversarial analysis to find weaknesses, vulnerabilities, and failure modes. Use before launches, for security review, or when a plan feels too perfect.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/redteam/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "redteam. Red team adversarial analysis to find weaknesses, vulnerabilities, and failure modes. Use before launches, for security review, or when a plan feels too perfect. Platforms: claude_code."} +{"id": "ff130c908799b641bf2d51c5f057c904d76c0ff723c0137dd300c9b3ea472417", "repo_url": "https://github.com/mp-web3/claude-starter-kit", "name": "tasks", "description": "Manage the task backlog \u2014 add, review, complete, and measure tasks against the 12 Favorite Problems. Run /tasks to see current status.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mp-web3/claude-starter-kit/blob/main/skills/tasks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 96, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-18T16:01:46Z"}, "embedding_text": "tasks. Manage the task backlog \u2014 add, review, complete, and measure tasks against the 12 Favorite Problems. Run /tasks to see current status. Platforms: claude_code."} +{"id": "bbcbaa1f8f7716052bb5632bcaa99f31e0b59335a2320f7cded8b731a09b2058", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "running-design-reviews", "description": "Run high-signal design reviews (design critique / design crit / design feedback) by producing a Design Review Pack: review brief + requested feedback, agenda + facilitation script, feedback log priori", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/running-design-reviews/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "running-design-reviews. Run high-signal design reviews (design critique / design crit / design feedback) by producing a Design Review Pack: review brief + requested feedback, agenda + facilitation script, feedback log priori Platforms: claude_code."} +{"id": "fb92726da2382409028d6583feebc2b92d225b6a75a301aeb3025c8ac0bb8ff0", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "Growth Marketer", "description": "Growth marketing specialist for bootstrapped startups and indie hackers. Builds content engines, optimizes funnels, runs launch sequences, and finds scalable acquisition channels \u2014 all on a budget tha", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/growth-marketer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "Growth Marketer. Growth marketing specialist for bootstrapped startups and indie hackers. Builds content engines, optimizes funnels, runs launch sequences, and finds scalable acquisition channels \u2014 all on a budget tha Platforms: claude_code."} +{"id": "19858973e747a911587709f8caf22e045970c2e920bada2dd2ba5a75a9092513", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "humaniser", "description": "Identifies and removes AI writing patterns to make text sound natural and human-written. Use when user says \"humanise this\", \"make this sound less AI\", \"this reads like a robot wrote it\", \"de-AI this", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/humanise/skills/humanise/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "humaniser. Identifies and removes AI writing patterns to make text sound natural and human-written. Use when user says \"humanise this\", \"make this sound less AI\", \"this reads like a robot wrote it\", \"de-AI this Platforms: claude_code."} +{"id": "9aa128c417dc9efd94d287a90a8a9a18ac737d56062a0b5e8520a8e2e2c93906", "repo_url": "https://github.com/plurigrid/asi", "name": "tree-sitter", "description": "AST-based code analysis using tree-sitter. Use for parsing code structure, extracting symbols, finding patterns with tree-sitter queries, analyzing complexity, and understanding code architecture. Sup", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/tree-sitter-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "tree-sitter. AST-based code analysis using tree-sitter. Use for parsing code structure, extracting symbols, finding patterns with tree-sitter queries, analyzing complexity, and understanding code architecture. Sup Platforms: claude_code."} +{"id": "1c1422ee204eec43cad9adeaa8a813db86d8150588e8f8f68ed2abf9507f58d4", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "gh-address-comments", "description": "Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/gh-address-comments/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-address-comments"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "gh-address-comments. Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "c29b8f4fce883624a6dc12fcbd61a41b2cfd5a494b1eacf2d2411d269f7972d6", "repo_url": "https://github.com/artwist-polyakov/polyakov-claude-skills", "name": "genome-analyzer", "description": "\u0410\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0443\u0435\u0442 \u0433\u0435\u043d\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u0437 VCF \u0444\u0430\u0439\u043b\u0430. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439 \u043a\u043e\u0433\u0434\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442 \u043e \u0441\u0432\u043e\u0435\u0439 \u0433\u0435\u043d\u0435\u0442\u0438\u043a\u0435, \u043d\u0430\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043f\u0440\u0438\u0437\u043d\u0430\u043a\u0430\u0445, \u043f\u0440\u0435\u0434\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044f\u0445, \u043c\u0435\u0442\u0430\u0431\u043e\u043b\u0438\u0437\u043c\u0435 \u0432\u0435\u0449\u0435\u0441\u0442\u0432 (\u043a\u043e\u0444\u0435\u0438\u043d, \u0430\u043b\u043a\u043e\u0433\u043e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artwist-polyakov/polyakov-claude-skills/blob/main/docx-contracts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 164, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-10T07:24:23Z"}, "embedding_text": "genome-analyzer. \u0410\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0443\u0435\u0442 \u0433\u0435\u043d\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u0437 VCF \u0444\u0430\u0439\u043b\u0430. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439 \u043a\u043e\u0433\u0434\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0441\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0435\u0442 \u043e \u0441\u0432\u043e\u0435\u0439 \u0433\u0435\u043d\u0435\u0442\u0438\u043a\u0435, \u043d\u0430\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043f\u0440\u0438\u0437\u043d\u0430\u043a\u0430\u0445, \u043f\u0440\u0435\u0434\u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044f\u0445, \u043c\u0435\u0442\u0430\u0431\u043e\u043b\u0438\u0437\u043c\u0435 \u0432\u0435\u0449\u0435\u0441\u0442\u0432 (\u043a\u043e\u0444\u0435\u0438\u043d, \u0430\u043b\u043a\u043e\u0433\u043e Platforms: claude_code."} +{"id": "f8eca2bb491b360a9533a0a4507d7445190ecb61f65e324a4d3ba27737328ddd", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "line-endings", "description": "Comprehensive guide to Git line ending configuration for cross-platform development teams. Use when configuring line endings, setting up .gitattributes, troubleshooting line ending issues, understandi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/github-specialist/line-endings/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "line-endings. Comprehensive guide to Git line ending configuration for cross-platform development teams. Use when configuring line endings, setting up .gitattributes, troubleshooting line ending issues, understandi Platforms: claude_code."} +{"id": "db6f77bd98e9513bdc69decedc5f6831ce62cf51fe1061f5a542c484f8379e8d", "repo_url": "https://github.com/udayanwalvekar/clearshot", "name": "clearshot", "description": "Structured screenshot analysis for UI implementation and critique. Analyzes every UI screenshot with a 5\u00d75 spatial grid, full element inventory, and design system extraction \u2014 facts and taste together", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/udayanwalvekar/clearshot/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 132, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T21:40:44Z"}, "embedding_text": "clearshot. Structured screenshot analysis for UI implementation and critique. Analyzes every UI screenshot with a 5\u00d75 spatial grid, full element inventory, and design system extraction \u2014 facts and taste together Platforms: claude_code."} +{"id": "0cea82d1229339dced2ee5ee740fc9f3b6db438a949a7e03b289cc63c87a3cbd", "repo_url": "https://github.com/artwist-polyakov/polyakov-claude-skills", "name": "agent-deck", "description": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0435\u0441\u0441\u0438\u044f\u043c\u0438 AI \u0430\u0433\u0435\u043d\u0442\u043e\u0432 \u0447\u0435\u0440\u0435\u0437 agent-deck CLI.\n\u0422\u0440\u0438\u0433\u0433\u0435\u0440\u044b (RU): \"\u0437\u0430\u043f\u0443\u0441\u0442\u0438 \u0430\u0433\u0435\u043d\u0442\u0430\", \"\u0437\u0430\u043f\u0443\u0441\u0442\u0438 \u0441\u0430\u0431-\u0430\u0433\u0435\u043d\u0442\u0430\", \"\u0441\u043e\u0437\u0434\u0430\u0439 \u0441\u0435\u0441\u0441\u0438\u044e\",\n\"\u043f\u0440\u043e\u0432\u0435\u0440\u044c \u0441\u0435\u0441\u0441\u0438\u044e\", \"\u043f\u0440\u043e\u0432\u0435\u0440\u044c \u0441\u0442\u0430\u0442\u0443\u0441\", \"\u043f\u043e\u043a\u0430\u0436\u0438 \u0432\u044b\u0432\u043e\u0434 \u0430\u0433\u0435\u043d\u0442\u0430\", \"\u0447\u0442\u043e \u0430\u0433\u0435\u043d\u0442 \u043e\u0442\u0432\u0435\u0442", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artwist-polyakov/polyakov-claude-skills/blob/main/plugins/agent-deck/skills/agent-deck/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 164, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-10T07:24:23Z"}, "embedding_text": "agent-deck. \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0435\u0441\u0441\u0438\u044f\u043c\u0438 AI \u0430\u0433\u0435\u043d\u0442\u043e\u0432 \u0447\u0435\u0440\u0435\u0437 agent-deck CLI.\n\u0422\u0440\u0438\u0433\u0433\u0435\u0440\u044b (RU): \"\u0437\u0430\u043f\u0443\u0441\u0442\u0438 \u0430\u0433\u0435\u043d\u0442\u0430\", \"\u0437\u0430\u043f\u0443\u0441\u0442\u0438 \u0441\u0430\u0431-\u0430\u0433\u0435\u043d\u0442\u0430\", \"\u0441\u043e\u0437\u0434\u0430\u0439 \u0441\u0435\u0441\u0441\u0438\u044e\",\n\"\u043f\u0440\u043e\u0432\u0435\u0440\u044c \u0441\u0435\u0441\u0441\u0438\u044e\", \"\u043f\u0440\u043e\u0432\u0435\u0440\u044c \u0441\u0442\u0430\u0442\u0443\u0441\", \"\u043f\u043e\u043a\u0430\u0436\u0438 \u0432\u044b\u0432\u043e\u0434 \u0430\u0433\u0435\u043d\u0442\u0430\", \"\u0447\u0442\u043e \u0430\u0433\u0435\u043d\u0442 \u043e\u0442\u0432\u0435\u0442 Platforms: claude_code."} +{"id": "4b7f2de314acef2fca8aa250980e16f2f0c3fe12a4a0a0c6b7102e3de1ccd2cc", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "ask", "description": "Answer questions about the codebase without generating or modifying any code. Use when the user wants to understand how something works, find where something is defined, or explore the project structu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/agent-ops-tasks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "ask. Answer questions about the codebase without generating or modifying any code. Use when the user wants to understand how something works, find where something is defined, or explore the project structu Platforms: claude_code."} +{"id": "d2e40e3ef6d223e1bbcd18d5e53278ec1f5867ea90c007758cc0769e5be2b752", "repo_url": "https://github.com/plurigrid/asi", "name": "phase-portrait-generator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/phase-portrait-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "phase-portrait-generator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3e33067521ef7cbfbd30fce6be990ef52f68b9aa50bb0aabfee44548dac48ac1", "repo_url": "https://github.com/plurigrid/asi", "name": "mathpix-ocr", "description": "Mathpix OCR for LaTeX extraction with balanced ternary checkpoints", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/mathpix-ocr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "mathpix-ocr. Mathpix OCR for LaTeX extraction with balanced ternary checkpoints Platforms: claude_code."} +{"id": "270693d81c34918211c5fda1b969c460cff3ff93f979c4de2b1c8ce400fe79e0", "repo_url": "https://github.com/acrognale/pasture", "name": "codex-patches", "description": "Use this when updating the codex submodule or when patch files in codex-patches/ need to be added, regenerated, or repaired.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/acrognale/pasture/blob/main/.codex/skills/codex-patches/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-19T13:33:26Z"}, "embedding_text": "codex-patches. Use this when updating the codex submodule or when patch files in codex-patches/ need to be added, regenerated, or repaired. Platforms: claude_code."} +{"id": "81e8766ec5ad313b21e7fa0fbed075640f71d5fa3ad658ae113e3d92cfaa44dc", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "frontend-design", "description": "Create distinctive, production-grade web interfaces with high design quality. Use for components, pages, dashboards, and full applications that need to stand out from generic AI aesthetics.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/business/content-design/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade web interfaces with high design quality. Use for components, pages, dashboards, and full applications that need to stand out from generic AI aesthetics. Platforms: claude_code."} +{"id": "7482d331a19a547b528308488e2b1c5372e176185a441f14328c49a8890ea7bf", "repo_url": "https://github.com/antoniolg/agent-kit", "name": "email", "description": "Manage inbox email. Uses the inbox script and stores metadata (ids) to open or archive messages later.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antoniolg/agent-kit/blob/main/skills/email/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 96, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T09:06:59Z"}, "embedding_text": "email. Manage inbox email. Uses the inbox script and stores metadata (ids) to open or archive messages later. Platforms: claude_code."} +{"id": "1b4be2bb3bd7d8ef1bc8d329fe3b875031bd13bf1fd1b312c68543af40e81b18", "repo_url": "https://github.com/plurigrid/asi", "name": "say-narration", "description": "Use macOS text-to-speech for agent narration and announcements. Sub-agents announce themselves using different language voices speaking English. Use for multi-agent workflows where each agent has a di", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/say-narration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "say-narration. Use macOS text-to-speech for agent narration and announcements. Sub-agents announce themselves using different language voices speaking English. Use for multi-agent workflows where each agent has a di Platforms: claude_code."} +{"id": "31ac500a91960224ae1d7f2e654e372e6546b6635fd6666b07b355afe2274a80", "repo_url": "https://github.com/gokapso/agent-skills", "name": "integrate-whatsapp", "description": "Connect WhatsApp to your product with Kapso: onboard customers with setup links, detect connections, receive events via webhooks, and send messages/templates/media. Also manage WhatsApp Flows (create/", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gokapso/agent-skills/blob/master/skills/integrate-whatsapp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 129, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:31:48Z"}, "embedding_text": "integrate-whatsapp. Connect WhatsApp to your product with Kapso: onboard customers with setup links, detect connections, receive events via webhooks, and send messages/templates/media. Also manage WhatsApp Flows (create/ Platforms: claude_code."} +{"id": "294501792079f4718b3032fd4a6f011c7fc086b9f68a34afef357e25615e4b4e", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "92a4ae4b8357917262569d79bee2454f03418f66da5d64a1770a2f77a7a37108", "repo_url": "https://github.com/nabondance/trailhead-banner", "name": "format", "description": "Check code formatting (prettier + stylelint) without modifying files", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nabondance/trailhead-banner/blob/main/.claude/skills/format-fix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:12:36Z"}, "embedding_text": "format. Check code formatting (prettier + stylelint) without modifying files Platforms: claude_code."} +{"id": "529587f4ec7a8bae1aa8c02ff0081b163df96781a14f0cfebd195e1e8d619fb1", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "business-model-canvas", "description": "Business model design using Osterwalder's Business Model Canvas and Lean Canvas. Creates 9-block canvases with structured analysis for business model innovation and startup validation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/business-model-canvas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "business-model-canvas. Business model design using Osterwalder's Business Model Canvas and Lean Canvas. Creates 9-block canvases with structured analysis for business model innovation and startup validation. Platforms: claude_code."} +{"id": "82a36fae2fca3adaa2237c3648560cdb4f1c0fd8b35fc0bf5502e74645a57bbe", "repo_url": "https://github.com/glebis/claude-skills", "name": "telegram", "description": "This skill should be used when fetching, searching, downloading, sending, or editing messages on Telegram. Use for queries like \"show my Telegram messages\", \"search Telegram for...\", \"get unread messa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/telegram-post/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "telegram. This skill should be used when fetching, searching, downloading, sending, or editing messages on Telegram. Use for queries like \"show my Telegram messages\", \"search Telegram for...\", \"get unread messa Platforms: claude_code."} +{"id": "a58032a91de21bfa3c2de4ccaf5d19d5b80b6d824aa9e32b33e8fefefbfd39b3", "repo_url": "https://github.com/lqshow/claude-skills", "name": "tech-manga-explainer", "description": "\u751f\u6210\u6280\u672f\u79d1\u666e\u6f2b\u753b\uff0c\u7528\u5bf9\u8bdd\u5f62\u5f0f\u89e3\u91ca\u590d\u6742\u7684\u6280\u672f\u6982\u5ff5\u3002\u5f53\u7528\u6237\u8bf7\u6c42\u300c\u7528\u6f2b\u753b\u89e3\u91ca\u6280\u672f\u300d\u300c\u751f\u6210\u6280\u672f\u79d1\u666e\u6f2b\u753b\u300d\u300c\u628a\u8fd9\u4e2a\u6280\u672f\u6982\u5ff5\u753b\u6210\u6f2b\u753b\u300d\u300c\u6f2b\u753b\u6559\u7a0b\u300d\u300c\u7528\u6f2b\u753b\u8bb2\u89e3 XXX\u300d\u6216\u7c7b\u4f3c\u9700\u6c42\u65f6\u4f7f\u7528\u3002\u9002\u5408 n8n\u3001Kubernetes\u3001AI\u3001\u7f16\u7a0b\u3001\u67b6\u6784\u7b49\u6280\u672f\u8bdd\u9898\u3002\u901a\u8fc7 nanobanana + Gemini API \u751f\u6210\u56fe\u7247\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lqshow/claude-skills/blob/main/tech-manga-explainer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-10T05:59:31Z"}, "embedding_text": "tech-manga-explainer. \u751f\u6210\u6280\u672f\u79d1\u666e\u6f2b\u753b\uff0c\u7528\u5bf9\u8bdd\u5f62\u5f0f\u89e3\u91ca\u590d\u6742\u7684\u6280\u672f\u6982\u5ff5\u3002\u5f53\u7528\u6237\u8bf7\u6c42\u300c\u7528\u6f2b\u753b\u89e3\u91ca\u6280\u672f\u300d\u300c\u751f\u6210\u6280\u672f\u79d1\u666e\u6f2b\u753b\u300d\u300c\u628a\u8fd9\u4e2a\u6280\u672f\u6982\u5ff5\u753b\u6210\u6f2b\u753b\u300d\u300c\u6f2b\u753b\u6559\u7a0b\u300d\u300c\u7528\u6f2b\u753b\u8bb2\u89e3 XXX\u300d\u6216\u7c7b\u4f3c\u9700\u6c42\u65f6\u4f7f\u7528\u3002\u9002\u5408 n8n\u3001Kubernetes\u3001AI\u3001\u7f16\u7a0b\u3001\u67b6\u6784\u7b49\u6280\u672f\u8bdd\u9898\u3002\u901a\u8fc7 nanobanana + Gemini API \u751f\u6210\u56fe\u7247\u3002 Platforms: claude_code."} +{"id": "ae68a7c3c5cc445c6afe9727ea924d783291574f403dfdfa6623b94ce89ecc69", "repo_url": "https://github.com/apollographql/skills", "name": "apollo-kotlin", "description": "Guide for building applications with Apollo Kotlin, the GraphQL client library for Android and Kotlin. Use this skill when: (1) setting up Apollo Kotlin in a Gradle project for Android, Kotlin/JVM, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/apollographql/skills/blob/main/skills/apollo-kotlin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 86, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:14:23Z"}, "embedding_text": "apollo-kotlin. Guide for building applications with Apollo Kotlin, the GraphQL client library for Android and Kotlin. Use this skill when: (1) setting up Apollo Kotlin in a Gradle project for Android, Kotlin/JVM, or Platforms: claude_code."} +{"id": "8a0a1ff7beaf1521a84c9f9af6eb52b2d4e1c5e4471fd9a8325f85a2a44e9fa1", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "code-review-assistant", "description": "Systematic code review checklist and pre-commit quality gates for PRs.\nUse when: reviewing pull requests, checking code quality, before committing code.\nKeywords: review, PR, pull request, checklist, quality, commit, \u5be9\u67e5, \u6aa2\u67e5, \u7c3d\u5165.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/code-review-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-review-assistant"}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "code-review-assistant. Systematic code review checklist and pre-commit quality gates for PRs.\nUse when: reviewing pull requests, checking code quality, before committing code.\nKeywords: review, PR, pull request, checklist, quality, commit, \u5be9\u67e5, \u6aa2\u67e5, \u7c3d\u5165. Platforms: claude_code."} +{"id": "f300693aec56674731dcfc0a88ed257cf36c73a015f3f6973b38af0f2b602a38", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "architecture-review", "description": "Conducts a comprehensive multi-perspective architecture review using ALL architecture team members. Use when the user requests \"Start architecture review\", \"Full architecture review\", \"Review architec", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/skills/architecture-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T18:12:57Z"}, "embedding_text": "architecture-review. Conducts a comprehensive multi-perspective architecture review using ALL architecture team members. Use when the user requests \"Start architecture review\", \"Full architecture review\", \"Review architec Platforms: claude_code."} +{"id": "8cbb949392bad216b59572e4e7c71e4157255bc7026cf63dfeb996dbbb1323f8", "repo_url": "https://github.com/apache/juneau", "name": "todo", "description": "Add to TODO", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T16:28:27Z"}, "embedding_text": "todo. Add to TODO Platforms: claude_code."} +{"id": "e808d4f1860a7eb9871e487bf0dd1e1970deef89fb38efead3a9b59e76df3e49", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "agent-orchestration", "description": "Hub orchestration patterns for multi-agent workflows. Use when processing delegation requests from agents, coordinating sequential/parallel agent execution, and aggregating results. Provides the proto", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/agent-orchestration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "agent-orchestration. Hub orchestration patterns for multi-agent workflows. Use when processing delegation requests from agents, coordinating sequential/parallel agent execution, and aggregating results. Provides the proto Platforms: claude_code."} +{"id": "7bd5c615e6fd791f71a9fb3f581f43833771291e9ff6ac993c2bfd67d77a065e", "repo_url": "https://github.com/laguagu/claude-code-nextjs-skills", "name": "openai-agents-sdk", "description": "OpenAI Agents SDK (Python) development. Use when building AI agents, multi-agent workflows, tool integrations, or streaming applications with the openai-agents package.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/laguagu/claude-code-nextjs-skills/blob/main/skills/openai-agents-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T11:40:42Z"}, "embedding_text": "openai-agents-sdk. OpenAI Agents SDK (Python) development. Use when building AI agents, multi-agent workflows, tool integrations, or streaming applications with the openai-agents package. Platforms: claude_code."} +{"id": "0876acfcb26cc3730f81808c0131861218de8cd655ef0216947b32b41636f250", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-tables-read", "description": "Attempt to read data from exposed tables to verify actual data exposure and RLS effectiveness.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-api/supabase-audit-tables-read/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-tables-read. Attempt to read data from exposed tables to verify actual data exposure and RLS effectiveness. Platforms: claude_code."} +{"id": "2927b4bc7b81f14adaccf517a168d1454c8c3b49d6c401615f90ed64e856a768", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "huggingface-accelerate", "description": "Simplest distributed training API. 4 lines to add distributed support to any PyTorch script. Unified API for DeepSpeed/FSDP/Megatron/DDP. Automatic device placement, mixed precision (FP16/BF16/FP8). I", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/accelerate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "huggingface-accelerate. Simplest distributed training API. 4 lines to add distributed support to any PyTorch script. Unified API for DeepSpeed/FSDP/Megatron/DDP. Automatic device placement, mixed precision (FP16/BF16/FP8). I Platforms: linux, macos, windows."} +{"id": "b9c4b6e3832a7831c98e10b5c8456b800b56ba5bd7f581b1ffd839c92a26683b", "repo_url": "https://github.com/hmohamed01/claude-code-scaffolding-skill", "name": "project-scaffolding", "description": "IDE-grade project scaffolding wizard for creating new projects with comprehensive configuration. Supports 70+ project types: HTML/CSS websites, React, Next.js, Vue, Astro, Remix, React Native, Flutter", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hmohamed01/claude-code-scaffolding-skill/blob/main/project-scaffolding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-18T19:05:32Z"}, "embedding_text": "project-scaffolding. IDE-grade project scaffolding wizard for creating new projects with comprehensive configuration. Supports 70+ project types: HTML/CSS websites, React, Next.js, Vue, Astro, Remix, React Native, Flutter Platforms: claude_code."} +{"id": "d0ce7e7743753171fbd07f09dccee6e1eba8903102d0dacace04cb4d63a2ab82", "repo_url": "https://github.com/aspiers/ai-config", "name": "project-initialization", "description": "Initialize a project with AI agent rules and documentation. Use when setting up a new repository for AI agent collaboration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/project-initialization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "project-initialization. Initialize a project with AI agent rules and documentation. Use when setting up a new repository for AI agent collaboration. Platforms: claude_code."} +{"id": "0874c6edea450fae74eeb08e49a8a4cca8271776b1040b64cfaaa5ad3250ac4d", "repo_url": "https://github.com/aspiers/ai-config", "name": "task-orchestration", "description": "Orchestrate the complete development workflow for implementing sub-tasks from a task list. Use for end-to-end feature implementation with quality controls.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/task-orchestration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "task-orchestration. Orchestrate the complete development workflow for implementing sub-tasks from a task list. Use for end-to-end feature implementation with quality controls. Platforms: claude_code."} +{"id": "bc848bdcb9340aefe1265299b8d3ec798f6ad708e156a17bc66f27bb59044194", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "github", "description": "GitHub API operations - repositories, issues, pull requests, actions, code security, discussions, gists, and more. Use for GitHub-related tasks like managing PRs, issues, searching code, and monitorin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/github-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "github. GitHub API operations - repositories, issues, pull requests, actions, code security, discussions, gists, and more. Use for GitHub-related tasks like managing PRs, issues, searching code, and monitorin Platforms: claude_code."} +{"id": "bb1764295cda7ba6fafc0319234eae3284baf913d8ef409fbe8c4cb7edb3f60d", "repo_url": "https://github.com/coleam00/custom-agent-with-skills", "name": "world_clock", "description": "Get current time in any timezone and convert times between locations. Use when user asks about time in different cities, timezone conversions, or scheduling across timezones.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/coleam00/custom-agent-with-skills/blob/main/skills/world_clock/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T18:32:27Z"}, "embedding_text": "world_clock. Get current time in any timezone and convert times between locations. Use when user asks about time in different cities, timezone conversions, or scheduling across timezones. Platforms: claude_code."} +{"id": "8dd69c326a6b13ae32715615f856a2a4233d911a0c51d10b9c39ecb3d2dca796", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. Use when working with professional documents (.docx fil", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/documents/skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. Use when working with professional documents (.docx fil Platforms: claude_code."} +{"id": "23fe7fbdb11c24fe6906bb91e12a87b79a11458add6322c6e9b42cb09119ee7d", "repo_url": "https://github.com/marketcalls/vectorbt-backtesting-skills", "name": "vectorbt-expert", "description": "VectorBT backtesting expert. Use when user asks to backtest strategies, create entry/exit signals, analyze portfolio performance, optimize parameters, fetch historical data, use VectorBT/vectorbt, com", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/marketcalls/vectorbt-backtesting-skills/blob/master/.claude/skills/vectorbt-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T15:28:26Z"}, "embedding_text": "vectorbt-expert. VectorBT backtesting expert. Use when user asks to backtest strategies, create entry/exit signals, analyze portfolio performance, optimize parameters, fetch historical data, use VectorBT/vectorbt, com Platforms: claude_code."} +{"id": "606348202a9d82b28c7b56cfc9f2cd8e0989393a1e4ee13c3d0ea08d93d5505f", "repo_url": "https://github.com/avifenesh/agnix", "name": "deploy-prod", "description": "Deploys to production", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avifenesh/agnix/blob/main/tests/fixtures/invalid/skills/deploy-prod/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "deploy-prod. Deploys to production Platforms: claude_code."} +{"id": "24fdbb0b5044ace25c39d7a68eb8875b2e802a0be09e61768fea817003aac4a4", "repo_url": "https://github.com/microsoft/amplifier-foundation", "name": "creating-amplifier-modules", "description": "Use when creating a new Amplifier module (tool, hook, orchestrator, context, or provider). Covers the mount() contract, protocol compliance validation, placeholder patterns, and the module directory s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/amplifier-foundation/blob/main/skills/creating-amplifier-modules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:58:24Z"}, "embedding_text": "creating-amplifier-modules. Use when creating a new Amplifier module (tool, hook, orchestrator, context, or provider). Covers the mount() contract, protocol compliance validation, placeholder patterns, and the module directory s Platforms: claude_code."} +{"id": "9a069f2de8608936869145db70ad2b258a9df764fe4a28c8545e0e3f3a03d66a", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "neo-ecosystem", "description": "Neo N3 blockchain interaction skill for wallet management, smart contracts, and NeoFS storage", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/web3-core-operations/neo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "neo-ecosystem. Neo N3 blockchain interaction skill for wallet management, smart contracts, and NeoFS storage Platforms: claude_code."} +{"id": "cca7d40f245713f8962a3e5bf5c5a86b5b3738d220d2b5f84c506dbd2b7bab4f", "repo_url": "https://github.com/0xdarkmatter/claude-mods", "name": "iterate", "description": "Autonomous improvement loop - modify, measure, keep or discard, repeat. Inspired by Karpathy's autoresearch. Triggers on: iterate, improve autonomously, run overnight, keep improving, autoresearch, im", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/0xdarkmatter/claude-mods/blob/main/skills/iterate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:30:48Z"}, "embedding_text": "iterate. Autonomous improvement loop - modify, measure, keep or discard, repeat. Inspired by Karpathy's autoresearch. Triggers on: iterate, improve autonomously, run overnight, keep improving, autoresearch, im Platforms: claude_code."} +{"id": "8a0573698a204672ca42bbbee41daf104997fb9a8d3142f97ae221fcca7dfd85", "repo_url": "https://github.com/deckardger/tanstack-agent-skills", "name": "tanstack-query-best-practices", "description": "TanStack Query (React Query) best practices for data fetching, caching, mutations, and server state management. Activate when building data-driven React applications with server state.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deckardger/tanstack-agent-skills/blob/main/skills/tanstack-query/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 185, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T05:02:53Z"}, "embedding_text": "tanstack-query-best-practices. TanStack Query (React Query) best practices for data fetching, caching, mutations, and server state management. Activate when building data-driven React applications with server state. Platforms: claude_code."} +{"id": "3ed86f288d9d492128cba796125adc821e6449b8b436c7c4eaebc798cf5d09bb", "repo_url": "https://github.com/lvndry/jazz", "name": "digest", "description": "Build news or topic digests using curated high-quality sources. Use when the user wants tech news, a digest, \"what's new in X\", daily or weekly roundup, research papers roundup, or news from trusted s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lvndry/jazz/blob/main/skills/boilerplate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T13:30:05Z"}, "embedding_text": "digest. Build news or topic digests using curated high-quality sources. Use when the user wants tech news, a digest, \"what's new in X\", daily or weekly roundup, research papers roundup, or news from trusted s Platforms: claude_code."} +{"id": "a10670d59c3ebd64845aa233e0f52dd0c7ebdfebfe33f99a7ee7e438821d7a49", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "deep-research", "description": "Conduct thorough research using multi-angle queries, reading multiple sources, and cross-referencing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/deep-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "deep-research. Conduct thorough research using multi-angle queries, reading multiple sources, and cross-referencing. Platforms: claude_code."} +{"id": "5a0a10ccc862cbc382de43c3be640b555715eda7835bc459e10dc56c62ef50b9", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "paper-image-extractor", "description": "Extract figures from papers \u2014 prioritizes arXiv source package for high-quality images", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/paper-image-extractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "paper-image-extractor. Extract figures from papers \u2014 prioritizes arXiv source package for high-quality images Platforms: claude_code."} +{"id": "158949fd7840025605eac7e012fb467e862f176556faae949e395209695d5370", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "community-building", "description": "Build a Community Building Pack (strategy, platform plan, programming calendar, ambassador program, governance, metrics, launch plan). Use for community building, community-led growth, developer commu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/community-building/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "community-building. Build a Community Building Pack (strategy, platform plan, programming calendar, ambassador program, governance, metrics, launch plan). Use for community building, community-led growth, developer commu Platforms: claude_code."} +{"id": "7360dc84fc5b9428c2a41b728cacbeb37ae1b69e88785ebe0ab57ca6793d1e40", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "new-adapter", "description": "Add support for a new AI tool with adapters, CLI, completion, and tests.", "source": ["skillhub", "topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/new-adapter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install new-adapter"}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "new-adapter. Add support for a new AI tool with adapters, CLI, completion, and tests. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} +{"id": "a42e2f012b8c322f362acb9e6c8ed8df7744230d91b742ad8b4be1559cabd57f", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "coding-plan", "description": "Read before planning, declare scope before implementing. Prohibit out-of-scope changes and full rewrites.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/coding-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "coding-plan. Read before planning, declare scope before implementing. Prohibit out-of-scope changes and full rewrites. Platforms: claude_code."} +{"id": "142dbf416347049256759c36f6bea8817fe4816e44ce6c3528ad9a394b62f241", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "github", "description": "GitHub operations via gh CLI (PRs, Issues, CI checks, API queries). Not for local git operations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "github. GitHub operations via gh CLI (PRs, Issues, CI checks, API queries). Not for local git operations. Platforms: claude_code."} +{"id": "f9fbab0d880975578f91d05044acbc46206fc0330115903c73010998726bff14", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-splash-screen", "description": "Guide to configuring splash screens in Capacitor apps including asset generation, animation, and programmatic control. Use this skill when users need to customize their app launch experience.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-features/skills/capacitor-splash-screen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-splash-screen. Guide to configuring splash screens in Capacitor apps including asset generation, animation, and programmatic control. Use this skill when users need to customize their app launch experience. Platforms: claude_code."} +{"id": "fc4683744d297b5561c01b4f0694fb945a52fb756e59a478d8d04aa1f7ddc46c", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "debugging-capacitor", "description": "Comprehensive debugging guide for Capacitor applications. Covers WebView debugging, native debugging, crash analysis, network inspection, and common issues. Use this skill when users report bugs, cras", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-quality/skills/debugging-capacitor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "debugging-capacitor. Comprehensive debugging guide for Capacitor applications. Covers WebView debugging, native debugging, crash analysis, network inspection, and common issues. Use this skill when users report bugs, cras Platforms: claude_code."} +{"id": "0fa02b8c270242b130a1907e00d1b9e8fc5e79dd3bf28b8a7e274ec6d487e2dc", "repo_url": "https://github.com/kotlin/kotlin-agent-skills", "name": "kotlin-tooling-agp9-migration", "description": "Migrates Kotlin Multiplatform (KMP) projects to Android Gradle Plugin 9.0+. Handles plugin replacement (com.android.kotlin.multiplatform.library), module splitting, DSL migration, and the new default", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kotlin/kotlin-agent-skills/blob/main/skills/kotlin-tooling-agp9-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 881, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T16:38:19Z"}, "embedding_text": "kotlin-tooling-agp9-migration. Migrates Kotlin Multiplatform (KMP) projects to Android Gradle Plugin 9.0+. Handles plugin replacement (com.android.kotlin.multiplatform.library), module splitting, DSL migration, and the new default Platforms: claude_code."} +{"id": "db4e5b146025c4dd58cd9bbe039493b7f97fb0338ed4fde79ca2987dc34bf189", "repo_url": "https://github.com/crazynomad/tutorial", "name": "podcast-downloader", "description": "Search and download podcast episodes from Apple Podcasts. Use when user wants to find podcasts, download podcast episodes, get podcast information, or mentions Apple Podcasts, iTunes, podcast search,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/crazynomad/tutorial/blob/main/02-podcast-downloader/artifact/podcast-downloader-v2-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 194, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-03T13:02:36Z"}, "embedding_text": "podcast-downloader. Search and download podcast episodes from Apple Podcasts. Use when user wants to find podcasts, download podcast episodes, get podcast information, or mentions Apple Podcasts, iTunes, podcast search, Platforms: claude_code."} +{"id": "01de3ab8479407c589124b35270100845dd6efbe9990734f5e8f839d38e49a3a", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "career-transitions", "description": "Plan and execute a career transition and produce a Career Transition Pack (progress metric + push/pull map, target archetypes, option scorecard, opportunity pipeline + outreach scripts, skills plan, 4", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/career-transitions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "career-transitions. Plan and execute a career transition and produce a Career Transition Pack (progress metric + push/pull map, target archetypes, option scorecard, opportunity pipeline + outreach scripts, skills plan, 4 Platforms: claude_code."} +{"id": "91cb6d63beeba15a9cecf3633a67f4ef634cfb400e1f76dd38072030f9e9e267", "repo_url": "https://github.com/leonardsellem/codex-specialized-subagents", "name": "delegation-autopilot", "description": "In Codex interactive mode, call delegate_autopilot automatically for multi-step or cross-cutting requests (including research-only), otherwise work normally.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/leonardsellem/codex-specialized-subagents/blob/master/.codex/skills/delegation-autopilot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 64, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T16:48:10Z"}, "embedding_text": "delegation-autopilot. In Codex interactive mode, call delegate_autopilot automatically for multi-step or cross-cutting requests (including research-only), otherwise work normally. Platforms: claude_code."} +{"id": "b7b903a6162f9454b699a33b3ff7a834a9ec9e5d76255aab00c9a738dc9acad3", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "audio-producer", "description": "Expert in web audio, audio processing, and interactive sound design", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/audio-producer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "audio-producer. Expert in web audio, audio processing, and interactive sound design Platforms: claude_code."} +{"id": "8d54672d91d0f883df507416d328e3defb9455e23ca05f6957612b1c961a1772", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "engineering-advanced-skills", "description": "25 advanced engineering agent skills and plugins for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. Agent design, RAG, MCP servers, CI/CD, database design, observability, security auditing, release", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/engineering-advanced-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "engineering-advanced-skills. 25 advanced engineering agent skills and plugins for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. Agent design, RAG, MCP servers, CI/CD, database design, observability, security auditing, release Platforms: claude_code."} +{"id": "9f4cf82634677a9432c40aa2a6c870ad3ed77de3cf8b91e557622e3432b5e827", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "social-media-content", "description": "Erstellt plattformoptimierte Social Media Inhalte f\u00fcr LinkedIn, X/Twitter, Discord, Reddit. B2B/MES-Industrie fokussiert.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/social-media-content/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "social-media-content. Erstellt plattformoptimierte Social Media Inhalte f\u00fcr LinkedIn, X/Twitter, Discord, Reddit. B2B/MES-Industrie fokussiert. Platforms: claude_code."} +{"id": "15d0aaa8dd0de7b92396aa7c8a767ff3b32a128336fed74595dc0cd9288656d2", "repo_url": "https://github.com/scientiacapital/skills", "name": "blue-ocean-strategy", "description": "Blue Ocean Strategy analysis using ERRC framework and Strategy Canvas. Use when: blue ocean, market differentiation, competitive strategy, value innovation, ERRC framework, strategy canvas, new market", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/blue-ocean-strategy-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "blue-ocean-strategy. Blue Ocean Strategy analysis using ERRC framework and Strategy Canvas. Use when: blue ocean, market differentiation, competitive strategy, value innovation, ERRC framework, strategy canvas, new market Platforms: claude_code."} +{"id": "bdb597dce5d7ba634c3fdd7b6337b79219b77f4dea5ce94111163d67bc7304f6", "repo_url": "https://github.com/specstoryai/agent-skills", "name": "specstory-link-trail", "description": "Track all URLs fetched during SpecStory AI coding sessions. Run when user says \"show my link trail\", \"what URLs did I visit\", \"list fetched links\", or \"show web fetches\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/specstoryai/agent-skills/blob/main/skills/specstory-link-trail/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T01:24:32Z"}, "embedding_text": "specstory-link-trail. Track all URLs fetched during SpecStory AI coding sessions. Run when user says \"show my link trail\", \"what URLs did I visit\", \"list fetched links\", or \"show web fetches\". Platforms: claude_code."} +{"id": "1ada3430dba4d15f4feef6f35a77bb9de68a7aacb01630cf091e38de4dbbf67b", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "managing-tags", "description": "Manage and consolidate tags. Use when asked to \"clean up tags\", \"consolidate tags\", \"tag audit\", \"merge tags\", or \"rename tag\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/managing-tags/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "managing-tags. Manage and consolidate tags. Use when asked to \"clean up tags\", \"consolidate tags\", \"tag audit\", \"merge tags\", or \"rename tag\". Platforms: claude_code."} +{"id": "c5eb4a871b3334586a5d1801ff8f7df8e255c122a1e18ed9b4a4a360bbc67e2c", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "architecture-lead", "description": "Architecture consultation for Conductor orchestrator. Makes decisions about system design, patterns, component boundaries, and technical architecture. Can approve architectural choices within establis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/leads/architecture-lead/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "architecture-lead. Architecture consultation for Conductor orchestrator. Makes decisions about system design, patterns, component boundaries, and technical architecture. Can approve architectural choices within establis Platforms: claude_code."} +{"id": "6fb5246f7a3f24f35322370d1af42016bb2034dfb7f21f9131b5b6a94818e787", "repo_url": "https://github.com/specstoryai/agent-skills", "name": "specstory-organize", "description": "Organize SpecStory AI coding sessions in .specstory/history into year/month folders. Run when user says \"organize my history\", \"clean up specstory\", \"sort my sessions\", or \"organize specstory files\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/specstoryai/agent-skills/blob/main/skills/specstory-organize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T01:24:32Z"}, "embedding_text": "specstory-organize. Organize SpecStory AI coding sessions in .specstory/history into year/month folders. Run when user says \"organize my history\", \"clean up specstory\", \"sort my sessions\", or \"organize specstory files\". Platforms: claude_code."} +{"id": "0ff8efb75789a8dbaefc4ecb4bdaf1eee2aff47204f4449a426f1fb7e2f52ec3", "repo_url": "https://github.com/sendaifun/skills", "name": "raydium", "description": "Complete Raydium Protocol SDK - the single source of truth for integrating Raydium on Solana. Covers SDK, Trade API, CLMM, CPMM, AMM pools, LaunchLab token launches, farming, CPI integration, and all Raydium tools.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/raydium/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install raydium"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "raydium. Complete Raydium Protocol SDK - the single source of truth for integrating Raydium on Solana. Covers SDK, Trade API, CLMM, CPMM, AMM pools, LaunchLab token launches, farming, CPI integration, and all Raydium tools. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "15bbef40feed1e95753897e6d7f19a1065b1f860d2e8cc3738d8689f983df3cc", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-extract-service-key", "description": "CRITICAL - Detect if the Supabase service_role key is leaked in client-side code. This is a P0 severity issue.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/extraction/supabase-extract-service-key/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-extract-service-key. CRITICAL - Detect if the Supabase service_role key is leaked in client-side code. This is a P0 severity issue. Platforms: claude_code."} +{"id": "7d280521de98184b5183afb232fa7f8514624f5e1da4a7dfde2f74786039f736", "repo_url": "https://github.com/matrixorigin/memoria", "name": "memoria-memory", "description": "Use Memoria for durable user/project memory in OpenClaw.\nTriggers: \"remember this\", \"save to memory\", \"what do you remember\",\n\"forget this\", \"correct memory\", \"update memory\", \"use memoria\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matrixorigin/memoria/blob/main/plugins/openclaw/skills/memoria-memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 288, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T04:00:20Z"}, "embedding_text": "memoria-memory. Use Memoria for durable user/project memory in OpenClaw.\nTriggers: \"remember this\", \"save to memory\", \"what do you remember\",\n\"forget this\", \"correct memory\", \"update memory\", \"use memoria\". Platforms: claude_code."} +{"id": "bc31edcbfd28d7f923a42402df15c888dd76901f0be996a1533b81253db124f0", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "ffmpeg-cli", "description": "FFmpeg CLI reference for video and audio processing, format conversion, filtering, and media automation. Use when converting video formats, resizing or cropping video, trimming by time, replacing or e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/ffmpeg/skills/ffmpeg-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "ffmpeg-cli. FFmpeg CLI reference for video and audio processing, format conversion, filtering, and media automation. Use when converting video formats, resizing or cropping video, trimming by time, replacing or e Platforms: claude_code."} +{"id": "1040f01a6d33e8faa59326370b2b76746df28c8b34f6431a72eaf28040c6b0f2", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-pkg-sympy", "description": "Use this skill when working with symbolic mathematics in Python. This skill should be used for symbolic computation tasks including solving equations algebraically, performing calculus operations (derivatives, integrals, limits), manipulating algebraic expressions, working with matrices symbolically, physics calculations, number theory problems, geometry computations, and generating executable code from mathematical expressions. Apply this skill when the user needs exact symbolic results rather than numerical approximations, or when working with mathematical formulas that contain variables and parameters.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-pkg-sympy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-pkg-sympy"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-pkg-sympy. Use this skill when working with symbolic mathematics in Python. This skill should be used for symbolic computation tasks including solving equations algebraically, performing calculus operations (derivatives, integrals, limits), manipulating algebraic expressions, working with matrices symbolically, physics calculations, number theory problems, geometry computations, and generating executable code from mathematical expressions. Apply this skill when the user needs exact symbolic results rather than numerical approximations, or when working with mathematical formulas that contain variables and parameters. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "f1aa0edd013ca06422852bf17e0866eb5e808513c2a513c80a7f2294733c7f84", "repo_url": "https://github.com/youdotcom-oss/dx-toolkit", "name": "mcp-patterns", "description": "STDIO bridge maintenance patterns for @youdotcom-oss/mcp - transport lifecycle, shutdown guards, error handling.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/youdotcom-oss/dx-toolkit/blob/main/.agents/skills/grill-me/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T22:11:19Z"}, "embedding_text": "mcp-patterns. STDIO bridge maintenance patterns for @youdotcom-oss/mcp - transport lifecycle, shutdown guards, error handling. Platforms: claude_code."} +{"id": "fd440f2a0ebf0cbe9c427a67417e6414d2818c50b37f4055e1b1758a5a614cd0", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-quick-start", "description": "Get started with Slidev presentations in minutes. Use this skill to create your first presentation or set up a new Slidev project.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/getting-started/slidev-quick-start/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-quick-start. Get started with Slidev presentations in minutes. Use this skill to create your first presentation or set up a new Slidev project. Platforms: claude_code."} +{"id": "b8e7b1e054bb10a80a064bce83c4a689f42bf6edab4520ebe74fc0bd00a30fd8", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "conducting-user-interviews", "description": "Help users run better customer and user interviews. Use when someone is preparing for user research, planning discovery interviews, writing interview questions, analyzing interview findings, or trying", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/conducting-user-interviews/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "conducting-user-interviews. Help users run better customer and user interviews. Use when someone is preparing for user research, planning discovery interviews, writing interview questions, analyzing interview findings, or trying Platforms: claude_code."} +{"id": "b44ada62d3cc1346ad8bfac472360b21b2835673cd5198394f9c61a38cfad99b", "repo_url": "https://github.com/brsbl/ottonomous", "name": "next", "description": "Pick or implement the next task or session. Use when continuing work, picking the next task, or implementing tasks from a task list.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brsbl/ottonomous/blob/main/plugins/ottonomous/skills/next/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T11:44:20Z"}, "embedding_text": "next. Pick or implement the next task or session. Use when continuing work, picking the next task, or implementing tasks from a task list. Platforms: claude_code."} +{"id": "e3fae65fada869c27de10d5d81d03048c3f08bf8bc752bf7c9e740d4320bd61e", "repo_url": "https://github.com/antoniocascais/claude-code-toolkit", "name": "c7", "description": "Fetches up-to-date library documentation from Context7 and saves to /tmp/context7/. Use when needing current API docs, code examples, library references, SDK documentation, or checking latest library", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antoniocascais/claude-code-toolkit/blob/main/skills/c7/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T07:25:07Z"}, "embedding_text": "c7. Fetches up-to-date library documentation from Context7 and saves to /tmp/context7/. Use when needing current API docs, code examples, library references, SDK documentation, or checking latest library Platforms: claude_code."} +{"id": "857c657d0e37d780314298f68c2cc5bf2b2b92735acc845e6dba3aab52db463e", "repo_url": "https://github.com/analogjs/angular-skills", "name": "angular-ssr", "description": "Implement server-side rendering and hydration in Angular v20+ using @angular/ssr. Use for SSR setup, hydration strategies, prerendering static pages, and handling browser-only APIs. Triggers on SSR co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/analogjs/angular-skills/blob/main/skills/angular-ssr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 597, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T20:56:35Z"}, "embedding_text": "angular-ssr. Implement server-side rendering and hydration in Angular v20+ using @angular/ssr. Use for SSR setup, hydration strategies, prerendering static pages, and handling browser-only APIs. Triggers on SSR co Platforms: claude_code."} +{"id": "dedef13c0a1296a3cc977623fdca89edacac6e3e9adb57e3aa36da78b40d4683", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "FFmpeg Format Conversion", "description": "Convert media files between formats - video containers, audio formats, and codec transcoding", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks/multilingual-video-dubbing/environment/skills/ffmpeg-format-conversion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "FFmpeg Format Conversion. Convert media files between formats - video containers, audio formats, and codec transcoding Platforms: claude_code."} +{"id": "62014458a0061a57119ae70504472745c10b66f55e8a1d5c26219195e08c073b", "repo_url": "https://github.com/jykim/claude-obsidian-skills", "name": "interactive-writing-assistant", "description": "This skill provides comprehensive support for the writing process from ideation through revision. Use this skill when helping users write essays, articles, or creative pieces through interactive colla", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jykim/claude-obsidian-skills/blob/main/interactive-writing-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T22:15:25Z"}, "embedding_text": "interactive-writing-assistant. This skill provides comprehensive support for the writing process from ideation through revision. Use this skill when helping users write essays, articles, or creative pieces through interactive colla Platforms: claude_code."} +{"id": "9d5d1e11e3f33ae4e799955c34021f8972276b5c5cc3eb3cc2bbf035fb53b5a8", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "accessibility-planning", "description": "Plan accessibility compliance - WCAG 2.2, Section 508, EN 301 549, inclusive design principles, audit planning, and remediation strategies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/ux-research/accessibility-planning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "accessibility-planning. Plan accessibility compliance - WCAG 2.2, Section 508, EN 301 549, inclusive design principles, audit planning, and remediation strategies. Platforms: claude_code."} +{"id": "b11f13ba30831c986a5a5fde8ce92b7a56608a909a801675c0e4a576fae069ae", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "pricing-strategy", "description": "Help users design and optimize pricing strategies. Use when someone is setting prices for the first time, considering freemium vs paid models, optimizing monetization, dealing with willingness to pay", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/pricing-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "pricing-strategy. Help users design and optimize pricing strategies. Use when someone is setting prices for the first time, considering freemium vs paid models, optimizing monetization, dealing with willingness to pay Platforms: claude_code."} +{"id": "9e3cd17ebdf5b58157677145d390450cadce91cef04aedb3ae19bc38f8efca0f", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "streaming-llm-responses", "description": "Implement real-time streaming UI patterns for AI chat applications. Use when adding response\nlifecycle handlers, progress indicators, client effects, or thread state synchronization.\nCovers onResponse", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/streaming-llm-responses/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "streaming-llm-responses. Implement real-time streaming UI patterns for AI chat applications. Use when adding response\nlifecycle handlers, progress indicators, client effects, or thread state synchronization.\nCovers onResponse Platforms: claude_code."} +{"id": "31a725f93810fe3b5993208daa427a8e4871ab7b079dc104b34a013119450e16", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-webhook", "description": "Configure and test webhooks and automation triggers for the project. Activate when user mentions \"webhook\", \"trigger\", \"automation\", \"event hook\", \"notify on\", \"callback URL\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-webhook/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-webhook. Configure and test webhooks and automation triggers for the project. Activate when user mentions \"webhook\", \"trigger\", \"automation\", \"event hook\", \"notify on\", \"callback URL\". Platforms: claude_code."} +{"id": "465a057d0b978c6d72e77b20f48915799995685e67438685228e9a63e2538982", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-audit-trail", "description": "Record and query the decision log for a project. Activate when user mentions \"audit\", \"trail\", \"log decisions\", \"decision history\", \"why was this decided\", \"ADR\", \"architecture decision\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-audit-trail/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-audit-trail. Record and query the decision log for a project. Activate when user mentions \"audit\", \"trail\", \"log decisions\", \"decision history\", \"why was this decided\", \"ADR\", \"architecture decision\". Platforms: claude_code."} +{"id": "8bd1e2fba363bf42bf1129c7641fc3824c43c2b3ef1d4d26c465813ef8aa7576", "repo_url": "https://github.com/sendaifun/skills", "name": "coingecko", "description": "Complete CoinGecko Solana API integration for token prices, DEX pool data, OHLCV charts, trades, and market analytics. Use for building trading bots, portfolio trackers, price feeds, and on-chain data applications.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/coingecko/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coingecko"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "coingecko. Complete CoinGecko Solana API integration for token prices, DEX pool data, OHLCV charts, trades, and market analytics. Use for building trading bots, portfolio trackers, price feeds, and on-chain data applications. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "95a246cfd8ff6e26dffa881cfc0b00dce8f5be799c2965bb389ba4ffd99e34cb", "repo_url": "https://github.com/am-will/taskery", "name": "taskery", "description": "Generate concise but complete instructions that teach any model how to use every Taskery feature across CLI, API, and web board workflows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/am-will/taskery/blob/main/.codex/skills/taskery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-01T23:53:32Z"}, "embedding_text": "taskery. Generate concise but complete instructions that teach any model how to use every Taskery feature across CLI, API, and web board workflows. Platforms: claude_code."} +{"id": "9f3d4a909a64ce06790f39f8c2c20e80b2918ee7b1831ce8651421f2369f9dc4", "repo_url": "https://github.com/sabertazimi/notes", "name": "splitting-notes", "description": "Use when note files exceed 1000 lines or need better organization. Splits large note files into smaller, focused files with index files for navigation, following progressive grouping principles with c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sabertazimi/notes/blob/main/.agents/skills/splitting-notes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T07:22:40Z"}, "embedding_text": "splitting-notes. Use when note files exceed 1000 lines or need better organization. Splits large note files into smaller, focused files with index files for navigation, following progressive grouping principles with c Platforms: claude_code."} +{"id": "f1bf49a6e3925abfc829436ee3bf9967d3dc10b3a948286d2d6a4743ed7b3b81", "repo_url": "https://github.com/jbreite/bashkit", "name": "bashkit-debug", "description": "Analyze BashKit agent debug traces. Use when debugging a BashKit-powered agent run \u2014 reading JSONL trace files, correlating tool calls, identifying errors, slow operations, and execution patterns. Tri", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jbreite/bashkit/blob/main/skills/bashkit-debug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T12:15:38Z"}, "embedding_text": "bashkit-debug. Analyze BashKit agent debug traces. Use when debugging a BashKit-powered agent run \u2014 reading JSONL trace files, correlating tool calls, identifying errors, slow operations, and execution patterns. Tri Platforms: claude_code."} +{"id": "999cc469d16f5e1ae3bb4d7922aea08e387a69d35ac7eb592c277c417895a472", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-tea", "description": "Run the full autonomous test suite end-to-end and report results. Activate when user mentions \"test end to end\", \"autonomous testing\", \"run all tests\", \"full test run\", \"E2E tests\", \"test suite\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-tea/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-tea. Run the full autonomous test suite end-to-end and report results. Activate when user mentions \"test end to end\", \"autonomous testing\", \"run all tests\", \"full test run\", \"E2E tests\", \"test suite\". Platforms: claude_code."} +{"id": "5e8e6532ae23c43c1bb3269f7a715e31a40009849911bee4d6522df314ecc61b", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "mamba-architecture", "description": "State-space model with O(n) complexity vs Transformers' O(n\u00b2). 5\u00d7 faster inference, million-token sequences, no KV cache. Selective SSM with hardware-aware design. Mamba-1 (d_state=16) and Mamba-2 (d_state=128, multi-head). Models 130M-2.8B on HuggingFace.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/01-model-architecture/mamba/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mamba-architecture"}, "quality": {"stars": 9933, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "mamba-architecture. State-space model with O(n) complexity vs Transformers' O(n\u00b2). 5\u00d7 faster inference, million-token sequences, no KV cache. Selective SSM with hardware-aware design. Mamba-1 (d_state=16) and Mamba-2 (d_state=128, multi-head). Models 130M-2.8B on HuggingFace. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} +{"id": "89489b7b1f04f6e48c9d80a53763fa5d122e208bc96d62514807775f33886e8c", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-swarm-pr", "description": "Pull request swarm management for multi-agent code review and validation. Use for coordinated PR reviews, automated validation, PR-based swarm creation, and intelligent merge workflows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/swarm-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-swarm-pr. Pull request swarm management for multi-agent code review and validation. Use for coordinated PR reviews, automated validation, PR-based swarm creation, and intelligent merge workflows. Platforms: claude_code."} +{"id": "b2bbee0eebc6e56a4f2eb715f891dbbfc47a63e42e43c828e546398efb1e5a32", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-listening", "description": "Monitor what developers say about your brand, competitors, and the problems they're solving.\nTrack mentions and conversations across GitHub, Hacker News, Reddit, Stack Overflow, Twitter, and Discord.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-listening/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-listening. Monitor what developers say about your brand, competitors, and the problems they're solving.\nTrack mentions and conversations across GitHub, Hacker News, Reddit, Stack Overflow, Twitter, and Discord. Platforms: claude_code."} +{"id": "414522368d7f04efa37068d1ef97e75a56a88311c948fd8b9c1d21bf4375c9f1", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "Solo Founder", "description": "Your co-founder who doesn't exist yet. Covers product, engineering, marketing, and strategy for one-person startups \u2014 because nobody's stopping you from making bad decisions and somebody should.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/solo-founder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "Solo Founder. Your co-founder who doesn't exist yet. Covers product, engineering, marketing, and strategy for one-person startups \u2014 because nobody's stopping you from making bad decisions and somebody should. Platforms: claude_code."} +{"id": "15f3679f2993fe159d3608d7d87385b2eb290e06c5b2ec5101d4c3a633eee553", "repo_url": "https://github.com/anshumanbh/securevibes", "name": "ssrf-testing", "description": "Validate Server-Side Request Forgery (SSRF) vulnerabilities by testing if user-controlled URLs can reach internal services, cloud metadata endpoints, or alternative protocols. Use when testing CWE-918", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anshumanbh/securevibes/blob/main/packages/core/securevibes/skills/dast/ssrf-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 274, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-27T04:52:18Z"}, "embedding_text": "ssrf-testing. Validate Server-Side Request Forgery (SSRF) vulnerabilities by testing if user-controlled URLs can reach internal services, cloud metadata endpoints, or alternative protocols. Use when testing CWE-918 Platforms: claude_code."} +{"id": "52c8b080fa7733327d6fa2dbe8130b7074fe0000855f29b264d3cd3e994f25a3", "repo_url": "https://github.com/joannis/claude-skills", "name": "wendy-contributing", "description": "Expert guidance on contributing to WendyOS: Yocto builds, agent internals, E2E testing, and system architecture. Use when developers mention: (1) building WendyOS images, (2) meta-wendyos layers or bi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joannis/claude-skills/blob/main/wendy-contributing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T20:09:23Z"}, "embedding_text": "wendy-contributing. Expert guidance on contributing to WendyOS: Yocto builds, agent internals, E2E testing, and system architecture. Use when developers mention: (1) building WendyOS images, (2) meta-wendyos layers or bi Platforms: claude_code."} +{"id": "98daed22dd9c2f7df71e52fcc1ab8bc39545c67d181e672535eeb57d948d9019", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "crewai-developer", "description": "Comprehensive CrewAI framework guide for building collaborative AI agent teams and structured workflows. Use when developing multi-agent systems with CrewAI, creating autonomous AI crews, orchestratin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/crewai-developer/crewai-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "crewai-developer. Comprehensive CrewAI framework guide for building collaborative AI agent teams and structured workflows. Use when developing multi-agent systems with CrewAI, creating autonomous AI crews, orchestratin Platforms: claude_code."} +{"id": "6fbd6ac7236a4ab431a0f55f520e596a8cd62f0764050af0a2d4846b03423115", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "memory", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/memory-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "memory. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "25e72d1e2282c755c8d42a74cab6d0ff86cdad93193f5e4e2227c7f5a7ee4c23", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "cloud-payments", "description": "Flow Nexus credit management and billing operations. Use for checking balances, purchasing credits, configuring auto-refill, and tracking transactions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/business/productivity/memory-management/me/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "cloud-payments. Flow Nexus credit management and billing operations. Use for checking balances, purchasing credits, configuring auto-refill, and tracking transactions. Platforms: claude_code."} +{"id": "6dc49b6c6492662c7d5b89e1fa78b78bdddcd6d5eb82e8d394b0eacc69967906", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "shipping-products", "description": "Help users ship products faster and with higher quality. Use when someone is planning a launch, struggling to release features, dealing with shipping velocity issues, or trying to establish better rel", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/shipping-products/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "shipping-products. Help users ship products faster and with higher quality. Use when someone is planning a launch, struggling to release features, dealing with shipping velocity issues, or trying to establish better rel Platforms: claude_code."} +{"id": "2197624ce9610504c3a96034fe18c7649ce2bf72240bc2d08f9ec2bfa294f277", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "erne-debug-visual", "description": "ERNE \u2014 Screenshot-based visual debugging using the visual-debugger agent", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/debug-visual/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "erne-debug-visual. ERNE \u2014 Screenshot-based visual debugging using the visual-debugger agent Platforms: claude_code."} +{"id": "9553d62d579a5ace9ea4b0ff7fac51e8428530b0ca65ff16669f6a71c84a072b", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "git-workflow-guide", "description": "Guide Git branching strategies, branch naming, and merge operations.\nUse when: creating branches, merging, pull requests, Git workflow questions.\nKeywords: branch, merge, PR, pull request, GitFlow, GitHub Flow, \u5206\u652f, \u5408\u4f75, \u5de5\u4f5c\u6d41\u7a0b.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/git-workflow-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-workflow-guide"}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "git-workflow-guide. Guide Git branching strategies, branch naming, and merge operations.\nUse when: creating branches, merging, pull requests, Git workflow questions.\nKeywords: branch, merge, PR, pull request, GitFlow, GitHub Flow, \u5206\u652f, \u5408\u4f75, \u5de5\u4f5c\u6d41\u7a0b. Platforms: claude_code."} +{"id": "8e7f1c8ee324ac522812db5d7a2fadfc36f4bb7eb21dbded1f329d473320ef02", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "erne-retrospective", "description": "ERNE \u2014 Session analysis \u2014 runs the session evaluator to review work quality and suggest improvements", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/erne-retrospective/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "erne-retrospective. ERNE \u2014 Session analysis \u2014 runs the session evaluator to review work quality and suggest improvements Platforms: claude_code."} +{"id": "e2efcf068c54991a09019f6e60d7d8d104279d8afc5cfba5e6d6abe9b89afd91", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "edge-hint-extractor", "description": "Extract edge hints from daily market observations and news reactions, with optional LLM ideation, and output canonical hints.yaml for downstream concept synthesis and auto detection.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/edge-hint-extractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "edge-hint-extractor. Extract edge hints from daily market observations and news reactions, with optional LLM ideation, and output canonical hints.yaml for downstream concept synthesis and auto detection. Platforms: claude_code."} +{"id": "42b38a12a76973be31bfee3f176155e9aa7c4723d0fb1e7cf7809ec9ee8c35a1", "repo_url": "https://github.com/aspiers/ai-config", "name": "slow-command-running", "description": "Pipe long running commands through tee(1) to allow watching output and repeated analyses without rerunning", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/slow-command-running/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "slow-command-running. Pipe long running commands through tee(1) to allow watching output and repeated analyses without rerunning Platforms: claude_code."} +{"id": "ae3a5997009102748677109bfaae7cea63c1d72a4820bc91f0916719c67192cb", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "Network 101", "description": "This skill should be used when the user asks to \"set up a web server\", \"configure HTTP or HTTPS\", \"perform SNMP enumeration\", \"configure SMB shares\", \"test network services\", or needs guidance on configuring and testing network services for penetration testing labs.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/network-101/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Network 101"}, "quality": {"stars": 4325, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:29:37Z"}, "embedding_text": "Network 101. This skill should be used when the user asks to \"set up a web server\", \"configure HTTP or HTTPS\", \"perform SNMP enumeration\", \"configure SMB shares\", \"test network services\", or needs guidance on configuring and testing network services for penetration testing labs. Platforms: claude_code."} +{"id": "1100233182fbb676745a6b4fe726aebd781c7ddbd98c55ecd4d368cc9da1a87e", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "evaluating-trade-offs", "description": "Help users make better decisions between competing options. Use when someone is weighing pros and cons, comparing alternatives, struggling with a difficult choice, deciding between speed and quality,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/evaluating-trade-offs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "evaluating-trade-offs. Help users make better decisions between competing options. Use when someone is weighing pros and cons, comparing alternatives, struggling with a difficult choice, deciding between speed and quality, Platforms: claude_code."} +{"id": "421fa33121b57d5c489fb31bd61ca383fad35c08d3ec31cbd2e2e311e8a3907f", "repo_url": "https://github.com/hoangnguyen0403/agent-skills-standard", "name": "Android Dependency Injection (Hilt)", "description": "Standards for Hilt Setup, Scoping, and Modules. Use when setting up Hilt dependency injection, component scoping, or modules in Android.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hoangnguyen0403/agent-skills-standard/blob/develop/.agents/skills/caveman-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 510, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T13:04:04Z"}, "embedding_text": "Android Dependency Injection (Hilt). Standards for Hilt Setup, Scoping, and Modules. Use when setting up Hilt dependency injection, component scoping, or modules in Android. Platforms: claude_code."} +{"id": "dc50bdf717c70fe499a279ab7f28b1cdcbdada341ab5ccc48e10df00f35d5b85", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "cloud-app-store", "description": "Flow Nexus application marketplace and template management. Use for app publishing, discovery, deployment, and marketplace operations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/ai/agent-usage-optimizer/baseline-route-mapping-quota-agnostic-defaults/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "cloud-app-store. Flow Nexus application marketplace and template management. Use for app publishing, discovery, deployment, and marketplace operations. Platforms: claude_code."} +{"id": "7a98e4f8cdfb8222eb518268b25c3e06ba9fd1bb8421b71475062e4609125efe", "repo_url": "https://github.com/jjmartres/opencode", "name": "file-organizer", "description": "Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jjmartres/opencode/blob/main/opencode/skills/file-organizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-20T10:48:45Z"}, "embedding_text": "file-organizer. Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and Platforms: claude_code."} +{"id": "5d382cba0b659d2a5e40e89b639807c5119a20770a2ac10e4c95816e8a4c6d22", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "IDOR Vulnerability Testing", "description": "This skill should be used when the user asks to \"test for insecure direct object references,\" \"find IDOR vulnerabilities,\" \"exploit broken access control,\" \"enumerate user IDs or object references,\" o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/academic-paper-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 4325, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:29:37Z"}, "embedding_text": "IDOR Vulnerability Testing. This skill should be used when the user asks to \"test for insecure direct object references,\" \"find IDOR vulnerabilities,\" \"exploit broken access control,\" \"enumerate user IDs or object references,\" o Platforms: claude_code."} +{"id": "86684ff6a977612d4e55fdb5f630dfcc3cdf8de0230d1641e8657869cad96d9f", "repo_url": "https://github.com/wsimmonds/claude-nextjs-skills", "name": "nextjs-app-router-fundamentals", "description": "Guide for working with Next.js App Router (Next.js 13+). Use when migrating from Pages Router to App Router, creating layouts, implementing routing, handling metadata, or building Next.js 13+ applicat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wsimmonds/claude-nextjs-skills/blob/main/nextjs-app-router-fundamentals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-24T11:05:39Z"}, "embedding_text": "nextjs-app-router-fundamentals. Guide for working with Next.js App Router (Next.js 13+). Use when migrating from Pages Router to App Router, creating layouts, implementing routing, handling metadata, or building Next.js 13+ applicat Platforms: claude_code."} +{"id": "2c0e9483273dd1696c9bc3754a553de279e1ccd5d8da212de3db1377f602e2ef", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "tdd", "description": "Test-driven development workflow with Jest and React Native Testing Library", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/erne-tdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "tdd. Test-driven development workflow with Jest and React Native Testing Library Platforms: claude_code."} +{"id": "146ce6a5e07add008926db32ee30ca1534e68e943665b80bec3217dd97147cb5", "repo_url": "https://github.com/blueberrycongee/termcanvas", "name": "using-termcanvas", "description": "Use at the start of work in a TermCanvas-managed repo to decide whether to stay in the current agent, invoke Hydra, or use a narrow TermCanvas skill.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blueberrycongee/termcanvas/blob/main/skills/skills/using-termcanvas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 327, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T23:40:31Z"}, "embedding_text": "using-termcanvas. Use at the start of work in a TermCanvas-managed repo to decide whether to stay in the current agent, invoke Hydra, or use a narrow TermCanvas skill. Platforms: claude_code."} +{"id": "5a30344b888a54e046580534f5c9ef86b9aac936c1df86b50edf50557df7c512", "repo_url": "https://github.com/openjavis/openclaw-python", "name": "gog", "description": "Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openjavis/openclaw-python/blob/main/skills/gog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-22T16:36:40Z"}, "embedding_text": "gog. Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs. Platforms: claude_code."} +{"id": "d5c0dd7fbbe5835c1b24de9b4a3c9eb71ffefb70135227b280ab0d00110f5b8d", "repo_url": "https://github.com/kdoronin/claude_code_skills", "name": "text-to-sql", "description": "Setup and use text-to-SQL capabilities for SQL databases (SQLite, PostgreSQL, MySQL, MariaDB, etc.).\nUse when: (1) User wants to query databases using natural language,\n(2) User asks to setup text-to-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kdoronin/claude_code_skills/blob/main/text-to-sql/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-20T15:25:32Z"}, "embedding_text": "text-to-sql. Setup and use text-to-SQL capabilities for SQL databases (SQLite, PostgreSQL, MySQL, MariaDB, etc.).\nUse when: (1) User wants to query databases using natural language,\n(2) User asks to setup text-to- Platforms: claude_code."} +{"id": "1ea351e0c4038849ca3d7285d5b11da765846f3ab5c2cca4511aeec6b6f699f8", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "flutter-animations", "description": "Comprehensive guide for implementing animations in Flutter. Use when adding motion and visual effects to Flutter apps: implicit animations (AnimatedContainer, AnimatedOpacity, TweenAnimationBuilder),", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/flutter-animations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "flutter-animations. Comprehensive guide for implementing animations in Flutter. Use when adding motion and visual effects to Flutter apps: implicit animations (AnimatedContainer, AnimatedOpacity, TweenAnimationBuilder), Platforms: claude_code."} +{"id": "10606c1836abd20a0d20c7e93a9fd9bd3966444937edecbb8214c9f18ff3b718", "repo_url": "https://github.com/scientiacapital/skills", "name": "deal-momentum-analyzer", "description": "Deal health scoring + next-best-action for every open deal. Pulls HubSpot deals, CRM activity history, and engagement data to flag stalled deals, predict close probability, and recommend specific reco", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/deal-momentum-analyzer-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "deal-momentum-analyzer. Deal health scoring + next-best-action for every open deal. Pulls HubSpot deals, CRM activity history, and engagement data to flag stalled deals, predict close probability, and recommend specific reco Platforms: claude_code."} +{"id": "d3a656d7fbbfacf7b714b631ccb6385d9d322aef3fd3a6f1e9d5d087587f3d49", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "kubernetes-essentials", "description": "Quick reference for Kubernetes core concepts and kubectl commands. This skill should be used as a refresher for basic K8s operations including pods, deployments, services, configmaps, secrets, and nam", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/kubernetes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "kubernetes-essentials. Quick reference for Kubernetes core concepts and kubectl commands. This skill should be used as a refresher for basic K8s operations including pods, deployments, services, configmaps, secrets, and nam Platforms: claude_code."} +{"id": "075df76238670aa09024c7ca925e3e8b06927543122a159de7c28bf504e8b76f", "repo_url": "https://github.com/reggiechan74/vp-real-estate", "name": "lease-arbitration-expert", "description": "Expert in lease arbitration agreements that create binding dispute resolution when parties cannot agree on renewal rent or fair market value. Use when drafting renewal option clauses with rent arbitra", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reggiechan74/vp-real-estate/blob/main/plugins/leasing-commercial/skills/lease-arbitration-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T22:17:46Z"}, "embedding_text": "lease-arbitration-expert. Expert in lease arbitration agreements that create binding dispute resolution when parties cannot agree on renewal rent or fair market value. Use when drafting renewal option clauses with rent arbitra Platforms: claude_code."} +{"id": "5f2c28db225e1bd8b1241234d43367449d79ee9f071788d99fb0c260d2dff96c", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "github", "description": "GitHub CLI - manage repositories, issues, pull requests, actions, releases, and more from the command line.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "github. GitHub CLI - manage repositories, issues, pull requests, actions, releases, and more from the command line. Platforms: claude_code."} +{"id": "f95e5eeb94912fde1c7fe35892b4149f11dcfa8fb69092fc630f1428efbd42e4", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "ra-qm-skills", "description": "12 regulatory & QM agent skills and plugins for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. ISO 13485 QMS, MDR 2017/745, FDA 510(k)/PMA, ISO 27001 ISMS, GDPR/DSGVO, risk management (ISO 14971),", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/ra-qm-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "ra-qm-skills. 12 regulatory & QM agent skills and plugins for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. ISO 13485 QMS, MDR 2017/745, FDA 510(k)/PMA, ISO 27001 ISMS, GDPR/DSGVO, risk management (ISO 14971), Platforms: claude_code."} +{"id": "f85b26ae59fb2dec6646a7d0f0461cc86b5e2682a9f8c59dce27c564d0c35555", "repo_url": "https://github.com/johnrogers/claude-swift-engineering", "name": "swift-diagnostics", "description": "Use when debugging NavigationStack issues (not responding, unexpected pops, crashes), build failures (SPM resolution, \"No such module\", hanging builds), or memory problems (retain cycles, leaks, deini", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnrogers/claude-swift-engineering/blob/main/plugins/swift-engineering/skills/swift-diagnostics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 212, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T05:24:16Z"}, "embedding_text": "swift-diagnostics. Use when debugging NavigationStack issues (not responding, unexpected pops, crashes), build failures (SPM resolution, \"No such module\", hanging builds), or memory problems (retain cycles, leaks, deini Platforms: claude_code."} +{"id": "d4957ad20e20e6be81fba749ecc2ffbd9d4c345e013e350c0912c3d11ca6e6b5", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "context-saver", "description": "Save session context to disk for seamless continuation in new chat sessions. This skill should be used when the user asks to save context, preserve work state, checkpoint progress, or prepare for sess", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/context-saver/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "context-saver. Save session context to disk for seamless continuation in new chat sessions. This skill should be used when the user asks to save context, preserve work state, checkpoint progress, or prepare for sess Platforms: claude_code."} +{"id": "0cce8ab959fb7d42374ff09fa1fdf383dc797bc39bc74c6516dbccafe6d172bb", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "evaluation", "description": "Build evaluation frameworks for agent systems. Use when testing agent performance, validating context engineering choices, or measuring improvements over time.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/evaluation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "evaluation. Build evaluation frameworks for agent systems. Use when testing agent performance, validating context engineering choices, or measuring improvements over time. Platforms: claude_code."} +{"id": "e5f16b39745e9379b4ea6104083a719e4225efdf972c9ded2f885abe9d7b7654", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "sensei", "description": "**WORKFLOW SKILL** \u2014 Iteratively improve skill frontmatter compliance using the Ralph loop pattern. WHEN: \"run sensei\", \"sensei help\", \"improve skill\", \"fix frontmatter\", \"skill compliance\", \"frontmatter audit\", \"score skill\", \"check skill tokens\". INVOKES: token counting tools, test runners, git commands. FOR SINGLE OPERATIONS: use token CLI directly for counts/checks.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/sensei/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sensei"}, "quality": {"stars": 225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:17:52Z"}, "embedding_text": "sensei. **WORKFLOW SKILL** \u2014 Iteratively improve skill frontmatter compliance using the Ralph loop pattern. WHEN: \"run sensei\", \"sensei help\", \"improve skill\", \"fix frontmatter\", \"skill compliance\", \"frontmatter audit\", \"score skill\", \"check skill tokens\". INVOKES: token counting tools, test runners, git commands. FOR SINGLE OPERATIONS: use token CLI directly for counts/checks. Platforms: claude_code."} +{"id": "e45a787a7c3442680bc05bbb81fa12de8d42b4c9fb70b1da96501e44f4b77c17", "repo_url": "https://github.com/datarobot-oss/datarobot-agent-skills", "name": "datarobot-model-deployment", "description": "Tools and guidance for deploying DataRobot models, managing deployments, configuring prediction environments, and deployment operations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datarobot-oss/datarobot-agent-skills/blob/main/skills/datarobot-model-deployment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:59:03Z"}, "embedding_text": "datarobot-model-deployment. Tools and guidance for deploying DataRobot models, managing deployments, configuring prediction environments, and deployment operations. Platforms: claude_code."} +{"id": "53d44a65aa0bd708f404ab33ecda207ed414aef110eaf1a95e78ce514f52d016", "repo_url": "https://github.com/mayswind/ezbookkeeping", "name": "ezbookkeeping", "description": "Use ezBookkeeping API Tools script to record new transactions, query transactions, retrieve account information, retrieve categories, retrieve tags, and retrieve exchange rate data in the self hosted", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mayswind/ezbookkeeping/blob/main/skills/ezbookkeeping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5096, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:23:30Z"}, "embedding_text": "ezbookkeeping. Use ezBookkeeping API Tools script to record new transactions, query transactions, retrieve account information, retrieve categories, retrieve tags, and retrieve exchange rate data in the self hosted Platforms: claude_code."} +{"id": "4a906d93654286cb0321d13f00e70477976770a3913ba15befa4904c1f3604f4", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-secops", "description": "Comprehensive SecOps skill for application security, vulnerability management, compliance, and secure development practices. Includes security scanning, vulnerability assessment, compliance checking,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-secops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-secops. Comprehensive SecOps skill for application security, vulnerability management, compliance, and secure development practices. Includes security scanning, vulnerability assessment, compliance checking, Platforms: claude_code."} +{"id": "a41d221bd681984066b8ce5269991ca7e5244397a54507f24e0551439b3f956a", "repo_url": "https://github.com/scottermonk/agentautoflow", "name": "frontend-design", "description": "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 inclu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scottermonk/agentautoflow/blob/main/.kilocode/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T17:55:31Z"}, "embedding_text": "frontend-design. 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 inclu Platforms: claude_code."} +{"id": "590a2fc2a4e8d77336ad9b83eac95b402e394bf1cc1d5c61f0ab62ada44994a5", "repo_url": "https://github.com/jeremy-allen/claude-skills", "name": "developing-packages-r", "description": "Building robust R packages with modern tidyverse patterns. Use this skill when creating or maintaining R packages, designing APIs, choosing dependencies, implementing input validation, writing error m", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeremy-allen/claude-skills/blob/main/developing-packages-r/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T03:59:58Z"}, "embedding_text": "developing-packages-r. Building robust R packages with modern tidyverse patterns. Use this skill when creating or maintaining R packages, designing APIs, choosing dependencies, implementing input validation, writing error m Platforms: claude_code."} +{"id": "b67d0bec568aef5b8ca80faa5611539615c94bedf6c6ad0c562927481ad2d2f4", "repo_url": "https://github.com/datarobot-oss/datarobot-agent-skills", "name": "datarobot-feature-engineering", "description": "Guidance for feature engineering, feature discovery, feature importance analysis, and understanding DataRobot's automated feature engineering capabilities.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datarobot-oss/datarobot-agent-skills/blob/main/skills/datarobot-feature-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:59:03Z"}, "embedding_text": "datarobot-feature-engineering. Guidance for feature engineering, feature discovery, feature importance analysis, and understanding DataRobot's automated feature engineering capabilities. Platforms: claude_code."} +{"id": "77e017aad1f331b63bd10f34f2856fbdce9053c0e18aea2ecaa741d0a0ce7cde", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "agent-fungibility", "description": "The philosophy and practical benefits of agent fungibility in multi-agent software development. Why homogeneous, interchangeable agents outperform specialized role-based systems at scale.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/agent-fungibility/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "agent-fungibility. The philosophy and practical benefits of agent fungibility in multi-agent software development. Why homogeneous, interchangeable agents outperform specialized role-based systems at scale. Platforms: claude_code."} +{"id": "e15857adf5c8de3150b9a58b618ab5e56c60463fc2b459312c5ca05996598b0e", "repo_url": "https://github.com/scarr05/claude-skills-pub", "name": "drawio", "description": "Create and edit draw.io diagram files (.drawio) for architecture diagrams, flowcharts, network diagrams, and technical illustrations. Use when the user asks to create diagrams, architecture visuals, f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scarr05/claude-skills-pub/blob/main/drawio-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T11:30:19Z"}, "embedding_text": "drawio. Create and edit draw.io diagram files (.drawio) for architecture diagrams, flowcharts, network diagrams, and technical illustrations. Use when the user asks to create diagrams, architecture visuals, f Platforms: claude_code."} +{"id": "3b037fb70e1ee8cf4f0f7e4bae23ebf6a4ea25ff91f3a462d5cc39ace178f48b", "repo_url": "https://github.com/robertguss/claude-skills", "name": "brainstorm", "description": "Collaborative brainstorming partner for multi-session ideation projects. Use when the user wants to brainstorm, ideate, explore ideas, or think through problems\u2014whether for SaaS products, software too", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/brainstorm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "brainstorm. Collaborative brainstorming partner for multi-session ideation projects. Use when the user wants to brainstorm, ideate, explore ideas, or think through problems\u2014whether for SaaS products, software too Platforms: claude_code."} +{"id": "9891fd84e6ace46f0e7eadb4ca908f67d797d7f7546c82813b2899d138acf87a", "repo_url": "https://github.com/datarobot-oss/datarobot-agent-skills", "name": "datarobot-model-monitoring", "description": "Tools and guidance for monitoring model performance, tracking data drift, managing model health, and detecting prediction anomalies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datarobot-oss/datarobot-agent-skills/blob/main/skills/datarobot-model-monitoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:59:03Z"}, "embedding_text": "datarobot-model-monitoring. Tools and guidance for monitoring model performance, tracking data drift, managing model health, and detecting prediction anomalies. Platforms: claude_code."} +{"id": "a28bad04effb4957517a90bd86cd9ebb0d5461d25ba01b736dc2374d84632260", "repo_url": "https://github.com/robertguss/claude-skills", "name": "ebook-discovery", "description": "Surface ebook ideas you didn't know you had. Use when ready to discover what ebooks might be hiding in your content, expertise, or thinking. Supports both content-rich creators (blog posts, videos, ne", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/ebook-factory/ebook-discovery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "ebook-discovery. Surface ebook ideas you didn't know you had. Use when ready to discover what ebooks might be hiding in your content, expertise, or thinking. Supports both content-rich creators (blog posts, videos, ne Platforms: claude_code."} +{"id": "8316a7084273e38f412e0e15284d75924a0f14c32c27a0aa7278a942e1de4696", "repo_url": "https://github.com/scottermonk/agentautoflow", "name": "coding-python", "description": "When python, flask, or jinja are being written or edited.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scottermonk/agentautoflow/blob/main/.kilocode/skills/coding-python/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T17:55:31Z"}, "embedding_text": "coding-python. When python, flask, or jinja are being written or edited. Platforms: claude_code."} +{"id": "0471f94d8d23c34c8ed020cc1c8f6c7d3f90e371de4b9ba4dbb2c6f7693a904d", "repo_url": "https://github.com/nice-wolf-studio/claude-code-supabase-skills", "name": "supabase-edge-functions", "description": "Deploy and manage Supabase Edge Functions. Use for invoking serverless functions, deploying new functions, and managing function deployments.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nice-wolf-studio/claude-code-supabase-skills/blob/main/skills/supabase-edge-functions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-20T05:39:45Z"}, "embedding_text": "supabase-edge-functions. Deploy and manage Supabase Edge Functions. Use for invoking serverless functions, deploying new functions, and managing function deployments. Platforms: claude_code."} +{"id": "21fe443cc68f15d22b4aa6ecf5927801cece8adf738ab0c8f6ba385a5a43c1fc", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "writing-design-plans", "description": "Use after brainstorming completes - writes validated designs to docs/design-plans/ with structured format and discrete implementation phases required for creating detailed implementation plans", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-plan-and-execute/skills/writing-design-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "writing-design-plans. Use after brainstorming completes - writes validated designs to docs/design-plans/ with structured format and discrete implementation phases required for creating detailed implementation plans Platforms: claude_code."} +{"id": "67481783ac79864884b8d3012dcb4706d6ef59b2443b6248b1fa51159005feb2", "repo_url": "https://github.com/datarobot-oss/datarobot-agent-skills", "name": "datarobot-data-preparation", "description": "Tools and guidance for data upload, dataset management, data validation, and preparing data for DataRobot projects.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datarobot-oss/datarobot-agent-skills/blob/main/skills/datarobot-data-preparation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:59:03Z"}, "embedding_text": "datarobot-data-preparation. Tools and guidance for data upload, dataset management, data validation, and preparing data for DataRobot projects. Platforms: claude_code."} +{"id": "360532d36cac0eb2c801beda8e393e5553c88c4d56db94d82832d31680f071a6", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "diagram-monochrome", "description": "This skill should be used when the user asks to \"create a diagram\", \"draw a schematic\", \"make a technical diagram\", \"monochrome diagram\", \"black and white diagram\", \"systems diagram\", \"architecture di", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/shelved/diagram-monochrome/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "diagram-monochrome. This skill should be used when the user asks to \"create a diagram\", \"draw a schematic\", \"make a technical diagram\", \"monochrome diagram\", \"black and white diagram\", \"systems diagram\", \"architecture di Platforms: claude_code."} +{"id": "21911d726a5696f33f34ff8286b12b91a3ce78b13c85961dbd22ff7981b70e49", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "backlog-tools-administrator", "description": "Administer the backlog tooling ecosystem when a capability gap is discovered. Invoke when backlog.py, backlog skills, or backlog agents lack a needed operation and a workaround was used or is about to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/backlog-tools-administrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "backlog-tools-administrator. Administer the backlog tooling ecosystem when a capability gap is discovered. Invoke when backlog.py, backlog skills, or backlog agents lack a needed operation and a workaround was used or is about to Platforms: claude_code."} +{"id": "6c05dffd359899b54d8a6604128ab20cede835cec3e77298211625bed4d2e6fc", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "llamafile", "description": "When setting up local LLM inference without cloud APIs. When running GGUF models locally. When needing OpenAI-compatible API from a local model. When building offline/air-gapped AI tools. When trouble", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/llamafile/skills/llamafile/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "llamafile. When setting up local LLM inference without cloud APIs. When running GGUF models locally. When needing OpenAI-compatible API from a local model. When building offline/air-gapped AI tools. When trouble Platforms: claude_code."} +{"id": "ba1ee88db32242454979b5be14dfa5ae8bf92e0e9b3b56bdd8f65cafba28984d", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robot-perception", "description": "Comprehensive best practices for robot perception systems covering cameras, LiDARs, depth sensors, IMUs, and multi-sensor setups. Use this skill when working with RGB image processing, depth maps, point clouds, sensor calibration (intrinsic, extrinsic, hand-eye), object detection, semantic segmentation, 3D reconstruction, visual servoing, or perception pipeline optimization. Trigger whenever the user mentions OpenCV, Open3D, PCL, RealSense, ZED, OAK-D, camera calibration, AprilTags, ArUco markers, stereo vision, RGBD, point cloud filtering, ICP registration, coordinate transforms, camera intrinsics, distortion correction, image undistortion, sensor streaming, frame synchronization, or any computer vision task in a robotics context. Also covers multi-camera rigs, time synchronization across sensors, perception latency budgets, and production deployment of perception pipelines.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robot-perception/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robot-perception"}, "quality": {"stars": 287, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T23:26:20Z"}, "embedding_text": "robot-perception. Comprehensive best practices for robot perception systems covering cameras, LiDARs, depth sensors, IMUs, and multi-sensor setups. Use this skill when working with RGB image processing, depth maps, point clouds, sensor calibration (intrinsic, extrinsic, hand-eye), object detection, semantic segmentation, 3D reconstruction, visual servoing, or perception pipeline optimization. Trigger whenever the user mentions OpenCV, Open3D, PCL, RealSense, ZED, OAK-D, camera calibration, AprilTags, ArUco markers, stereo vision, RGBD, point cloud filtering, ICP registration, coordinate transforms, camera intrinsics, distortion correction, image undistortion, sensor streaming, frame synchronization, or any computer vision task in a robotics context. Also covers multi-camera rigs, time synchronization across sensors, perception latency budgets, and production deployment of perception pipelines. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} +{"id": "c40a6de1ddd08ed5de02cf690ff252c34cbb80dbb8b6c78548f815a2febc88a3", "repo_url": "https://github.com/wilddogjp/openbpx", "name": "bpx-var", "description": "BPX `var` command skill. Inspect variable defaults/declarations and update defaults or names.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wilddogjp/openbpx/blob/main/plugins/openbpx/skills/bpx-var/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:54:42Z"}, "embedding_text": "bpx-var. BPX `var` command skill. Inspect variable defaults/declarations and update defaults or names. Platforms: claude_code."} +{"id": "c983c28fb153d7093ee1b755d0427621638029800b8c5057bdfa895ca86454e1", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "data-things", "description": "Helps with data stuff", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/meta-skillpack-maintenance/.test-fixtures/flawed-plugin/skills/data-things/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "data-things. Helps with data stuff Platforms: claude_code."} +{"id": "5c1285a6985a1796b017905479e1ca240711e058042df47ff77fa0e0d1c9b8a0", "repo_url": "https://github.com/jellydn/my-ai-tools", "name": "codemap", "description": "Orchestrate parallel codebase analysis to produce 7 structured documents about the codebase in .planning/codebase/", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jellydn/my-ai-tools/blob/main/skills/codemap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 84, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:26:12Z"}, "embedding_text": "codemap. Orchestrate parallel codebase analysis to produce 7 structured documents about the codebase in .planning/codebase/ Platforms: claude_code."} +{"id": "a70a8ac4b6630256d3b20ec91c0f8853b3baf2adc8ec1bfe2d826c1dfa398c38", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "PDF Processing", "description": "Invoke this skill BEFORE implementing any text extraction/parsing logic to learn how to use LlamaParse to process any document accurately. Requires llama_cloud_services package and LLAMA_CLOUD_API_KEY", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks-extra/find-topk-similiar-chemicals/environment/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "PDF Processing. Invoke this skill BEFORE implementing any text extraction/parsing logic to learn how to use LlamaParse to process any document accurately. Requires llama_cloud_services package and LLAMA_CLOUD_API_KEY Platforms: claude_code."} +{"id": "9b825005e4961b889277f928d79bb349d117dc864bbf595ecc7deffd3b29462f", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-javascript", "description": "This skill provides JavaScript coding standards and is automatically loaded for JavaScript projects. It includes modern ES2025 patterns, async handling, and recommended tooling.", "source": ["skillhub", "topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-java/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-javascript"}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T09:20:28Z"}, "embedding_text": "standards-javascript. This skill provides JavaScript coding standards and is automatically loaded for JavaScript projects. It includes modern ES2025 patterns, async handling, and recommended tooling. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} +{"id": "17dd6e6387742f257f71a84028d1227f252e142bbf3a5518f7cbb1649075e136", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "raindrop-io", "description": "Manage Raindrop.io bookmarks with AI assistance. Save and organize bookmarks, search your collection, manage reading lists, and organize research materials. Use when working with bookmarks, web research, reading lists, or when user mentions Raindrop.io.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/dansega1/raindrop-io/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install raindrop-io"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "raindrop-io. Manage Raindrop.io bookmarks with AI assistance. Save and organize bookmarks, search your collection, manage reading lists, and organize research materials. Use when working with bookmarks, web research, reading lists, or when user mentions Raindrop.io. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "63a370d4b1d07822d52233008d5966d9f0f2725c2edc83a9736938a2ce07017e", "repo_url": "https://github.com/massimodeluisa/recursive-decomposition-skill", "name": "recursive-decomposition", "description": "Based on the Recursive Language Models (RLM) research by Zhang, Kraska, and Khattab (2025), this skill provides strategies for handling tasks that exceed comfortable context limits through programmatic decomposition and recursive self-invocation. Triggers on phrases like \"analyze all files\", \"process this large document\", \"aggregate information from\", \"search across the codebase\", or tasks involving 10+ files or 50k+ tokens.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agents", "claude-code-plugin", "claude-code-skill", "claude-code-skills", "claude-skills", "llm", "long-context", "recursive-decomposition", "rlm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/massimodeluisa/recursive-decomposition-skill/blob/main/plugins/recursive-decomposition/skills/recursive-decomposition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recursive-decomposition"}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T17:09:27Z"}, "embedding_text": "recursive-decomposition. Based on the Recursive Language Models (RLM) research by Zhang, Kraska, and Khattab (2025), this skill provides strategies for handling tasks that exceed comfortable context limits through programmatic decomposition and recursive self-invocation. Triggers on phrases like \"analyze all files\", \"process this large document\", \"aggregate information from\", \"search across the codebase\", or tasks involving 10+ files or 50k+ tokens. Categories: ai-agents, claude-code-plugin, claude-code-skill, claude-code-skills, claude-skills, llm, long-context, recursive-decomposition, rlm. Platforms: claude_code."} +{"id": "7f3d9f7ecad2e92f31fd710ffa211084b1570c5f731205ae8ae530da0cccbfc3", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "frontend-react-best-practices", "description": "React performance optimization guidelines. Use when writing, reviewing, or refactoring React components to ensure optimal rendering and bundle patterns. Triggers on tasks involving React components, h", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/frontend-react-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "frontend-react-best-practices. React performance optimization guidelines. Use when writing, reviewing, or refactoring React components to ensure optimal rendering and bundle patterns. Triggers on tasks involving React components, h Platforms: claude_code."} +{"id": "00421dd42179ef249331f5e5428970eaf4d3427f75064b92765939c15e156454", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "test-runner", "description": "Test automation specialist for running tests and ensuring coverage", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/test-runner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-runner"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "test-runner. Test automation specialist for running tests and ensuring coverage Platforms: claude_code."} +{"id": "3110a59bc89725fafffaca5137181300b49190e17816d27ac0644d1a8b85ff12", "repo_url": "https://github.com/harryworld/xcode26-agent-skills", "name": "xcode-26", "description": "Xcode 26 and Apple platform update notes with a focus on Liquid Glass, Foundation Models Framework, and Apple Intelligence. Use when asked to explain, summarize, compare, or implement Xcode 26 era fra", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/harryworld/xcode26-agent-skills/blob/main/xcode-26/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 88, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T07:23:08Z"}, "embedding_text": "xcode-26. Xcode 26 and Apple platform update notes with a focus on Liquid Glass, Foundation Models Framework, and Apple Intelligence. Use when asked to explain, summarize, compare, or implement Xcode 26 era fra Platforms: claude_code."} +{"id": "be604f23556108340c1243f63359915b8200d9d7e851c3e58b74e43ae9ad6511", "repo_url": "https://github.com/jmanhype/claude-code-plugin-marketplace", "name": "reflect-appworld-failure", "description": "Analyze AppWorld task failures to extract specific API patterns and generate actionable playbook bullets with concrete code examples", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jmanhype/claude-code-plugin-marketplace/blob/main/plugins/ace-context-engineering/skills/reflect-appworld-failure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:09:29Z"}, "embedding_text": "reflect-appworld-failure. Analyze AppWorld task failures to extract specific API patterns and generate actionable playbook bullets with concrete code examples Platforms: claude_code."} +{"id": "adfd722a1f360ecdc845b318f66eb78b051d025c3593101f01310c4668e70c82", "repo_url": "https://github.com/lambdamechanic/tooltest", "name": "beads", "description": "Git-backed issue tracker for multi-session work with dependencies and persistent memory across conversation compaction. Use when work spans sessions, has blockers, or needs context recovery after comp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lambdamechanic/tooltest/blob/main/skills/beads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-05T12:32:58Z"}, "embedding_text": "beads. Git-backed issue tracker for multi-session work with dependencies and persistent memory across conversation compaction. Use when work spans sessions, has blockers, or needs context recovery after comp Platforms: claude_code."} +{"id": "29386650d63f02bc8625e2b4b1c3674a38e2e2f83ef8ff82c4873845428e1a67", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "swarm", "description": "Autonomous multi-agent workflow system for complex coding tasks. Use when the user requests non-trivial changes that would benefit from autonomous execution with built-in review gates. Ideal for refac", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/am-will/super-swarm-spark/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install swarm"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "swarm. Autonomous multi-agent workflow system for complex coding tasks. Use when the user requests non-trivial changes that would benefit from autonomous execution with built-in review gates. Ideal for refac Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "d4ed8370964226c4df7d6ac29b6a84684978a168c5cd656cd74177127dfb3765", "repo_url": "https://github.com/dagster-io/skills", "name": "dg:create-project", "description": "Create a new Dagster project with recommended structure. Use when user wants to initialize, scaffold, or create a new Dagster project.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dagster-io/skills/blob/master/skills/dagster-expert/skills/dagster-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 170, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T19:14:59Z"}, "embedding_text": "dg:create-project. Create a new Dagster project with recommended structure. Use when user wants to initialize, scaffold, or create a new Dagster project. Platforms: claude_code."} +{"id": "abe885a046160c8c8d88efbb73ed61b6aadd30351d31390d9a40d1b8a0b462cb", "repo_url": "https://github.com/paid-tw/skills", "name": "kryptogo-pay-webhook", "description": "Implements KryptoGO Payment webhook/callback handling for receiving payment status notifications. Use when building webhook endpoints, handling payment callbacks, or implementing \u652f\u4ed8\u72c0\u614b\u901a\u77e5 for KryptoGO P", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paid-tw/skills/blob/main/plugins/kryptogo-pay/skills/kryptogo-pay-webhook/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 260, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T01:10:18Z"}, "embedding_text": "kryptogo-pay-webhook. Implements KryptoGO Payment webhook/callback handling for receiving payment status notifications. Use when building webhook endpoints, handling payment callbacks, or implementing \u652f\u4ed8\u72c0\u614b\u901a\u77e5 for KryptoGO P Platforms: claude_code."} +{"id": "80432981be44982c08739b5cb7a79789104df3a4eb8cc29d7c2b4ec1294810bb", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "swot-pestle-analysis", "description": "Strategic environmental analysis using SWOT, PESTLE, and Porter's Five Forces. Creates structured assessments with Mermaid visualizations for competitive positioning and strategic planning.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/swot-pestle-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "swot-pestle-analysis. Strategic environmental analysis using SWOT, PESTLE, and Porter's Five Forces. Creates structured assessments with Mermaid visualizations for competitive positioning and strategic planning. Platforms: claude_code."} +{"id": "c42eae3b3f92f7673a607bb034694eda485457c2fdbc67aaf99908314e03306f", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "furusato", "description": "This skill manages furusato nozei (hometown tax) donations. Use when the user wants to register donation data, read donation receipts, check deduction limits, or manage their furusato nozei records. Trigger phrases: \"\u3075\u308b\u3055\u3068\u7d0d\u7a0e\", \"furusato\", \"\u5bc4\u9644\u91d1\", \"\u5bc4\u4ed8\u91d1\", \"\u3075\u308b\u3055\u3068\u7d0d\u7a0e\u306e\u63a7\u9664\", \"\u5bc4\u9644\u91d1\u53d7\u9818\u8a3c\u660e\u66f8\", \"\u30ef\u30f3\u30b9\u30c8\u30c3\u30d7\u7279\u4f8b\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/furusato/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install furusato"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "furusato. This skill manages furusato nozei (hometown tax) donations. Use when the user wants to register donation data, read donation receipts, check deduction limits, or manage their furusato nozei records. Trigger phrases: \"\u3075\u308b\u3055\u3068\u7d0d\u7a0e\", \"furusato\", \"\u5bc4\u9644\u91d1\", \"\u5bc4\u4ed8\u91d1\", \"\u3075\u308b\u3055\u3068\u7d0d\u7a0e\u306e\u63a7\u9664\", \"\u5bc4\u9644\u91d1\u53d7\u9818\u8a3c\u660e\u66f8\", \"\u30ef\u30f3\u30b9\u30c8\u30c3\u30d7\u7279\u4f8b\". Platforms: claude_code."} +{"id": "28b1b599bae349fddc7ff7daab425a3d7464303d8b5bde642e496634fc5d674f", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "cloudflare-workers", "description": "Cloudflare Workers serverless platform for edge computing with V8 runtime", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/cloudflare-workers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "cloudflare-workers. Cloudflare Workers serverless platform for edge computing with V8 runtime Platforms: claude_code."} +{"id": "ee43b5a83de69c2a81f2a996b82a48a2bbc2acb0fbc376893492ddaf7fab1181", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "canvas-design", "description": "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 ori", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "canvas-design. 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 ori Platforms: claude_code."} +{"id": "0b1a1278e6d4488fa63e1aafbf3cdafb992d9bbe4d2ccb6b2845fe4a18719494", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "project-init", "description": "Expert-guided project setup with 6 phases", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/project-init/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install project-init"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "project-init. Expert-guided project setup with 6 phases Platforms: claude_code."} +{"id": "ac8722e4072472319674bb3037f8391dd0c90eff244efad51266201a0e4ead3c", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-keyboard", "description": "Guide to handling keyboard in Capacitor apps including visibility detection, accessory bar, scroll behavior, and input focus. Use this skill when users have keyboard-related issues.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-features/skills/capacitor-keyboard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-keyboard. Guide to handling keyboard in Capacitor apps including visibility detection, accessory bar, scroll behavior, and input focus. Use this skill when users have keyboard-related issues. Platforms: claude_code."} +{"id": "ecf1d38f2e97a97d1c4f7ab1193fe1e40fb988e078e4bd82e1faa386ddc35075", "repo_url": "https://github.com/openxjarvis/openclaw-python", "name": "imsg", "description": "iMessage integration using AppleScript", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openxjarvis/openclaw-python/blob/main/skills/imsg/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-22T16:36:40Z"}, "embedding_text": "imsg. iMessage integration using AppleScript Platforms: claude_code."} +{"id": "9055a2892ab22cbb39c2bf811915e5898f4fabe9e85c7e48f95c613621174c86", "repo_url": "https://github.com/dimon94/cc-devflow", "name": "writing-skills", "description": "Use when creating new skills, editing existing skills, or verifying skills work before deployment", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dimon94/cc-devflow/blob/main/.claude/skills/cc-act/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 110, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T01:43:26Z"}, "embedding_text": "writing-skills. Use when creating new skills, editing existing skills, or verifying skills work before deployment Platforms: claude_code."} +{"id": "e9b862497d64e51d2665aef98e375e0e3dfe668416618ef79fb976b3db1e577c", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "brainstorming_obra", "description": "Use when creating or developing, before writing code or implementation plans - refines rough ideas into fully-formed designs through collaborative questioning, alternative exploration, and incremental validation. Don't use during clear 'mechanical' processes", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/brainstorming_obra/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brainstorming_obra"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "brainstorming_obra. Use when creating or developing, before writing code or implementation plans - refines rough ideas into fully-formed designs through collaborative questioning, alternative exploration, and incremental validation. Don't use during clear 'mechanical' processes Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "02a4de4b5d7584037021fdbd5ecd64a551afc875a68c251ef6297121a36333ea", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "db", "description": "G\u00e8re le sch\u00e9ma Prisma et les migrations de Motivia. Utilise ce skill quand l'utilisateur demande de modifier la base de donn\u00e9es, ajouter une table, un champ, une relation, ou effectuer une migration. PostgreSQL avec Prisma ORM.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/db/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install db"}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "db. G\u00e8re le sch\u00e9ma Prisma et les migrations de Motivia. Utilise ce skill quand l'utilisateur demande de modifier la base de donn\u00e9es, ajouter une table, un champ, une relation, ou effectuer une migration. PostgreSQL avec Prisma ORM. Platforms: claude_code."} +{"id": "60805ae40023667465a360c3ded3a1d471fd2ad0243dead623dcf12564b76685", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-system-architect", "description": "Use when you have architecture documentation from system-archaeologist and need critical assessment, refactoring recommendations, or improvement prioritization - routes to appropriate architect specia", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-system-architect/skills/using-system-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-system-architect. Use when you have architecture documentation from system-archaeologist and need critical assessment, refactoring recommendations, or improvement prioritization - routes to appropriate architect specia Platforms: claude_code."} +{"id": "81cf315cbd2c07294102a40388ed4f794be9bbbaacaa9796e4e7baf3849cf48a", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "webapp-testing", "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "webapp-testing. Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l Platforms: claude_code."} +{"id": "cfa2e61ff73f9f9bc6d193a665d838cacb79489ac7219618703b95d2ba0f4fa1", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-latex", "description": "Render mathematical formulas with LaTeX/KaTeX in Slidev. Use this skill for equations, mathematical notation, and scientific content.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/visuals/slidev-latex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-latex. Render mathematical formulas with LaTeX/KaTeX in Slidev. Use this skill for equations, mathematical notation, and scientific content. Platforms: claude_code."} +{"id": "5c5e7d117eef8f53ba7d195f10e8a39cb54819a4f9ed09fa168ce5ee3e4a498d", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "gather", "description": "This skill should be used when the user needs to know what documents to collect for their tax filing, wants a checklist of required documents, or asks where to obtain specific tax documents. Trigger phrases include: \"\u5fc5\u8981\u66f8\u985e\", \"\u66f8\u985e\u3092\u96c6\u3081\u308b\", \"\u4f55\u3092\u6e96\u5099\u3059\u308c\u3070\u3044\u3044\", \"\u6e90\u6cc9\u5fb4\u53ce\u7968\u306f\u3069\u3053\u3067\", \"\u66f8\u985e\u30c1\u30a7\u30c3\u30af\u30ea\u30b9\u30c8\", \"\u78ba\u5b9a\u7533\u544a\u306b\u5fc5\u8981\u306a\u3082\u306e\", \"\u66f8\u985e\u53ce\u96c6\", \"\u6e96\u5099\u3059\u308b\u3082\u306e\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/gather/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gather"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "gather. This skill should be used when the user needs to know what documents to collect for their tax filing, wants a checklist of required documents, or asks where to obtain specific tax documents. Trigger phrases include: \"\u5fc5\u8981\u66f8\u985e\", \"\u66f8\u985e\u3092\u96c6\u3081\u308b\", \"\u4f55\u3092\u6e96\u5099\u3059\u308c\u3070\u3044\u3044\", \"\u6e90\u6cc9\u5fb4\u53ce\u7968\u306f\u3069\u3053\u3067\", \"\u66f8\u985e\u30c1\u30a7\u30c3\u30af\u30ea\u30b9\u30c8\", \"\u78ba\u5b9a\u7533\u544a\u306b\u5fc5\u8981\u306a\u3082\u306e\", \"\u66f8\u985e\u53ce\u96c6\", \"\u6e96\u5099\u3059\u308b\u3082\u306e\". Platforms: claude_code."} +{"id": "acdcd47711a5e34b2cd2e9076b4d90b17621299fcc92d353e6a51c1bd3867866", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "knowledge-base-builder", "description": "Build searchable knowledge bases from document collections (PDFs, Word, text files). Use for creating technical libraries, standards repositories, research databases, or any large document collection", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/data/documents/knowledge-base-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "knowledge-base-builder. Build searchable knowledge bases from document collections (PDFs, Word, text files). Use for creating technical libraries, standards repositories, research databases, or any large document collection Platforms: claude_code."} +{"id": "1c98ccadb8e81f61870f039a8ab6ddf5b0e1c4c838652e3bca70ea74dca980aa", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "plugin-audit", "description": "Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure,\nquality, security, marketplace compliance, cross-platform compatibility, and ecosystem integration.\nRuns al", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/plugin-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "plugin-audit. Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure,\nquality, security, marketplace compliance, cross-platform compatibility, and ecosystem integration.\nRuns al Platforms: claude_code."} +{"id": "eb171459dae9142b55897b4e4d579221647d6a753d91417e816439ae434804f6", "repo_url": "https://github.com/kilo-org/kilo-marketplace", "name": "canvas-design", "description": "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 ori", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kilo-org/kilo-marketplace/blob/main/skills/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 145, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:35:05Z"}, "embedding_text": "canvas-design. 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 ori Platforms: claude_code."} +{"id": "419280907b71e018b3632d04777da590e913efb075f5ec17ed295051ef678519", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "aws-lambda", "description": "Build resilient, long-running, multi-step applications with AWS Lambda durable functions with automatic state persistence, retry logic, and orchestration for long-running executions. Covers the critical replay model, step operations, wait/callback patterns, error handling with saga pattern, testing with LocalDurableTestRunner. Triggers on phrases like: lambda durable functions, workflow orchestration, state machines, retry/checkpoint patterns, long-running stateful Lambda functions, saga pattern, human-in-the-loop callbacks, and reliable serverless applications.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/aws-serverless/skills/aws-lambda-durable-functions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-lambda"}, "quality": {"stars": 796, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:53:29Z"}, "embedding_text": "aws-lambda. Build resilient, long-running, multi-step applications with AWS Lambda durable functions with automatic state persistence, retry logic, and orchestration for long-running executions. Covers the critical replay model, step operations, wait/callback patterns, error handling with saga pattern, testing with LocalDurableTestRunner. Triggers on phrases like: lambda durable functions, workflow orchestration, state machines, retry/checkpoint patterns, long-running stateful Lambda functions, saga pattern, human-in-the-loop callbacks, and reliable serverless applications. Platforms: claude_code."} +{"id": "0a0ba8480815f9d7118cff7ef14b3767d569fd39bc6fba127897046cda3edba8", "repo_url": "https://github.com/isjiamu/jiamu-skills", "name": "gif-splitter", "description": "GIF\u52a8\u56fe\u5207\u5206\u5de5\u5177\uff0c\u5c06\u8d85\u8fc7\u6307\u5b9a\u5e27\u6570\u7684GIF\u6587\u4ef6\u81ea\u52a8\u62c6\u5206\u6210\u591a\u4e2a\u5c0f\u6587\u4ef6\u3002\u9002\u7528\u4e8e\u5fae\u4fe1\u516c\u4f17\u53f7\u7b49\u5e73\u53f0\u4e0a\u4f20GIF\u65f6\u9047\u5230\"\u5e27\u6570\u8d85\u9650\"\u7684\u95ee\u9898\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/isjiamu/jiamu-skills/blob/main/gif-splitter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 92, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T14:23:16Z"}, "embedding_text": "gif-splitter. GIF\u52a8\u56fe\u5207\u5206\u5de5\u5177\uff0c\u5c06\u8d85\u8fc7\u6307\u5b9a\u5e27\u6570\u7684GIF\u6587\u4ef6\u81ea\u52a8\u62c6\u5206\u6210\u591a\u4e2a\u5c0f\u6587\u4ef6\u3002\u9002\u7528\u4e8e\u5fae\u4fe1\u516c\u4f17\u53f7\u7b49\u5e73\u53f0\u4e0a\u4f20GIF\u65f6\u9047\u5230\"\u5e27\u6570\u8d85\u9650\"\u7684\u95ee\u9898\u3002 Platforms: claude_code."} +{"id": "d03272609d29bd0ae33a1bbe05f9786e69445b0f75c224bf3b8eea85a4a30d34", "repo_url": "https://github.com/davila7/claude-code-templates", "name": "computer-use-agents", "description": "Build AI agents that interact with computers like humans do - viewing screens, moving cursors, clicking buttons, and typing text. Covers Anthropic's Computer Use, OpenAI's Operator/CUA, and open-sourc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/davila7/claude-code-templates/blob/main/cli-tool/components/skills/ai-research/computer-use-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28224, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:37:57Z"}, "embedding_text": "computer-use-agents. Build AI agents that interact with computers like humans do - viewing screens, moving cursors, clicking buttons, and typing text. Covers Anthropic's Computer Use, OpenAI's Operator/CUA, and open-sourc Platforms: claude_code."} +{"id": "35e33cada66aaaa58f53b41d0816046581aa115037310f9f3817dbea96997545", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-qa", "description": "Comprehensive QA and testing skill for quality assurance, test automation, and testing strategies for ReactJS, NextJS, NodeJS applications. Includes test suite generation, coverage analysis, E2E testi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-qa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-qa. Comprehensive QA and testing skill for quality assurance, test automation, and testing strategies for ReactJS, NextJS, NodeJS applications. Includes test suite generation, coverage analysis, E2E testi Platforms: claude_code."} +{"id": "c57d69a807a5170aa416f60bb506c361411c4181340c4de64f5a85a7ff4f58b3", "repo_url": "https://github.com/nahisaho/musubi", "name": "site-reliability-engineer", "description": "Production monitoring, observability, SLO/SLI management, and incident response.\n\nTrigger terms: monitoring, observability, SRE, site reliability, alerting, incident response,\nSLO, SLI, error budget,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/site-reliability-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "site-reliability-engineer. Production monitoring, observability, SLO/SLI management, and incident response.\n\nTrigger terms: monitoring, observability, SRE, site reliability, alerting, incident response,\nSLO, SLI, error budget, Platforms: claude_code."} +{"id": "9f2b488f03f10b720a8c267b118d589abcb40c64df32648527f7fe39479761ec", "repo_url": "https://github.com/johnrogers/claude-swift-engineering", "name": "composable-architecture", "description": "Use when building features with TCA (The Composable Architecture), structuring reducers, managing state, handling effects, navigation, or testing TCA features. Covers @Reducer, Store, Effect, TestStor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnrogers/claude-swift-engineering/blob/main/plugins/swift-engineering/skills/composable-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 212, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T05:24:16Z"}, "embedding_text": "composable-architecture. Use when building features with TCA (The Composable Architecture), structuring reducers, managing state, handling effects, navigation, or testing TCA features. Covers @Reducer, Store, Effect, TestStor Platforms: claude_code."} +{"id": "3dafee070f9cbffb49a253ea7ab127531aa20e14a80c21e4a4b1bf7485ae2e7c", "repo_url": "https://github.com/rafaelgorski/problem-based-srs", "name": "software-vision", "description": "Transform Software Glance and Customer Needs into a detailed Software Vision with positioning, stakeholders, features, and architecture. Use after Customer Needs. Step 4 of Problem-Based SRS methodolo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rafaelgorski/problem-based-srs/blob/main/skills/software-vision/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T19:14:56Z"}, "embedding_text": "software-vision. Transform Software Glance and Customer Needs into a detailed Software Vision with positioning, stakeholders, features, and architecture. Use after Customer Needs. Step 4 of Problem-Based SRS methodolo Platforms: claude_code."} +{"id": "d1b564af1dd7c76f2b98364d209916fd688d9e1959a12c047d05dd267a988e94", "repo_url": "https://github.com/robertguss/claude-skills", "name": "code-documenter", "description": "Expert documentation generator for coding projects. Analyzes codebases to create thorough, comprehensive documentation for developers and users. Supports incremental updates, multi-audience documentat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/code-documenter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "code-documenter. Expert documentation generator for coding projects. Analyzes codebases to create thorough, comprehensive documentation for developers and users. Supports incremental updates, multi-audience documentat Platforms: claude_code."} +{"id": "e6dbd7423eec1651f7775d5f92bd30450d74886b0887b16dcc1733280b6850cd", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-pkg-pydicom", "description": "Python library for working with DICOM (Digital Imaging and Communications in Medicine) files. Use this skill when reading, writing, or modifying medical imaging data in DICOM format, extracting pixel data from medical images (CT, MRI, X-ray, ultrasound), anonymizing DICOM files, working with DICOM metadata and tags, converting DICOM images to other formats, handling compressed DICOM data, or processing medical imaging datasets. Applies to tasks involving medical image analysis, PACS systems, radiology workflows, and healthcare imaging applications.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-pkg-pydicom/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-pkg-pydicom"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-pkg-pydicom. Python library for working with DICOM (Digital Imaging and Communications in Medicine) files. Use this skill when reading, writing, or modifying medical imaging data in DICOM format, extracting pixel data from medical images (CT, MRI, X-ray, ultrasound), anonymizing DICOM files, working with DICOM metadata and tags, converting DICOM images to other formats, handling compressed DICOM data, or processing medical imaging datasets. Applies to tasks involving medical image analysis, PACS systems, radiology workflows, and healthcare imaging applications. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "c8b4bc32664db650c4c96ae8494aa35b3f2b6d962a6a131cc957fc32d749b17d", "repo_url": "https://github.com/cosmoblk/email-marketing-bible", "name": "email-marketing-bible", "description": "Comprehensive, data-backed email marketing knowledge base. 908 sources, 4,798 insights. Use when reviewing email setups, building automation flows, diagnosing deliverability, writing email copy, selec", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cosmoblk/email-marketing-bible/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 227, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T13:22:59Z"}, "embedding_text": "email-marketing-bible. Comprehensive, data-backed email marketing knowledge base. 908 sources, 4,798 insights. Use when reviewing email setups, building automation flows, diagnosing deliverability, writing email copy, selec Platforms: claude_code."} +{"id": "914ec5173bd866e6dc324577838edf9671a65084b9e537ae2e415202fde5634c", "repo_url": "https://github.com/team-attention/hoyeon", "name": "specify", "description": "Full-featured spec generator that outputs unified spec.json v5 via cli.\nInterview-driven planning with mode support (quick/standard \u00d7 interactive/autopilot).\nIncremental spec.json build via cli spec m", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/codex/skills/hoyeon-specify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "specify. Full-featured spec generator that outputs unified spec.json v5 via cli.\nInterview-driven planning with mode support (quick/standard \u00d7 interactive/autopilot).\nIncremental spec.json build via cli spec m Platforms: claude_code."} +{"id": "9a6c15bb106cac71329dec0067651b3d6bd17021dce83abb9c6816cb5ec443f0", "repo_url": "https://github.com/featbit/featbit-skills", "name": "featbit-getting-started", "description": "Step-by-step guide for getting started with FeatBit including creating feature flags, interactive demos, multi-variant flags, and SDK integration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/featbit/featbit-skills/blob/main/skills/featbit-getting-started/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-28T07:03:45Z"}, "embedding_text": "featbit-getting-started. Step-by-step guide for getting started with FeatBit including creating feature flags, interactive demos, multi-variant flags, and SDK integration Platforms: claude_code."} +{"id": "e3a8403d68cb7bb8df85d375361eda473734ff3aed4694bed6c75539e16fca46", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "commit-standards", "description": "Format commit messages following conventional commits standard.\nUse when: writing commit messages, git commit, reviewing commit history.\nKeywords: commit, git, message, conventional, \u63d0\u4ea4, \u8a0a\u606f, feat, fix, refactor.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/commit-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit-standards"}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "commit-standards. Format commit messages following conventional commits standard.\nUse when: writing commit messages, git commit, reviewing commit history.\nKeywords: commit, git, message, conventional, \u63d0\u4ea4, \u8a0a\u606f, feat, fix, refactor. Platforms: claude_code."} +{"id": "13513a787c7b8e5ea0fe9ac1ae6ba4528e83becd46e8817dcbfcf333dbf597c3", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "code-quality-gate", "description": "Enforces automated quality checks before every deploy. Prevents production failures through a 5-stage Quality Gate System (Pre-Commit, PR-Check, Preview, E2E, Production). Activate on code changes, de", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/code-quality-gate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "code-quality-gate. Enforces automated quality checks before every deploy. Prevents production failures through a 5-stage Quality Gate System (Pre-Commit, PR-Check, Preview, E2E, Production). Activate on code changes, de Platforms: claude_code."} +{"id": "83f4210336d4cb7316d3c5088dcfabf02d776c419dbe032ff722c38aa656edd5", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "php-best-practices", "description": "PHP 8.5+ modern patterns, PSR standards, and SOLID principles. Use when reviewing PHP code, checking type safety, auditing code quality, or ensuring PHP best practices. Triggers on \"review PHP\", \"chec", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/php-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "php-best-practices. PHP 8.5+ modern patterns, PSR standards, and SOLID principles. Use when reviewing PHP code, checking type safety, auditing code quality, or ensuring PHP best practices. Triggers on \"review PHP\", \"chec Platforms: claude_code."} +{"id": "668b6dbdc4c9755802a6d203830d547ebce15fc1209de26244f9f9dde75016e8", "repo_url": "https://github.com/nahisaho/musubi", "name": "constitution-enforcer", "description": "Validates compliance with 9 Constitutional Articles and Phase -1 Gates before implementation.\n\nTrigger terms: constitution, governance, compliance, validation, constitutional compliance,\nPhase -1 Gate", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/constitution-enforcer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "constitution-enforcer. Validates compliance with 9 Constitutional Articles and Phase -1 Gates before implementation.\n\nTrigger terms: constitution, governance, compliance, validation, constitutional compliance,\nPhase -1 Gate Platforms: claude_code."} +{"id": "269b001905f6b36678bfca4b0532c989e68bc2918147bf5e1d3f645cc7c1b405", "repo_url": "https://github.com/plurigrid/asi", "name": "brand-guidelines", "description": "Apply brand colors and typography to artifacts. Use when brand colors,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "brand-guidelines. Apply brand colors and typography to artifacts. Use when brand colors, Platforms: claude_code."} +{"id": "c24c9dd74d0da82be5b2a871c6ebd93fcfad3b48930cd5b317e588dd2c26b1b7", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "brand-storytelling", "description": "Create a Brand Storytelling Pack (brand narrative, founder/origin story, five-second moment, channel scripts, building-in-public plan, Q&A bank). Use for brand story, founder story, origin story, narr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/brand-storytelling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "brand-storytelling. Create a Brand Storytelling Pack (brand narrative, founder/origin story, five-second moment, channel scripts, building-in-public plan, Q&A bank). Use for brand story, founder story, origin story, narr Platforms: claude_code."} +{"id": "6cfe0c9836a04022f7c7de6e9377de32a42a9a1694e219fa59fc4c4112951cfe", "repo_url": "https://github.com/jeffh/claude-plugins", "name": "research", "description": "Comprehensive research, analysis, and content extraction system. Multi-source parallel research using available researcher agents. Deep content analysis with extended thinking. Intelligent retrieval f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffh/claude-plugins/blob/main/pai/skills/research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:05:55Z"}, "embedding_text": "research. Comprehensive research, analysis, and content extraction system. Multi-source parallel research using available researcher agents. Deep content analysis with extended thinking. Intelligent retrieval f Platforms: claude_code."} +{"id": "39062c40b576ba266eedad4566ad95d275e4c47f0813b604723f4a46261009e7", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "doc-coauthoring", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/business/marketing/competitive-analysis/do/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "doc-coauthoring. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8df8943bf9519da5705540bc4cdbf06b3cd797a21a546471fb26da5db3934b8f", "repo_url": "https://github.com/hannesill/m4", "name": "m4-research", "description": "Start a structured clinical research session. Triggers on \"/research\", \"start research\", \"new study\", \"analyze cohort\", \"investigate hypothesis\", \"research question\", or when users describe clinical r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/benchmark/tasks/apsiii/mimic-apsiii-24h-raw/skills-decoy/sofa-score/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "m4-research. Start a structured clinical research session. Triggers on \"/research\", \"start research\", \"new study\", \"analyze cohort\", \"investigate hypothesis\", \"research question\", or when users describe clinical r Platforms: claude_code."} +{"id": "1600b550073e182e3156d485a4d81eec1dcc233b6879d3811fb32c9c6fb39d96", "repo_url": "https://github.com/aspiers/ai-config", "name": "code-refactoring-small", "description": "Refactor overly large code units into smaller, more focused components. Use when code has grown too large or complex.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/code-refactoring-small/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "code-refactoring-small. Refactor overly large code units into smaller, more focused components. Use when code has grown too large or complex. Platforms: claude_code."} +{"id": "04322564fe8e5e77450ea09e670bb144eeb3012c88c165d7ddd68453c9962f84", "repo_url": "https://github.com/plurigrid/asi", "name": "mcp-spec-checker", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/mcp-spec-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "mcp-spec-checker. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f1c602d518a8f1e439eee3612a0fd447a88d6ceb9f3719a70ffdf0298a720445", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "specialist-review", "description": "Conducts a focused review from ONE specific specialist's perspective (e.g., Security Specialist, Performance Expert). Use when the user requests \"Ask [specialist role] to review [target]\", \"Get [speci", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/skills/specialist-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T18:12:57Z"}, "embedding_text": "specialist-review. Conducts a focused review from ONE specific specialist's perspective (e.g., Security Specialist, Performance Expert). Use when the user requests \"Ask [specialist role] to review [target]\", \"Get [speci Platforms: claude_code."} +{"id": "a0ce5f2b357e20af266b7c6e4ccebd38891ecc13768fb4984286506a5e07c2ef", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "enterprise-sales", "description": "Create an Enterprise Deal Execution Pack (buying committee map + champion enablement, \u201cno decision\u201d prevention plan + mutual action plan, procurement/security packet, and POC-as-business-case plan + R", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/enterprise-sales/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "enterprise-sales. Create an Enterprise Deal Execution Pack (buying committee map + champion enablement, \u201cno decision\u201d prevention plan + mutual action plan, procurement/security packet, and POC-as-business-case plan + R Platforms: claude_code."} +{"id": "52fe12d6e0da16c5578a83f66db79deda18a5e78b4c1749bbab02b499dc6b3f0", "repo_url": "https://github.com/aspiers/ai-config", "name": "task-implementation", "description": "Implement a single sub-task from a task list. Use when working on feature development with existing task lists.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/task-implementation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "task-implementation. Implement a single sub-task from a task list. Use when working on feature development with existing task lists. Platforms: claude_code."} +{"id": "3f691d7be4e6db2b6d87f32eb317cf5126a0689f12afcb69be8520193ae2db0d", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "wave_accounting-automation", "description": "Wave Accounting toolkit is not currently available as a native integration. No Wave-specific tools were found in the Composio platform. This skill is a placeholder pending future integration.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/wave-accounting-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wave_accounting-automation"}, "quality": {"stars": 65470, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-22T03:17:49Z"}, "embedding_text": "wave_accounting-automation. Wave Accounting toolkit is not currently available as a native integration. No Wave-specific tools were found in the Composio platform. This skill is a placeholder pending future integration. Platforms: claude_code."} +{"id": "7dbc64ea34e8379aec6ad7dd5d26b0db37eaf40e427b4a7c2d6ef7197b07ac9c", "repo_url": "https://github.com/jeffh/claude-plugins", "name": "story-explanation", "description": "Create compelling story-format summaries using UltraThink to find the best narrative framing. Support multiple formats - 3-part narrative, n-length with inline links, abridged 5-line, or comprehensive", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffh/claude-plugins/blob/main/pai/skills/story-explanation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:05:55Z"}, "embedding_text": "story-explanation. Create compelling story-format summaries using UltraThink to find the best narrative framing. Support multiple formats - 3-part narrative, n-length with inline links, abridged 5-line, or comprehensive Platforms: claude_code."} +{"id": "03c08601f67f26a85f79222c1744dd8539a983922cd8ae84bb4614b69235c427", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "sync-readme", "description": "Synchronize English README.md with Chinese README_ZH.md, maintaining content parity.", "source": ["skillhub", "topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/sync-readme/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sync-readme"}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "sync-readme. Synchronize English README.md with Chinese README_ZH.md, maintaining content parity. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} +{"id": "a406738a2c85d4dbcf7a2a6fe89dee07e50aeba9a06293498b55d9dd2ca1c1f7", "repo_url": "https://github.com/dariushoule/x64dbg-skills", "name": "find-oep", "description": "Smart trace-based OEP finder for packed/protected PE executables. Traces through packer stubs using intelligent stepping, anti-debug evasion, and heuristic OEP detection, then captures a state snapsho", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dariushoule/x64dbg-skills/blob/main/skills/find-oep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 186, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T19:32:18Z"}, "embedding_text": "find-oep. Smart trace-based OEP finder for packed/protected PE executables. Traces through packer stubs using intelligent stepping, anti-debug evasion, and heuristic OEP detection, then captures a state snapsho Platforms: claude_code."} +{"id": "8a652ca4955b5c449afa00ab273c3285f9198271f7227f94c443b0d59bef2c87", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "agents-md-generator", "description": "Create or update minimal AGENTS.md files in the repository root and nested module directories using progressive disclosure. Works across heterogeneous projects without assuming any fixed agent folder", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/agents-md-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "agents-md-generator. Create or update minimal AGENTS.md files in the repository root and nested module directories using progressive disclosure. Works across heterogeneous projects without assuming any fixed agent folder Platforms: claude_code."} +{"id": "8e1bc47dd3b1844acc84c24f8dc255df8caf00f1f84b44f6bebfb98431ef4189", "repo_url": "https://github.com/sheng-jie/maf.agentskills", "name": "web-research", "description": "A skill for conducting comprehensive web research on any topic, synthesizing information from multiple sources into well-organized summaries.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sheng-jie/maf.agentskills/blob/main/samples/Maf.AgentSkills.ConsoleDemo/.maf/skills/web-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T03:23:11Z"}, "embedding_text": "web-research. A skill for conducting comprehensive web research on any topic, synthesizing information from multiple sources into well-organized summaries. Platforms: claude_code."} +{"id": "a28842a51df404cf265cbdd33a9667d8d70fcd2dc20da77aaa76e6fea0331242", "repo_url": "https://github.com/secondsky/claude-skills", "name": "bun-test-coverage", "description": "This skill enables built-in test coverage reporting for Bun projects, providing console summaries, lcov reports, and configurable thresholds to ensure code quality and integrate seamlessly with CI/CD", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/bun/skills/bun-test-coverage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bun-test-coverage"}, "quality": {"stars": 178, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:27:15Z"}, "embedding_text": "bun-test-coverage. This skill enables built-in test coverage reporting for Bun projects, providing console summaries, lcov reports, and configurable thresholds to ensure code quality and integrate seamlessly with CI/CD Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} +{"id": "faa5961c8660b4fe60f63a9c256a4a3951d282ddad775cba88ff5712ecce0bd5", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-churn", "description": "When the user wants to understand, reduce, or recover from developer churn. Trigger phrases include \"why developers leave,\" \"churn rate,\" \"win-back campaign,\" \"at-risk users,\" \"developer retention,\" \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-churn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-churn. When the user wants to understand, reduce, or recover from developer churn. Trigger phrases include \"why developers leave,\" \"churn rate,\" \"win-back campaign,\" \"at-risk users,\" \"developer retention,\" \" Platforms: claude_code."} +{"id": "fc461ebfbc134b47210fa78c384db89a545477964e6bde2308e54e644ad48120", "repo_url": "https://github.com/dojoengine/dojo.js", "name": "dojo-integration-test", "description": "Use this skill when the user asks to \"test dojo contracts\", \"run integration tests\", \"start dojo stack\", \"test with torii\", \"verify contract behavior\", mentions integration testing for Dojo/Cairo cont", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dojoengine/dojo.js/blob/main/.claude/skills/dojo-integration-test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T09:36:59Z"}, "embedding_text": "dojo-integration-test. Use this skill when the user asks to \"test dojo contracts\", \"run integration tests\", \"start dojo stack\", \"test with torii\", \"verify contract behavior\", mentions integration testing for Dojo/Cairo cont Platforms: claude_code."} +{"id": "fce28c7a2f15f52fbabd974d385aa767e69cfbccc43ccc75406c8b2360c1982a", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-security", "description": "Comprehensive security engineering skill for application security, penetration testing, security architecture, and compliance auditing. Includes security assessment tools, threat modeling, crypto impl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-security. Comprehensive security engineering skill for application security, penetration testing, security architecture, and compliance auditing. Includes security assessment tools, threat modeling, crypto impl Platforms: claude_code."} +{"id": "fc1dd73a91baa29f2319381345a813b00a52666bafe3700c42455f313b0527df", "repo_url": "https://github.com/jmanhype/claude-code-plugin-marketplace", "name": "curate-delta", "description": "Synthesize Reflector insights into structured delta proposals for playbook updates, following ACE paper's Curator architecture", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jmanhype/claude-code-plugin-marketplace/blob/main/plugins/ace-context-engineering/skills/curate-delta/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:09:29Z"}, "embedding_text": "curate-delta. Synthesize Reflector insights into structured delta proposals for playbook updates, following ACE paper's Curator architecture Platforms: claude_code."} +{"id": "7beabff1afe414d7143343e12683638b8771fb18d496e499468fdcbfb56b90ef", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "linking-notes", "description": "Discover and add wiki-links between notes. Use when asked to \"find connections\", \"link this note\", \"what should I link to\", or \"connect my notes\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/linking-notes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "linking-notes. Discover and add wiki-links between notes. Use when asked to \"find connections\", \"link this note\", \"what should I link to\", or \"connect my notes\". Platforms: claude_code."} +{"id": "e8f2ecf2fc26b3a7c5699c08db065289382ea59e99157be444b5b8ba97034510", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-data-scientist", "description": "World-class data science skill for statistical modeling, experimentation, causal inference, and advanced analytics. Expertise in Python (NumPy, Pandas, Scikit-learn), R, SQL, statistical methods, A/B", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-data-scientist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-data-scientist. World-class data science skill for statistical modeling, experimentation, causal inference, and advanced analytics. Expertise in Python (NumPy, Pandas, Scikit-learn), R, SQL, statistical methods, A/B Platforms: claude_code."} +{"id": "a37c8b13daf9d39efe22baaf963968c05147d7bf68dc5b70accf602cdf228c11", "repo_url": "https://github.com/gokapso/agent-skills", "name": "automate-whatsapp", "description": "Build WhatsApp automations with Kapso workflows: configure WhatsApp triggers, edit workflow graphs, manage executions, deploy functions, and use databases/integrations for state. Use when automating W", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gokapso/agent-skills/blob/master/skills/automate-whatsapp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 129, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:31:48Z"}, "embedding_text": "automate-whatsapp. Build WhatsApp automations with Kapso workflows: configure WhatsApp triggers, edit workflow graphs, manage executions, deploy functions, and use databases/integrations for state. Use when automating W Platforms: claude_code."} +{"id": "a550582a2a106f8a66cac4738f7e028852771a2be86884ac2838dec0ee2831d8", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "postmark-webhooks", "description": "Receive and process Postmark webhooks. Use when setting up Postmark webhook handlers, handling email delivery events, processing bounces, opens, clicks, spam complaints, or subscription changes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/postmark-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "postmark-webhooks. Receive and process Postmark webhooks. Use when setting up Postmark webhook handlers, handling email delivery events, processing bounces, opens, clicks, spam complaints, or subscription changes. Platforms: claude_code."} +{"id": "b6f3eb41761022303f6a8ca451dd534291bdc8bf6e6a6432ed94f14651594f01", "repo_url": "https://github.com/nozomio-labs/nia-rules-for-agents", "name": "nia", "description": "Use Nia MCP server for external documentation, GitHub repos, package source code, and research. Invoke when needing to index/search remote codebases, fetch library docs, explore packages, or do web re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nozomio-labs/nia-rules-for-agents/blob/main/.claude/skills/nia/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-03T19:12:24Z"}, "embedding_text": "nia. Use Nia MCP server for external documentation, GitHub repos, package source code, and research. Invoke when needing to index/search remote codebases, fetch library docs, explore packages, or do web re Platforms: claude_code."} +{"id": "8c303e978efcae27ad6bc0dfe2d89c6ce6ff563eaede586a78f819a1ef98e9dc", "repo_url": "https://github.com/sundial-org/skills", "name": "skill-one", "description": "Find, install, create, improve, and publish AI agent skills through the Sundial ecosystem. Use when the user wants to find or search for skills, install a skill, create a new skill, improve or evaluate an existing skill, or publish a skill to Sundial Hub. Trigger phrases include \"find a skill\", \"install skill\", \"create a skill\", \"make a skill\", \"improve this skill\", \"evaluate skill\", \"publish skill\", \"push skill\", \"search for skills\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-one"}, "quality": {"stars": 149, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "skill-one. Find, install, create, improve, and publish AI agent skills through the Sundial ecosystem. Use when the user wants to find or search for skills, install a skill, create a new skill, improve or evaluate an existing skill, or publish a skill to Sundial Hub. Trigger phrases include \"find a skill\", \"install skill\", \"create a skill\", \"make a skill\", \"improve this skill\", \"evaluate skill\", \"publish skill\", \"push skill\", \"search for skills\". Platforms: claude_code."} +{"id": "b1505630648c54aee8187cb3b5a0e4ba3b6079189e39277d4379718b6947109f", "repo_url": "https://github.com/enbyaugust/zacs-claude-skills", "name": "check-your-work", "description": "Orchestrates 6 quality agents in parallel (duplicate-detector, jenny, deep-bug-hunter, security, performance, correctness) with severity validation. Use when user says \"check your work\", \"review what", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enbyaugust/zacs-claude-skills/blob/master/skills/check-your-work/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T06:54:23Z"}, "embedding_text": "check-your-work. Orchestrates 6 quality agents in parallel (duplicate-detector, jenny, deep-bug-hunter, security, performance, correctness) with severity validation. Use when user says \"check your work\", \"review what Platforms: claude_code."} +{"id": "a5fa5728cbbeb14babe47a137efc431f0f2c5471f03c462bed762ee9a5a7e160", "repo_url": "https://github.com/scientiacapital/skills", "name": "meddic-call-prep-auto", "description": "Auto-generate MEDDIC-structured call prep scripts from prospect context. Pulls HubSpot deal + contact data, Apollo enrichment, CRM activity history, and calendar context to build a complete demo/disco", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/meddic-call-prep-auto-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "meddic-call-prep-auto. Auto-generate MEDDIC-structured call prep scripts from prospect context. Pulls HubSpot deal + contact data, Apollo enrichment, CRM activity history, and calendar context to build a complete demo/disco Platforms: claude_code."} +{"id": "5106b8c2d87a6797d3afc3a0efa6562c1b0f85aaac2e2fb440eaabd31d002d68", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "optimization-resources", "description": "Adaptive resource allocation, predictive scaling with ML, capacity planning, circuit breakers, and performance profiling. Use for intelligent resource management, auto-scaling, and fault tolerance.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/business/marketing/competitive-analysis/sources/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "optimization-resources. Adaptive resource allocation, predictive scaling with ML, capacity planning, circuit breakers, and performance profiling. Use for intelligent resource management, auto-scaling, and fault tolerance. Platforms: claude_code."} +{"id": "2283c4c1990fad044727ba51343c3149ff576ccac9464d3152f82e81cf12e7df", "repo_url": "https://github.com/specstoryai/agent-skills", "name": "specstory-project-stats", "description": "Fetch project statistics from SpecStory Cloud. Run when user says \"get project stats\", \"show SpecStory stats\", \"project statistics\", \"how many sessions\", or \"SpecStory metrics\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/specstoryai/agent-skills/blob/main/skills/specstory-project-stats/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T01:24:32Z"}, "embedding_text": "specstory-project-stats. Fetch project statistics from SpecStory Cloud. Run when user says \"get project stats\", \"show SpecStory stats\", \"project statistics\", \"how many sessions\", or \"SpecStory metrics\". Platforms: claude_code."} +{"id": "4bfc23ce10a809e0e4df0c36af8f25f1ab0529bd6e100eb05cbb123fa7f4460f", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "research-grants", "description": "Write competitive research proposals for NSF, NIH, DOE, and DARPA. Agency-specific formatting, review criteria, budget preparation, broader impacts, significance statements, innovation narratives, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/research-grants/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "research-grants. Write competitive research proposals for NSF, NIH, DOE, and DARPA. Agency-specific formatting, review criteria, budget preparation, broader impacts, significance statements, innovation narratives, and Platforms: claude_code."} +{"id": "f67511c8a1100384b3b3f25641fbfad5c8c83732aa2fd6704b3fe84ef0922d99", "repo_url": "https://github.com/team-attention/hoyeon", "name": "ultrawork", "description": "This skill should be used when the user says \"/ultrawork\", \"ultrawork\", or wants to run the full\nspecify \u2192 execute pipeline automatically with a single command.\nAutomated end-to-end workflow that chai", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/ultrawork/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "ultrawork. This skill should be used when the user says \"/ultrawork\", \"ultrawork\", or wants to run the full\nspecify \u2192 execute pipeline automatically with a single command.\nAutomated end-to-end workflow that chai Platforms: claude_code."} +{"id": "b9e2e92dbea24dd934f9ffd2154af092a1fa1096a6e476fec2620413551c109e", "repo_url": "https://github.com/mazrean/kessoku", "name": "kessoku-di", "description": "Kessoku compile-time DI with parallel initialization for Go. Use when writing or debugging kessoku providers/injectors, enabling async dependencies, migrating from google/wire, or fixing go:generate/c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mazrean/kessoku/blob/main/internal/llmsetup/skills/kessoku-di/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 134, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T21:13:14Z"}, "embedding_text": "kessoku-di. Kessoku compile-time DI with parallel initialization for Go. Use when writing or debugging kessoku providers/injectors, enabling async dependencies, migrating from google/wire, or fixing go:generate/c Platforms: claude_code."} +{"id": "82f6f75857321284d3713fc5cfffffe81ae205a41ae398ffd1a5d76e9fdc8281", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-evidence", "description": "Initialize and manage the evidence collection directory for professional security audits with documented proof of findings.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/evidence/supabase-evidence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-evidence. Initialize and manage the evidence collection directory for professional security audits with documented proof of findings. Platforms: claude_code."} +{"id": "2d2bee43a0a6dd092b05425e1100b90c38c0839ef8c10ad0bef24470e3de4bb5", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "condition-based-waiting_obra", "description": "Use when tests have race conditions, timing dependencies, or inconsistent pass/fail behavior - replaces arbitrary timeouts with condition polling to wait for actual state changes, eliminating flaky tests from timing guesses", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/condition-based-waiting_obra/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install condition-based-waiting_obra"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "condition-based-waiting_obra. Use when tests have race conditions, timing dependencies, or inconsistent pass/fail behavior - replaces arbitrary timeouts with condition polling to wait for actual state changes, eliminating flaky tests from timing guesses Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "146fb878d93fb2e8ddfa3673305050a5da3327ba85efa560886c0e2899bc4cf0", "repo_url": "https://github.com/nb/dotfiles", "name": "ebag", "description": "Interact with the eBag (ebag.bg) online grocery store via the local `ebag` CLI. Use for grocery shopping tasks (search products, manage cart, checkout, orders, delivery slots) or when the user mention", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nb/dotfiles/blob/master/skills/ebag/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-15T14:28:51Z"}, "embedding_text": "ebag. Interact with the eBag (ebag.bg) online grocery store via the local `ebag` CLI. Use for grocery shopping tasks (search products, manage cart, checkout, orders, delivery slots) or when the user mention Platforms: claude_code."} +{"id": "df3b6f59072f8670e672658bbbabf43c17ee4066646b2e48a9db3b852f568c57", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "fastapi-expert", "description": "Expert FastAPI developer specializing in production-ready async REST APIs with Pydantic v2, SQLAlchemy 2.0, OAuth2/JWT authentication, and comprehensive security. Deep expertise in dependency injectio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/api-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "fastapi-expert. Expert FastAPI developer specializing in production-ready async REST APIs with Pydantic v2, SQLAlchemy 2.0, OAuth2/JWT authentication, and comprehensive security. Deep expertise in dependency injectio Platforms: claude_code."} +{"id": "5eddb8456fa11f6862804710654fdb2e503513ec4a951b44d225d00e6554ecb0", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "sharing-skills", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/.claude/skills/sharing-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "sharing-skills. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f2163e85fe27b98e5d141729b21658036d343bdbd6487e27cb60b872e921c2c5", "repo_url": "https://github.com/2001haru/closeclaw", "name": "songsee", "description": "Generate spectrograms and feature-panel visualizations from audio with the songsee CLI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/2001haru/closeclaw/blob/main/closeclaw/skills/songsee/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-31T11:27:42Z"}, "embedding_text": "songsee. Generate spectrograms and feature-panel visualizations from audio with the songsee CLI. Platforms: claude_code."} +{"id": "4b62c41463e265decbffe9b41654e7f86964a5f5e6deef88f97b3d8c98f419f7", "repo_url": "https://github.com/formulahendry/agent-skill-code-runner", "name": "code-runner", "description": "Run code snippets in 30+ programming languages including JavaScript, Python, TypeScript, Java, C, C++, Go, Rust, Ruby, PHP, and more. Use when the user wants to execute code, test algorithms, verify o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/formulahendry/agent-skill-code-runner/blob/main/.github/skills/code-runner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T10:50:21Z"}, "embedding_text": "code-runner. Run code snippets in 30+ programming languages including JavaScript, Python, TypeScript, Java, C, C++, Go, Rust, Ruby, PHP, and more. Use when the user wants to execute code, test algorithms, verify o Platforms: claude_code."} +{"id": "95c276d33e6587cf5055ed7bbe0007fe3c2b68c362c9d0652f8b5106e90f4f39", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "iot-developer", "description": "Expert in IoT development, microcontrollers, sensors, and MQTT protocols", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/iot-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "iot-developer. Expert in IoT development, microcontrollers, sensors, and MQTT protocols Platforms: claude_code."} +{"id": "2d0e0a49b2c151cf4c66c6bd303160d8d5676a76ae5c44a1b04939494269deaf", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-extract-url", "description": "Extract the Supabase project URL from client-side JavaScript code, environment variables, and configuration files.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/extraction/supabase-extract-url/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-extract-url. Extract the Supabase project URL from client-side JavaScript code, environment variables, and configuration files. Platforms: claude_code."} +{"id": "67f51b9e81226ca629dd33b69507818c8b934fdf7c254f7b771ed3107306463e", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-auth-config", "description": "Analyze Supabase authentication configuration for security weaknesses and misconfigurations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-auth/supabase-audit-auth-config/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-auth-config. Analyze Supabase authentication configuration for security weaknesses and misconfigurations. Platforms: claude_code."} +{"id": "8837a41856f97bf5ad3c96c9b13194ea4ae41c90ee645f2173a2966fe1cf9d08", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-rpc", "description": "List and test exposed PostgreSQL RPC functions for security issues and potential RLS bypass.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-api/supabase-audit-rpc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-rpc. List and test exposed PostgreSQL RPC functions for security issues and potential RLS bypass. Platforms: claude_code."} +{"id": "e067fa8fe823a906205f24ce55b798495f7115aa718fec899997a38438d45688", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-extract-jwt", "description": "Extract and decode Supabase-related JWTs from client-side code, cookies, and local storage patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/extraction/supabase-extract-jwt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-extract-jwt. Extract and decode Supabase-related JWTs from client-side code, cookies, and local storage patterns. Platforms: claude_code."} +{"id": "816a2c2125e4f54c345bf6f0953f2b641b3dbd4a13989c1b9f3db7f2e4701020", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "writing-north-star-metrics", "description": "Help users define their North Star metric. Use when someone is choosing their primary success metric, trying to align the team around a key measure, struggling with metric proliferation, or setting up", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/writing-north-star-metrics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "writing-north-star-metrics. Help users define their North Star metric. Use when someone is choosing their primary success metric, trying to align the team around a key measure, struggling with metric proliferation, or setting up Platforms: claude_code."} +{"id": "24a1a9eeef9c315cc5cfb02ac1a49641fa52fdbf1212df50fb654603c4df1c81", "repo_url": "https://github.com/refoundai/lenny-skills", "name": "setting-okrs-goals", "description": "Help users set effective OKRs and goals. Use when someone is creating quarterly objectives, defining key results, setting team goals, planning annual targets, or struggling with goal alignment across", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/refoundai/lenny-skills/blob/main/skills/setting-okrs-goals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1075, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T02:13:03Z"}, "embedding_text": "setting-okrs-goals. Help users set effective OKRs and goals. Use when someone is creating quarterly objectives, defining key results, setting team goals, planning annual targets, or struggling with goal alignment across Platforms: claude_code."} +{"id": "b7e11b44b5062f2afd048352506c1ee54faa91c40aa7f53e3dfc51c41c250c56", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "API Integration Specialist", "description": "Expert in integrating third-party APIs with proper authentication, error handling, rate limiting, and retry logic. Use when integrating REST APIs, GraphQL endpoints, webhooks, or external services. Sp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/api-integration-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "API Integration Specialist. Expert in integrating third-party APIs with proper authentication, error handling, rate limiting, and retry logic. Use when integrating REST APIs, GraphQL endpoints, webhooks, or external services. Sp Platforms: claude_code."} +{"id": "7bf125b8dab4d00a82cf090e5c7db2a61c546fb016e46a741a95b024a67c3376", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "gsap", "description": "GSAP animations for JARVIS HUD transitions and effects", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/gsap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "gsap. GSAP animations for JARVIS HUD transitions and effects Platforms: claude_code."} +{"id": "07b48f176f24d276f955cb2c824500a8c6ccb8574ceda66cca6635de3f0cb5df", "repo_url": "https://github.com/skobak/pix", "name": "pix", "description": "Launches an autonomous, pixel-perfect UI implementation loop using Figma MCP and Chrome.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skobak/pix/blob/main/skills/pix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 94, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-04T09:11:57Z"}, "embedding_text": "pix. Launches an autonomous, pixel-perfect UI implementation loop using Figma MCP and Chrome. Platforms: claude_code."} +{"id": "7b734d853a6b85c6a0d0705b6e149f29cdd781079f4cb567c7aba9aa5b4450c5", "repo_url": "https://github.com/tddworks/claude-skills", "name": "ios-ux-prototype", "description": "Create interactive iOS/mobile app UX flow prototypes as HTML documents with realistic phone mockups.\nUse when: (1) Visualizing user journeys and navigation flows, (2) Creating mobile app wireframes,\n(", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tddworks/claude-skills/blob/main/skills/ios-ux-prototype/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 35, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T08:00:41Z"}, "embedding_text": "ios-ux-prototype. Create interactive iOS/mobile app UX flow prototypes as HTML documents with realistic phone mockups.\nUse when: (1) Visualizing user journeys and navigation flows, (2) Creating mobile app wireframes,\n( Platforms: claude_code."} +{"id": "20d6e81bce0e7d6303c55c3ad8c41d599c05754ec95a6e5e4832e4122b44039c", "repo_url": "https://github.com/encoredev/skills", "name": "encore-getting-started", "description": "Get started with Encore.ts - create and run your first app.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/encoredev/skills/blob/main/encore/getting-started/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T21:00:31Z"}, "embedding_text": "encore-getting-started. Get started with Encore.ts - create and run your first app. Platforms: claude_code."} +{"id": "bc7b3089201ff61b77e097b72667e19d63a50fca014412d0689d0f6016521bc7", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "alarmkit", "description": "AlarmKit integration for scheduling alarms and timers with custom UI, Live Activities, and snooze support. Use when implementing alarm or timer features in iOS 18+ apps.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/swiftui/alarmkit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "alarmkit. AlarmKit integration for scheduling alarms and timers with custom UI, Live Activities, and snooze support. Use when implementing alarm or timer features in iOS 18+ apps. Platforms: claude_code."} +{"id": "a5b205b4939599db37705ef228ce6d1a0edd19a8855709e2f8214ee4d663f1c4", "repo_url": "https://github.com/nikiforovall/claude-code-rules", "name": "elasticsearch", "description": "Interact with Elasticsearch and Kibana via REST API using curl. Use when querying, indexing, managing indices, checking cluster health, writing aggregations, deploying dashboards, or troubleshooting E", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nikiforovall/claude-code-rules/blob/main/plugins/handbook-elasticsearch/skills/elasticsearch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 132, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T09:48:34Z"}, "embedding_text": "elasticsearch. Interact with Elasticsearch and Kibana via REST API using curl. Use when querying, indexing, managing indices, checking cluster health, writing aggregations, deploying dashboards, or troubleshooting E Platforms: claude_code."} +{"id": "ad2759aef9a64966b6acc2fa2725074469781dbfa85f970def83d8466f83d405", "repo_url": "https://github.com/till-crazy-tears-us-apart/claude-code-engineering-suite", "name": "git-workflow", "description": "Use this skill for all version control tasks, including committing, branching, pushing, and reviewing history.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/till-crazy-tears-us-apart/claude-code-engineering-suite/blob/main/skills/remy-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T19:38:21Z"}, "embedding_text": "git-workflow. Use this skill for all version control tasks, including committing, branching, pushing, and reviewing history. Platforms: claude_code."} +{"id": "ff407dee0e7494d94252277ec70fbaa72face6db87c4c36c400986773215ab5e", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "retention-engagement", "description": "Improve retention, churn, engagement, and activation by producing a Retention & Engagement Improvement Pack (diagnosis, aha moment definition, lever hypotheses, experiment backlog, measurement plan, 3", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/retention-engagement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "retention-engagement. Improve retention, churn, engagement, and activation by producing a Retention & Engagement Improvement Pack (diagnosis, aha moment definition, lever hypotheses, experiment backlog, measurement plan, 3 Platforms: claude_code."} +{"id": "2f21ca4310b0f76299439c2082c180b3365bc2aed09d3ad0f3910cab6a5b4071", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-presenter-mode", "description": "Use Slidev presenter mode effectively. Use this skill for speaker notes, timer, remote control, and dual-screen presentations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/presentation/slidev-presenter-mode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-presenter-mode. Use Slidev presenter mode effectively. Use this skill for speaker notes, timer, remote control, and dual-screen presentations. Platforms: claude_code."} +{"id": "f56fed77363add8a1a290606ea000d9992422eb6cde84b26b2c1e0ed1643568d", "repo_url": "https://github.com/encoredev/skills", "name": "encore-code-review", "description": "Review Encore.ts code for best practices and anti-patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/encoredev/skills/blob/main/encore/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T21:00:31Z"}, "embedding_text": "encore-code-review. Review Encore.ts code for best practices and anti-patterns. Platforms: claude_code."} +{"id": "8bbe6a01f0e38d52e3082d59fd10997ca82a460f9b1330982fe71224636ace75", "repo_url": "https://github.com/2001haru/closeclaw", "name": "clawhub", "description": "Search and install agent skills from ClawHub, the public skill registry.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/2001haru/closeclaw/blob/main/closeclaw/skills/clawhub/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-31T11:27:42Z"}, "embedding_text": "clawhub. Search and install agent skills from ClawHub, the public skill registry. Platforms: claude_code."} +{"id": "e04e2c2f7b7a7dd2144c89cb95a3b31b935d4a8301326db37c4c9a97f2ca7b14", "repo_url": "https://github.com/congdon1207/agents.md", "name": "pdf", "description": "Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Codex needs to fill in a PDF form or programmatically pr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/document-skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "pdf. Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Codex needs to fill in a PDF form or programmatically pr Platforms: claude_code."} +{"id": "5c03df90a19113749938b9b9b60ca155d679478099f629b6af9ad2da59c7d44b", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-diagnostics", "description": "Debug and troubleshoot Azure Container Apps and Function Apps production issues using log analysis, health checks, and KQL. WHEN: debug production issues, troubleshoot containerized apps, troubleshoot Azure Functions, analyze logs with KQL, fix image pull failures, investigate health probe failures, troubleshoot cold starts, check resource health, find root cause of errors, function not working.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-diagnostics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-diagnostics"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-diagnostics. Debug and troubleshoot Azure Container Apps and Function Apps production issues using log analysis, health checks, and KQL. WHEN: debug production issues, troubleshoot containerized apps, troubleshoot Azure Functions, analyze logs with KQL, fix image pull failures, investigate health probe failures, troubleshoot cold starts, check resource health, find root cause of errors, function not working. Platforms: claude_code."} +{"id": "14cde1a5734fde28e492e8671bdd6cb641cb73d046876b2eaeeb5c7581554b85", "repo_url": "https://github.com/samuraigpt/generative-media-skills", "name": "muapi-seedance-2", "description": "Expert Cinema Director skill for Seedance 2.0 (ByteDance) \u2014 high-fidelity video generation using technical camera grammar and multimodal references. Supports text-to-video, image-to-video, video exten", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samuraigpt/generative-media-skills/blob/main/.opencode/skills/muapi-seedance-2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3601, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:38:26Z"}, "embedding_text": "muapi-seedance-2. Expert Cinema Director skill for Seedance 2.0 (ByteDance) \u2014 high-fidelity video generation using technical camera grammar and multimodal references. Supports text-to-video, image-to-video, video exten Platforms: claude_code."} +{"id": "09600b8806a2fe285e3cb711bc5aef21dd191df5eea92a7af9b710c7d6a35617", "repo_url": "https://github.com/exboys/skilllite", "name": "text-processor", "description": "\u6587\u672c\u5904\u7406\u5de5\u5177\u3002\u652f\u6301\u7684\u64cd\u4f5c(operation)\uff1auppercase(\u5927\u5199)\u3001lowercase(\u5c0f\u5199)\u3001reverse(\u53cd\u8f6c)\u3001trim(\u53bb\u7a7a\u767d)\u3001count(\u7edf\u8ba1)\u3002\u53c2\u6570\uff1atext(\u6587\u672c)\u3001operation(\u64cd\u4f5c\u7c7b\u578b)\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/exboys/skilllite/blob/main/.skills/text-processor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 157, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:36:11Z"}, "embedding_text": "text-processor. \u6587\u672c\u5904\u7406\u5de5\u5177\u3002\u652f\u6301\u7684\u64cd\u4f5c(operation)\uff1auppercase(\u5927\u5199)\u3001lowercase(\u5c0f\u5199)\u3001reverse(\u53cd\u8f6c)\u3001trim(\u53bb\u7a7a\u767d)\u3001count(\u7edf\u8ba1)\u3002\u53c2\u6570\uff1atext(\u6587\u672c)\u3001operation(\u64cd\u4f5c\u7c7b\u578b)\u3002 Platforms: claude_code."} +{"id": "a436ebbaada9fe8ff35356471eb0bbbe2ef66d0dfa03a35d103dc26192de741c", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-best-practices", "description": "Best practices for Capacitor app development including project structure, plugin usage, performance optimization, security, and deployment. Use this skill when reviewing Capacitor code, setting up new", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-core/skills/capacitor-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-best-practices. Best practices for Capacitor app development including project structure, plugin usage, performance optimization, security, and deployment. Use this skill when reviewing Capacitor code, setting up new Platforms: claude_code."} +{"id": "0c201c6e9d4da2cab494e2906f9082f3c98d215cd59b607324058616886aaef7", "repo_url": "https://github.com/jihe520/social-push", "name": "social-push", "description": "\u4f7f\u7528 agent-browser \u5e2e\u7528\u6237\u5c06\u5185\u5bb9\u53d1\u5230\u793e\u4ea4\u5a92\u4f53\u4e0a\u3002\u5f53\u7528\u6237\u9700\u8981\u53d1\u5e03\u5185\u5bb9\u3001\u63a8\u9001\u6587\u7ae0\u3001\u4e0a\u4f20\u6587\u7ae0\u3001\u53d1\u5e16\u5230\u793e\u4ea4\u5e73\u53f0\u65f6\u4f7f\u7528\u6b64 skill\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jihe520/social-push/blob/main/skills/social-push/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 475, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T06:53:49Z"}, "embedding_text": "social-push. \u4f7f\u7528 agent-browser \u5e2e\u7528\u6237\u5c06\u5185\u5bb9\u53d1\u5230\u793e\u4ea4\u5a92\u4f53\u4e0a\u3002\u5f53\u7528\u6237\u9700\u8981\u53d1\u5e03\u5185\u5bb9\u3001\u63a8\u9001\u6587\u7ae0\u3001\u4e0a\u4f20\u6587\u7ae0\u3001\u53d1\u5e16\u5230\u793e\u4ea4\u5e73\u53f0\u65f6\u4f7f\u7528\u6b64 skill\u3002 Platforms: claude_code."} +{"id": "dd41bf8752d0c9b1985a4b0175663c6b494095bfa1952359568b9c96e0582bca", "repo_url": "https://github.com/hannesill/m4", "name": "m4-api", "description": "Use the M4 Python API to query clinical datasets (MIMIC-IV, eICU) programmatically. Triggers on \"M4 API\", \"query MIMIC with Python\", \"clinical data analysis\", \"EHR data\", \"execute SQL on MIMIC\", or wh", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hannesill/m4/blob/main/src/m4/skills/system/m4-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T20:25:37Z"}, "embedding_text": "m4-api. Use the M4 Python API to query clinical datasets (MIMIC-IV, eICU) programmatically. Triggers on \"M4 API\", \"query MIMIC with Python\", \"clinical data analysis\", \"EHR data\", \"execute SQL on MIMIC\", or wh Platforms: claude_code."} +{"id": "12486fcdc26e8d8944e599177854c362d4f79b89e7ded4acf716ea1e5cac2483", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-pkg-scikit-survival", "description": "Comprehensive toolkit for survival analysis and time-to-event modeling in Python using scikit-survival. Use this skill when working with censored survival data, performing time-to-event analysis, fitting Cox models, Random Survival Forests, Gradient Boosting models, or Survival SVMs, evaluating survival predictions with concordance index or Brier score, handling competing risks, or implementing any survival analysis workflow with the scikit-survival library.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-pkg-scikit-survival/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-pkg-scikit-survival"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-pkg-scikit-survival. Comprehensive toolkit for survival analysis and time-to-event modeling in Python using scikit-survival. Use this skill when working with censored survival data, performing time-to-event analysis, fitting Cox models, Random Survival Forests, Gradient Boosting models, or Survival SVMs, evaluating survival predictions with concordance index or Brier score, handling competing risks, or implementing any survival analysis workflow with the scikit-survival library. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "0609b9fd014172b79815e3b449daa2c277f845d5b2fbf44337a359e1ff4b9515", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "url-summarization", "description": "Summarize web content by fetching URLs, extracting key passages with quote-grounding, and producing structured output. Activates on summarize this URL, what does this page say, summarize this article,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/summarizer/skills/url-summarization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "url-summarization. Summarize web content by fetching URLs, extracting key passages with quote-grounding, and producing structured output. Activates on summarize this URL, what does this page say, summarize this article, Platforms: claude_code."} +{"id": "fb55b9927b5dfbab4404fe44d346a213ef0713a2c21ff6fb27b42d24f886ff10", "repo_url": "https://github.com/alekseiul/openclaw-superagent", "name": "meeting-prep", "description": "\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u043c \u0438 \u0437\u0432\u043e\u043d\u043a\u0430\u043c: agenda, \u0432\u043e\u043f\u0440\u043e\u0441\u044b, \u0437\u0430\u043c\u0435\u0442\u043a\u0438, follow-up. Triggers: '\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0432\u0441\u0442\u0440\u0435\u0447\u0435', 'meeting prep', 'agenda', '\u0433\u043e\u0442\u043e\u0432\u043b\u044e\u0441\u044c \u043a \u0437\u0432\u043e\u043d\u043a\u0443', '\u043f\u043b\u0430\u043d \u0432\u0441\u0442\u0440\u0435\u0447\u0438'.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alekseiul/openclaw-superagent/blob/main/skills/agent-forge/examples/meeting-prep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T17:44:54Z"}, "embedding_text": "meeting-prep. \u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0432\u0441\u0442\u0440\u0435\u0447\u0430\u043c \u0438 \u0437\u0432\u043e\u043d\u043a\u0430\u043c: agenda, \u0432\u043e\u043f\u0440\u043e\u0441\u044b, \u0437\u0430\u043c\u0435\u0442\u043a\u0438, follow-up. Triggers: '\u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043a \u0432\u0441\u0442\u0440\u0435\u0447\u0435', 'meeting prep', 'agenda', '\u0433\u043e\u0442\u043e\u0432\u043b\u044e\u0441\u044c \u043a \u0437\u0432\u043e\u043d\u043a\u0443', '\u043f\u043b\u0430\u043d \u0432\u0441\u0442\u0440\u0435\u0447\u0438'. Platforms: claude_code."} +{"id": "a1eb6a46ddd9cf0ee85a3a1d27a637e68eb629c8a22ba145b5e9dfe5effca37e", "repo_url": "https://github.com/sunflowermm/xrk-agt", "name": "xrk-bot", "description": "\u5f53\u4f60\u9700\u8981\u7406\u89e3 XRK-AGT \u7684\u8fd0\u884c\u65f6\u6838\u5fc3\uff08Bot \u4e3b\u7c7b\uff09\u3001\u4e8b\u4ef6\u603b\u7ebf\u3001HTTP/WS \u542f\u52a8\u6d41\u7a0b\u4e0e\u5168\u5c40\u5bf9\u8c61\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunflowermm/xrk-agt/blob/main/.claude/skills/xrk-bot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 144, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:47:25Z"}, "embedding_text": "xrk-bot. \u5f53\u4f60\u9700\u8981\u7406\u89e3 XRK-AGT \u7684\u8fd0\u884c\u65f6\u6838\u5fc3\uff08Bot \u4e3b\u7c7b\uff09\u3001\u4e8b\u4ef6\u603b\u7ebf\u3001HTTP/WS \u542f\u52a8\u6d41\u7a0b\u4e0e\u5168\u5c40\u5bf9\u8c61\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "84cafefd35eedb71d047e8884fb47beef91bbb99abbc69d0c08cba59e0bf7ed4", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Test Coverage Guardian", "description": "Analyze test coverage, identify gaps, detect dead code, and improve test quality. Use when user asks to check coverage, review tests, find untested code, or improve test robustness.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/test-coverage-guardian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Test Coverage Guardian. Analyze test coverage, identify gaps, detect dead code, and improve test quality. Use when user asks to check coverage, review tests, find untested code, or improve test robustness. Platforms: claude_code."} +{"id": "0675942c7252d037369a55db85db4565255f814ffcbd4ae6965afc8f0e5611ab", "repo_url": "https://github.com/sunflowermm/xrk-agt", "name": "xrk-app-dev", "description": "\u5f53\u4f60\u9700\u8981\u4ece\u201c\u5e94\u7528\u89c6\u89d2\u201d\u770b XRK-AGT\uff08\u542f\u52a8\u6d41\u7a0b\u3001Web \u63a7\u5236\u53f0\u3001\u524d\u540e\u7aef\u534f\u4f5c\u3001\u5178\u578b\u6280\u672f\u6808\u7ec4\u5408\uff09\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunflowermm/xrk-agt/blob/main/.claude/skills/xrk-app-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 144, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:47:25Z"}, "embedding_text": "xrk-app-dev. \u5f53\u4f60\u9700\u8981\u4ece\u201c\u5e94\u7528\u89c6\u89d2\u201d\u770b XRK-AGT\uff08\u542f\u52a8\u6d41\u7a0b\u3001Web \u63a7\u5236\u53f0\u3001\u524d\u540e\u7aef\u534f\u4f5c\u3001\u5178\u578b\u6280\u672f\u6808\u7ec4\u5408\uff09\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "0435ff84e49deec0072d9b0b0eec20a79578b88bbe4f9d85cda850317da9231c", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "flutter-drift", "description": "Complete guide for using drift database library in Flutter applications. Use when building Flutter apps that need local SQLite database storage with type-safe queries, reactive streams, migrations, an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/flutter-drift/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "flutter-drift. Complete guide for using drift database library in Flutter applications. Use when building Flutter apps that need local SQLite database storage with type-safe queries, reactive streams, migrations, an Platforms: claude_code."} +{"id": "8a5e158adde5d4142f5b71d319a0b35f98d3a2da52fdeea675545e574efb22b6", "repo_url": "https://github.com/aklofas/kicad-happy", "name": "pcbway", "description": "PCBWay PCB fabrication and assembly \u2014 turnkey/consigned assembly, design rules, ordering workflow. Alternative to JLCPCB for manufacturing. Use with KiCad. Use this skill when the user mentions PCBWay", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aklofas/kicad-happy/blob/main/skills/pcbway/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 594, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:04:59Z"}, "embedding_text": "pcbway. PCBWay PCB fabrication and assembly \u2014 turnkey/consigned assembly, design rules, ordering workflow. Alternative to JLCPCB for manufacturing. Use with KiCad. Use this skill when the user mentions PCBWay Platforms: claude_code."} +{"id": "2e3eb2c5111d53ebd85e0f3ccf9baa6d01081a8627b9f79b52604ca20e886b42", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "user-research-planning", "description": "Plan user research studies - method selection, participant recruitment, study design, and research questions for generative and evaluative research.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/ux-research/user-research-planning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "user-research-planning. Plan user research studies - method selection, participant recruitment, study design, and research questions for generative and evaluative research. Platforms: claude_code."} +{"id": "1a773b875ef38a4bfbc442759e484cad784d178139c7b4c75117b7a4d860de86", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "braiins-toolbox", "description": "Comprehensive Braiins Toolbox skill - batch management tool for Bitcoin mining operations with GUI and CLI for firmware, system, miner, tuner, and cooling management", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills/braiins-toolbox/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "braiins-toolbox. Comprehensive Braiins Toolbox skill - batch management tool for Bitcoin mining operations with GUI and CLI for firmware, system, miner, tuner, and cooling management Platforms: claude_code."} +{"id": "673b8987b9c20737ca72674528ee61c3133b9546454e869c24025cfa42865261", "repo_url": "https://github.com/synthesys-lab/assassyn", "name": "open-pr", "description": "Create GitHub pull requests from conversation context with proper formatting and tag selection", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/synthesys-lab/assassyn/blob/master/.claude/skills/open-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 68, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T09:40:39Z"}, "embedding_text": "open-pr. Create GitHub pull requests from conversation context with proper formatting and tag selection Platforms: claude_code."} +{"id": "5e1401c512b2a20681da039e02f0dd789edfdca7b110d362e6b435fabcaa1cf4", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-backend", "description": "Comprehensive backend development skill for building scalable backend systems using NodeJS, Express, Go, Python, Postgres, GraphQL, REST APIs. Includes API scaffolding, database optimization, security", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-backend/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-backend. Comprehensive backend development skill for building scalable backend systems using NodeJS, Express, Go, Python, Postgres, GraphQL, REST APIs. Includes API scaffolding, database optimization, security Platforms: claude_code."} +{"id": "12727008cd78d648b301880ee342d1d79d388aaf6a6365d02f266d8c46661975", "repo_url": "https://github.com/remorses/kimaki", "name": "termcast", "description": "Build TUIs with a Raycast-like React API using termcast. Implements @raycast/api components (List, Detail, Form, Action) rendered to the terminal via opentui.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/remorses/kimaki/blob/main/skills/batch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1213, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:52:19Z"}, "embedding_text": "termcast. Build TUIs with a Raycast-like React API using termcast. Implements @raycast/api components (List, Detail, Form, Action) rendered to the terminal via opentui. Platforms: claude_code."} +{"id": "e351976f448eda5c3ede896ee84164feeef4cdf9d723dffa00af83c5cea16721", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "hono", "description": "Hono web framework patterns: Context-based API (not Express req/res), async middleware, Cloudflare/Bun/Node adapters, typed routes. Use when working with Hono projects.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/development/hono/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "hono. Hono web framework patterns: Context-based API (not Express req/res), async middleware, Cloudflare/Bun/Node adapters, typed routes. Use when working with Hono projects. Platforms: claude_code."} +{"id": "06156ca6fac49c92d2b28e17ff87eb4561f8dbd2033d01251cefb7f8eef669b8", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "dart-drift", "description": "Complete guide for using drift database library in Dart applications (CLI, server-side, non-Flutter). Use when building Dart apps that need local SQLite database storage or PostgreSQL connection with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/dart-drift/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "dart-drift. Complete guide for using drift database library in Dart applications (CLI, server-side, non-Flutter). Use when building Dart apps that need local SQLite database storage or PostgreSQL connection with Platforms: claude_code."} +{"id": "5327f14c2019d2c802808ae912e589d0f5d3c450c57f08f9a2e2308c59bcb4e4", "repo_url": "https://github.com/astronomer/agents", "name": "analyzing-data", "description": "Queries data warehouse and answers business questions about data. Handles questions requiring database/warehouse queries including \"who uses X\", \"how many Y\", \"show me Z\", \"find customers\", \"what is t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astronomer/agents/blob/main/skills/analyzing-data/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:24:02Z"}, "embedding_text": "analyzing-data. Queries data warehouse and answers business questions about data. Handles questions requiring database/warehouse queries including \"who uses X\", \"how many Y\", \"show me Z\", \"find customers\", \"what is t Platforms: claude_code."} +{"id": "e269251f9d60f77e658ac9608781dcb3fce61100a9f5e6c415c33c8e42b244a1", "repo_url": "https://github.com/alekseiul/openclaw-superagent", "name": "task-tracker", "description": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0430\u043c\u0438: \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c, \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c, \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a, \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u044b. Triggers: '\u0437\u0430\u0434\u0430\u0447\u0430', '\u0437\u0430\u0434\u0430\u0447\u0438', 'todo', '\u0434\u043e\u0431\u0430\u0432\u044c \u0437\u0430\u0434\u0430\u0447\u0443', '\u0447\u0442\u043e \u0441\u0434\u0435\u043b\u0430\u0442\u044c', '\u0441\u043f\u0438\u0441\u043e\u043a \u0434\u0435\u043b', 'task'.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alekseiul/openclaw-superagent/blob/main/skills/agent-forge/examples/task-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T17:44:54Z"}, "embedding_text": "task-tracker. \u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u0434\u0430\u0447\u0430\u043c\u0438: \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c, \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c, \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a, \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u044b. Triggers: '\u0437\u0430\u0434\u0430\u0447\u0430', '\u0437\u0430\u0434\u0430\u0447\u0438', 'todo', '\u0434\u043e\u0431\u0430\u0432\u044c \u0437\u0430\u0434\u0430\u0447\u0443', '\u0447\u0442\u043e \u0441\u0434\u0435\u043b\u0430\u0442\u044c', '\u0441\u043f\u0438\u0441\u043e\u043a \u0434\u0435\u043b', 'task'. Platforms: claude_code."} +{"id": "9e51f4621d21a5b670f092f2ee651b594bd2b7e7a71d1b0418803495472e7238", "repo_url": "https://github.com/2001haru/closeclaw", "name": "skill-creator", "description": "Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/2001haru/closeclaw/blob/main/closeclaw/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-31T11:27:42Z"}, "embedding_text": "skill-creator. Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets. Platforms: claude_code."} +{"id": "8176e18d5af92c91b4bd206e3425782eb6717c8e62b11d54d824398dad9c840a", "repo_url": "https://github.com/automagik-dev/genie", "name": "refine", "description": "Transform a brief or prompt into a structured, production-ready prompt via prompt-optimizer. File or text mode.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/refine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "refine. Transform a brief or prompt into a structured, production-ready prompt via prompt-optimizer. File or text mode. Platforms: claude_code."} +{"id": "e1d68d34a1ef7b67cbed81ae1a8da4657e6c5b77805c361255aa5af1eb960c5e", "repo_url": "https://github.com/cris-achiardi/claude-skills", "name": "crazy-8s", "description": "Solo rapid ideation method based on Google Design Sprint Crazy 8's exercise. Generates 8 distinct solution ideas in 8 minutes through rapid-fire ideation or sketch documentation. Use when working alon", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cris-achiardi/claude-skills/blob/main/skills/crazy-8s/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T18:36:11Z"}, "embedding_text": "crazy-8s. Solo rapid ideation method based on Google Design Sprint Crazy 8's exercise. Generates 8 distinct solution ideas in 8 minutes through rapid-fire ideation or sketch documentation. Use when working alon Platforms: claude_code."} +{"id": "3ac6770a52a4154796575136841f9c5dfae688cd32fd155815c94ad908f3416b", "repo_url": "https://github.com/rafaelgorski/problem-based-srs", "name": "business-context", "description": "Establish structured business context and project principles before problem discovery. Use as Step 0 of Problem-Based SRS to capture project identity, business principles, stakeholders, domain boundar", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rafaelgorski/problem-based-srs/blob/main/skills/business-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T19:14:56Z"}, "embedding_text": "business-context. Establish structured business context and project principles before problem discovery. Use as Step 0 of Problem-Based SRS to capture project identity, business principles, stakeholders, domain boundar Platforms: claude_code."} +{"id": "5ff9544a881b3c158861b49ceeba5b285128ece17fba8fb5279bf0f4aa8bec80", "repo_url": "https://github.com/camoa/claude-skills", "name": "tdd-companion", "description": "Use during implementation to enforce TDD - reminds test-first, validates Red-Green-Refactor cycle, integrates with superpowers:test-driven-development", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/ai-dev-assistant/skills/tdd-companion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "tdd-companion. Use during implementation to enforce TDD - reminds test-first, validates Red-Green-Refactor cycle, integrates with superpowers:test-driven-development Platforms: claude_code."} +{"id": "e8331a359e3b5b707de6025ab30aece9e14b654c5ec44583ceab24cba1b2ebb4", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "brand-naming-strategies", "description": "Provides brand naming frameworks, evaluation criteria, and templates for startup naming work. Auto-activates during brand name development, name evaluation, domain checking, and trademark research. Us", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/brand-naming-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "brand-naming-strategies. Provides brand naming frameworks, evaluation criteria, and templates for startup naming work. Auto-activates during brand name development, name evaluation, domain checking, and trademark research. Us Platforms: claude_code."} +{"id": "286ff339e825898a51ba4a23c1e161f2b16919f030d0c1baca903283d6a3b8f9", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "alternatives-pages", "description": "Create \"[Competitor] alternative\" and comparison pages for developer tools.\nBuild honest, high-converting comparison content that ranks for competitive search terms.\n\nTrigger phrases: \"alternatives pa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/alternatives-pages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "alternatives-pages. Create \"[Competitor] alternative\" and comparison pages for developer tools.\nBuild honest, high-converting comparison content that ranks for competitive search terms.\n\nTrigger phrases: \"alternatives pa Platforms: claude_code."} +{"id": "5b07248c86a82f7d75e1eb84d6be09b0fe4805bcc07b2025dba93f1cb6440a81", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "designing-surveys", "description": "Design and launch a product survey and produce a Survey Pack (brief, questionnaire/instrument, analysis plan, launch checklist, reporting outline). Use for customer surveys, onboarding surveys, NPS/CS", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/designing-surveys/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "designing-surveys. Design and launch a product survey and produce a Survey Pack (brief, questionnaire/instrument, analysis plan, launch checklist, reporting outline). Use for customer surveys, onboarding surveys, NPS/CS Platforms: claude_code."} +{"id": "56c655dfa2b608badc8a0e870399488eb446a1e13ba6a77423f22a00e3340ae1", "repo_url": "https://github.com/anthropics/claude-plugins-official", "name": "math-olympiad", "description": "Solve competition math problems (IMO, Putnam, USAMO, AIME) with adversarial verification that catches the errors self-verification misses. Activates when asked to 'solve this IMO problem', 'prove this", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/claude-plugins-official/blob/main/plugins/math-olympiad/skills/math-olympiad/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 30585, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:04:10Z"}, "embedding_text": "math-olympiad. Solve competition math problems (IMO, Putnam, USAMO, AIME) with adversarial verification that catches the errors self-verification misses. Activates when asked to 'solve this IMO problem', 'prove this Platforms: claude_code."} +{"id": "762c8ce41b5e3507cd890472aec5fd684904ac1fa529f4d7c79c747b194cba6b", "repo_url": "https://github.com/basher83/lunar-claude", "name": "python-code-quality", "description": "Python code quality tooling with ruff and pyright. Use when setting up linting, formatting, type checking, configuring ruff or pyright, or establishing code quality standards.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/.claude/skills/devtools-secrets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "python-code-quality. Python code quality tooling with ruff and pyright. Use when setting up linting, formatting, type checking, configuring ruff or pyright, or establishing code quality standards. Platforms: claude_code."} +{"id": "4ecece3361248b493e25f7b32100a3a74bf807cb5aa7f7f9767bb6ab6ed6d2a0", "repo_url": "https://github.com/proxiblue/claude-skills", "name": "status-page-monitoring", "description": "Check status pages for down monitors and alert immediately. Uses curl + jq for accurate API parsing. Supports UptimeRobot, PayPal, and other status page providers.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/proxiblue/claude-skills/blob/main/status-page-monitoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T02:03:02Z"}, "embedding_text": "status-page-monitoring. Check status pages for down monitors and alert immediately. Uses curl + jq for accurate API parsing. Supports UptimeRobot, PayPal, and other status page providers. Platforms: claude_code."} +{"id": "47b88b3f1d725da96586ab9675aff13df0cab1627c8c891a506c05a19efff003", "repo_url": "https://github.com/zaferayan/skills", "name": "zafer-skills", "description": "Expo React Native mobile app development with RevenueCat payments, AdMob ads, i18n localization, onboarding flow, paywall, and NativeTabs navigation", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-skills", "expo", "react-native"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zaferayan/skills/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zafer-skills"}, "quality": {"stars": 113, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T08:22:18Z"}, "embedding_text": "zafer-skills. Expo React Native mobile app development with RevenueCat payments, AdMob ads, i18n localization, onboarding flow, paywall, and NativeTabs navigation Categories: claude-code, claude-skills, expo, react-native. Platforms: claude_code."} +{"id": "4dd4bf6262df58a19e8cc093e35482493977c528e0b067cbd291f6b1c2af5d10", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "media-relations", "description": "Plan and execute earned media outreach and journalist relationships by producing a Media Relations Pack (newsworthiness brief, media list, exclusive/embargo plan, pitch templates, outreach tracker, in", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/media-relations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "media-relations. Plan and execute earned media outreach and journalist relationships by producing a Media Relations Pack (newsworthiness brief, media list, exclusive/embargo plan, pitch templates, outreach tracker, in Platforms: claude_code."} +{"id": "da02aa63ada693128171ba9784041a5828733f2f83a536db8ef30f2b9d10ca18", "repo_url": "https://github.com/nahisaho/musubi", "name": "requirements-reviewer", "description": "Copilot agent that assists with systematic requirements review using Fagan Inspection and Perspective-Based Reading (PBR) techniques\n\nTrigger terms: requirements review, specification review, SRS revi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/src/templates/agents/claude-code/skills/requirements-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "requirements-reviewer. Copilot agent that assists with systematic requirements review using Fagan Inspection and Perspective-Based Reading (PBR) techniques\n\nTrigger terms: requirements review, specification review, SRS revi Platforms: claude_code."} +{"id": "2d690b174f465124332208bac43f4010f5142c883e6fb4dd639df38450ff68ca", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "stakeholder-analysis", "description": "Stakeholder identification, analysis, and management using BABOK techniques. Creates Power/Interest matrices, RACI charts, and communication plans.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/business-analysis/stakeholder-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "stakeholder-analysis. Stakeholder identification, analysis, and management using BABOK techniques. Creates Power/Interest matrices, RACI charts, and communication plans. Platforms: claude_code."} +{"id": "96a2da55bcc44a69379c46a6c5e1cc1f41c8b2af8279f887725994cd4c375b20", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "ui-ux-expert", "description": "Expert UI/UX designer specializing in user-centered design, accessibility (WCAG 2.2), design systems, and responsive interfaces. Use when designing web/mobile applications, implementing accessible int", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/ui-ux-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "ui-ux-expert. Expert UI/UX designer specializing in user-centered design, accessibility (WCAG 2.2), design systems, and responsive interfaces. Use when designing web/mobile applications, implementing accessible int Platforms: claude_code."} +{"id": "78d55be34c19b2f695cd1aaf4844e1b166cad9fad2639a4151abcee24c633ee6", "repo_url": "https://github.com/plurigrid/asi", "name": "uv-discohy", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/uv-discohy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "uv-discohy. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "148cd31bc112785524daf9155c8845a321d8a6c748b972c0054cceaaa1d12ca5", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "adding-notes", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/adding-notes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "adding-notes. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "540c288d2033c941f4bd6aec6062b0b50ec01b76c9d1b8dd2ad8aeedaebef42c", "repo_url": "https://github.com/nahisaho/musubi", "name": "project-manager", "description": "Copilot agent that assists with project planning, scheduling, risk management, and progress tracking for software development projects\n\nTrigger terms: project management, project plan, WBS, Gantt char", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/project-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "project-manager. Copilot agent that assists with project planning, scheduling, risk management, and progress tracking for software development projects\n\nTrigger terms: project management, project plan, WBS, Gantt char Platforms: claude_code."} +{"id": "746fbcc22f54833572baaa531069efcc603cb95e5b57b278a310d6a5cf03cb67", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "exposure-coach", "description": "Generate a one-page Market Posture summary with net exposure ceiling, growth-vs-value bias, participation breadth, and new-entry-allowed vs cash-priority recommendation by integrating signals from bre", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/exposure-coach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "exposure-coach. Generate a one-page Market Posture summary with net exposure ceiling, growth-vs-value bias, participation breadth, and new-entry-allowed vs cash-priority recommendation by integrating signals from bre Platforms: claude_code."} +{"id": "d4dccef53e3bb08def44a0786f5cc94cb07079b5bb79f46decee15670950d12e", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "stakeholder-alignment", "description": "Align stakeholders and secure buy-in by producing a Stakeholder Alignment Pack (alignment brief, stakeholder map, exec decision principles, pre-brief plan, alignment meeting plan, decision summary + c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/stakeholder-alignment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "stakeholder-alignment. Align stakeholders and secure buy-in by producing a Stakeholder Alignment Pack (alignment brief, stakeholder map, exec decision principles, pre-brief plan, alignment meeting plan, decision summary + c Platforms: claude_code."} +{"id": "4eb7cdc578cb5f970645d4acd0194d85b4da7cdb775d8529a1b3c5c111ef0a44", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-sync", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-sync. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "52eab4adceed204a01df36a2488ff9fa19d4e124023f5fec684e9206dd67e501", "repo_url": "https://github.com/aahl/skills", "name": "mcp-vods", "description": "\u7528\u4e8e\u8ffd\u5267/\u8ffd\u756a\u7684\u6280\u80fd\uff0c\u4e3aAI\u63d0\u4f9b\u641c\u7d22\u5f71\u89c6\u64ad\u653e\u5730\u5740\u7684\u80fd\u529b\uff0c\u5e76\u652f\u6301\u5728\u5c0f\u7c73\u7535\u89c6\u4e0a\u76f4\u63a5\u64ad\u653e\u3002\u5f53\u7528\u6237\u60f3\u641c\u7d22\u5f71\u89c6\u3001\u52a8\u6f2b\u3001\u77ed\u5267\u3001\u7efc\u827a\u7b49\u8282\u76ee\u4fe1\u606f\u6216\u66f4\u65b0\u8fdb\u5ea6\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/mcp-vods/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-vods"}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T10:12:15Z"}, "embedding_text": "mcp-vods. \u7528\u4e8e\u8ffd\u5267/\u8ffd\u756a\u7684\u6280\u80fd\uff0c\u4e3aAI\u63d0\u4f9b\u641c\u7d22\u5f71\u89c6\u64ad\u653e\u5730\u5740\u7684\u80fd\u529b\uff0c\u5e76\u652f\u6301\u5728\u5c0f\u7c73\u7535\u89c6\u4e0a\u76f4\u63a5\u64ad\u653e\u3002\u5f53\u7528\u6237\u60f3\u641c\u7d22\u5f71\u89c6\u3001\u52a8\u6f2b\u3001\u77ed\u5267\u3001\u7efc\u827a\u7b49\u8282\u76ee\u4fe1\u606f\u6216\u66f4\u65b0\u8fdb\u5ea6\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002 Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} +{"id": "46657aa14e2549a10cb42e64ffe8e82d1a6126ee1d6775827d3292efb4796641", "repo_url": "https://github.com/prisma/skills", "name": "prisma-driver-adapter-implementation", "description": "Required reference for Prisma v7 driver adapter work. Use when implementing or modifying adapters, adding database drivers, or touching SqlDriverAdapter/Transaction interfaces. Contains critical contr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prisma/skills/blob/main/prisma-driver-adapter-implementation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T13:20:16Z"}, "embedding_text": "prisma-driver-adapter-implementation. Required reference for Prisma v7 driver adapter work. Use when implementing or modifying adapters, adding database drivers, or touching SqlDriverAdapter/Transaction interfaces. Contains critical contr Platforms: claude_code."} +{"id": "039a1338c9b0702bdd04c73a576138a2bd09499068b59d32c1eaa35c4ed9a489", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "tech-stack-evaluator", "description": "Comprehensive technology stack evaluation and comparison tool with TCO analysis, security assessment, and intelligent recommendations for engineering teams", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/claude-code-skill-factory/generated-skills/tech-stack-evaluator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "tech-stack-evaluator. Comprehensive technology stack evaluation and comparison tool with TCO analysis, security assessment, and intelligent recommendations for engineering teams Platforms: claude_code."} +{"id": "b76f83e07e2179330e5f5cca9fbc6e4e91da00c9e9f8eda7d3802d824fcb1950", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "docx-to-pdf", "description": "Convert Word documents (DOCX files) to PDF format in batch. Use when the user uploads one or more Word documents and asks to convert them to PDF, export to PDF, or save as PDF. The tool processes mult", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/backend/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "docx-to-pdf. Convert Word documents (DOCX files) to PDF format in batch. Use when the user uploads one or more Word documents and asks to convert them to PDF, export to PDF, or save as PDF. The tool processes mult Platforms: claude_code."} +{"id": "751bbdb438460741c7cc96e93af17735ed21c54d54accddedc6002d5e77b5cd1", "repo_url": "https://github.com/dotnet/skills", "name": "nuget-trusted-publishing", "description": "Set up NuGet trusted publishing (OIDC) on a GitHub Actions repo \u2014 replaces long-lived API keys with short-lived tokens. USE FOR: trusted publishing, NuGet OIDC, keyless NuGet publish, migrate from NuGet API key, NuGet/login, secure NuGet publishing. DO NOT USE FOR: publishing to private feeds or Azure Artifacts (OIDC is nuget.org only). INVOKES: shell (powershell or bash), edit, create, ask_user for guided repo setup.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet/skills/nuget-trusted-publishing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nuget-trusted-publishing"}, "quality": {"stars": 3455, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:58:53Z"}, "embedding_text": "nuget-trusted-publishing. Set up NuGet trusted publishing (OIDC) on a GitHub Actions repo \u2014 replaces long-lived API keys with short-lived tokens. USE FOR: trusted publishing, NuGet OIDC, keyless NuGet publish, migrate from NuGet API key, NuGet/login, secure NuGet publishing. DO NOT USE FOR: publishing to private feeds or Azure Artifacts (OIDC is nuget.org only). INVOKES: shell (powershell or bash), edit, create, ask_user for guided repo setup. Platforms: claude_code."} +{"id": "037b4b559c4357cbb90874cabf66f08e2e5c51b54d28f20c61f39c2f336a6474", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "frontend-specialist", "description": "\u63d0\u4f9b\u524d\u7aef\u5f00\u53d1\u3001UI \u5b9e\u73b0\u3001\u79fb\u52a8\u5e94\u7528\u5f00\u53d1\u548c\u73b0\u4ee3\u524d\u7aef\u6846\u67b6\u80fd\u529b\u3002\u5f53\u9700\u8981\u5b9e\u73b0\u7528\u6237\u754c\u9762\u3001\u6784\u5efa\u7ec4\u4ef6\u6216\u5f00\u53d1\u79fb\u52a8\u5e94\u7528\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/frontend-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "frontend-specialist. \u63d0\u4f9b\u524d\u7aef\u5f00\u53d1\u3001UI \u5b9e\u73b0\u3001\u79fb\u52a8\u5e94\u7528\u5f00\u53d1\u548c\u73b0\u4ee3\u524d\u7aef\u6846\u67b6\u80fd\u529b\u3002\u5f53\u9700\u8981\u5b9e\u73b0\u7528\u6237\u754c\u9762\u3001\u6784\u5efa\u7ec4\u4ef6\u6216\u5f00\u53d1\u79fb\u52a8\u5e94\u7528\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "581736e0dc2805e876ce7c56a5790189e1d7fe355652663a36438b73a55042cd", "repo_url": "https://github.com/trsoliu/mini-wiki", "name": "vercel-deploy", "description": "Deploy applications and websites to Vercel. Use this skill when the user requests deployment actions such as \"Deploy my app\", \"Deploy this to production\", \"Create a preview deployment\", \"Deploy and gi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trsoliu/mini-wiki/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 110, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-02T12:13:09Z"}, "embedding_text": "vercel-deploy. Deploy applications and websites to Vercel. Use this skill when the user requests deployment actions such as \"Deploy my app\", \"Deploy this to production\", \"Create a preview deployment\", \"Deploy and gi Platforms: claude_code."} +{"id": "eed8961d2f5f8686a756036cb84754aac6be131df27910b6a7307e1559b6f205", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "wsl-vivado", "description": "Guide on how to invoke Windows Vivado toolchain from WSL environment using wrapper scripts for cross-platform FPGA development and building.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/tools/wsl-vivado/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "wsl-vivado. Guide on how to invoke Windows Vivado toolchain from WSL environment using wrapper scripts for cross-platform FPGA development and building. Platforms: claude_code."} +{"id": "46378d752cb2f6ded646a266b1a01b13802a8f63108fcb1ad3c1df7a87c2dfe7", "repo_url": "https://github.com/matsuni-kk/agent_template_public", "name": "agent-deploy", "description": "\u751f\u6210\u3057\u305f\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3092GitHub\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8\u30ea\u30dd\u30b8\u30c8\u30ea\u3068\u3057\u3066\u516c\u958b\u3059\u308b\u3002\u300c\u30c7\u30d7\u30ed\u30a4\u300d\u300c\u30ea\u30dd\u30b8\u30c8\u30ea\u4f5c\u6210\u300d\u300c\u516c\u958b\u300d\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matsuni-kk/agent_template_public/blob/main/.claude/skills/agent-deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T07:11:55Z"}, "embedding_text": "agent-deploy. \u751f\u6210\u3057\u305f\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u3092GitHub\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8\u30ea\u30dd\u30b8\u30c8\u30ea\u3068\u3057\u3066\u516c\u958b\u3059\u308b\u3002\u300c\u30c7\u30d7\u30ed\u30a4\u300d\u300c\u30ea\u30dd\u30b8\u30c8\u30ea\u4f5c\u6210\u300d\u300c\u516c\u958b\u300d\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002 Platforms: claude_code."} +{"id": "8f6ffcb1b4b3a2652a86494b07bdaac4496c207d59923d017e3afaa315c42ebe", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-visual-test", "description": "Run visual regression tests by comparing UI screenshots against baselines. Activate when user mentions \"visual test\", \"screenshot\", \"UI regression\", \"visual diff\", \"pixel diff\", \"visual snapshot\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-visual-test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-visual-test. Run visual regression tests by comparing UI screenshots against baselines. Activate when user mentions \"visual test\", \"screenshot\", \"UI regression\", \"visual diff\", \"pixel diff\", \"visual snapshot\". Platforms: claude_code."} +{"id": "bcae05cfb646d3928c7b84694600643e09fc896f046c4f83d48afd0697ebffe7", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "project-management-specialist", "description": "\u63d0\u4f9b\u9879\u76ee\u7ba1\u7406\u3001\u4efb\u52a1\u8ddf\u8e2a\u3001\u56e2\u961f\u534f\u8c03\u548c\u9879\u76ee\u4ea4\u4ed8\u80fd\u529b\u3002\u5f53\u9700\u8981\u7ba1\u7406\u9879\u76ee\u3001\u8ddf\u8e2a\u8fdb\u5ea6\u6216\u534f\u8c03\u56e2\u961f\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/project-management-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "project-management-specialist. \u63d0\u4f9b\u9879\u76ee\u7ba1\u7406\u3001\u4efb\u52a1\u8ddf\u8e2a\u3001\u56e2\u961f\u534f\u8c03\u548c\u9879\u76ee\u4ea4\u4ed8\u80fd\u529b\u3002\u5f53\u9700\u8981\u7ba1\u7406\u9879\u76ee\u3001\u8ddf\u8e2a\u8fdb\u5ea6\u6216\u534f\u8c03\u56e2\u961f\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "e44903cfdf2cacfb5105ea632e7a0371a7710b797591b25d836fae1abe9ac221", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "using-git-worktrees", "description": "Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verificat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/using-git-worktrees/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "using-git-worktrees. Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verificat Platforms: claude_code."} +{"id": "15df13c8bf4086399f8d50e4971a43d3efbb3996029d9e34e923e48d601ce0e8", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "daily-briefing", "description": "Generate a prioritized daily briefing with calendar, email, tasks, and yesterday's activity. Designed for cron execution. Trigger with \"morning briefing\", \"daily brief\", \"start my day\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/daily-briefing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "daily-briefing. Generate a prioritized daily briefing with calendar, email, tasks, and yesterday's activity. Designed for cron execution. Trigger with \"morning briefing\", \"daily brief\", \"start my day\". Platforms: claude_code."} +{"id": "1305ddbf241d2df346e880f1a80b07e8f6e400134f3c32cd92fd3271c0701e3c", "repo_url": "https://github.com/hoodini/ai-agents-skills", "name": "google-workspace-cli", "description": "Interact with all Google Workspace APIs via the gws CLI. Use when managing Drive files, sending/reading Gmail, creating Calendar events, reading/writing Sheets/Docs/Slides, managing Chat spaces, conta", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hoodini/ai-agents-skills/blob/master/skills/google-workspace-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 233, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T13:29:17Z"}, "embedding_text": "google-workspace-cli. Interact with all Google Workspace APIs via the gws CLI. Use when managing Drive files, sending/reading Gmail, creating Calendar events, reading/writing Sheets/Docs/Slides, managing Chat spaces, conta Platforms: claude_code."} +{"id": "7a8fd30c3d4bf1663b53ea9495afc3cb61af7810c6fbee553d15312620185158", "repo_url": "https://github.com/gokapso/agent-skills", "name": "observe-whatsapp", "description": "Observe and troubleshoot WhatsApp in Kapso: debug message delivery, inspect webhook deliveries/retries, triage API errors, and run health checks. Use when investigating production issues, message fail", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gokapso/agent-skills/blob/master/skills/observe-whatsapp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 129, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:31:48Z"}, "embedding_text": "observe-whatsapp. Observe and troubleshoot WhatsApp in Kapso: debug message delivery, inspect webhook deliveries/retries, triage API errors, and run health checks. Use when investigating production issues, message fail Platforms: claude_code."} +{"id": "41d3192b51e62035fd9b6c2618f4693542d36bc13c9347896c25d9f1c09845a9", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "enhancing-notes", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/enhancing-notes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "enhancing-notes. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7dac8365a90e3d935e822dfdafdbfc5ad89673bd1a7c7f39e3986bc7ac2b37a9", "repo_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit", "name": "scqa-framework", "description": "Narrative structure for complex topics - Situation, Complication, Question, Answer", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit/blob/main/examples/writing/skills/scqa-framework/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T12:36:10Z"}, "embedding_text": "scqa-framework. Narrative structure for complex topics - Situation, Complication, Question, Answer Platforms: claude_code."} +{"id": "2861605cbd14ad675b67a144ff16633b91a8b7d27eb0781c6bc8c0fdc7a6b706", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "bump-release", "description": "This skill should be used when the user asks to \"bump release\", \"cut a release\", \"tag a release\", \"bump version\", \"create a new release\", or mentions release versioning, changelog updates, or version", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/skills/bump-release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "bump-release. This skill should be used when the user asks to \"bump release\", \"cut a release\", \"tag a release\", \"bump version\", \"create a new release\", or mentions release versioning, changelog updates, or version Platforms: claude_code."} +{"id": "a837aaf8c7b3f0c9283b170e94259bf90c85fc27dd8b7b8365f0b5c0d750c4fb", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "webflow-webhooks", "description": "Receive and verify Webflow webhooks. Use when setting up Webflow webhook handlers, debugging signature verification, or handling Webflow events like form_submission, site_publish, ecomm_new_order, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/webflow-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "webflow-webhooks. Receive and verify Webflow webhooks. Use when setting up Webflow webhook handlers, debugging signature verification, or handling Webflow events like form_submission, site_publish, ecomm_new_order, or Platforms: claude_code."} +{"id": "2c4e0b8850673b050e8e7abf35cd89d410e2c75b0d60b9c79233ac251b9c66f8", "repo_url": "https://github.com/yzlnew/infra-skills", "name": "megatron-memory-estimator", "description": "Estimate GPU memory usage for Megatron-based MoE (Mixture of Experts) and dense models. Use when users need to (1) estimate memory from HuggingFace model configs (DeepSeek-V3, Qwen, etc.), (2) plan GP", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yzlnew/infra-skills/blob/main/megatron-memory-estimator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 134, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-22T02:28:43Z"}, "embedding_text": "megatron-memory-estimator. Estimate GPU memory usage for Megatron-based MoE (Mixture of Experts) and dense models. Use when users need to (1) estimate memory from HuggingFace model configs (DeepSeek-V3, Qwen, etc.), (2) plan GP Platforms: claude_code."} +{"id": "7e25d94b4a30c911ec87d215651161df6bca590d091f285aba75ee1d72c66e61", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "workspace", "description": "Create session working directories. Provision directories under runs/ when file output is needed.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/workspace/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "workspace. Create session working directories. Provision directories under runs/ when file output is needed. Platforms: claude_code."} +{"id": "bf73c777904272735d8d3f3db0f4116ab2ec12a1a9294834834ea801cc3ded82", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "pptx", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/data/documents/pptx/basic-creation-with-python-pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "pptx. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "599e11e7067a540816518a6b9aeb4eb59c5cbf61cff90813a207dd71f0d1a7f9", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "focus-problem", "description": "Problem analysis using Explore agents", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/focus-problem/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install focus-problem"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "focus-problem. Problem analysis using Explore agents Platforms: claude_code."} +{"id": "8b1d0f91d51ff78a4d75947f676c4ff805caa31924de9260c2c2936824c5ada5", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "bitcoin-mining", "description": "Comprehensive Bitcoin mining knowledge from 7 industry reports covering 2024 market overview, mining economics, operational handbooks, heat reuse strategies, mining glossary, Stratum V2 protocol speci", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/cryptocurrency/bitcoin-mining/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "bitcoin-mining. Comprehensive Bitcoin mining knowledge from 7 industry reports covering 2024 market overview, mining economics, operational handbooks, heat reuse strategies, mining glossary, Stratum V2 protocol speci Platforms: claude_code."} +{"id": "d4021a67c255a4f981305f31b655a9e4d584991720aa92f055ed0eb35419631e", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "skills", "description": "List all available skills (core + custom)", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skills"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "skills. List all available skills (core + custom) Platforms: claude_code."} +{"id": "1847ccb4e2dcf5dd54edbe74c7ff8c6b2cfeb40110a4fc09ed7d5bd5f7034000", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "root-cause-tracing", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/.claude/skills/root-cause-tracing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "root-cause-tracing. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6a7ae8b9356a12a57edcd31e5662af173edb63ce15cd29161585bcdddd13274b", "repo_url": "https://github.com/whawkinsiv/claude-code-superpowers", "name": "debug", "description": "Fix bugs systematically instead of guessing. Use when features break, users report errors, or tests fail. Covers reproducing bugs, gathering diagnostic info, and working with AI tools to fix issues ef", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/whawkinsiv/claude-code-superpowers/blob/main/skills/debug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 222, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T16:20:15Z"}, "embedding_text": "debug. Fix bugs systematically instead of guessing. Use when features break, users report errors, or tests fail. Covers reproducing bugs, gathering diagnostic info, and working with AI tools to fix issues ef Platforms: claude_code."} +{"id": "2dd651fc4ae45eb6f75c08d2a5c7fdb1e39fff717f265be0290a0f3892c2e430", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "component", "description": "Design and test UI components using parallel ui-designer and tdd-guide agents", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/component/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "component. Design and test UI components using parallel ui-designer and tdd-guide agents Platforms: claude_code."} +{"id": "92ff298169fff0e599337fafb8b3682b3385c582c2eed5b6e1d85d048e626a94", "repo_url": "https://github.com/plurigrid/asi", "name": "splitmixternary-opine", "description": "Political Repetition as Hyperrealpolitik - deterministic opinion formation via SplitMixTernary across all encountered languages. The eternal return of the trit.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/splitmixternary-opine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "splitmixternary-opine. Political Repetition as Hyperrealpolitik - deterministic opinion formation via SplitMixTernary across all encountered languages. The eternal return of the trit. Platforms: claude_code."} +{"id": "0c49e7ecea88631ae832aaa0cce7b99d5f75c68c1e0c395d97552d4d66bcc798", "repo_url": "https://github.com/plurigrid/asi", "name": "world-runtime", "description": "Firecracker microVM + Morph Infinibranch WorldRuntime for parallel verse execution. Entities branch/snapshot in <250ms.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/world-runtime/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "world-runtime. Firecracker microVM + Morph Infinibranch WorldRuntime for parallel verse execution. Entities branch/snapshot in <250ms. Platforms: claude_code."} +{"id": "401d0b157b15b234766bd7f2e644691f74799dd303670eea35a9a8441615387e", "repo_url": "https://github.com/technicalpickles/pickled-claude-plugins", "name": "working-in-monorepos", "description": "Use when working in repositories with multiple subprojects (monorepos) where commands need to run from specific directories - prevents directory confusion, redundant cd commands, and ensures commands execute from correct locations", "source": ["skillhub", "topic"], "categories": ["buildkite", "claude-code", "claude-skills", "monorepo", "workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/technicalpickles/pickled-claude-plugins/blob/main/plugins/working-in-monorepos/skills/working-in-monorepos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install working-in-monorepos"}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T20:55:10Z"}, "embedding_text": "working-in-monorepos. Use when working in repositories with multiple subprojects (monorepos) where commands need to run from specific directories - prevents directory confusion, redundant cd commands, and ensures commands execute from correct locations Categories: buildkite, claude-code, claude-skills, monorepo, workflow. Platforms: claude_code."} +{"id": "e28344323f27501022f86ac5525acba0897b947311acbb438d8d2ab512aed84d", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "token-budget-advisor", "description": "Proactive token budget assessment and task chunking strategy. Use this skill when queries involve multiple large file uploads, requests for comprehensive multi-document analysis, complex multi-step wo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/token-budget-advisor/token-budget-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "token-budget-advisor. Proactive token budget assessment and task chunking strategy. Use this skill when queries involve multiple large file uploads, requests for comprehensive multi-document analysis, complex multi-step wo Platforms: claude_code."} +{"id": "265b9be326a277744c9c235feaedc703303a410ee61fcc1b216255f476b15b7e", "repo_url": "https://github.com/plurigrid/asi", "name": "skill-installer", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/skill-installer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "skill-installer. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "10f4db2799012fd6d6696397b741f612cd57efa61938593c6f59f4057451f9c7", "repo_url": "https://github.com/cubenlp/chattool", "name": "dns", "description": "Manages DNS records, DDNS, and SSL certificates using ChatTool. Invoke when user wants to list domains, modify DNS records, or update certificates.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cubenlp/chattool/blob/master/skills/dns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:06:07Z"}, "embedding_text": "dns. Manages DNS records, DDNS, and SSL certificates using ChatTool. Invoke when user wants to list domains, modify DNS records, or update certificates. Platforms: claude_code."} +{"id": "782233c21f161387f203fe666209b6a18076ba0195482ad8989e50fbf75f0a1d", "repo_url": "https://github.com/plurigrid/asi", "name": "code-documentation", "description": "Writing effective code documentation - API docs, README files, inline", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/code-documentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "code-documentation. Writing effective code documentation - API docs, README files, inline Platforms: claude_code."} +{"id": "ca0a7cc7f0afe6e59b23466adaf1a5add55ef8eb5774443b7c3dcce2b7feda69", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-tables-list", "description": "List all tables exposed via the Supabase PostgREST API to identify the attack surface.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-api/supabase-audit-tables-list/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-tables-list. List all tables exposed via the Supabase PostgREST API to identify the attack surface. Platforms: claude_code."} +{"id": "747fd5da47aacdc2e67920a9853e3bb40b31a405ded0246caba04ba5cb6ef766", "repo_url": "https://github.com/mksglu/claude-context-mode", "name": "context-mode", "description": "Use context-mode tools (ctx_execute, ctx_execute_file) instead of Bash/cat when processing\nlarge outputs. Triggers: \"analyze logs\", \"summarize output\", \"process data\",\n\"parse JSON\", \"filter results\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mksglu/claude-context-mode/blob/main/.claude/skills/context-mode-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17919, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:54:00Z"}, "embedding_text": "context-mode. Use context-mode tools (ctx_execute, ctx_execute_file) instead of Bash/cat when processing\nlarge outputs. Triggers: \"analyze logs\", \"summarize output\", \"process data\",\n\"parse JSON\", \"filter results\", Platforms: claude_code."} +{"id": "93a3531af8e4236c180ff4a443e87e460d0eaa39097e313bf13ab064de32b5ec", "repo_url": "https://github.com/kdpa-llc/local-skills-mcp", "name": "local-skills-mcp-guide", "description": "Expert guide for understanding the Local Skills MCP server repository - its structure, architecture, and implementation. Use when exploring this MCP server's codebase, understanding how Local Skills M", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kdpa-llc/local-skills-mcp/blob/main/skills/local-skills-mcp-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T00:39:17Z"}, "embedding_text": "local-skills-mcp-guide. Expert guide for understanding the Local Skills MCP server repository - its structure, architecture, and implementation. Use when exploring this MCP server's codebase, understanding how Local Skills M Platforms: claude_code."} +{"id": "83a97f9b78cdf582d18975cf57008c3382ef35b5dcf650b770a2f36ec6954e2c", "repo_url": "https://github.com/robertguss/claude-skills", "name": "app-store-listing-optimizer", "description": "Optimize iOS App Store and Google Play Store listings for maximum discoverability and conversion. Perform competitive keyword research, craft keyword-optimized titles/subtitles/descriptions, design sc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/mobile-app-dev/app-store-listing-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "app-store-listing-optimizer. Optimize iOS App Store and Google Play Store listings for maximum discoverability and conversion. Perform competitive keyword research, craft keyword-optimized titles/subtitles/descriptions, design sc Platforms: claude_code."} +{"id": "b907c7b8bc87bec6d4e567f12ac0079fb7944be2c8c28a3c0c62665472dbaeb1", "repo_url": "https://github.com/rohunvora/cool-claude-skills", "name": "tg-ingest", "description": "Primary Telegram interface. Full-featured CLI for message export, DM management, group sync, contact scoring, and thread state. Use when user mentions \"telegram\", \"tg\", \"@username\", or telegram-specif", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohunvora/cool-claude-skills/blob/main/skills/tg-ingest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-09T05:28:41Z"}, "embedding_text": "tg-ingest. Primary Telegram interface. Full-featured CLI for message export, DM management, group sync, contact scoring, and thread state. Use when user mentions \"telegram\", \"tg\", \"@username\", or telegram-specif Platforms: claude_code."} +{"id": "6c2cdabf95b5d8c3c9bb3f0182ba7aec3ab282f7ed66405ec11ce6fac7cabcbc", "repo_url": "https://github.com/technicalpickles/pickled-claude-plugins", "name": "developing-buildkite-pipelines", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/technicalpickles/pickled-claude-plugins/blob/main/plugins/actually-lsp/skills/actually-lsp-doctor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T20:55:10Z"}, "embedding_text": "developing-buildkite-pipelines. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a02e03ee7766c5459de507fc49805b72c7e1b67f3af199f70c11814ec10aba51", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-pkg-esm", "description": "Comprehensive toolkit for protein language models including ESM3 (generative multimodal protein design across sequence, structure, and function) and ESM C (efficient protein embeddings and representations). Use this skill when working with protein sequences, structures, or function prediction; designing novel proteins; generating protein embeddings; performing inverse folding; or conducting protein engineering tasks. Supports both local model usage and cloud-based Forge API for scalable inference.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-pkg-esm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-pkg-esm"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-pkg-esm. Comprehensive toolkit for protein language models including ESM3 (generative multimodal protein design across sequence, structure, and function) and ESM C (efficient protein embeddings and representations). Use this skill when working with protein sequences, structures, or function prediction; designing novel proteins; generating protein embeddings; performing inverse folding; or conducting protein engineering tasks. Supports both local model usage and cloud-based Forge API for scalable inference. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "7cd7cafbb9e3f95d525dfc56e44b440f6dd3757d347aa7656c0fb021ccc93b87", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-security", "description": "Security audit with Sentinel. Checks for vulnerabilities, secrets, dependencies, and security best practices. Use before shipping or when working on auth/crypto/sensitive areas.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-security"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-security. Security audit with Sentinel. Checks for vulnerabilities, secrets, dependencies, and security best practices. Use before shipping or when working on auth/crypto/sensitive areas. Platforms: claude_code."} +{"id": "8f4c79a7a1b6c697b83d9c52847eaf60aebab50ea45f1d33d305233e3f9ff452", "repo_url": "https://github.com/whawkinsiv/claude-code-superpowers", "name": "optimize", "description": "Optimize your SaaS app across four dimensions - Speed (page load, API response), Code (unused files, dead code), Database (orphaned data, schema hygiene), and Dependencies (package bloat, bundle size)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/whawkinsiv/claude-code-superpowers/blob/main/skills/optimize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 222, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T16:20:15Z"}, "embedding_text": "optimize. Optimize your SaaS app across four dimensions - Speed (page load, API response), Code (unused files, dead code), Database (orphaned data, schema hygiene), and Dependencies (package bloat, bundle size) Platforms: claude_code."} +{"id": "ac0116b377eaf41f29a22a3911a37e3b768f6cbdd4c3a1293192c64c43830a53", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-extract-db-string", "description": "CRITICAL - Detect exposed PostgreSQL database connection strings in client-side code. Direct DB access is a P0 issue.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/extraction/supabase-extract-db-string/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-extract-db-string. CRITICAL - Detect exposed PostgreSQL database connection strings in client-side code. Direct DB access is a P0 issue. Platforms: claude_code."} +{"id": "a9853c11712974af3eb7092907212ae5eb6f91dc83e37aee24edbaecdb6d0c60", "repo_url": "https://github.com/prebid/salesagent", "name": "obligation-test", "description": "Write per-obligation behavioral tests with hard quality enforcement. Each obligation gets its own research \u2192 write-test \u2192 verify \u2192 commit chain. Replaces batch skills (/surface, /remediate) for new ob", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prebid/salesagent/blob/main/.claude/skills/agent-db/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 33, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:49Z"}, "embedding_text": "obligation-test. Write per-obligation behavioral tests with hard quality enforcement. Each obligation gets its own research \u2192 write-test \u2192 verify \u2192 commit chain. Replaces batch skills (/surface, /remediate) for new ob Platforms: claude_code."} +{"id": "34c625a0a29098dbd4a6da9e9eb4dcafe4d39f4e70bd1ea12a459d8ff0561979", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "product-specialist", "description": "\u63d0\u4f9b\u4ea7\u54c1\u89c4\u5212\u3001\u9700\u6c42\u5206\u6790\u3001\u5e02\u573a\u7814\u7a76\u548c\u4e1a\u52a1\u5206\u6790\u80fd\u529b\u3002\u5f53\u9700\u8981\u8fdb\u884c\u4ea7\u54c1\u51b3\u7b56\u3001\u9700\u6c42\u5206\u6790\u6216\u5e02\u573a\u7814\u7a76\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/product-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "product-specialist. \u63d0\u4f9b\u4ea7\u54c1\u89c4\u5212\u3001\u9700\u6c42\u5206\u6790\u3001\u5e02\u573a\u7814\u7a76\u548c\u4e1a\u52a1\u5206\u6790\u80fd\u529b\u3002\u5f53\u9700\u8981\u8fdb\u884c\u4ea7\u54c1\u51b3\u7b56\u3001\u9700\u6c42\u5206\u6790\u6216\u5e02\u573a\u7814\u7a76\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "25d69877248c6e1e732b475a15f2af80c3e34d775a42e89d56e6a09d97eee298", "repo_url": "https://github.com/viralcode/openwhale", "name": "bird", "description": "X/Twitter CLI for reading, searching, posting, and engagement via cookies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/viralcode/openwhale/blob/main/skills/bird/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-13T20:05:22Z"}, "embedding_text": "bird. X/Twitter CLI for reading, searching, posting, and engagement via cookies. Platforms: claude_code."} +{"id": "e79a94d1e3022c22d3b3e1514e257fdbb599de3f5b1f69b1fc8e1b3b289f0d29", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-tech-debt", "description": "Identify, quantify, and prioritize technical debt in the codebase. Activate when user mentions \"tech debt\", \"code quality\", \"technical debt\", \"code smells\", \"refactor candidates\", \"what to clean up\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-tech-debt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-tech-debt. Identify, quantify, and prioritize technical debt in the codebase. Activate when user mentions \"tech debt\", \"code quality\", \"technical debt\", \"code smells\", \"refactor candidates\", \"what to clean up\". Platforms: claude_code."} +{"id": "b2078e69cf7d96124f1906ea3d62d2259a4f43264a4cb3fc65297cf38a322145", "repo_url": "https://github.com/paid-tw/skills", "name": "payuni-checkout", "description": "Implements PAYUNi UPP checkout integration including AES256 encryption, form submission, and payment callback handling. Use when integrating payment gateway, creating checkout flows, or building \u7d71\u4e00\u91d1\u6d41", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paid-tw/skills/blob/main/plugins/payuni/skills/payuni-checkout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 260, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T01:10:18Z"}, "embedding_text": "payuni-checkout. Implements PAYUNi UPP checkout integration including AES256 encryption, form submission, and payment callback handling. Use when integrating payment gateway, creating checkout flows, or building \u7d71\u4e00\u91d1\u6d41 Platforms: claude_code."} +{"id": "13405734aa95b6e5277a4adf51e2e8ac243262c96be3770217a56700c0f7dcb2", "repo_url": "https://github.com/grasmash/drupal-claude-skills", "name": "drupal-at-your-fingertips", "description": "Comprehensive Drupal patterns from \"Drupal at Your Fingertips\" by Selwyn Polit. Covers 50+ topics including services, hooks, forms, entities, caching, testing, and more.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/grasmash/drupal-claude-skills/blob/main/skills/drupal-at-your-fingertips/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T20:58:16Z"}, "embedding_text": "drupal-at-your-fingertips. Comprehensive Drupal patterns from \"Drupal at Your Fingertips\" by Selwyn Polit. Covers 50+ topics including services, hooks, forms, entities, caching, testing, and more. Platforms: claude_code."} +{"id": "a9557e8e250d0202303f54f55ce0f8a55a627e60fa0fe2178517c918cb9439b5", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-debate", "description": "Run an adversarial multi-role debate to surface trade-offs and reach a reasoned decision. Activate when user mentions \"debate\", \"discuss\", \"trade-off\", \"decision\", \"compare options\", \"pros and cons\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-debate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-debate. Run an adversarial multi-role debate to surface trade-offs and reach a reasoned decision. Activate when user mentions \"debate\", \"discuss\", \"trade-off\", \"decision\", \"compare options\", \"pros and cons\", Platforms: claude_code."} +{"id": "28a9acc2e5ca85b5d08f32511f8c5f7cd8bea8a42aa2bbead9d4dc6d04152229", "repo_url": "https://github.com/rafaelgorski/problem-based-srs", "name": "complexity-analysis", "description": "Analyze specification quality using Axiomatic Design principles. Optional advanced validation for critical systems. Evaluates independence, completeness, and information content of requirements.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rafaelgorski/problem-based-srs/blob/main/skills/complexity-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T19:14:56Z"}, "embedding_text": "complexity-analysis. Analyze specification quality using Axiomatic Design principles. Optional advanced validation for critical systems. Evaluates independence, completeness, and information content of requirements. Platforms: claude_code."} +{"id": "f11de587631c772f64f4c3fb6ca1d6e1df6b8c264e515d3d8c85cab5e4e4fa33", "repo_url": "https://github.com/glebis/claude-skills", "name": "decision-toolkit", "description": "Generate structured decision-making tools \u2014 step-by-step guides, bias checkers, scenario explorers, and interactive dashboards. Use when facing significant choices requiring systematic analysis. Suppo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/decision-toolkit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "decision-toolkit. Generate structured decision-making tools \u2014 step-by-step guides, bias checkers, scenario explorers, and interactive dashboards. Use when facing significant choices requiring systematic analysis. Suppo Platforms: claude_code."} +{"id": "f92fe56300c90381fb25f52fa4ec912f5dae980cc21eeffca6a6412322683707", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-planning", "description": "Run weekly team planning with RFC review, WSJF prioritization and assignment by person/pair/squad with capacity calculation. Activate when user mentions \"planning\", \"sprint\", \"weekly planning\", \"RFC\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-planning. Run weekly team planning with RFC review, WSJF prioritization and assignment by person/pair/squad with capacity calculation. Activate when user mentions \"planning\", \"sprint\", \"weekly planning\", \"RFC\", Platforms: claude_code."} +{"id": "7cdf0fe8e140813e80abfe50108064d87c4c9c44b6e594f3b044035568364243", "repo_url": "https://github.com/reduxjs/redux-toolkit", "name": "orchestrate-side-effects/handle-side-effects", "description": "Use this when choosing between RTK Query, createAsyncThunk, handwritten thunks, and createListenerMiddleware. Covers imperative versus reactive workflows, listener middleware setup, and keeping side e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reduxjs/redux-toolkit/blob/master/packages/toolkit/skills/orchestrate-side-effects/handle-side-effects/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:41:25Z"}, "embedding_text": "orchestrate-side-effects/handle-side-effects. Use this when choosing between RTK Query, createAsyncThunk, handwritten thunks, and createListenerMiddleware. Covers imperative versus reactive workflows, listener middleware setup, and keeping side e Platforms: claude_code."} +{"id": "8916bc61fbe1a9ea3f398d5706ab4ef649a241a2a6835252aa8105b591955baa", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-spec-score", "description": "Evaluate the quality of a spec and return a structured score with improvement recommendations. Activate when user mentions \"spec quality\", \"score spec\", \"how good is my spec\", \"spec review\", \"validate", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-spec-score/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-spec-score. Evaluate the quality of a spec and return a structured score with improvement recommendations. Activate when user mentions \"spec quality\", \"score spec\", \"how good is my spec\", \"spec review\", \"validate Platforms: claude_code."} +{"id": "8dbc3cb6d3197673cd27df855cc472be124b6441b5d952f36e9f3e8a13a0105c", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "pipeline-health-analyzer", "description": "Analyze pipeline health, identify stalled deals, predict close probability, and suggest actions to move deals forward. Improves forecast accuracy and prevents revenue leakage. Use when deals get stuck", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/pipeline-health-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "pipeline-health-analyzer. Analyze pipeline health, identify stalled deals, predict close probability, and suggest actions to move deals forward. Improves forecast accuracy and prevents revenue leakage. Use when deals get stuck Platforms: claude_code."} +{"id": "d5968ea99be3b4a0c745ca244d25de60156fde50e73d7199b043870ff2a486b6", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "htmx-skill", "description": "Documentation for the htmx JavaScript library (attributes, events, headers, API, extensions, examples, migration guides, server examples). Use when you need accurate htmx syntax/behavior or to locate the right reference page for an htmx question.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/drzoot/htmx-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install htmx-skill"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "htmx-skill. Documentation for the htmx JavaScript library (attributes, events, headers, API, extensions, examples, migration guides, server examples). Use when you need accurate htmx syntax/behavior or to locate the right reference page for an htmx question. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "37dbf51fa6d7bc727f5f31c27b84fba6e62de09bf9b86ef7f61023053a4eae3c", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-migrate", "description": "Plan and execute technology migrations with wave planning, breaking change detection and task generation. Activate when user mentions \"migrate\", \"migration\", \"upgrade\", \"move from\", \"switch to\", \"Vue", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-migrate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-migrate. Plan and execute technology migrations with wave planning, breaking change detection and task generation. Activate when user mentions \"migrate\", \"migration\", \"upgrade\", \"move from\", \"switch to\", \"Vue Platforms: claude_code."} +{"id": "195ae85c27f8b536f4104d1b02d66567bce815ce2a1fcd2846693d4de3ace10d", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-distill", "description": "Extract behavioral specifications and architecture diagrams from existing code (Blueprint Distillation / reverse engineering). Activate when user mentions \"distill\", \"reverse engineer\", \"extract spec\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-distill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-distill. Extract behavioral specifications and architecture diagrams from existing code (Blueprint Distillation / reverse engineering). Activate when user mentions \"distill\", \"reverse engineer\", \"extract spec\" Platforms: claude_code."} +{"id": "7e4e78cfcb166248bae68f93f14721d34d765260a71afe155073688c3986ef3f", "repo_url": "https://github.com/aklofas/kicad-happy", "name": "jlcpcb", "description": "JLCPCB PCB fabrication and assembly \u2014 BOM/CPL generation, basic vs extended parts, assembly constraints, design rules, ordering workflow. Use with KiCad for JLCPCB manufacturing. Use this skill when t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aklofas/kicad-happy/blob/main/skills/jlcpcb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 594, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:04:59Z"}, "embedding_text": "jlcpcb. JLCPCB PCB fabrication and assembly \u2014 BOM/CPL generation, basic vs extended parts, assembly constraints, design rules, ordering workflow. Use with KiCad for JLCPCB manufacturing. Use this skill when t Platforms: claude_code."} +{"id": "7ab883b7ec780b14a1fb88d26024565f52c67a6ec68597490dcd11eea3b21492", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "ai-testcase-generator-mcp", "description": "GitHub repository skill for Mallikarjun-Roddannavar/ai-testcase-generator-mcp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/testing/ai-testcase-generator-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "ai-testcase-generator-mcp. GitHub repository skill for Mallikarjun-Roddannavar/ai-testcase-generator-mcp Platforms: claude_code."} +{"id": "931ece17dd7d26479255aafdbe6bf6b7d0e48ac930be87b216fde9058451e3f3", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-reasoning", "description": "Apply structured reasoning models to analyze a decision or problem. Activate when user mentions \"reason\", \"pre-mortem\", \"5 whys\", \"pareto\", \"think through\", \"analyze decision\", \"inversion\", \"first pri", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-reasoning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-reasoning. Apply structured reasoning models to analyze a decision or problem. Activate when user mentions \"reason\", \"pre-mortem\", \"5 whys\", \"pareto\", \"think through\", \"analyze decision\", \"inversion\", \"first pri Platforms: claude_code."} +{"id": "7df763206fad44b31bdd01ce89ab06db04bc2adf03c98eff144e02c972291367", "repo_url": "https://github.com/agentera/agently-skills", "name": "agently-model-setup", "description": "Use when the request is already narrowed to wiring a model endpoint, env vars, settings-file-based model config, `${ENV.xxx}` placeholders, `auto_load_env=True`, or connectivity check for a model-powe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentera/agently-skills/blob/main/skills/agently/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T08:55:43Z"}, "embedding_text": "agently-model-setup. Use when the request is already narrowed to wiring a model endpoint, env vars, settings-file-based model config, `${ENV.xxx}` placeholders, `auto_load_env=True`, or connectivity check for a model-powe Platforms: claude_code."} +{"id": "bb1e5ec01b42aee336c0e286a60665d1b47afea14e0a4492d6371334080c0065", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "security-review", "description": "Mobile security audit for React Native applications", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/security-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "security-review. Mobile security audit for React Native applications Platforms: claude_code."} +{"id": "3e913e7094db8b5a98b354f5257f54082bd5024d8bb28ad8a2e2afc085231d8b", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-ml-engineer", "description": "World-class ML engineering skill for productionizing ML models, MLOps, and building scalable ML systems. Expertise in PyTorch, TensorFlow, model deployment, feature stores, model monitoring, and ML in", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-ml-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-ml-engineer. World-class ML engineering skill for productionizing ML models, MLOps, and building scalable ML systems. Expertise in PyTorch, TensorFlow, model deployment, feature stores, model monitoring, and ML in Platforms: claude_code."} +{"id": "e9134083e5b8377dcc85d8b8f85e23dc4615dbec5dca8547b406b39507c624f4", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "aks-deployment-troubleshooter", "description": "Diagnose and fix Kubernetes deployment failures, especially ImagePullBackOff, CrashLoopBackOff, and architecture mismatches. Battle-tested from 4-hour AKS debugging session with 10+ failure modes reso", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/aks-deployment-troubleshooter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "aks-deployment-troubleshooter. Diagnose and fix Kubernetes deployment failures, especially ImagePullBackOff, CrashLoopBackOff, and architecture mismatches. Battle-tested from 4-hour AKS debugging session with 10+ failure modes reso Platforms: claude_code."} +{"id": "2393e3d697a05245f57db7920681a9e6b3d589f958116d28ac57bcdbea480ba2", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "image-generation", "description": "Generate images with Gemini (default) or fal.ai FLUX.2 klein 4B (--cheap for fast/low-cost). Generate videos with Grok Imagine (default) or fal.ai LTX-2 (--cheap). Use for: create image, generate visu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/image-generation/skills/image-generation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "image-generation. Generate images with Gemini (default) or fal.ai FLUX.2 klein 4B (--cheap for fast/low-cost). Generate videos with Grok Imagine (default) or fal.ai LTX-2 (--cheap). Use for: create image, generate visu Platforms: claude_code."} +{"id": "d747f35332c48635855929c2c1ec0bf2bef5e5e1146c257bff927a693f91da29", "repo_url": "https://github.com/jjmartres/opencode", "name": "Work on Ticket", "description": "Fetches Jira ticket details, creates an appropriately named branch, and initiates the task planning workflow. Use when the user says \"work on [TICKET_ID]\" or similar phrases.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jjmartres/opencode/blob/main/opencode/skills/work-on-ticket/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-20T10:48:45Z"}, "embedding_text": "Work on Ticket. Fetches Jira ticket details, creates an appropriately named branch, and initiates the task planning workflow. Use when the user says \"work on [TICKET_ID]\" or similar phrases. Platforms: claude_code."} +{"id": "93c9fce7596ec05f1ce2f88ffe0849292ece753968f13f84bf3252c6342498ff", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "cocoapods-to-spm", "description": "Guide to migrating iOS Capacitor plugins and dependencies from CocoaPods to Swift Package Manager (SPM). Use this skill when users want to modernize their iOS project, remove CocoaPods, or add SPM-bas", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-migrations/skills/cocoapods-to-spm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "cocoapods-to-spm. Guide to migrating iOS Capacitor plugins and dependencies from CocoaPods to Swift Package Manager (SPM). Use this skill when users want to modernize their iOS project, remove CocoaPods, or add SPM-bas Platforms: claude_code."} +{"id": "62fca3a5f758db4878f4a1029e9c61f403e65e901f3247cabcad38c1d6e79dfc", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "slack-notifications", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/slack-notifications/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "slack-notifications. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "218a24eb889a4a03f045fca64af0778d91347b420831e4f2f7eda802f03a2013", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-computer-vision", "description": "World-class computer vision skill for image/video processing, object detection, segmentation, and visual AI systems. Expertise in PyTorch, OpenCV, YOLO, SAM, diffusion models, and vision transformers.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-computer-vision/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-computer-vision. World-class computer vision skill for image/video processing, object detection, segmentation, and visual AI systems. Expertise in PyTorch, OpenCV, YOLO, SAM, diffusion models, and vision transformers. Platforms: claude_code."} +{"id": "3cb26a957b32f707c274f549b5d9dfa3e1b93043b8b332840ad0ceb2676ce574", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "tailwind-best-practices", "description": "Tailwind CSS patterns and conventions. Use when writing responsive designs, implementing dark mode, creating reusable component styles, or configuring Tailwind. Triggers on tasks involving Tailwind cl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/tailwind-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "tailwind-best-practices. Tailwind CSS patterns and conventions. Use when writing responsive designs, implementing dark mode, creating reusable component styles, or configuring Tailwind. Triggers on tasks involving Tailwind cl Platforms: claude_code."} +{"id": "b64e007337a2ec76f2a5a69c21a275d4f88e55bc6824ff2021900903bcdbfcd2", "repo_url": "https://github.com/packmindhub/packmind", "name": "packmind-onboard", "description": "Read-only codebase analysis to identify non-linter architectural patterns and generate draft Packmind Standards and Commands.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/packmindhub/packmind/blob/main/.claude/skills/packmind-onboard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:14:12Z"}, "embedding_text": "packmind-onboard. Read-only codebase analysis to identify non-linter architectural patterns and generate draft Packmind Standards and Commands. Platforms: claude_code."} +{"id": "5894303441704e820ee0376a88757f22faee92eb91e0dc127081fd74ddb26a12", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "upgrade-workflow", "description": "Guided version migration for React Native and Expo SDK upgrades", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/upgrade-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "upgrade-workflow. Guided version migration for React Native and Expo SDK upgrades Platforms: claude_code."} +{"id": "5f322fff1c6c4ac70c50e2fd83a047ebd8c9cb07f57890cdaa264b2976d64c8e", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "nextjs-devtools", "description": "Next.js development tooling via MCP. Inspect routes, components, build info, and debug Next.js apps.\nUse when working on Next.js applications, debugging routing, or inspecting app structure.\nNOT for g", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/nextjs-devtools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "nextjs-devtools. Next.js development tooling via MCP. Inspect routes, components, build info, and debug Next.js apps.\nUse when working on Next.js applications, debugging routing, or inspecting app structure.\nNOT for g Platforms: claude_code."} +{"id": "d1e81c769a2dcb2c53fcdb58fefe6c0d4162523beac5888dcad230a694d89c38", "repo_url": "https://github.com/grasmash/drupal-claude-skills", "name": "drupal-config-mgmt", "description": "Safe patterns for inspecting and syncing Drupal configuration across environments without accidentally importing changes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/grasmash/drupal-claude-skills/blob/main/skills/drupal-config-mgmt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T20:58:16Z"}, "embedding_text": "drupal-config-mgmt. Safe patterns for inspecting and syncing Drupal configuration across environments without accidentally importing changes. Platforms: claude_code."} +{"id": "404a5b059d8abaf89c3d82b651bac416b82228984255d6f9a9a312b0a51d62ca", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "nft-market-analysis", "description": "NFT marketplace analysis skill for OpenSea, Blur, and Magic Eden market data", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/web3-core-operations/nft/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "nft-market-analysis. NFT marketplace analysis skill for OpenSea, Blur, and Magic Eden market data Platforms: claude_code."} +{"id": "78198dc3e73cd519e47de4816b8a629f5a19951ca1c5c9f8336861d4040145c0", "repo_url": "https://github.com/getlago/lago-front", "name": "migrate-dialog", "description": "Migrate a dialog component from the legacy imperative ref-based Dialog system to the new hook-based NiceModal dialog system (FormDialog, CentralizedDialog, or FormDialogOpeningDialog). This skill focu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/getlago/lago-front/blob/main/.agents/skills/migrate-dialog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 158, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:39:39Z"}, "embedding_text": "migrate-dialog. Migrate a dialog component from the legacy imperative ref-based Dialog system to the new hook-based NiceModal dialog system (FormDialog, CentralizedDialog, or FormDialogOpeningDialog). This skill focu Platforms: claude_code."} +{"id": "acd4b8530f1eb5aa8896c59347e0915dc76096f81a473861e966353a02df4cf0", "repo_url": "https://github.com/congdon1207/agents.md", "name": "dual-pass-review", "description": "Use AFTER any code changes (feature implementation, bug fix, refactor) to enforce mandatory dual-pass review. First pass reviews unstaged changes for correctness and convention compliance. Second pass", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/dual-pass-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "dual-pass-review. Use AFTER any code changes (feature implementation, bug fix, refactor) to enforce mandatory dual-pass review. First pass reviews unstaged changes for correctness and convention compliance. Second pass Platforms: claude_code."} +{"id": "9bb61ba25e41e60a943ce781f6764e088081aa278ad6a5047da342eb424417b9", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-frontend", "description": "Comprehensive frontend development skill for building modern, performant web applications using ReactJS, NextJS, TypeScript, Tailwind CSS. Includes component scaffolding, performance optimization, bun", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-frontend/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-frontend. Comprehensive frontend development skill for building modern, performant web applications using ReactJS, NextJS, TypeScript, Tailwind CSS. Includes component scaffolding, performance optimization, bun Platforms: claude_code."} +{"id": "492b21e96e1b2a83177ae0fb5c733745ccdd6a209b23f9293c7dbf0a52fe397f", "repo_url": "https://github.com/talsraviv/peoples-post-generator", "name": "peoples-post-generator", "description": "Use when writing posts for any platform (LinkedIn, Substack, internal team shares, any social network) - whether starting from raw material like transcripts, screenshots, or voice memos, or just a vag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/talsraviv/peoples-post-generator/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 82, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T10:14:47Z"}, "embedding_text": "peoples-post-generator. Use when writing posts for any platform (LinkedIn, Substack, internal team shares, any social network) - whether starting from raw material like transcripts, screenshots, or voice memos, or just a vag Platforms: claude_code."} +{"id": "3f3e14f4034383c2c3a3cc3c5087b5aba4c5aded59787a1285dd309fbe0e4196", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "perf", "description": "Performance profiling and optimization using the performance-profiler agent", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/erne-perf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "perf. Performance profiling and optimization using the performance-profiler agent Platforms: claude_code."} +{"id": "ced2660246a4b69ef1a1bd85ea790d8fb278cb0cb0949d9aa53c30c6fa0e63fc", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "flutter-adaptive-ui", "description": "Build adaptive and responsive Flutter UIs that work beautifully across all platforms and screen sizes. Use when creating Flutter apps that need to adapt layouts based on screen size, support multiple", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/flutter-adaptive-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "flutter-adaptive-ui. Build adaptive and responsive Flutter UIs that work beautifully across all platforms and screen sizes. Use when creating Flutter apps that need to adapt layouts based on screen size, support multiple Platforms: claude_code."} +{"id": "b15eb49f5dd58b3149603e807b51bb086a7b393f85689e663fbed37755eeaae3", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-navigation", "description": "Master Slidev navigation and keyboard shortcuts. Use this skill for efficient slide control, custom shortcuts, and navigation customization.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/presentation/slidev-navigation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-navigation. Master Slidev navigation and keyboard shortcuts. Use this skill for efficient slide control, custom shortcuts, and navigation customization. Platforms: claude_code."} +{"id": "00d77b0760d017156c7f13cc4e73f912fd25c4de7b59449cc48056ed1d55fc1b", "repo_url": "https://github.com/ten-builder/ten-builder", "name": "session-pack", "description": "\uc138\uc158 \uc885\ub8cc \uc2dc Memory, Handoff\ub97c \uc790\ub3d9 \uc815\ub9ac. /pack", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ten-builder/ten-builder/blob/main/skills/session-pack/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T03:03:51Z"}, "embedding_text": "session-pack. \uc138\uc158 \uc885\ub8cc \uc2dc Memory, Handoff\ub97c \uc790\ub3d9 \uc815\ub9ac. /pack Platforms: claude_code."} +{"id": "d0d5d79b33258ee318a692a0592cd7a17f3cc5b2bdf5e56710ebc9d2612f0447", "repo_url": "https://github.com/johnrogers/claude-swift-engineering", "name": "swiftui-patterns", "description": "Use when implementing iOS 17+ SwiftUI patterns: @Observable/@Bindable, MVVM architecture, NavigationStack, lazy loading, UIKit interop, accessibility (VoiceOver/Dynamic Type), async operations (.task/", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnrogers/claude-swift-engineering/blob/main/plugins/swift-engineering/skills/swiftui-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 212, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T05:24:16Z"}, "embedding_text": "swiftui-patterns. Use when implementing iOS 17+ SwiftUI patterns: @Observable/@Bindable, MVVM architecture, NavigationStack, lazy loading, UIKit interop, accessibility (VoiceOver/Dynamic Type), async operations (.task/ Platforms: claude_code."} +{"id": "c1c1923aa2d2dbc2f205cc3b345b3070607d53674e7a471a3145f44775470593", "repo_url": "https://github.com/aspiers/ai-config", "name": "git-commit", "description": "Create well-formatted commits following conventional commits style with proper atomic commits and descriptive messages", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/git-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "git-commit. Create well-formatted commits following conventional commits style with proper atomic commits and descriptive messages Platforms: claude_code."} +{"id": "eb9bd8c83e5925632385b3f8b001bc4873ad670e58593a3adcb47cfcf43a75b4", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "xlsx", "description": "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., add", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "xlsx. 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., add Platforms: claude_code."} +{"id": "30018073a7ddad13f4e8436cc3f0ec4616290bc9eda53a4da9b80e24bc8b3683", "repo_url": "https://github.com/dagster-io/skills", "name": "dignified-python", "description": "Python coding standards with automatic version detection. Use when writing, reviewing, or refactoring Python to ensure adherence to LBYL exception handling patterns, modern type syntax (list[str], str", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dagster-io/skills/blob/master/skills/dignified-python/skills/dignified-python/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 170, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T19:14:59Z"}, "embedding_text": "dignified-python. Python coding standards with automatic version detection. Use when writing, reviewing, or refactoring Python to ensure adherence to LBYL exception handling patterns, modern type syntax (list[str], str Platforms: claude_code."} +{"id": "bcdecef33a98127a075fedb5fea5c3fa142df4e55f3c18c364ee52f48a86f2c7", "repo_url": "https://github.com/charlesjones-dev/claude-code-plugins-dev", "name": "implement-phases", "description": "Use when implementing phases from a plan document, executing phased implementations, orchestrating sub-agents for phase work, or when /workflow-implement-phases command is invoked. Provides dependency", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charlesjones-dev/claude-code-plugins-dev/blob/main/plugins/ai-workflow/skills/workflow-implement-phases/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T17:05:55Z"}, "embedding_text": "implement-phases. Use when implementing phases from a plan document, executing phased implementations, orchestrating sub-agents for phase work, or when /workflow-implement-phases command is invoked. Provides dependency Platforms: claude_code."} +{"id": "f670ff55b97c042f3b76f63864fef2c98dbc0cc7a01891ab2cee48d00a638092", "repo_url": "https://github.com/jhd3197/prompture", "name": "add-tool", "description": "Add function-calling tools to Prompture agents. Covers ToolDefinition, ToolRegistry, tool_from_function, decorator patterns, serialization formats, and Conversation integration. Use when adding callab", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jhd3197/prompture/blob/main/.claude/skills/add-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T02:07:31Z"}, "embedding_text": "add-tool. Add function-calling tools to Prompture agents. Covers ToolDefinition, ToolRegistry, tool_from_function, decorator patterns, serialization formats, and Conversation integration. Use when adding callab Platforms: claude_code."} +{"id": "9f33173142827a318f44bf3ccadde28d34d6e889fc55839e7b9055a821ac390f", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "graphql-expert", "description": "Expert GraphQL developer specializing in type-safe API development, schema design, resolver optimization, and federation architecture. Use when building GraphQL APIs, implementing Apollo Server, optim", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/graphql-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "graphql-expert. Expert GraphQL developer specializing in type-safe API development, schema design, resolver optimization, and federation architecture. Use when building GraphQL APIs, implementing Apollo Server, optim Platforms: claude_code."} +{"id": "d1fd60ad15c37e1921ead4a671c82aad2cf91738073b38d07a695fb603c79c17", "repo_url": "https://github.com/aspiers/ai-config", "name": "code-reviewing", "description": "Review code for quality, security, and maintainability. Use after code changes are completed and ready for review.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/code-reviewing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "code-reviewing. Review code for quality, security, and maintainability. Use after code changes are completed and ready for review. Platforms: claude_code."} +{"id": "ba5a5dba8d2b06745c5f101a2bf72015d760c4589c2a0fd07ecf9c27d7bbd197", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "state-management", "description": "React Query and Zustand patterns for state management. Use when implementing data fetching, caching, mutations, or client-side state. Triggers on tasks involving useQuery, useMutation, Zustand stores,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/state-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "state-management. React Query and Zustand patterns for state management. Use when implementing data fetching, caching, mutations, or client-side state. Triggers on tasks involving useQuery, useMutation, Zustand stores, Platforms: claude_code."} +{"id": "3f909dd67e1959ab8bcc3c9b805a0854a077bb48299b64fb02551f22b5ba2461", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "api-design-patterns", "description": "RESTful API design, error handling, versioning, and best practices. Use when designing APIs, reviewing endpoints, implementing error responses, or setting up API structure. Triggers on \"design API\", \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/api-design-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "api-design-patterns. RESTful API design, error handling, versioning, and best practices. Use when designing APIs, reviewing endpoints, implementing error responses, or setting up API structure. Triggers on \"design API\", \" Platforms: claude_code."} +{"id": "12313df9dd086672f74bfc5d77ade7c22168ba064fabb4ec2d348ce0aad26f0c", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "document-polisher", "description": "Transform any DOCX document with world-class brand styling. Choose from 10 premium brand aesthetics (The Economist, McKinsey, Deloitte, KPMG, Stripe, Apple, IBM, Notion, Linear, Figma) to polish docum", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/document-polisher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "document-polisher. Transform any DOCX document with world-class brand styling. Choose from 10 premium brand aesthetics (The Economist, McKinsey, Deloitte, KPMG, Stripe, Apple, IBM, Notion, Linear, Figma) to polish docum Platforms: claude_code."} +{"id": "235b21d2e43bf9644370cd1374b2b78c759ae3350947c56eedee894f903fc486", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-code-review", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-code-review. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e852cb8ee77b9b986acfc756fde9eeb287c1abc3b764fe4638e3b1c1b2da647a", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-project-board", "description": "Synchronize AI swarms with GitHub Projects for visual task management and progress tracking. Use for project board automation, task synchronization, sprint management, and team coordination with GitHu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/project-board/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-project-board. Synchronize AI swarms with GitHub Projects for visual task management and progress tracking. Use for project board automation, task synchronization, sprint management, and team coordination with GitHu Platforms: claude_code."} +{"id": "0808b0d4fc71458b76e36bb940ec0d437c686214e22caaa9edac5538614d5c55", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "bash-testing", "description": "This skill should be used when the user asks to \"test bash script\", \"write shell tests\", \"use shunit2\", \"use shellspec\", \"create test suite for bash\", or mentions unit testing, test frameworks, mockin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/bash-development/skills/bash-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "bash-testing. This skill should be used when the user asks to \"test bash script\", \"write shell tests\", \"use shunit2\", \"use shellspec\", \"create test suite for bash\", or mentions unit testing, test frameworks, mockin Platforms: claude_code."} +{"id": "72a3f6f3ea155198c2a7b6443ee5a9de56d1ec26d572345056718348d520936e", "repo_url": "https://github.com/nahisaho/musubi", "name": "database-administrator", "description": "Copilot agent that assists with database operations, performance tuning, backup/recovery, monitoring, and high availability configuration\n\nTrigger terms: database administration, DBA, database tuning,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/database-administrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "database-administrator. Copilot agent that assists with database operations, performance tuning, backup/recovery, monitoring, and high availability configuration\n\nTrigger terms: database administration, DBA, database tuning, Platforms: claude_code."} +{"id": "4ed5f038cb5bee3e79c1a0f31b8b4162c2d2eaeede3d68c02d5855faf1b4ec82", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "refresh-research", "description": "TRIGGER \u2014 /refresh-research invoked or bulk research update requested. Inventories ./research/ entries, detects stale entries by review date or age, runs RT-ICA pre-flight, spawns research-curator age", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/refresh-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "refresh-research. TRIGGER \u2014 /refresh-research invoked or bulk research update requested. Inventories ./research/ entries, detects stale entries by review date or age, runs RT-ICA pre-flight, spawns research-curator age Platforms: claude_code."} +{"id": "920520fd93baa471926fa0418f8700ca3f1ff53249d40a3131021a27f383a4e6", "repo_url": "https://github.com/aspiers/ai-config", "name": "plan-to-beads", "description": "Decompose an approved implementation plan into self-contained beads issues with zero guesswork. Use when breaking down a plan file into actionable beads tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/plan-to-beads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "plan-to-beads. Decompose an approved implementation plan into self-contained beads issues with zero guesswork. Use when breaking down a plan file into actionable beads tasks. Platforms: claude_code."} +{"id": "e782721bc99e24376d83034997deecebb2a48420ee80e2150854039006d32e97", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-issue-tracker", "description": "Intelligent issue management and project coordination with automated tracking, progress monitoring, and team coordination. Use for issue creation with smart templates, progress tracking with swarm coo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/issue-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-issue-tracker. Intelligent issue management and project coordination with automated tracking, progress monitoring, and team coordination. Use for issue creation with smart templates, progress tracking with swarm coo Platforms: claude_code."} +{"id": "7fb0df25e3d2c70fbf4e909e9b28ae66e1411ce2f2a1daa41dde21ce342be396", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "webapp-testing", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "webapp-testing. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8328f1d03b4d4da33dd016c1afd3821a1f40d75e485a60c7275455694cf32407", "repo_url": "https://github.com/projectnewm/newm-server", "name": "git-commit-formatter", "description": "Formats git commit messages according to Conventional Commits specification. Use this when the user asks to commit changes or write a commit message.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/projectnewm/newm-server/blob/master/.agent/skills/git-commit-formatter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:37:00Z"}, "embedding_text": "git-commit-formatter. Formats git commit messages according to Conventional Commits specification. Use this when the user asks to commit changes or write a commit message. Platforms: claude_code."} +{"id": "2817e8ce3a72032c5371816f02e695e520d279608d6eaa0a3d47a23b55168be6", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "engineering-culture", "description": "Build or refresh engineering culture and produce an Engineering Culture Operating System Pack (capability map, culture code, org\u2194architecture alignment, clock-speed/DevEx backlog, workflow contract, r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/engineering-culture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "engineering-culture. Build or refresh engineering culture and produce an Engineering Culture Operating System Pack (capability map, culture code, org\u2194architecture alignment, clock-speed/DevEx backlog, workflow contract, r Platforms: claude_code."} +{"id": "43049849e5f62b0fa11bd2bfb6ea5d05c17e613a137fb40e9eea4d5f302fa18d", "repo_url": "https://github.com/technicalpickles/pickled-claude-plugins", "name": "working-with-mcp", "description": "Use when user mentions MCPProxy/MCP tools (e.g., \"check buildkite mcp\", \"use slack mcp\") or when you need to discover or call tools through MCPProxy - immediately checks if mcp__MCPProxy__* tools are available, suggests /mcp reconnect if missing (MCPProxy MCP server not connected), explains when to use MCP tools vs HTTP API for debugging", "source": ["skillhub", "topic"], "categories": ["buildkite", "claude-code", "claude-skills", "monorepo", "workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/technicalpickles/pickled-claude-plugins/blob/main/plugins/mcpproxy/skills/working-with-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install working-with-mcp"}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T20:55:10Z"}, "embedding_text": "working-with-mcp. Use when user mentions MCPProxy/MCP tools (e.g., \"check buildkite mcp\", \"use slack mcp\") or when you need to discover or call tools through MCPProxy - immediately checks if mcp__MCPProxy__* tools are available, suggests /mcp reconnect if missing (MCPProxy MCP server not connected), explains when to use MCP tools vs HTTP API for debugging Categories: buildkite, claude-code, claude-skills, monorepo, workflow. Platforms: claude_code."} +{"id": "7b1d3f0d05548de27b6db254b1f67f33b5b7beee3e12e663eccd47b0d34d65f4", "repo_url": "https://github.com/pulumi/agent-skills", "name": "pulumi-automation-api", "description": "Best practices for using Pulumi Automation API to programmatically orchestrate infrastructure operations. Covers multi-stack orchestration, embedding Pulumi in applications, architecture choices, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pulumi/agent-skills/blob/main/pulumi/skills/pulumi-automation-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T16:30:16Z"}, "embedding_text": "pulumi-automation-api. Best practices for using Pulumi Automation API to programmatically orchestrate infrastructure operations. Covers multi-stack orchestration, embedding Pulumi in applications, architecture choices, and Platforms: claude_code."} +{"id": "610802c7a612c3734486348494feda7077cff7842154691da7d8927211dad906", "repo_url": "https://github.com/howells/arc", "name": "implement", "description": "Execute an implementation plan task-by-task with TDD and continuous quality checks.\nUse when asked to \"implement the plan\", \"execute the tasks\", \"start building from the plan\",\nor after /arc:detail ha", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/howells/arc/blob/main/plugins/arc/skills/implement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T00:43:08Z"}, "embedding_text": "implement. Execute an implementation plan task-by-task with TDD and continuous quality checks.\nUse when asked to \"implement the plan\", \"execute the tasks\", \"start building from the plan\",\nor after /arc:detail ha Platforms: claude_code."} +{"id": "48f621b86a6ce51fab7ab2922dbbb6aa1a40b96dadf79f001c6019cb20740641", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "cloudflare-kv", "description": "Cloudflare Workers KV for low-latency key-value storage at the edge", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/cloudflare-kv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "cloudflare-kv. Cloudflare Workers KV for low-latency key-value storage at the edge Platforms: claude_code."} +{"id": "18b111393762462c9b132ef20646efe169a3535e8790457b8e59657c1bb27537", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "braiins-os", "description": "Comprehensive Braiins OS skill covering API, feeds, and documentation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills/braiins-os/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "braiins-os. Comprehensive Braiins OS skill covering API, feeds, and documentation Platforms: claude_code."} +{"id": "9bb4a16e5eb86e570140e29440e3acb903c125bf1eacdba207126ce9b26ef044", "repo_url": "https://github.com/wsimmonds/claude-nextjs-skills", "name": "vercel-ai-sdk", "description": "Guide for Vercel AI SDK v5 implementation patterns including generateText, streamText, useChat hook, tool calling, embeddings, and MCP integration. Use when implementing AI chat interfaces, streaming", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wsimmonds/claude-nextjs-skills/blob/main/vercel-ai-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-24T11:05:39Z"}, "embedding_text": "vercel-ai-sdk. Guide for Vercel AI SDK v5 implementation patterns including generateText, streamText, useChat hook, tool calling, embeddings, and MCP integration. Use when implementing AI chat interfaces, streaming Platforms: claude_code."} +{"id": "11b854d33e39e3c3fa172fbec65b4a9dd66ea48a151db306e8d13f0cc0a89a4f", "repo_url": "https://github.com/plurigrid/asi", "name": "world-extractable-value", "description": "Extract value from world transitions via Markov blanket arbitrage. WEV = PoA - 1. Paradigm Multiverse Finance integration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/world-extractable-value/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "world-extractable-value. Extract value from world transitions via Markov blanket arbitrage. WEV = PoA - 1. Paradigm Multiverse Finance integration. Platforms: claude_code."} +{"id": "e25bd94f9d7fde436643585e56f4ce23ac6b415aee87ed7166bb153dab0170d9", "repo_url": "https://github.com/dceoy/speckit-agent-skills", "name": "speckit-clarify", "description": "Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dceoy/speckit-agent-skills/blob/main/skills/speckit-clarify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:26:30Z"}, "embedding_text": "speckit-clarify. Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec. Platforms: claude_code."} +{"id": "d7d938440479d8087acf72ca587cf678d2c3b1c21219889763c96f263b1c14fb", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-api-style", "description": "This skill provides comprehensive guidance for documenting SAP APIs following official SAP API Style Guide standards.\nIt should be used when creating or reviewing API documentation for REST, OData, Ja", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-api-style/skills/sap-api-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-api-style. This skill provides comprehensive guidance for documenting SAP APIs following official SAP API Style Guide standards.\nIt should be used when creating or reviewing API documentation for REST, OData, Ja Platforms: claude_code."} +{"id": "496831ad0e964ea559c10cce4aa0ec43378cb090433474480ae3e2be3e234027", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "message", "description": "Create and edit rich text message drafts for Gmail, Outlook, and WhatsApp. Writes Markdown fragments and assembles platform-specific HTML via build script. Use when writing emails, drafting emails, co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/message/skills/message/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "message. Create and edit rich text message drafts for Gmail, Outlook, and WhatsApp. Writes Markdown fragments and assembles platform-specific HTML via build script. Use when writing emails, drafting emails, co Platforms: claude_code."} +{"id": "837566a9aabb90260d526e0b1ed55f10bdd8cdd6080a441f16141b5c5cb5e696", "repo_url": "https://github.com/blueberrycongee/termcanvas", "name": "rename", "description": "This skill should be used when the user asks to \"rename this terminal\", \"set terminal title\", \"give this tab a name\", or invokes \"/termcanvas:rename\". Generates a concise title from recent conversatio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blueberrycongee/termcanvas/blob/main/skills/skills/challenge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 327, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T23:40:31Z"}, "embedding_text": "rename. This skill should be used when the user asks to \"rename this terminal\", \"set terminal title\", \"give this tab a name\", or invokes \"/termcanvas:rename\". Generates a concise title from recent conversatio Platforms: claude_code."} +{"id": "e25cca02d741c3338d82632a0ec5a14d8ef1b480cc83585837d5c529d74941e8", "repo_url": "https://github.com/allenai2014/ai-investment-advisor", "name": "review", "description": "\u5468\u671f\u6027\u590d\u76d8\u5206\u6790\u3002\u5f53\u7528\u6237\u8bf4\"\u590d\u76d8\"\u3001\"\u56de\u987e\"\u3001\"\u9a8c\u8bc1\"\u3001\"\u603b\u7ed3\"\u3001\"\u8fd9\u5468\u600e\u4e48\u6837\"\u65f6\u4f7f\u7528\u6b64skill\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/allenai2014/ai-investment-advisor/blob/main/.claude/skills/review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T07:42:41Z"}, "embedding_text": "review. \u5468\u671f\u6027\u590d\u76d8\u5206\u6790\u3002\u5f53\u7528\u6237\u8bf4\"\u590d\u76d8\"\u3001\"\u56de\u987e\"\u3001\"\u9a8c\u8bc1\"\u3001\"\u603b\u7ed3\"\u3001\"\u8fd9\u5468\u600e\u4e48\u6837\"\u65f6\u4f7f\u7528\u6b64skill\u3002 Platforms: claude_code."} +{"id": "ecffde948e7729286f3370f8918f698dbe9a42d9e5acd89472b0dc0d2b8ffd87", "repo_url": "https://github.com/rohunvora/cool-claude-skills", "name": "imsg-ingest", "description": "Primary iMessage interface. Full-featured CLI for message export, conversation management, contact resolution, and thread state. Use when user mentions \"imessage\", \"imsg\", \"text message\", \"iphone mess", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohunvora/cool-claude-skills/blob/main/skills/imsg-ingest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-09T05:28:41Z"}, "embedding_text": "imsg-ingest. Primary iMessage interface. Full-featured CLI for message export, conversation management, contact resolution, and thread state. Use when user mentions \"imessage\", \"imsg\", \"text message\", \"iphone mess Platforms: claude_code."} +{"id": "3f106bd9eb9cd89013642e87b2fb66943c02572e42e10b40945bcf9eec3155bd", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-voice", "description": "Convert voice dictation into structured specs, review comments, or brainstorming notes. Activate when user mentions \"voice\", \"dictate\", \"speak\", \"voice mode\", \"I'll dictate\", \"voice input\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-voice/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-voice. Convert voice dictation into structured specs, review comments, or brainstorming notes. Activate when user mentions \"voice\", \"dictate\", \"speak\", \"voice mode\", \"I'll dictate\", \"voice input\". Platforms: claude_code."} +{"id": "1edf55b115c08dbfc4ac2d04312148d4784e432e1eb6b399ea8c4442106e5dfa", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "self-manage", "description": "Self-management via geminiclaw_admin MCP tool. Config, skills, upgrade, sessions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/self-manage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "self-manage. Self-management via geminiclaw_admin MCP tool. Config, skills, upgrade, sessions. Platforms: claude_code."} +{"id": "6d8c99c30564e9169164bede27403e6429eca234a5767670de331d6e211971af", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "kubectl-ai", "description": "AI-powered Kubernetes operations using kubectl-ai from Google Cloud Platform. This skill should be used when managing Kubernetes clusters with natural language commands, generating manifests, troubles", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/kubectl-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "kubectl-ai. AI-powered Kubernetes operations using kubectl-ai from Google Cloud Platform. This skill should be used when managing Kubernetes clusters with natural language commands, generating manifests, troubles Platforms: claude_code."} +{"id": "feb04218e771388cc3aab9a7da702f912e762ed11652248bd84c5f8bdf03d3b1", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "paddle-webhooks", "description": "Receive and verify Paddle webhooks. Use when setting up Paddle webhook handlers, debugging signature verification, or handling subscription events like subscription.created, subscription.canceled, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/paddle-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "paddle-webhooks. Receive and verify Paddle webhooks. Use when setting up Paddle webhook handlers, debugging signature verification, or handling subscription events like subscription.created, subscription.canceled, or Platforms: claude_code."} +{"id": "52b7794a96b10fa105f9660d6f87e1cf15b6a0091dc34bf01b749f8f67d5203c", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-changelog", "description": "Auto-generate CHANGELOG.md entries from git commit history. Activate when user mentions \"changelog\", \"release notes\", \"what changed\", \"generate changelog\", \"CHANGELOG\", \"release history\".", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-changelog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-changelog. Auto-generate CHANGELOG.md entries from git commit history. Activate when user mentions \"changelog\", \"release notes\", \"what changed\", \"generate changelog\", \"CHANGELOG\", \"release history\". Platforms: claude_code."} +{"id": "f0f24abcab8303e07b42ce7806d7439e183769c3d3d240c4e7968911b96b409f", "repo_url": "https://github.com/proxiblue/claude-skills", "name": "github-analysis", "description": "Systematically analyze GitHub tickets with proper local reproduction. Automatically substitutes production URLs with local DDEV hosts, ensures database sync, downloads missing assets, and reproduces i", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/proxiblue/claude-skills/blob/main/github-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T02:03:02Z"}, "embedding_text": "github-analysis. Systematically analyze GitHub tickets with proper local reproduction. Automatically substitutes production URLs with local DDEV hosts, ensures database sync, downloads missing assets, and reproduces i Platforms: claude_code."} +{"id": "63eea4d215926c11e19b5b20645b01ce917de5d3888f41f852fd4b192a8a607f", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "code-quality-specialist", "description": "\u63d0\u4f9b\u4ee3\u7801\u5ba1\u67e5\u3001\u6027\u80fd\u5206\u6790\u3001\u91cd\u6784\u5efa\u8bae\u3001\u9519\u8bef\u8bca\u65ad\u548c\u8c03\u8bd5\u80fd\u529b\u3002\u5f53\u9700\u8981\u4ee3\u7801\u8d28\u91cf\u8bc4\u4f30\u3001\u6027\u80fd\u4f18\u5316\u3001\u6216\u95ee\u9898\u6392\u67e5\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/code-quality-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "code-quality-specialist. \u63d0\u4f9b\u4ee3\u7801\u5ba1\u67e5\u3001\u6027\u80fd\u5206\u6790\u3001\u91cd\u6784\u5efa\u8bae\u3001\u9519\u8bef\u8bca\u65ad\u548c\u8c03\u8bd5\u80fd\u529b\u3002\u5f53\u9700\u8981\u4ee3\u7801\u8d28\u91cf\u8bc4\u4f30\u3001\u6027\u80fd\u4f18\u5316\u3001\u6216\u95ee\u9898\u6392\u67e5\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "8bf4ba31d722f6ad32b34721d3205703e2043eeb547155d63f72de042b9459b5", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "app-planner", "description": "Guides you through comprehensive iOS/Swift app planning and analysis. Use for new apps (concept to architecture) or existing apps (audit current state, plan improvements, evaluate tech stack). Covers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/ios/app-planner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "app-planner. Guides you through comprehensive iOS/Swift app planning and analysis. Use for new apps (concept to architecture) or existing apps (audit current state, plan improvements, evaluate tech stack). Covers Platforms: claude_code."} +{"id": "89094da494733b8086f16828401c0adaeaf1c65d24383e9fe32f3fd95d33d0fb", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "cron", "description": "Job scheduling. Manage recurring tasks using MCP tools.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/cron/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "cron. Job scheduling. Manage recurring tasks using MCP tools. Platforms: claude_code."} +{"id": "56fd28a6c321d94de694bc3cd6c6cef052d2c26044f3ad84f949f9921dace664", "repo_url": "https://github.com/matsuni-kk/agent_template_public", "name": "post-deploy-cleanup", "description": "\u30c7\u30d7\u30ed\u30a4\u5b8c\u4e86\u5f8c\u306b\u4e0d\u8981\u306b\u306a\u3063\u305foutput/\u3084Flow/\u306e\u4e00\u6642\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3059\u308b\u3002\u300c\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u300d\u300c\u30c7\u30d7\u30ed\u30a4\u5f8c\u524a\u9664\u300d\u300coutput\u524a\u9664\u300d\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matsuni-kk/agent_template_public/blob/main/.claude/skills/post-deploy-cleanup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T07:11:55Z"}, "embedding_text": "post-deploy-cleanup. \u30c7\u30d7\u30ed\u30a4\u5b8c\u4e86\u5f8c\u306b\u4e0d\u8981\u306b\u306a\u3063\u305foutput/\u3084Flow/\u306e\u4e00\u6642\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3059\u308b\u3002\u300c\u30af\u30ea\u30fc\u30f3\u30a2\u30c3\u30d7\u300d\u300c\u30c7\u30d7\u30ed\u30a4\u5f8c\u524a\u9664\u300d\u300coutput\u524a\u9664\u300d\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002 Platforms: claude_code."} +{"id": "16cc5835d983103ae7cca576ce6885ce0932c3b435afe8218313be041439b315", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "braiins-manager", "description": "Braiins Manager - web-based dashboard for monitoring and managing Bitcoin mining operations with real-time metrics, alerts, and multi-user access control", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills/braiins-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "braiins-manager. Braiins Manager - web-based dashboard for monitoring and managing Bitcoin mining operations with real-time metrics, alerts, and multi-user access control Platforms: claude_code."} +{"id": "87a229378c01f2aa25b6e9831ecd88b0d4324db1fd7fddeab9f7f64d358970b4", "repo_url": "https://github.com/sendaifun/skills", "name": "solana-kit", "description": "Complete guide for @solana/kit - the modern, tree-shakeable, zero-dependency JavaScript SDK from Anza. Covers RPC connections, signers, transaction building with pipe, signing, sending, and account fe", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/solana-kit-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solana-kit"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "solana-kit. Complete guide for @solana/kit - the modern, tree-shakeable, zero-dependency JavaScript SDK from Anza. Covers RPC connections, signers, transaction building with pipe, signing, sending, and account fe Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "75c77fe0f12d3999c41b97351f63da5da355a1f1ebe6791d0f50080726d0177b", "repo_url": "https://github.com/astronomer/agents", "name": "airflow-plugins", "description": "Build Airflow 3.1+ plugins that embed FastAPI apps, custom UI pages, React components, middleware, macros, and operator links directly into the Airflow UI. Use this skill whenever the user wants to cr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astronomer/agents/blob/main/skills/airflow-plugins/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 391, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:24:02Z"}, "embedding_text": "airflow-plugins. Build Airflow 3.1+ plugins that embed FastAPI apps, custom UI pages, React components, middleware, macros, and operator links directly into the Airflow UI. Use this skill whenever the user wants to cr Platforms: claude_code."} +{"id": "b68fc02fd9db94b052b5aa8e3c337cd84434a6e8d671126b42f3eb1367d54a6e", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "sme-agent-protocol", "description": "Mandatory protocol for all SME (Subject Matter Expert) agents. Defines fact-finding requirements, output contracts, confidence/risk assessment, and qualification of advice.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/meta-sme-protocol/skills/sme-agent-protocol/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "sme-agent-protocol. Mandatory protocol for all SME (Subject Matter Expert) agents. Defines fact-finding requirements, output contracts, confidence/risk assessment, and qualification of advice. Platforms: claude_code."} +{"id": "08d63926fed40120ae110a3d11ebf3dba5eed6c4ab77a2b801f4d935a0c409bf", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "wallet-operations", "description": "Wallet operation skill for balance queries, transaction construction, and portfolio management", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/web3-core-operations/wallet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "wallet-operations. Wallet operation skill for balance queries, transaction construction, and portfolio management Platforms: claude_code."} +{"id": "b6e4206114077bdb9933f65ab1aa36ffdaa4c73ffba230281bb392bc428d3888", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "feature", "description": "Build a focused feature unit using the feature-builder agent", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/erne-feature/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "feature. Build a focused feature unit using the feature-builder agent Platforms: claude_code."} +{"id": "e6901eb845575a3a3df39293ff5aaf14c8dcc53eb7cdcb3178921b0c88024684", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "product-manager-toolkit", "description": "Comprehensive toolkit for product managers including RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, and go-to-market strategies. Use for feature prioritization,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/product-team/product-manager-toolkit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "product-manager-toolkit. Comprehensive toolkit for product managers including RICE prioritization, customer interview analysis, PRD templates, discovery frameworks, and go-to-market strategies. Use for feature prioritization, Platforms: claude_code."} +{"id": "082a1cdaaf5216f26f4f31ee04820ed98a401384a0ebf6cff0789597bf6d1369", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-pin", "description": "Pin and self-referential types expert covering Pin, Unpin, Future, async state machines, pinning projection, and memory stability guarantees.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-pin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-pin. Pin and self-referential types expert covering Pin, Unpin, Future, async state machines, pinning projection, and memory stability guarantees. Platforms: claude_code."} +{"id": "f6c581e05f2eb439f77f7d5b67d558276d77fa02b4fca99172e4e3966cd105c4", "repo_url": "https://github.com/promptfoo/promptfoo", "name": "app", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptfoo/promptfoo/blob/main/.agents/skills/redteam-plugin-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22449, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:12:21Z"}, "embedding_text": "app. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "bdcc58b77ad60cb85ed485ad0db80b55ca8610f01bf364533e9c5fb1708f5dae", "repo_url": "https://github.com/jjmartres/opencode", "name": "code-docs", "description": "Apply Google Style documentation standards to Python, Go, and Terraform code. Use when writing or reviewing code that needs docstrings/comments, when asked to \"document this code\", \"add docstrings\", \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jjmartres/opencode/blob/main/opencode/skills/code-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-20T10:48:45Z"}, "embedding_text": "code-docs. Apply Google Style documentation standards to Python, Go, and Terraform code. Use when writing or reviewing code that needs docstrings/comments, when asked to \"document this code\", \"add docstrings\", \" Platforms: claude_code."} +{"id": "52646db3a38c6236c9387de74c380202690cf83dfa274514db9031460297fc7d", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "tdd-workflow", "description": "Test-driven development workflow for React Native \u2014 Jest, React Native Testing Library, and Detox", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/tdd-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "tdd-workflow. Test-driven development workflow for React Native \u2014 Jest, React Native Testing Library, and Detox Platforms: claude_code."} +{"id": "f149a8d57dfb252e5114253b047a42e57d244f5d0cdfa92ff3f4bc0015785cac", "repo_url": "https://github.com/neurofoo/agent-skills", "name": "premortem", "description": "Pre-mortem analysis that imagines a plan has failed, then works backward to identify causes and preventions. Use before launches, major decisions, or risky initiatives to surface hidden risks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/neurofoo/agent-skills/blob/main/premortem/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T13:00:05Z"}, "embedding_text": "premortem. Pre-mortem analysis that imagines a plan has failed, then works backward to identify causes and preventions. Use before launches, major decisions, or risky initiatives to surface hidden risks. Platforms: claude_code."} +{"id": "99d2d27dd7668eba57414ec3b00442cd022db15cd70082025d64ae6fd5b0394b", "repo_url": "https://github.com/anthropics/financial-services-plugins", "name": "ai-readiness", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/financial-services-plugins/blob/main/plugins/vertical-plugins/private-equity/skills/ai-readiness/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32177, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T20:53:09Z"}, "embedding_text": "ai-readiness. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "31e6b2343772ada6b9a275f194da5fdab0ad79e0d9700557c605f1df4a416c56", "repo_url": "https://github.com/leonxlnx/taste-skill", "name": "brandkit", "description": "Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/leonxlnx/taste-skill/blob/main/skills/brandkit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48757, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T23:05:00Z"}, "embedding_text": "brandkit. Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark Platforms: claude_code."} +{"id": "7e80acecd6b4178cba0a67f92d12dae5cd87bae23409641da97459baee0f5d03", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "laravel-best-practices", "description": "Laravel 12 conventions and best practices. Use when creating controllers, models, migrations, validation, services, or structuring Laravel applications. Triggers on tasks involving Laravel architectur", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/laravel-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "laravel-best-practices. Laravel 12 conventions and best practices. Use when creating controllers, models, migrations, validation, services, or structuring Laravel applications. Triggers on tasks involving Laravel architectur Platforms: claude_code."} +{"id": "a3bebbc90822cdb6bd18c2723c94f317f6e245d3e048102fb4e2fc3d5a941b4c", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "spatial-developer", "description": "Expert in AR/VR, WebXR, and spatial computing for Vision Pro and web", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/spatial-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "spatial-developer. Expert in AR/VR, WebXR, and spatial computing for Vision Pro and web Platforms: claude_code."} +{"id": "af4972ca04f435241211a4e7a113373180827977396d9f14dd8e832fb6697463", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-const", "description": "Const generics and compile-time computation expert covering const fn, type-level computation, const evaluation, MaybeUninit arrays, and compile-time validation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-const/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-const. Const generics and compile-time computation expert covering const fn, type-level computation, const evaluation, MaybeUninit arrays, and compile-time validation. Platforms: claude_code."} +{"id": "c9129a012b04420c6e6e0b587ab36daa12583ab288ec55c13a097c158e9aa766", "repo_url": "https://github.com/triggerdotdev/skills", "name": "trigger-config", "description": "Configure Trigger.dev projects with trigger.config.ts. Use when setting up build extensions for Prisma, Playwright, FFmpeg, Python, or customizing deployment settings.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/triggerdotdev/skills/blob/main/trigger-config/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T11:16:43Z"}, "embedding_text": "trigger-config. Configure Trigger.dev projects with trigger.config.ts. Use when setting up build extensions for Prisma, Playwright, FFmpeg, Python, or customizing deployment settings. Platforms: claude_code."} +{"id": "544c3f3b8c63e93b082db8173867766b3429ddee332484d992ead963243f2d0d", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "running-offsites", "description": "Plan and run a high-signal team offsite/retreat and produce an Offsite Pack (offsite brief, agenda + run-of-show, prework, facilitation guide, logistics checklist, post-offsite decisions + action plan", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/running-offsites/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "running-offsites. Plan and run a high-signal team offsite/retreat and produce an Offsite Pack (offsite brief, agenda + run-of-show, prework, facilitation guide, logistics checklist, post-offsite decisions + action plan Platforms: claude_code."} +{"id": "173e2d44e3e30ce305819dbb460534ebe2e84fdc2d47b30ca42b3cc71dc775fb", "repo_url": "https://github.com/tomkrikorian/visionosagents", "name": "arkit-visionos-developer", "description": "Build and debug ARKit features for visionOS, including ARKitSession setup, authorization, data providers (world tracking, plane detection, scene reconstruction, hand tracking), anchor processing, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tomkrikorian/visionosagents/blob/main/skills/arkit-visionos-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T00:27:41Z"}, "embedding_text": "arkit-visionos-developer. Build and debug ARKit features for visionOS, including ARKitSession setup, authorization, data providers (world tracking, plane detection, scene reconstruction, hand tracking), anchor processing, and Platforms: claude_code."} +{"id": "409e2cab2d0cb45ecb3ede2e93c2983ff18699bd705844abaee1783db29e81b6", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "coding-standards", "description": "\u9002\u7528\u4e8e TypeScript\u3001JavaScript\u3001React \u548c Node.js \u5f00\u53d1\u7684\u901a\u7528\u7f16\u7801\u6807\u51c6\u3001\u6700\u4f73\u5b9e\u8df5\u548c\u6a21\u5f0f\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/.agents/skills/coding-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "coding-standards. \u9002\u7528\u4e8e TypeScript\u3001JavaScript\u3001React \u548c Node.js \u5f00\u53d1\u7684\u901a\u7528\u7f16\u7801\u6807\u51c6\u3001\u6700\u4f73\u5b9e\u8df5\u548c\u6a21\u5f0f\u3002 Platforms: claude_code."} +{"id": "bba4b2a34406bda79cfc2baa2884c01d95a152c45d0ee4f8a50291c987fa94b3", "repo_url": "https://github.com/jacbk/persona", "name": "content", "description": "Generate authentic, compelling copy for portfolios. Covers tone calibration, taglines, bios, project descriptions, and avoiding assumptions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jacbk/persona/blob/main/.agent/skills/content/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-06T05:32:30Z"}, "embedding_text": "content. Generate authentic, compelling copy for portfolios. Covers tone calibration, taglines, bios, project descriptions, and avoiding assumptions. Platforms: claude_code."} +{"id": "cc056961166e74c326a78d4a643dd124e9c27faf929aaf455313b41a00e18158", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "golang-testing", "description": "Go \u6d4b\u8bd5\u6a21\u5f0f\uff0c\u5305\u62ec\u8868\u683c\u9a71\u52a8\u6d4b\u8bd5\u3001\u5b50\u6d4b\u8bd5\u3001\u57fa\u51c6\u6d4b\u8bd5\u3001\u6a21\u7cca\u6d4b\u8bd5\u548c\u6d4b\u8bd5\u8986\u76d6\u7387\u3002\u9075\u5faa\u6d4b\u8bd5\u9a71\u52a8\u5f00\u53d1\uff08TDD\uff09\u65b9\u6cd5\u8bba\u53ca\u5730\u9053\u7684 Go \u8bed\u8a00\u5b9e\u8df5\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/golang-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "golang-testing. Go \u6d4b\u8bd5\u6a21\u5f0f\uff0c\u5305\u62ec\u8868\u683c\u9a71\u52a8\u6d4b\u8bd5\u3001\u5b50\u6d4b\u8bd5\u3001\u57fa\u51c6\u6d4b\u8bd5\u3001\u6a21\u7cca\u6d4b\u8bd5\u548c\u6d4b\u8bd5\u8986\u76d6\u7387\u3002\u9075\u5faa\u6d4b\u8bd5\u9a71\u52a8\u5f00\u53d1\uff08TDD\uff09\u65b9\u6cd5\u8bba\u53ca\u5730\u9053\u7684 Go \u8bed\u8a00\u5b9e\u8df5\u3002 Platforms: claude_code."} +{"id": "16ef91e0f1c18995d11dd6814faad09b35fdf1fde75e58a1d0085dc22f31ecab", "repo_url": "https://github.com/scottermonk/agentautoflow", "name": "testing", "description": "When creating tests and using tests for testing of application operation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scottermonk/agentautoflow/blob/main/.kilocode/skills/testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T17:55:31Z"}, "embedding_text": "testing. When creating tests and using tests for testing of application operation Platforms: claude_code."} +{"id": "2ddac4bc976f5d5cd021a6599bc04837e27ead03e4181c5e45ef05d1764c3317", "repo_url": "https://github.com/synqing/k1.hardware", "name": "fastled-color-specialist", "description": "FastLED color expert for palette generation, color math, performance optimization, and LED effect debugging across any FastLED project.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/synqing/k1.hardware/blob/feat/mcp-rag-bootstrap/.claude/skills/FastLED/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-11T02:58:37Z"}, "embedding_text": "fastled-color-specialist. FastLED color expert for palette generation, color math, performance optimization, and LED effect debugging across any FastLED project. Platforms: claude_code."} +{"id": "e6d1d9be1832975e0c76ce7e09d90eb11fb384d970e70732a017c045dd6e0ac8", "repo_url": "https://github.com/webmaxru/agent-skills", "name": "proofreader-api", "description": "Implements and debugs browser Proofreader API integrations in JavaScript or TypeScript web apps. Use when adding Proofreader availability checks, monitored model downloads, proofread flows, correction", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/webmaxru/agent-skills/blob/main/skills/proofreader-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T20:29:15Z"}, "embedding_text": "proofreader-api. Implements and debugs browser Proofreader API integrations in JavaScript or TypeScript web apps. Use when adding Proofreader availability checks, monitored model downloads, proofread flows, correction Platforms: claude_code."} +{"id": "b92b0bee7d3562dac48358cd389fb703b2d747f56b94f22c1c39c2b92ab19ce0", "repo_url": "https://github.com/martinemde/skillet", "name": "test-skill", "description": "A simple test skill that creates a greeting file", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinemde/skillet/blob/main/.claude/skills/test-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T05:19:06Z"}, "embedding_text": "test-skill. A simple test skill that creates a greeting file Platforms: claude_code."} +{"id": "d7c6956bd693ae65f60d00bbab4d97bf3c41cd7f7f3fb1efac03f4c45352cc39", "repo_url": "https://github.com/camoa/claude-skills", "name": "visual-content", "description": "Use when creating branded presentations or carousels. Generates museum-quality visual output from canvas philosophy, enforcing style constraints. Outputs PDF first, then converts to PPTX for editabili", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/brand-content-design/skills/visual-content/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "visual-content. Use when creating branded presentations or carousels. Generates museum-quality visual output from canvas philosophy, enforcing style constraints. Outputs PDF first, then converts to PPTX for editabili Platforms: claude_code."} +{"id": "ae6630eefef11be48fbef76e7dabc94e34634036f7ea120842ed0fd452bee356", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "tagline-creation-strategies", "description": "Provides tagline and slogan creation frameworks including Marty Neumeier's Truelines vs Taglines, David Ogilvy's headline principles, Eugene Schwartz's desire channeling, the Distillation Method, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/tagline-creation-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "tagline-creation-strategies. Provides tagline and slogan creation frameworks including Marty Neumeier's Truelines vs Taglines, David Ogilvy's headline principles, Eugene Schwartz's desire channeling, the Distillation Method, and Platforms: claude_code."} +{"id": "9fffa8bf5b0c47c3a4b72ab33fce029e719b2ed93083c7d926ac57707b9aaab2", "repo_url": "https://github.com/plurigrid/asi", "name": "depth-search", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/depth-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "depth-search. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1f08a207ff421938d153eb9538e37fecaeefdf4a1b6ceacd2dc706ad08fd3615", "repo_url": "https://github.com/heyvhuang/ship-faster", "name": "stripe", "description": "Billing and payment operations for Stripe: customers, products, prices, invoices, payment links, subscriptions, refunds, disputes, balance. Triggers: create customer, create product, create invoice, g", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heyvhuang/ship-faster/blob/main/legacy/skills/mcp-stripe/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 336, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-10T19:55:04Z"}, "embedding_text": "stripe. Billing and payment operations for Stripe: customers, products, prices, invoices, payment links, subscriptions, refunds, disputes, balance. Triggers: create customer, create product, create invoice, g Platforms: claude_code."} +{"id": "209029843fc782524d65f4c0b84e131c7822ed2ddcab3a60aa6b2364cb52f037", "repo_url": "https://github.com/charleshoskinson/danceswithclaws", "name": "sokosumi", "description": "Hire AI agents from the Sokosumi marketplace to perform tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleshoskinson/danceswithclaws/blob/custom/skills/sokosumi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T12:31:45Z"}, "embedding_text": "sokosumi. Hire AI agents from the Sokosumi marketplace to perform tasks. Platforms: claude_code."} +{"id": "a1d59a3e08a39e2478b2f8798c2b96701e1a1ff67bee9233d48985fe14bdb34d", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "file-organizer", "description": "Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/file-organizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "file-organizer. Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and Platforms: claude_code."} +{"id": "3f75587d2fd73f4dac7905b4e1b04dbb316019810635a35970750bff82c69d58", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-api-contract", "description": "Design complete API contracts covering endpoints, auth, rate limiting, error handling, retries, circuit breaker and idempotency. Activate when user mentions \"api contract\", \"api design\", \"endpoint\", \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-api-contract/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-api-contract. Design complete API contracts covering endpoints, auth, rate limiting, error handling, retries, circuit breaker and idempotency. Activate when user mentions \"api contract\", \"api design\", \"endpoint\", \" Platforms: claude_code."} +{"id": "06b82ffa4959b462ec52324c593258e627e84b24d5fb518297773c99d101527b", "repo_url": "https://github.com/team-attention/hoyeon", "name": "tech-decision", "description": "This skill should be used when the user asks about \"technical decision\", \"what to use\", \"A vs B\", \"comparison analysis\", \"library selection\", \"architecture decision\", \"which one to use\", \"tradeoffs\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/tech-decision/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "tech-decision. This skill should be used when the user asks about \"technical decision\", \"what to use\", \"A vs B\", \"comparison analysis\", \"library selection\", \"architecture decision\", \"which one to use\", \"tradeoffs\", Platforms: claude_code."} +{"id": "fa80628b62bcc1cac526e537b5c1d6b524d2fe26f69408daa7f588001235dbce", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "marketing-specialist", "description": "\u63d0\u4f9b\u5185\u5bb9\u8425\u9500\u3001\u589e\u957f\u7b56\u7565\u3001\u793e\u4ea4\u5a92\u4f53\u7ba1\u7406\u548c\u5e94\u7528\u5546\u5e97\u4f18\u5316\u80fd\u529b\u3002\u5f53\u9700\u8981\u521b\u5efa\u8425\u9500\u5185\u5bb9\u3001\u5236\u5b9a\u589e\u957f\u7b56\u7565\u6216\u7ba1\u7406\u793e\u4ea4\u5a92\u4f53\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/marketing-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "marketing-specialist. \u63d0\u4f9b\u5185\u5bb9\u8425\u9500\u3001\u589e\u957f\u7b56\u7565\u3001\u793e\u4ea4\u5a92\u4f53\u7ba1\u7406\u548c\u5e94\u7528\u5546\u5e97\u4f18\u5316\u80fd\u529b\u3002\u5f53\u9700\u8981\u521b\u5efa\u8425\u9500\u5185\u5bb9\u3001\u5236\u5b9a\u589e\u957f\u7b56\u7565\u6216\u7ba1\u7406\u793e\u4ea4\u5a92\u4f53\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "3c551fdd26762afa9ba3d91825572774d8a961e27e9962afd8e8e97ade0f5c3c", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "dasel-reference", "description": "Use when querying, modifying, or converting JSON, YAML, TOML, XML, CSV, HCL, or INI with dasel v3. Complete reference for selectors, functions, conditionals, variables, spread operator, type casting,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/dasel/skills/dasel-reference/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "dasel-reference. Use when querying, modifying, or converting JSON, YAML, TOML, XML, CSV, HCL, or INI with dasel v3. Complete reference for selectors, functions, conditionals, variables, spread operator, type casting, Platforms: claude_code."} +{"id": "f0f815899ac68b6130609fcda2c07ce8c0a30ff39432a85874faeefd16b07995", "repo_url": "https://github.com/einverne/dotfiles", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/einverne/dotfiles/blob/master/claude/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 119, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T02:56:08Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "bb30cdcb818dd810d44025fcb809d54540411e1b9f860f56fc7ce4de3cc714ee", "repo_url": "https://github.com/lianggs8/auto-survey-agent", "name": "arxiv", "description": "\u4f7f\u7528 arXiv \u8fdb\u884c\u8bba\u6587\u68c0\u7d22\u4e0e\u83b7\u53d6\uff1a\u6309\u5173\u952e\u8bcd\u641c\u7d22\u3001\u6309 arXiv ID \u83b7\u53d6\u6458\u8981\u3001\u4e0b\u8f7d\u8bba\u6587 PDF\u3002\u9002\u7528\u4e8e\u505a\u6587\u732e\u8c03\u7814\u65f6\u5feb\u901f\u5b9a\u4f4d\u8bba\u6587\u3001\u63d0\u53d6\u6458\u8981\u3001\u6279\u91cf\u4e0b\u8f7d\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lianggs8/auto-survey-agent/blob/master/skills/arxiv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T04:29:52Z"}, "embedding_text": "arxiv. \u4f7f\u7528 arXiv \u8fdb\u884c\u8bba\u6587\u68c0\u7d22\u4e0e\u83b7\u53d6\uff1a\u6309\u5173\u952e\u8bcd\u641c\u7d22\u3001\u6309 arXiv ID \u83b7\u53d6\u6458\u8981\u3001\u4e0b\u8f7d\u8bba\u6587 PDF\u3002\u9002\u7528\u4e8e\u505a\u6587\u732e\u8c03\u7814\u65f6\u5feb\u901f\u5b9a\u4f4d\u8bba\u6587\u3001\u63d0\u53d6\u6458\u8981\u3001\u6279\u91cf\u4e0b\u8f7d\u3002 Platforms: claude_code."} +{"id": "f8ed280424db2bfa6a557af5234405947c28f95b67623871305b38ce36e76200", "repo_url": "https://github.com/bodangren/git-workflow", "name": "project-init", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bodangren/git-workflow/blob/main/.claude/skills/project-init/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T01:42:50Z"}, "embedding_text": "project-init. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "df3300e477d870fe7c1132207ab0cde83ead4d0f0750734e9cfd9bdf8d42cfce", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "talos-os-expert", "description": "Elite Talos Linux expert specializing in immutable Kubernetes OS, secure cluster deployment, machine configurations, talosctl CLI operations, upgrades, and production-grade security hardening. Expert", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/talos-os-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "talos-os-expert. Elite Talos Linux expert specializing in immutable Kubernetes OS, secure cluster deployment, machine configurations, talosctl CLI operations, upgrades, and production-grade security hardening. Expert Platforms: claude_code."} +{"id": "6465105df411765033823869120f7e108d57817ba1d6c2eea79c10b525d43e07", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "readme-badger", "description": "Design and select shields.io badges for README files. Use when writing or updating READMEs, choosing badge layouts, selecting badge styles, or adding project health indicators. Covers shields.io URL p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/readme-badger/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "readme-badger. Design and select shields.io badges for README files. Use when writing or updating READMEs, choosing badge layouts, selecting badge styles, or adding project health indicators. Covers shields.io URL p Platforms: claude_code."} +{"id": "e3c640cb3c8a54cc9b11726e668fed277cee4a4269c34316ba308addaf2688ce", "repo_url": "https://github.com/crafter-station/skills", "name": "intent-layer", "description": "Set up hierarchical Intent Layer (AGENTS.md files) for codebases. Use when initializing a new project, adding context infrastructure to an existing repo, user asks to set up AGENTS.md, add intent laye", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/crafter-station/skills/blob/main/context-engineering/intent-layer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 87, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T23:23:13Z"}, "embedding_text": "intent-layer. Set up hierarchical Intent Layer (AGENTS.md files) for codebases. Use when initializing a new project, adding context infrastructure to an existing repo, user asks to set up AGENTS.md, add intent laye Platforms: claude_code."} +{"id": "2a43a27886b34f925700cc5dd6a9f736e17079a8f7f5ac5fd0d79b583eeca4cd", "repo_url": "https://github.com/scottermonk/agentautoflow", "name": "useful-discoveries-use", "description": "For (1) finding solutions, patterns, and workarounds to issues when encountering unexpected behavior, or when stuck after trying initial approaches; (2) saving solutions, patterns, and workarounds dis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scottermonk/agentautoflow/blob/main/.kilocode/skills/api-use-external/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T17:55:31Z"}, "embedding_text": "useful-discoveries-use. For (1) finding solutions, patterns, and workarounds to issues when encountering unexpected behavior, or when stuck after trying initial approaches; (2) saving solutions, patterns, and workarounds dis Platforms: claude_code."} +{"id": "1e8045f29a04146a640066771e965f7098754319eac928da9b20b9fab9bc6b2e", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "clang-format", "description": "Configure clang-format code formatting. Use when: user mentions clang-format or .clang-format, analyzing code style/patterns, creating/modifying formatting config, troubleshooting formatting, brace st", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/clang-format/skills/clang-format/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "clang-format. Configure clang-format code formatting. Use when: user mentions clang-format or .clang-format, analyzing code style/patterns, creating/modifying formatting config, troubleshooting formatting, brace st Platforms: claude_code."} +{"id": "3581002fa27a6162ed9bd5c04b4a3e2249cc5d151eb269e9ef0cf85c5f7c09aa", "repo_url": "https://github.com/dingtalk-real-ai/dingtalk-workspace-cli", "name": "dws", "description": "\u7ba1\u7406\u9489\u9489\u4ea7\u54c1\u80fd\u529b(AI\u8868\u683c/\u65e5\u5386/\u901a\u8baf\u5f55/\u7fa4\u804a\u4e0e\u673a\u5668\u4eba/\u5f85\u529e/\u5ba1\u6279/\u8003\u52e4/\u65e5\u5fd7/DING\u6d88\u606f/\u5de5\u4f5c\u53f0/\u5f00\u653e\u5e73\u53f0\u6587\u6863\u7b49)\u3002\u5f53\u7528\u6237\u9700\u8981\u64cd\u4f5c\u8868\u683c\u6570\u636e\u3001\u7ba1\u7406\u65e5\u7a0b\u4f1a\u8bae\u3001\u67e5\u8be2\u901a\u8baf\u5f55\u3001\u7ba1\u7406\u7fa4\u804a\u3001\u673a\u5668\u4eba\u53d1\u6d88\u606f\u3001\u521b\u5efa\u5f85\u529e\u3001\u63d0\u4ea4\u5ba1\u6279\u3001\u67e5\u770b\u8003\u52e4\u3001\u63d0\u4ea4\u65e5\u62a5\u5468\u62a5\uff08\u9489\u9489\u65e5\u5fd7\u6a21\u7248\uff09\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dingtalk-real-ai/dingtalk-workspace-cli/blob/main/skills/mono/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2246, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T06:11:34Z"}, "embedding_text": "dws. \u7ba1\u7406\u9489\u9489\u4ea7\u54c1\u80fd\u529b(AI\u8868\u683c/\u65e5\u5386/\u901a\u8baf\u5f55/\u7fa4\u804a\u4e0e\u673a\u5668\u4eba/\u5f85\u529e/\u5ba1\u6279/\u8003\u52e4/\u65e5\u5fd7/DING\u6d88\u606f/\u5de5\u4f5c\u53f0/\u5f00\u653e\u5e73\u53f0\u6587\u6863\u7b49)\u3002\u5f53\u7528\u6237\u9700\u8981\u64cd\u4f5c\u8868\u683c\u6570\u636e\u3001\u7ba1\u7406\u65e5\u7a0b\u4f1a\u8bae\u3001\u67e5\u8be2\u901a\u8baf\u5f55\u3001\u7ba1\u7406\u7fa4\u804a\u3001\u673a\u5668\u4eba\u53d1\u6d88\u606f\u3001\u521b\u5efa\u5f85\u529e\u3001\u63d0\u4ea4\u5ba1\u6279\u3001\u67e5\u770b\u8003\u52e4\u3001\u63d0\u4ea4\u65e5\u62a5\u5468\u62a5\uff08\u9489\u9489\u65e5\u5fd7\u6a21\u7248\uff09\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "a0ed3a469ddcda81a80461dc509a99ddb10b9f3aa5068cd16b56995d8fdff08e", "repo_url": "https://github.com/scottermonk/agentautoflow", "name": "coding-markdown", "description": "When markdown being written or edited", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scottermonk/agentautoflow/blob/main/.kilocode/skills/coding-markdown/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T17:55:31Z"}, "embedding_text": "coding-markdown. When markdown being written or edited Platforms: claude_code."} +{"id": "3f18789531a7395958abccaf066f8209fca28ee67fac0cdbc72caeba5e85f570", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "perl-validate", "description": "This skill should be used when the user asks to \"validate Perl script\", \"check Perl syntax\", \"verify Perl code\", \"/perl-validate\", or mentions script validation, compile check, security review, or bes", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/perl-development/skills/perl-validate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "perl-validate. This skill should be used when the user asks to \"validate Perl script\", \"check Perl syntax\", \"verify Perl code\", \"/perl-validate\", or mentions script validation, compile check, security review, or bes Platforms: claude_code."} +{"id": "97541becdec8677c249dffec2d65792d7351e5e79cd299f0f284cb96394d1f34", "repo_url": "https://github.com/cocoindex-io/cocoindex-claude", "name": "cocoindex", "description": "Comprehensive toolkit for developing with the CocoIndex library. Use when users need to create data transformation pipelines (flows), write custom functions, or operate flows via CLI or API. Covers building ETL workflows for AI data processing, including embedding documents into vector databases, building knowledge graphs, creating search indexes, or processing data streams with incremental updates.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "cocoindex", "data", "etl"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cocoindex-io/cocoindex-claude/blob/main/cocoindex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cocoindex"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T01:34:26Z"}, "embedding_text": "cocoindex. Comprehensive toolkit for developing with the CocoIndex library. Use when users need to create data transformation pipelines (flows), write custom functions, or operate flows via CLI or API. Covers building ETL workflows for AI data processing, including embedding documents into vector databases, building knowledge graphs, creating search indexes, or processing data streams with incremental updates. Categories: claude-code, claude-skills, cocoindex, data, etl. Platforms: claude_code."} +{"id": "fea2943b520082bfe100a73a7c38bb22eda1626079c4f76fc84f84455022b380", "repo_url": "https://github.com/sendaifun/skills", "name": "vulnhunter", "description": "Security vulnerability detection and variant analysis skill. Use when hunting for dangerous APIs, footgun patterns, error-prone configurations, and vulnerability variants across codebases. Combines sharp edges detection with variant hunting methodology.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/vulnhunter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vulnhunter"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "vulnhunter. Security vulnerability detection and variant analysis skill. Use when hunting for dangerous APIs, footgun patterns, error-prone configurations, and vulnerability variants across codebases. Combines sharp edges detection with variant hunting methodology. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "6b17854a8767179742ba19d32a2e4590dec3aa344bb75d1fb37bfabde4f6020f", "repo_url": "https://github.com/scientiacapital/skills", "name": "git-workflow", "description": "Git workflow patterns - conventional commits, branch naming, PR templates, merge strategies. Use when: commit, PR, branch naming, git workflow, conventional commits, semantic versioning.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/git-workflow-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "git-workflow. Git workflow patterns - conventional commits, branch naming, PR templates, merge strategies. Use when: commit, PR, branch naming, git workflow, conventional commits, semantic versioning. Platforms: claude_code."} +{"id": "85567a5778622f5904dc397402c580484e20b359d4d08bc84ced444b8512d2b4", "repo_url": "https://github.com/amkessler/nicar2026_skills_in_codex_claude", "name": "image-rotator", "description": "This skill should be used when users need to rotate images by 90 degrees. It handles image rotation tasks for common formats (PNG, JPG, JPEG, GIF, BMP, TIFF) using a reliable Python script that preser", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/amkessler/nicar2026_skills_in_codex_claude/blob/main/.claude/skills/image-rotator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T09:21:02Z"}, "embedding_text": "image-rotator. This skill should be used when users need to rotate images by 90 degrees. It handles image rotation tasks for common formats (PNG, JPG, JPEG, GIF, BMP, TIFF) using a reliable Python script that preser Platforms: claude_code."} +{"id": "5f9a1d8dc1beea5bf3262547f524acb29cdeb5c786e2e2b9eada0b32b2085100", "repo_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin", "name": "web-browser-automation", "description": "Comprehensive macOS browser automation using PyXA, Playwright, Selenium, and Puppeteer for desktop web testing, scraping, and workflow automation. Use when asked to \"automate web browsers\", \"Selenium", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/spillwavesolutions/automating-mac-apps-plugin/blob/main/plugins/automating-mac-apps-plugin/skills/web-browser-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T23:41:11Z"}, "embedding_text": "web-browser-automation. Comprehensive macOS browser automation using PyXA, Playwright, Selenium, and Puppeteer for desktop web testing, scraping, and workflow automation. Use when asked to \"automate web browsers\", \"Selenium Platforms: claude_code."} +{"id": "766d0e8888726b6963906b8a0b5b4cc403f0a2eef2fb5ee424b7d85c74476a70", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "appsec-expert", "description": "Elite Application Security engineer specializing in secure SDLC, OWASP Top 10 2025, SAST/DAST/SCA integration, threat modeling (STRIDE), and vulnerability remediation. Expert in security testing, cryp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/appsec-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "appsec-expert. Elite Application Security engineer specializing in secure SDLC, OWASP Top 10 2025, SAST/DAST/SCA integration, threat modeling (STRIDE), and vulnerability remediation. Expert in security testing, cryp Platforms: claude_code."} +{"id": "93ad2873f94988f05597f61e097a6143c57d7ea5e1b2ef76da0f76eb383389e5", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "browser-automation", "description": "Expert in browser automation using Chrome DevTools Protocol (CDP) and WebDriver. Specializes in secure web automation, testing, and scraping with proper credential handling, domain restrictions, and a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/browser-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "browser-automation. Expert in browser automation using Chrome DevTools Protocol (CDP) and WebDriver. Specializes in secure web automation, testing, and scraping with proper credential handling, domain restrictions, and a Platforms: claude_code."} +{"id": "6eaef14216e24225232bfb21986ed7fb56835c7e5b12501294c3eb47d843de03", "repo_url": "https://github.com/apache/shardingsphere", "name": "gen-ut", "description": "Generate standard unit tests for one or more target classes in Apache ShardingSphere; by default, target 100% class/line/branch coverage and pass quality gates; perform explicit merge analysis, suitab", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/apache/shardingsphere/blob/master/.codex/skills/gen-ut/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20737, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:56:09Z"}, "embedding_text": "gen-ut. Generate standard unit tests for one or more target classes in Apache ShardingSphere; by default, target 100% class/line/branch coverage and pass quality gates; perform explicit merge analysis, suitab Platforms: claude_code."} +{"id": "e11136394ea52d01dd973d62ddb521e008d3a9567b80473888a916ffb038c19e", "repo_url": "https://github.com/rafaelgorski/problem-based-srs", "name": "problem-based-srs", "description": "Complete Problem-Based Software Requirements Specification methodology following Gorski & Stadzisz research. Use when you need to perform requirements engineering from business problems to functional", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rafaelgorski/problem-based-srs/blob/main/skills/problem-based-srs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T19:14:56Z"}, "embedding_text": "problem-based-srs. Complete Problem-Based Software Requirements Specification methodology following Gorski & Stadzisz research. Use when you need to perform requirements engineering from business problems to functional Platforms: claude_code."} +{"id": "1ffb3cdde7fde2bc8374f7062451b8e7f19b15bbc00f77238235df0b8c19856f", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "iterate-plan", "description": "Update existing implementation plans through user feedback with thorough research and validation. This skill should be used when iterating on implementation plans, updating plans based on new requirem", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/iterate-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "iterate-plan. Update existing implementation plans through user feedback with thorough research and validation. This skill should be used when iterating on implementation plans, updating plans based on new requirem Platforms: claude_code."} +{"id": "a79a9ca6d7ab2cb071ee9caadbcaba8b88301c88ad4a7881a56cf84b436e9b76", "repo_url": "https://github.com/plurigrid/asi", "name": "reflow", "description": "Information Reflow Skill (ERGODIC 0)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/derangement-reflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "reflow. Information Reflow Skill (ERGODIC 0) Platforms: claude_code."} +{"id": "891801d4e5ccd257749709011184ba97784d58651916e2fec6d39595bb4ec2b8", "repo_url": "https://github.com/basher83/lunar-claude", "name": "ansible-idempotency", "description": "This skill should be used when writing idempotent Ansible tasks, using command or shell modules, implementing changed_when and failed_when directives, creating check-before-create patterns, or trouble", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/infrastructure/ansible-workflows/skills/ansible-idempotency/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "ansible-idempotency. This skill should be used when writing idempotent Ansible tasks, using command or shell modules, implementing changed_when and failed_when directives, creating check-before-create patterns, or trouble Platforms: claude_code."} +{"id": "b03195dae2f7d459081ab8b7bb5db68836b189fda5554755dd4e3e82ac89cb89", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-release-manager", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/release-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-release-manager. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "86ac2cfd1ed8797f443d5717697155c3e611bea93881ac16c3405453a7df2942", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "zoho_books-automation", "description": "Automate Zoho Books accounting workflows including invoice creation, bill management, contact lookup, payment tracking, and multi-organization support through natural language commands", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/zoho-books-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zoho_books-automation"}, "quality": {"stars": 65470, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-22T03:17:49Z"}, "embedding_text": "zoho_books-automation. Automate Zoho Books accounting workflows including invoice creation, bill management, contact lookup, payment tracking, and multi-organization support through natural language commands Platforms: claude_code."} +{"id": "afdfff94cd4b3e6fe09462e7735a73a608199444343529c7bd836e44ec7735ee", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "openspec-workflow", "description": "Use OpenSpec for specification-driven development. Apply when planning features, implementing changes, or managing project deliverables.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/openspec-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openspec-workflow"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "openspec-workflow. Use OpenSpec for specification-driven development. Apply when planning features, implementing changes, or managing project deliverables. Platforms: claude_code."} +{"id": "9b3f774483adc8b852876a0419002b5a0bfdf6740cb454d77635ece05fa08fa4", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "xlsx", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/data/documents/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "xlsx. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8ef6ad94694358aca8f5fc8f39ac314ac2af060396fb120c5dc38cb892240fca", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-shell", "description": "This skill provides Shell/Bash coding standards and is automatically loaded for shell projects. It includes defensive scripting patterns, best practices, and recommended tooling.", "source": ["skillhub", "topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-shell/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-shell"}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T09:20:28Z"}, "embedding_text": "standards-shell. This skill provides Shell/Bash coding standards and is automatically loaded for shell projects. It includes defensive scripting patterns, best practices, and recommended tooling. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} +{"id": "0e5c7c87a6a535441947f50f0c76d34dcd4bd10df0e155b4334bdc3840310c4c", "repo_url": "https://github.com/chongdashu/phaserjs-tinyswords", "name": "phaser-gamedev", "description": "Build 2D browser games with Phaser 3 (JS/TS): scenes (Boot/Menu/Game/UI), sprites/animations, input, Arcade/Matter physics, tilemaps (Tiled), asset loading, and performance patterns. Use for prompts l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/chongdashu/phaserjs-tinyswords/blob/main/.claude/skills/phaser-gamedev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T22:40:47Z"}, "embedding_text": "phaser-gamedev. Build 2D browser games with Phaser 3 (JS/TS): scenes (Boot/Menu/Game/UI), sprites/animations, input, Arcade/Matter physics, tilemaps (Tiled), asset loading, and performance patterns. Use for prompts l Platforms: claude_code."} +{"id": "c7c80b3e1b9f66a993a1b6304b49c035d840c6af9568c5e8b2346580494f794b", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-modes", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/modes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-modes. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e4a3eacc07fecb1ca511f64b22a4d424b84122b29e68bc489da822868f00e59b", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "internal-comms", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/business/communication/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "internal-comms. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "336af6bf8de1d3a261209ae3964209b3b7b39b11d2e2c0dba85d3172c1145142", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "context-analyzer", "description": "Project context analysis engine that scans project structure and surfaces relevant information for documentation creation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/legacy/claude-code-plugin/project-mngt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "context-analyzer. Project context analysis engine that scans project structure and surfaces relevant information for documentation creation Platforms: claude_code."} +{"id": "fbb4ce3f80c0ec4b372d1b79b963d349bd53cb5717fd2fa7d67daf42d69bc8a3", "repo_url": "https://github.com/plurigrid/asi", "name": "acsets-hatchery", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/acsets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "acsets-hatchery. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "543c1a27701fd14b5e9efb8b2b0fec738776869f5043731aacfb6787566cf515", "repo_url": "https://github.com/plurigrid/asi", "name": "algebraic-rewriting", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/algebraic-rewriting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "algebraic-rewriting. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "739995135197f288b966fb61f528eb8f6a76da9cdfec9e665cea47a7890b2427", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "helm-charts", "description": "Creates and manages Helm charts for Kubernetes deployments. This skill should be used when packaging applications for Kubernetes using Helm, creating Chart.yaml, values.yaml, and templates. It covers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/helm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "helm-charts. Creates and manages Helm charts for Kubernetes deployments. This skill should be used when packaging applications for Kubernetes using Helm, creating Chart.yaml, values.yaml, and templates. It covers Platforms: claude_code."} +{"id": "09b4da3e0b86415139a632b0a33409f3f6cbb29fef959b52c68b7ec1c602908d", "repo_url": "https://github.com/specstoryai/agent-skills", "name": "specstory-yak", "description": "Analyze your SpecStory AI coding sessions in .specstory/history for yak shaving - when your initial goal got derailed into rabbit holes. Run when user says \"analyze my yak shaving\", \"check for rabbit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/specstoryai/agent-skills/blob/main/skills/specstory-yak/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T01:24:32Z"}, "embedding_text": "specstory-yak. Analyze your SpecStory AI coding sessions in .specstory/history for yak shaving - when your initial goal got derailed into rabbit holes. Run when user says \"analyze my yak shaving\", \"check for rabbit Platforms: claude_code."} +{"id": "8c5d09949a3abfd0b894e6de15b31b136db452f7443c66f04691f7db4f1473d6", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "spoonos-deployment-guide", "description": "Deploy SpoonOS agents to production environments. Use when containerizing agents with Docker, deploying to cloud platforms (AWS, GCP, Vercel), or setting up self-hosted infrastructure.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/spoonos-skills/deployment-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "spoonos-deployment-guide. Deploy SpoonOS agents to production environments. Use when containerizing agents with Docker, deploying to cloud platforms (AWS, GCP, Vercel), or setting up self-hosted infrastructure. Platforms: claude_code."} +{"id": "c741cc4d2ca0e1e23098f9e2be48783944477e7a05fa0456ede39e283f440e93", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "edge-signal-aggregator", "description": "Aggregate and rank signals from multiple edge-finding skills (edge-candidate-agent, theme-detector, sector-analyst, institutional-flow-tracker) into a prioritized conviction dashboard with weighted sc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/edge-signal-aggregator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "edge-signal-aggregator. Aggregate and rank signals from multiple edge-finding skills (edge-candidate-agent, theme-detector, sector-analyst, institutional-flow-tracker) into a prioritized conviction dashboard with weighted sc Platforms: claude_code."} +{"id": "d315860401a8908d5d621cf60d549f925ab79249c439b5bda9cc966c2adfc70d", "repo_url": "https://github.com/futuresearch/everyrow-sdk", "name": "everyrow-sdk", "description": "Helps write Python code using the everyrow SDK for AI-powered data processing - transforming, deduping, merging, ranking, and screening dataframes with natural language instructions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/futuresearch/everyrow-sdk/blob/main/.claude/skills/bump-sdk-version/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 43, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T11:18:46Z"}, "embedding_text": "everyrow-sdk. Helps write Python code using the everyrow SDK for AI-powered data processing - transforming, deduping, merging, ranking, and screening dataframes with natural language instructions Platforms: claude_code."} +{"id": "b20450a5615a60f4c91a3a7f4e456698bece5a02cf1ab32b484db90c53e4a1cf", "repo_url": "https://github.com/plurigrid/asi", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design Platforms: claude_code."} +{"id": "7aa7b16dda68f641368b345d2635c6a71d1e19b49dd7bcc6a1922bf538238f2d", "repo_url": "https://github.com/itechmeat/llm-code", "name": "vite", "description": "Vite next-gen frontend tooling: dev server, HMR, build, config, plugins, Environment API, Rolldown. Keywords: vite.config, bundler.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/vite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "vite. Vite next-gen frontend tooling: dev server, HMR, build, config, plugins, Environment API, Rolldown. Keywords: vite.config, bundler. Platforms: claude_code."} +{"id": "e6384b079f5a946a50d18b89c9ee9662583de3ccde8f567c9ee093c7041a9db6", "repo_url": "https://github.com/jeffh/claude-plugins", "name": "spec-metadata", "description": "Generates metadata for research documents and specifications including date/time, git commit, branch, and repository info. Use when creating research documents, handoffs, or any documentation that nee", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffh/claude-plugins/blob/main/humanlayer/skills/spec-metadata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:05:55Z"}, "embedding_text": "spec-metadata. Generates metadata for research documents and specifications including date/time, git commit, branch, and repository info. Use when creating research documents, handoffs, or any documentation that nee Platforms: claude_code."} +{"id": "efde65a9b88ff037ea1ec4e364a92e20e43d2e24dadd121b2df86f8c3eff8e09", "repo_url": "https://github.com/sendaifun/skills", "name": "meteora", "description": "Complete Meteora DeFi SDK suite for building liquidity pools, AMMs, bonding curves, vaults, token launches, and zap operations on Solana. Use when integrating DLMM, DAMM v2, DAMM v1, Dynamic Bonding Curves, Alpha Vaults, Zap, or Stake-for-Fee functionality.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/meteora/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install meteora"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "meteora. Complete Meteora DeFi SDK suite for building liquidity pools, AMMs, bonding curves, vaults, token launches, and zap operations on Solana. Use when integrating DLMM, DAMM v2, DAMM v1, Dynamic Bonding Curves, Alpha Vaults, Zap, or Stake-for-Fee functionality. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "987d542fcfcb986ecda73d6e1b8552483527cc4eddb063ce78bff56ca436dcdb", "repo_url": "https://github.com/camoa/claude-skills", "name": "code-quality-audit", "description": "Use when auditing code quality, security vulnerabilities, checking coverage, finding SOLID/DRY violations, running TDD - supports both Drupal (PHPStan, PHPMD, PHPCPD, Psalm, Semgrep, Trivy, Gitleaks v", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/code-quality-tools/skills/code-quality-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "code-quality-audit. Use when auditing code quality, security vulnerabilities, checking coverage, finding SOLID/DRY violations, running TDD - supports both Drupal (PHPStan, PHPMD, PHPCPD, Psalm, Semgrep, Trivy, Gitleaks v Platforms: claude_code."} +{"id": "0dded53ac84a54e5b335f23163d0900217a8a3d5db2be0bda87df8d03cfadc3c", "repo_url": "https://github.com/bborn/taskyou", "name": "taskyou", "description": "Install and manage TaskYou \u2014 a personal task management system with Kanban board, background AI execution, and git worktree isolation. Guides installation if not present, then orchestrates tasks via C", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bborn/taskyou/blob/main/skills/taskyou/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:50:11Z"}, "embedding_text": "taskyou. Install and manage TaskYou \u2014 a personal task management system with Kanban board, background AI execution, and git worktree isolation. Guides installation if not present, then orchestrates tasks via C Platforms: claude_code."} +{"id": "6072f3051f6c8fce845f58e177abf0274613f91105fa35819936e9f1112bfca6", "repo_url": "https://github.com/molt-bot/clawdbot", "name": "discord", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/molt-bot/clawdbot/blob/main/.agents/skills/discord-clawd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:18:40Z"}, "embedding_text": "discord. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9670f9baa8a372575eae6e4d324ac93544955bd22230bf84488de03a3836907c", "repo_url": "https://github.com/nahisaho/musubi", "name": "ui-ux-designer", "description": "Copilot agent that assists with user interface and experience design, wireframes, prototypes, design systems, and usability testing\n\nTrigger terms: UI design, UX design, wireframe, mockup, prototype,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/ui-ux-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "ui-ux-designer. Copilot agent that assists with user interface and experience design, wireframes, prototypes, design systems, and usability testing\n\nTrigger terms: UI design, UX design, wireframe, mockup, prototype, Platforms: claude_code."} +{"id": "a26702c1e307000eee8e2a69ed7b893c403fc246a263241f2e713e6436d18bc4", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "elevator-pitch-techniques", "description": "Provides elevator pitch and verbal brand communication frameworks including Donald Miller's StoryBrand (SB7), Nancy Duarte's Sparkline, Chris Westfall's CLARITY, Andy Raskin's Strategic Narrative, Sim", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/elevator-pitch-techniques/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "elevator-pitch-techniques. Provides elevator pitch and verbal brand communication frameworks including Donald Miller's StoryBrand (SB7), Nancy Duarte's Sparkline, Chris Westfall's CLARITY, Andy Raskin's Strategic Narrative, Sim Platforms: claude_code."} +{"id": "c643013c44b2edc66dcb3cab645650cd9b2263f44f99aa9fe75d053835e2435d", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "theme-factory", "description": "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 t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/panaversity-ri-vault/skills/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "theme-factory. 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 t Platforms: claude_code."} +{"id": "8a55f74b85d201c60033a91665c43cafa60b450646cc235af15aabf15e269f30", "repo_url": "https://github.com/joannis/claude-skills", "name": "swift-concurrency", "description": "Expert guidance on Swift Concurrency best practices, patterns, and implementation. Use when developers mention: (1) Swift Concurrency, async/await, actors, or tasks, (2) modern concurrency patterns or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joannis/claude-skills/blob/main/swift-concurrency/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T20:09:23Z"}, "embedding_text": "swift-concurrency. Expert guidance on Swift Concurrency best practices, patterns, and implementation. Use when developers mention: (1) Swift Concurrency, async/await, actors, or tasks, (2) modern concurrency patterns or Platforms: claude_code."} +{"id": "6f0514ed7fdb3239bfedd70c50eb085e0629b8cadfd4ec66c4e774f312ce6d59", "repo_url": "https://github.com/nabondance/trailhead-banner", "name": "build", "description": "Validate production build", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nabondance/trailhead-banner/blob/main/.claude/skills/build/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:12:36Z"}, "embedding_text": "build. Validate production build Platforms: claude_code."} +{"id": "a75633c7467124102698a494033d96fda3a28b9691eaa68233ea2ce913dbaeed", "repo_url": "https://github.com/sendaifun/skills", "name": "helius", "description": "Build Solana trading applications combining DFlow trading APIs with Helius infrastructure. Covers spot swaps (imperative and declarative), prediction markets, real-time market streaming, Proof KYC, transaction submission via Sender, fee optimization, shred-level streaming via LaserStream, and wallet intelligence.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/helius-dflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install helius"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "helius. Build Solana trading applications combining DFlow trading APIs with Helius infrastructure. Covers spot swaps (imperative and declarative), prediction markets, real-time market streaming, Proof KYC, transaction submission via Sender, fee optimization, shred-level streaming via LaserStream, and wallet intelligence. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "269aec215f90fc546e45f8f3644b5a29b79e40f70a22809d57e84d002a05270f", "repo_url": "https://github.com/remix-run/agent-skills", "name": "react-router-data-mode", "description": "Build React applications using React Router's data mode with createBrowserRouter and RouterProvider. Use when working with route objects, loaders, actions, Form, useFetcher, or pending/optimistic UI w", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/remix-run/agent-skills/blob/main/skills/react-router-data-mode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 138, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T13:30:14Z"}, "embedding_text": "react-router-data-mode. Build React applications using React Router's data mode with createBrowserRouter and RouterProvider. Use when working with route objects, loaders, actions, Form, useFetcher, or pending/optimistic UI w Platforms: claude_code."} +{"id": "32a186c838e3df5f0c7ebddfd2b8896f39ae02d658d770262ad2325baa5b0fee", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "ensure-complete", "description": "Use when refactoring is complete and needs validation. Performs holistic review of completed plugin refactoring, validates improvements against original assessment score, checks for documentation drif", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/ensure-complete/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "ensure-complete. Use when refactoring is complete and needs validation. Performs holistic review of completed plugin refactoring, validates improvements against original assessment score, checks for documentation drif Platforms: claude_code."} +{"id": "28f11048ccfc3b7d79ece7f6c20c7986fec510f2183e9523027005fd7999ad53", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "web-design-guidelines", "description": "UI/UX best practices and accessibility guidelines. Use when reviewing UI code, checking accessibility, auditing forms, or ensuring web interface best practices. Triggers on \"review UI\", \"check accessi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/web-design-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "web-design-guidelines. UI/UX best practices and accessibility guidelines. Use when reviewing UI code, checking accessibility, auditing forms, or ensuring web interface best practices. Triggers on \"review UI\", \"check accessi Platforms: claude_code."} +{"id": "9bd8a888edde22ed8250618e54ff3a9c84a90c1b4ef3846e15e5363ac9df93a8", "repo_url": "https://github.com/billionsnetwork/verified-agent-identity", "name": "verified-agent-identity", "description": "Billions decentralized identity for agents. Link agents to human identities using Billions ERC-8004 and Attestation Registries. Verify and generate authentication proofs. Based on iden3 self-sovereign", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/billionsnetwork/verified-agent-identity/blob/main/reference/identity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 753, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T09:34:12Z"}, "embedding_text": "verified-agent-identity. Billions decentralized identity for agents. Link agents to human identities using Billions ERC-8004 and Attestation Registries. Verify and generate authentication proofs. Based on iden3 self-sovereign Platforms: claude_code."} +{"id": "eef132c813ed861374ebf8d73a272fd71013495e73b34c6749fbc86a99530acf", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "pdf", "description": "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, rota", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "pdf. 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, rota Platforms: claude_code."} +{"id": "8404a9b96d5f1f18ea56dd151afc7c567a612c1c7eab39bc6382c7ddcb41bbbd", "repo_url": "https://github.com/richardgill/nix", "name": "upgrade-flake", "description": "This skill updates flake.lock to get latest packages within current NixOS release.\nTriggers: \"update flake\", \"upgrade flake\", \"nix flake update\", \"bump flake.lock\",\n\"update flake inputs\", \"refresh inp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/richardgill/nix/blob/main/.claude/skills/upgrade-flake/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:00:27Z"}, "embedding_text": "upgrade-flake. This skill updates flake.lock to get latest packages within current NixOS release.\nTriggers: \"update flake\", \"upgrade flake\", \"nix flake update\", \"bump flake.lock\",\n\"update flake inputs\", \"refresh inp Platforms: claude_code."} +{"id": "dfa4671731a87cf9d3b150958ed5f14d58c14a013175b397c5413e46a3084363", "repo_url": "https://github.com/mp-web3/claude-starter-kit", "name": "reflect", "description": "Analyze the current or recent session(s) for corrections, preferences, and implicit feedback. Extracts learnings and routes them to the right knowledge/rules file. Run when you want to capture what wa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mp-web3/claude-starter-kit/blob/main/skills/reflect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 96, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-18T16:01:46Z"}, "embedding_text": "reflect. Analyze the current or recent session(s) for corrections, preferences, and implicit feedback. Extracts learnings and routes them to the right knowledge/rules file. Run when you want to capture what wa Platforms: claude_code."} +{"id": "de4f805442ff4ca9c21ae7c42d156e6c3da74db9f52d0fcd785cb47bc027ee6e", "repo_url": "https://github.com/remix-run/agent-skills", "name": "react-router-framework-mode", "description": "Build full-stack React applications using React Router's framework mode. Use when configuring routes, working with loaders and actions, handling forms, handling navigation, pending/optimistic UI, erro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/remix-run/agent-skills/blob/main/skills/react-router-framework-mode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 138, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T13:30:14Z"}, "embedding_text": "react-router-framework-mode. Build full-stack React applications using React Router's framework mode. Use when configuring routes, working with loaders and actions, handling forms, handling navigation, pending/optimistic UI, erro Platforms: claude_code."} +{"id": "22984f71ea64a9678b390162a45da350d669cec7529bfb46f6912bf0b7f1e53d", "repo_url": "https://github.com/scientiacapital/skills", "name": "docker-compose-skill", "description": "Local dev environments with Docker Compose - multi-service setups, databases, hot reload, debugging. Use when: docker compose, local dev, postgres container, redis local, dev environment.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/docker-compose-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "docker-compose-skill. Local dev environments with Docker Compose - multi-service setups, databases, hot reload, debugging. Use when: docker compose, local dev, postgres container, redis local, dev environment. Platforms: claude_code."} +{"id": "13c36bd13cbc9b8726d2f4b903072ac0f2a94f8a18a9488f1b82bfb9693f8ab7", "repo_url": "https://github.com/wbern/claude-instructions", "name": "tdd", "description": "Remind agent about TDD approach and continue conversation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wbern/claude-instructions/blob/main/.claude/skills/tdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 167, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T14:50:07Z"}, "embedding_text": "tdd. Remind agent about TDD approach and continue conversation Platforms: claude_code."} +{"id": "54319dd8afc0d5c3f5745a161598c21454a2533932c61a204c44a4bc170b7887", "repo_url": "https://github.com/gocallum/nextjs16-agent-skills", "name": "mcp-server-skills", "description": "Pattern for building MCP servers in Next.js with mcp-handler, shared Zod schemas, and reusable server actions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gocallum/nextjs16-agent-skills/blob/main/skills/mcp-server-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T13:27:54Z"}, "embedding_text": "mcp-server-skills. Pattern for building MCP servers in Next.js with mcp-handler, shared Zod schemas, and reusable server actions. Platforms: claude_code."} +{"id": "a07872505aba6b08a82ac36d898a4b85f1d9669b857e4efbb58a10e1864458cb", "repo_url": "https://github.com/enbyaugust/zacs-claude-skills", "name": "check-your-plan", "description": "Validates AI implementation plans before execution. Use when user says \"check your plan\", \"validate this plan\", \"review the plan\", or \"is this plan good\". Launches 5 parallel validators + devil's advo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enbyaugust/zacs-claude-skills/blob/master/skills/check-your-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T06:54:23Z"}, "embedding_text": "check-your-plan. Validates AI implementation plans before execution. Use when user says \"check your plan\", \"validate this plan\", \"review the plan\", or \"is this plan good\". Launches 5 parallel validators + devil's advo Platforms: claude_code."} +{"id": "b14c91215948c1e106b3d154e5989ad5cc6ed19831e49e5487297102e6f75fdf", "repo_url": "https://github.com/sunnyeung369/ai-agent-team", "name": "ai-agent-team", "description": "AI Agent \u534f\u4f5c\u56e2\u961f\u7cfb\u7edf - \u57fa\u4e8e newtype-profile \u67b6\u6784\u3002\u6a21\u62df\u7f16\u8f91\u56e2\u961f\u6a21\u578b\uff0c\u901a\u8fc7\u591a\u4e2a\u4e13\u4e1a Agent \u534f\u4f5c\u5b8c\u6210\u590d\u6742\u4efb\u52a1\u3002\u9002\u7528\u4e8e\u5185\u5bb9\u521b\u4f5c\u3001\u7814\u7a76\u5206\u6790\u3001\u77e5\u8bc6\u7ba1\u7406\u7b49\u573a\u666f\u3002\u6838\u5fc3 Agent: chief(\u4e3b\u7f16/\u534f\u8c03\u8005), researcher(\u7814\u7a76\u5458), writer(\u4f5c\u8005), editor(\u7f16\u8f91), fact-checker(\u6838\u67e5\u5458), archivist(\u6863\u6848\u5458)\u3002\u652f\u6301\u4efb\u52a1\u5206\u7c7b\u3001\u5e76", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunnyeung369/ai-agent-team/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-15T03:49:01Z"}, "embedding_text": "ai-agent-team. AI Agent \u534f\u4f5c\u56e2\u961f\u7cfb\u7edf - \u57fa\u4e8e newtype-profile \u67b6\u6784\u3002\u6a21\u62df\u7f16\u8f91\u56e2\u961f\u6a21\u578b\uff0c\u901a\u8fc7\u591a\u4e2a\u4e13\u4e1a Agent \u534f\u4f5c\u5b8c\u6210\u590d\u6742\u4efb\u52a1\u3002\u9002\u7528\u4e8e\u5185\u5bb9\u521b\u4f5c\u3001\u7814\u7a76\u5206\u6790\u3001\u77e5\u8bc6\u7ba1\u7406\u7b49\u573a\u666f\u3002\u6838\u5fc3 Agent: chief(\u4e3b\u7f16/\u534f\u8c03\u8005), researcher(\u7814\u7a76\u5458), writer(\u4f5c\u8005), editor(\u7f16\u8f91), fact-checker(\u6838\u67e5\u5458), archivist(\u6863\u6848\u5458)\u3002\u652f\u6301\u4efb\u52a1\u5206\u7c7b\u3001\u5e76 Platforms: claude_code."} +{"id": "49087259eda1bf551bcf7497e31ff7bc174708c1f33e4c27260b68aba17c5010", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "ansible", "description": "GitHub repository skill for ansible/ansible-documentation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/development/ansible/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "ansible. GitHub repository skill for ansible/ansible-documentation Platforms: claude_code."} +{"id": "84308b53181b6cd047dfe365dce9ca14b86e9ef34bab3f19ccdd8bf9d8bb6bb5", "repo_url": "https://github.com/matlab/skills", "name": "matlab-uihtml-app-builder", "description": "Build interactive web applications using HTML/JavaScript interfaces with MATLAB computational backends via the uihtml component. Use when creating HTML-based MATLAB apps, JavaScript MATLAB interfaces, web UIs with MATLAB, interactive MATLAB GUIs, or when user mentions uihtml, HTML, JavaScript, web apps, or web interfaces.", "source": ["skillhub", "topic"], "categories": ["agent-skill", "agent-skills", "agentic-ai", "agents", "claude", "claude-api", "claude-code", "claude-desktop", "claude-skills", "matlab", "matlab-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matlab/skills/blob/main/skills/matlab-uihtml-app-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matlab-uihtml-app-builder"}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T00:56:22Z"}, "embedding_text": "matlab-uihtml-app-builder. Build interactive web applications using HTML/JavaScript interfaces with MATLAB computational backends via the uihtml component. Use when creating HTML-based MATLAB apps, JavaScript MATLAB interfaces, web UIs with MATLAB, interactive MATLAB GUIs, or when user mentions uihtml, HTML, JavaScript, web apps, or web interfaces. Categories: agent-skill, agent-skills, agentic-ai, agents, claude, claude-api, claude-code, claude-desktop, claude-skills, matlab, matlab-skills. Platforms: claude_code."} +{"id": "ad4cb81363a5edf8849485bef5ec7597a0570ef83e940aed1082648312447b89", "repo_url": "https://github.com/reduxjs/redux-toolkit", "name": "manage-server-data/generate-rtk-query-from-openapi", "description": "Use this when generating RTK Query endpoints from OpenAPI schemas with @rtk-query/codegen-openapi. Covers the empty API pattern, filterEndpoints, endpointOverrides, generated tags, and reviewing gener", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reduxjs/redux-toolkit/blob/master/packages/rtk-query-codegen-openapi/skills/manage-server-data/generate-rtk-query-from-openapi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:41:25Z"}, "embedding_text": "manage-server-data/generate-rtk-query-from-openapi. Use this when generating RTK Query endpoints from OpenAPI schemas with @rtk-query/codegen-openapi. Covers the empty API pattern, filterEndpoints, endpointOverrides, generated tags, and reviewing gener Platforms: claude_code."} +{"id": "44b3a6835545de91830bcc96f6aacea793425ffc96e2ee83203814f20fb1cd42", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-buckets-public", "description": "Identify storage buckets that are publicly accessible and may contain sensitive data.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-storage/supabase-audit-buckets-public/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-buckets-public. Identify storage buckets that are publicly accessible and may contain sensitive data. Platforms: claude_code."} +{"id": "31cb8c8379c4da43921cf991435baaa9b824a00ab6074f43523bc8eb93b46b07", "repo_url": "https://github.com/robertguss/claude-skills", "name": "paywall-pricing-optimizer", "description": "Design effective paywalls, structure subscription tiers, and optimize pricing for mobile apps. Covers monetization model selection, paywall screen design, pricing psychology, A/B testing strategy, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/mobile-app-dev/paywall-pricing-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "paywall-pricing-optimizer. Design effective paywalls, structure subscription tiers, and optimize pricing for mobile apps. Covers monetization model selection, paywall screen design, pricing psychology, A/B testing strategy, and Platforms: claude_code."} +{"id": "2f011d1114788647df731b482a3552bccf7f0fffbcf6c916cf0a7766e55c85fe", "repo_url": "https://github.com/kevintsai1202/add-skill-installer", "name": "add-skill-installer", "description": "\u5b89\u88dd Agent Skills \u5230\u672c\u6a5f\u3002\u7576\u7528\u6236\u60f3\u8981\u300c\u5b89\u88dd\u6280\u80fd\u300d\u3001\u300c\u65b0\u589e skill\u300d\u3001\u300c\u5f9e GitHub \u5b89\u88dd skill\u300d\u3001\u6216\u300cinstall skill from repo\u300d\u6642\u89f8\u767c\u6b64\u6280\u80fd\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevintsai1202/add-skill-installer/blob/master/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T03:06:16Z"}, "embedding_text": "add-skill-installer. \u5b89\u88dd Agent Skills \u5230\u672c\u6a5f\u3002\u7576\u7528\u6236\u60f3\u8981\u300c\u5b89\u88dd\u6280\u80fd\u300d\u3001\u300c\u65b0\u589e skill\u300d\u3001\u300c\u5f9e GitHub \u5b89\u88dd skill\u300d\u3001\u6216\u300cinstall skill from repo\u300d\u6642\u89f8\u767c\u6b64\u6280\u80fd\u3002 Platforms: claude_code."} +{"id": "df923b071915a135254721906c3a484e38af1f26d8b63c496b5cc885196f509d", "repo_url": "https://github.com/alekseiul/openclaw-superagent", "name": "weather-bot", "description": "\u041f\u043e\u0433\u043e\u0434\u0430 \u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437 \u0434\u043b\u044f \u043b\u044e\u0431\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0430. Triggers: '\u043f\u043e\u0433\u043e\u0434\u0430', 'weather', '\u043f\u0440\u043e\u0433\u043d\u043e\u0437', '\u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430', '\u043a\u0430\u043a\u0430\u044f \u043f\u043e\u0433\u043e\u0434\u0430 \u0432'.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alekseiul/openclaw-superagent/blob/main/skills/agent-forge/examples/weather-bot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T17:44:54Z"}, "embedding_text": "weather-bot. \u041f\u043e\u0433\u043e\u0434\u0430 \u0438 \u043f\u0440\u043e\u0433\u043d\u043e\u0437 \u0434\u043b\u044f \u043b\u044e\u0431\u043e\u0433\u043e \u0433\u043e\u0440\u043e\u0434\u0430. Triggers: '\u043f\u043e\u0433\u043e\u0434\u0430', 'weather', '\u043f\u0440\u043e\u0433\u043d\u043e\u0437', '\u0442\u0435\u043c\u043f\u0435\u0440\u0430\u0442\u0443\u0440\u0430', '\u043a\u0430\u043a\u0430\u044f \u043f\u043e\u0433\u043e\u0434\u0430 \u0432'. Platforms: claude_code."} +{"id": "e00ffb1bfcaa2586d7ffdb6054ffbe8e25391e598a4db98923f662a073cc7828", "repo_url": "https://github.com/richardgill/nix", "name": "tmux-debug", "description": "This skill captures and analyzes tmux pane content for debugging.\nTriggers: \"debug tmux\", \"capture tmux output\", \"check other session\", \"tmux pane content\",\n\"what's in that terminal\", \"inspect backgro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/richardgill/nix/blob/main/.claude/skills/tmux-debug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:00:27Z"}, "embedding_text": "tmux-debug. This skill captures and analyzes tmux pane content for debugging.\nTriggers: \"debug tmux\", \"capture tmux output\", \"check other session\", \"tmux pane content\",\n\"what's in that terminal\", \"inspect backgro Platforms: claude_code."} +{"id": "fc4e1b6faa3b86c02449209ded5f12145c5aa94951be97fbd9e8c5dc46081915", "repo_url": "https://github.com/plurigrid/asi", "name": "gay-julia", "description": "Wide-gamut color sampling with splittable determinism using Pigeons.jl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/gay-julia/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "gay-julia. Wide-gamut color sampling with splittable determinism using Pigeons.jl Platforms: claude_code."} +{"id": "4c8748a25491b873b6458f3bc43fb456a39bff5383dea1dd0f300992773fa284", "repo_url": "https://github.com/plurigrid/asi", "name": "self-evolving-agent", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/self-evolving-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "self-evolving-agent. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2b863407415bf90cd6c8d59bc810f15c16ed030e9d7caa6969d3cf178ddad419", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "devsecops-expert", "description": "Expert DevSecOps engineer specializing in secure CI/CD pipelines, shift-left security, security automation, and compliance as code. Use when implementing security gates, container security, infrastruc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/devsecops-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "devsecops-expert. Expert DevSecOps engineer specializing in secure CI/CD pipelines, shift-left security, security automation, and compliance as code. Use when implementing security gates, container security, infrastruc Platforms: claude_code."} +{"id": "f69bc1337763e1fcdfe7ae2fac6888e556fd10f8f9e1fd4224e4a350ac35db45", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "cloudflare-r2", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/cloudflare-r2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "cloudflare-r2. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d5a9e3e1099628df9f53502268b6d4b9070e69945adf208d583c14fcdad454d3", "repo_url": "https://github.com/plurigrid/asi", "name": "aptos-gf3-society", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/aptos-gf3-society/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "aptos-gf3-society. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "afa9f927773678700a3ab39e02329e0746bb3f4bedc9e865fa04eecfed930794", "repo_url": "https://github.com/plurigrid/asi", "name": "livekit-omnimodal", "description": "LiveKit omni-modal continuous coaching with stick-breaking color selection,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/livekit-omnimodal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "livekit-omnimodal. LiveKit omni-modal continuous coaching with stick-breaking color selection, Platforms: claude_code."} +{"id": "925bf793f0cafb22ec7520daafc2110e4a9f427c324a953cf4f8e551e0d776d3", "repo_url": "https://github.com/fal-ai-community/skills", "name": "fal-workflow", "description": "Generate production-ready fal.ai workflow JSON files. Use when user requests \"create workflow\", \"chain models\", \"multi-step generation\", \"image to video pipeline\", or complex AI generation pipelines.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fal-ai-community/skills/blob/main/skills/fal-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-13T20:10:57Z"}, "embedding_text": "fal-workflow. Generate production-ready fal.ai workflow JSON files. Use when user requests \"create workflow\", \"chain models\", \"multi-step generation\", \"image to video pipeline\", or complex AI generation pipelines. Platforms: claude_code."} +{"id": "c562614bc9a0dd647bf0f82e100c156d557e0ba82cf69354969d286b6566bb70", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "prompt-optimizer", "description": "Analyze and optimize user prompts for clarity, specificity, and completeness using interactive questionnaires or direct analysis. Use this skill when user requests are vague, ambiguous, incomplete, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/prompt-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "prompt-optimizer. Analyze and optimize user prompts for clarity, specificity, and completeness using interactive questionnaires or direct analysis. Use this skill when user requests are vague, ambiguous, incomplete, or Platforms: claude_code."} +{"id": "59a0c73227232a712988f9d083381791ee464dc3670eb771ccfe830549a8c3bd", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "parallel-dispatch", "description": "Parallel execution engine for dispatching worker agents. Used by conductor-orchestrator to spawn multiple workers simultaneously from DAG parallel groups. Handles dispatch, monitoring, aggregation, an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/parallel-dispatch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "parallel-dispatch. Parallel execution engine for dispatching worker agents. Used by conductor-orchestrator to spawn multiple workers simultaneously from DAG parallel groups. Handles dispatch, monitoring, aggregation, an Platforms: claude_code."} +{"id": "020709e351480c59978f676a375ea8f06f93e88ec4a5e3c39dd3cb89d90b9356", "repo_url": "https://github.com/avivsinai/jenkins-cli", "name": "jk", "description": "Jenkins CLI for controllers. Use when users need to manage jobs, pipelines, runs, logs, artifacts, credentials, nodes, or queues in Jenkins. Triggers include \"jenkins\", \"jk\", \"pipeline\", \"build\", \"run", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avivsinai/jenkins-cli/blob/main/skills/jk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:12:30Z"}, "embedding_text": "jk. Jenkins CLI for controllers. Use when users need to manage jobs, pipelines, runs, logs, artifacts, credentials, nodes, or queues in Jenkins. Triggers include \"jenkins\", \"jk\", \"pipeline\", \"build\", \"run Platforms: claude_code."} +{"id": "187ba6be7c5814d1a89b013eec0a4dbbf3fdcd16076447a508d0758522af40b9", "repo_url": "https://github.com/plurigrid/asi", "name": "fnox-secrets", "description": "fnox Secrets Management Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/fnox-secrets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "fnox-secrets. fnox Secrets Management Skill Platforms: claude_code."} +{"id": "fce613ef8dba58271e5fbbe3a5d48282e479d85b36a74c7b7f6451a83fb1c9a0", "repo_url": "https://github.com/code-yeongyu/oh-my-openagent", "name": "rules-injector", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/code-yeongyu/oh-my-openagent/blob/dev/packages/omo-codex/plugin/components/rules/skills/rules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63175, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:06:08Z"}, "embedding_text": "rules-injector. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a4a805deba9fe893413d2ae89b58960632e6eb2333863cfdc96f68bcaaf64826", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "rabbitmq-expert", "description": "Expert RabbitMQ administrator and developer specializing in message broker architecture, exchange patterns, clustering, high availability, and production monitoring. Use when designing message queue s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/rabbitmq-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "rabbitmq-expert. Expert RabbitMQ administrator and developer specializing in message broker architecture, exchange patterns, clustering, high availability, and production monitoring. Use when designing message queue s Platforms: claude_code."} +{"id": "5e83fb05d51b72138ed71fcdc83f04c888168c5db1d3ee998cce89126ab5e6f9", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "websocket", "description": "Real-time bidirectional communication with security focus on CSWSH prevention, authentication, and message validation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/websocket/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "websocket. Real-time bidirectional communication with security focus on CSWSH prevention, authentication, and message validation Platforms: claude_code."} +{"id": "adf838ef55e3e2b6b61b3b36b1daf8e1c0cdde6d1a23cc97ec39fbf80372a43d", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "skill-doc-generator", "description": "Auto-generates standardized README documentation from SKILL.md files, validates consistency (frontmatter, descriptions, terminology), and creates usage examples. Use when documenting individual skills", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/doc-generator/skill-doc-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "skill-doc-generator. Auto-generates standardized README documentation from SKILL.md files, validates consistency (frontmatter, descriptions, terminology), and creates usage examples. Use when documenting individual skills Platforms: claude_code."} +{"id": "112ab1cca2c361cacc27dbf1d3d48d2cf7b6ead559cbcee474d1bc4fa3f25ac4", "repo_url": "https://github.com/plurigrid/asi", "name": "invoice-organizer", "description": "Automatically organizes invoices and receipts for tax preparation by", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/invoice-organizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "invoice-organizer. Automatically organizes invoices and receipts for tax preparation by Platforms: claude_code."} +{"id": "882f1b8029297bccd79c3b1a7399b0d751add2acc364e9cb4534cd4566330326", "repo_url": "https://github.com/scientiacapital/skills", "name": "data-analysis", "description": "Executive-grade data analysis with pandas/polars and McKinsey-quality visualizations. Use when analyzing data, building dashboards, creating investor presentations, or calculating SaaS metrics.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/data-analysis-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "data-analysis. Executive-grade data analysis with pandas/polars and McKinsey-quality visualizations. Use when analyzing data, building dashboards, creating investor presentations, or calculating SaaS metrics. Platforms: claude_code."} +{"id": "950fa2c2c08ef0de6400379cf33742c3bb34d5b45fc154ec616b121fb8d8b2b7", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "clerk-webhooks", "description": "Receive and verify Clerk webhooks. Use when setting up Clerk webhook handlers, debugging signature verification, or handling user events like user.created, user.updated, session.created, or organizati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/clerk-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "clerk-webhooks. Receive and verify Clerk webhooks. Use when setting up Clerk webhook handlers, debugging signature verification, or handling user events like user.created, user.updated, session.created, or organizati Platforms: claude_code."} +{"id": "e6cd2df1201538d612fc1b9ef3d542e373020379c22bd3280b18306bc7b7878c", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "git-squash", "description": "This skill should be used when the user asks to \"squash PR commits\", \"squash my branch\", \"flatten branch history\", \"combine all commits into one\", \"prepare a clean PR commit\", or \"squash commits relat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/skills/git-squash/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "git-squash. This skill should be used when the user asks to \"squash PR commits\", \"squash my branch\", \"flatten branch history\", \"combine all commits into one\", \"prepare a clean PR commit\", or \"squash commits relat Platforms: claude_code."} +{"id": "92545ece088bbb4c6e83b79af5c82fbc8d655eef02b48bb83cf02bfc46fe0e10", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "amazon-location-service", "description": "Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text search, nearby search, or autocomplete suggestions; retrieve detailed place information including hours, contacts, and addresses; monitor geographical boundaries with geofences; or track device locations. Covers authentication, SDK integration, and all Amazon Location Service capabilities.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/amazon-location-service/skills/amazon-location-service/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install amazon-location-service"}, "quality": {"stars": 796, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:53:29Z"}, "embedding_text": "amazon-location-service. Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text search, nearby search, or autocomplete suggestions; retrieve detailed place information including hours, contacts, and addresses; monitor geographical boundaries with geofences; or track device locations. Covers authentication, SDK integration, and all Amazon Location Service capabilities. Platforms: claude_code."} +{"id": "90bcf9d99d40310d9a9137c31deac4b827b4d6dbe3746d9cd4f19ad98057b8e9", "repo_url": "https://github.com/technicalpickles/pickled-claude-plugins", "name": "working-with-colima", "description": "Use when Docker commands fail with \"Cannot connect to Docker daemon\", when starting/stopping container environments, or when managing multiple Docker contexts on macOS - provides Colima lifecycle management, profile handling, SSH commands, and troubleshooting", "source": ["skillhub", "topic"], "categories": ["buildkite", "claude-code", "claude-skills", "monorepo", "workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/technicalpickles/pickled-claude-plugins/blob/main/plugins/dev-tools/skills/colima/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install working-with-colima"}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T20:55:10Z"}, "embedding_text": "working-with-colima. Use when Docker commands fail with \"Cannot connect to Docker daemon\", when starting/stopping container environments, or when managing multiple Docker contexts on macOS - provides Colima lifecycle management, profile handling, SSH commands, and troubleshooting Categories: buildkite, claude-code, claude-skills, monorepo, workflow. Platforms: claude_code."} +{"id": "d81c0f6b64bc7df9d79c3c0a1f7cca310e1e21319e79287a4611e5797fa89e92", "repo_url": "https://github.com/bkircher/skills", "name": "jira-read-ticket", "description": "Use whenever a user mentions or references a Jira ticket and you want to pull out description, comments, or more.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bkircher/skills/blob/main/jira-read-ticket/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-13T12:23:43Z"}, "embedding_text": "jira-read-ticket. Use whenever a user mentions or references a Jira ticket and you want to pull out description, comments, or more. Platforms: claude_code."} +{"id": "79d9feb86cc8dd8c363978174c520b6159f949016cd59b78e0929884519e121c", "repo_url": "https://github.com/tomkrikorian/visionosagents", "name": "spatial-swiftui-developer", "description": "Design and implement visionOS SwiftUI scenes that integrate RealityKit content. Use when building spatial UI with RealityView, Model3D, attachments, volumetric windows, ImmersiveSpace, or spatial gest", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tomkrikorian/visionosagents/blob/main/skills/spatial-swiftui-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T00:27:41Z"}, "embedding_text": "spatial-swiftui-developer. Design and implement visionOS SwiftUI scenes that integrate RealityKit content. Use when building spatial UI with RealityView, Model3D, attachments, volumetric windows, ImmersiveSpace, or spatial gest Platforms: claude_code."} +{"id": "3bb5157b08a2a2ad2327adb716b3bf5529ccf07157ad2a114e9bbd718fa84e4c", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "huggingface-hub", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/huggingface/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "huggingface-hub. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "be383cebdd874abd24152f9e62fe1a5eecc0c2d4a34d05b4b76c72467efa26d9", "repo_url": "https://github.com/jellydn/my-ai-tools", "name": "qmd-knowledge", "description": "Project-specific knowledge management system using qmd MCP server. Captures learnings, issue notes, and conventions in a searchable knowledge base.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jellydn/my-ai-tools/blob/main/skills/qmd-knowledge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 84, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:26:12Z"}, "embedding_text": "qmd-knowledge. Project-specific knowledge management system using qmd MCP server. Captures learnings, issue notes, and conventions in a searchable knowledge base. Platforms: claude_code."} +{"id": "e50e23d243b1b10051fe009aafdae0167af790b194ba2a75d3d2920a5df515a6", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "frontend-design", "description": "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 inclu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "frontend-design. 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 inclu Platforms: claude_code."} +{"id": "60bced1e056648f9ff930b8b58bd891f8f2071add452bf1538856ec50e2ddb00", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "software-architecture 3", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/software-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "software-architecture 3. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "deff5bfab27e3a809c4024acff2e02293fb8fbcf4df15a1a73002c9a6c6bdb86", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-quality-engineering", "description": "Use when user asks about E2E testing, performance testing, chaos engineering, test automation, flaky tests, test data management, or quality practices - routes to specialist reference sheets with deep", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/ordis-quality-engineering/skills/using-quality-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-quality-engineering. Use when user asks about E2E testing, performance testing, chaos engineering, test automation, flaky tests, test data management, or quality practices - routes to specialist reference sheets with deep Platforms: claude_code."} +{"id": "0f55d2fa7d3a08d88d4174295f02fac9df5741a714c481f9b8a05ff03bfd0394", "repo_url": "https://github.com/aahl/skills", "name": "tianqi", "description": "\u67e5\u8be2\u4e2d\u56fd\u5730\u533a\u7684\u5929\u6c14\u9884\u62a5\uff0c\u652f\u630115\u5929\u53ca\u9010\u5c0f\u65f6\u9884\u62a5\u3001\u5404\u79cd\u751f\u6d3b\u6307\u6570", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/tianqi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tianqi"}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-12T10:12:15Z"}, "embedding_text": "tianqi. \u67e5\u8be2\u4e2d\u56fd\u5730\u533a\u7684\u5929\u6c14\u9884\u62a5\uff0c\u652f\u630115\u5929\u53ca\u9010\u5c0f\u65f6\u9884\u62a5\u3001\u5404\u79cd\u751f\u6d3b\u6307\u6570 Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} +{"id": "5cdd117ce2e521be1f6aa0d98513f0bf669f148506e1d20b7c42024b5e395f96", "repo_url": "https://github.com/tgoodwin/kamera", "name": "dependency-analysis", "description": "Generate and validate controller-resource dependency graph artifacts for Kamera coverage strategy v2. Use this when extracting triggers/reads/writes from Kubernetes control planes, assigning resource", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 82, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T14:12:24Z"}, "embedding_text": "dependency-analysis. Generate and validate controller-resource dependency graph artifacts for Kamera coverage strategy v2. Use this when extracting triggers/reads/writes from Kubernetes control planes, assigning resource Platforms: claude_code."} +{"id": "48e5c45ebb829060d31c8db8dae31fed2768c60319934e133e31a3b5568e1c74", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "audit", "description": "[UDS] UDS \u5065\u5eb7\u6aa2\u67e5\u8207\u56de\u994b\u7cfb\u7d71\uff0c\u8a3a\u65b7\u5b89\u88dd\u5b8c\u6574\u6027\u8207\u5075\u6e2c\u958b\u767c\u6a21\u5f0f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/audit-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "audit. [UDS] UDS \u5065\u5eb7\u6aa2\u67e5\u8207\u56de\u994b\u7cfb\u7d71\uff0c\u8a3a\u65b7\u5b89\u88dd\u5b8c\u6574\u6027\u8207\u5075\u6e2c\u958b\u767c\u6a21\u5f0f Platforms: claude_code."} +{"id": "b76aa13798e6c2df9c4888bb17baddc82b25d19d04594c117e7b86fa811cd448", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "diagram-generator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/diagram-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "diagram-generator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "67b38a8a88955cc2331558e5c81cd04bc88aaa92889fd24c4a65c3169730d8ae", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "video-downloader", "description": "Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/video-downloader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "video-downloader. Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options. Platforms: claude_code."} +{"id": "f22d2190f1000dde71d1e3c29f4e4a8015e1d48631d8141f253ba442b71bd866", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "tanstack-integration", "description": "Find opportunities to improve web application code using TanStack libraries (Query, Table, Form, Router, etc.). Avoid man-with-hammer syndrome by applying TanStack after vanilla implementation works.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/tanstack-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "tanstack-integration. Find opportunities to improve web application code using TanStack libraries (Query, Table, Form, Router, etc.). Avoid man-with-hammer syndrome by applying TanStack after vanilla implementation works. Platforms: claude_code."} +{"id": "606778748b8ebbfdbad4361bfe8c0a05a7f751166a7610ede058129298dc52ba", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "ar-io-build", "description": "Comprehensive assistance with ar-io-build", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/ar-io-build/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "ar-io-build. Comprehensive assistance with ar-io-build Platforms: claude_code."} +{"id": "6f772d67f10ca03a39589a8112c2ffd04570469cff95d070e27bb664b1d90152", "repo_url": "https://github.com/okx/agent-trade-kit", "name": "okx-cex-trade", "description": "This skill should be used when the user asks to 'buy BTC', 'sell ETH', 'place a limit order', 'place a market order', 'cancel my order', 'amend my order', 'long BTC perp', 'short ETH swap', 'open a po", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/okx/agent-trade-kit/blob/github-main/skills/okx-cex-trade/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 338, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T09:57:46Z"}, "embedding_text": "okx-cex-trade. This skill should be used when the user asks to 'buy BTC', 'sell ETH', 'place a limit order', 'place a market order', 'cancel my order', 'amend my order', 'long BTC perp', 'short ETH swap', 'open a po Platforms: claude_code."} +{"id": "9a13d9e360e1b622d1d109ffe2e22025c5daee2686708de9ab154da5f12b5c98", "repo_url": "https://github.com/nahisaho/musubi", "name": "test-engineer", "description": "test-engineer skill\n\nTrigger terms: testing, unit tests, integration tests, E2E tests, test cases, test coverage, test automation, test plan, test design, TDD, test-first\n\nUse when: User requests invo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/test-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "test-engineer. test-engineer skill\n\nTrigger terms: testing, unit tests, integration tests, E2E tests, test cases, test coverage, test automation, test plan, test design, TDD, test-first\n\nUse when: User requests invo Platforms: claude_code."} +{"id": "b53458d80c1bf09f7236ab7d8da15bbca28e282a4fa056391d72f226512e06a2", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "test-generator", "description": "Generates test code from specifications, components, and API endpoints. Creates unit tests, integration tests, and E2E tests following project testing patterns and conventions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/test-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "test-generator. Generates test code from specifications, components, and API endpoints. Creates unit tests, integration tests, and E2E tests following project testing patterns and conventions. Platforms: claude_code."} +{"id": "75a8e4249b3ca3231a7d9d75ab15db1d170c740194b03ae51eb4b1461667171f", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "books", "description": "CLI for AI agents to search and lookup books for their humans. Uses Open Library API. No auth required.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/backend/runbooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "books. CLI for AI agents to search and lookup books for their humans. Uses Open Library API. No auth required. Platforms: claude_code."} +{"id": "e273a5af42af1a32bb2f627b9b4f5146b81d7167ddf22ed26b70802d493fce9b", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "work-backlog-item", "description": "Use when working, planning, or closing a backlog item. Bridges backlog items to SAM planning with GitHub Issue/Project/Milestone tracking. No args: interactive browser. '#N': load from GitHub Issue #N", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/development-harness/skills/backlog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "work-backlog-item. Use when working, planning, or closing a backlog item. Bridges backlog items to SAM planning with GitHub Issue/Project/Milestone tracking. No args: interactive browser. '#N': load from GitHub Issue #N Platforms: claude_code."} +{"id": "59da36420c5c5f04e68830fcd7afdb66e46713f2bd3b5d3159305055a17f5bdc", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "create-slidev-presentation", "description": "This skill should be used when asked to create or edit Slidev (sli.dev) presentation slide decks.", "source": ["skillhub", "topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/create-slidev-presentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-slidev-presentation"}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T09:20:28Z"}, "embedding_text": "create-slidev-presentation. This skill should be used when asked to create or edit Slidev (sli.dev) presentation slide decks. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} +{"id": "16e89fad0445f8fa46a604bb9568b4ebcb0dd6f55c7d4e1de34de2e05c8178f5", "repo_url": "https://github.com/samhvw8/dotfiles", "name": "3d-graphics", "description": "3D web graphics with Three.js (WebGL/WebGPU). Capabilities: scenes, cameras, geometries, materials, lights, animations, model loading (GLTF/FBX), PBR materials, shadows, post-processing (bloom, SSAO,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samhvw8/dotfiles/blob/master/dot_ccp/hub/skills/3d-graphics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:59:44Z"}, "embedding_text": "3d-graphics. 3D web graphics with Three.js (WebGL/WebGPU). Capabilities: scenes, cameras, geometries, materials, lights, animations, model loading (GLTF/FBX), PBR materials, shadows, post-processing (bloom, SSAO, Platforms: claude_code."} +{"id": "6ada08cefae0390f8acf1d845a3c26b29b88527d326f8a25277854d666a2fd12", "repo_url": "https://github.com/w00ing/seer-skill", "name": "seer", "description": "Visual feedback capture for any running macOS app window via osascript + screencapture. Use when the user wants UI verification or a fresh screenshot.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/w00ing/seer-skill/blob/main/skills/seer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 68, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T09:33:04Z"}, "embedding_text": "seer. Visual feedback capture for any running macOS app window via osascript + screencapture. Use when the user wants UI verification or a fresh screenshot. Platforms: claude_code."} +{"id": "949dd40393785f297232a5b5193db138b6956aff19e8b8258c4b38fd36a727e3", "repo_url": "https://github.com/richardgill/nix", "name": "upgrade-nixos", "description": "This skill upgrades NixOS to a new release version (e.g., 25.05 \u2192 25.11).\nTriggers: \"upgrade nixos\", \"upgrade to new release\", \"update nixos version\",\n\"move to nixos 25.11\", \"nixos release upgrade\", \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/richardgill/nix/blob/main/.claude/skills/upgrade-nixos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:00:27Z"}, "embedding_text": "upgrade-nixos. This skill upgrades NixOS to a new release version (e.g., 25.05 \u2192 25.11).\nTriggers: \"upgrade nixos\", \"upgrade to new release\", \"update nixos version\",\n\"move to nixos 25.11\", \"nixos release upgrade\", \" Platforms: claude_code."} +{"id": "b4ec4ac8d8501bcd386ae65fa5480533d38af09fc1a5acd2ff4570cb4050ee2c", "repo_url": "https://github.com/nahisaho/musubi", "name": "bug-hunter", "description": "Copilot agent that assists with bug investigation, root cause analysis, and fix generation for efficient debugging and issue resolution\n\nTrigger terms: bug fix, debug, troubleshoot, root cause analysi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/bug-hunter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "bug-hunter. Copilot agent that assists with bug investigation, root cause analysis, and fix generation for efficient debugging and issue resolution\n\nTrigger terms: bug fix, debug, troubleshoot, root cause analysi Platforms: claude_code."} +{"id": "c3fc551e82403eecf398f6763ffe79bdc50d647636e0fa8f56efaf3de3aacc40", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "observe", "description": "Query and manage Observe using the Observe CLI. Use when the user wants to run OPAL queries, list datasets, manage objects, or interact with their Observe tenant from the command line.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/backend/asyncredux-observers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "observe. Query and manage Observe using the Observe CLI. Use when the user wants to run OPAL queries, list datasets, manage objects, or interact with their Observe tenant from the command line. Platforms: claude_code."} +{"id": "2873b9267fedb049472eac119cbe46d8bb9986eb585302f44eda65059f6d5948", "repo_url": "https://github.com/isjiamu/jiamu-skills", "name": "video-downloader", "description": "Download videos from 1000+ websites (YouTube, Bilibili, Twitter/X, TikTok, etc.) using yt-dlp. Use this skill when users provide video URLs and want to download videos, extract audio, or need help wit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/isjiamu/jiamu-skills/blob/main/video-downloader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 92, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T14:23:16Z"}, "embedding_text": "video-downloader. Download videos from 1000+ websites (YouTube, Bilibili, Twitter/X, TikTok, etc.) using yt-dlp. Use this skill when users provide video URLs and want to download videos, extract audio, or need help wit Platforms: claude_code."} +{"id": "e239b61a8f6d8d95563aa45fa0375606ba47bbb67cf94964def45c7934aef108", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "hatchling", "description": "Use when working with Hatchling \u2014 configuring build system setup, pyproject.toml metadata, dependencies, entry points, build hooks, version management, wheel and sdist builds, package distribution, se", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/hatchling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "hatchling. Use when working with Hatchling \u2014 configuring build system setup, pyproject.toml metadata, dependencies, entry points, build hooks, version management, wheel and sdist builds, package distribution, se Platforms: claude_code."} +{"id": "0b2c9c8f4e404453c9c7d875d4129026be2b09dac73e76018e30fe916d1d2729", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "web-audio-api", "description": "Web Audio API for JARVIS audio feedback and voice processing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/web-audio-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "web-audio-api. Web Audio API for JARVIS audio feedback and voice processing Platforms: claude_code."} +{"id": "128e8f842039db35dab7f00bcb2de885dc35dc6ec8b633bcf342d08cfb202817", "repo_url": "https://github.com/bkircher/skills", "name": "gh-address-comments", "description": "Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bkircher/skills/blob/main/gh-address-comments/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-13T12:23:43Z"}, "embedding_text": "gh-address-comments. Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in. Platforms: claude_code."} +{"id": "f6d7331123b02d61fabe778ab140244afee077542506dfb867a036748a7ed168", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-tech-panel", "description": "Convene a senior engineering expert panel to evaluate technical decisions. Activate when user mentions \"tech panel\", \"technical discussion\", \"expert opinion\", \"architecture decision\", \"which technolog", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-tech-panel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-tech-panel. Convene a senior engineering expert panel to evaluate technical decisions. Activate when user mentions \"tech panel\", \"technical discussion\", \"expert opinion\", \"architecture decision\", \"which technolog Platforms: claude_code."} +{"id": "a1ff092782d98d5bf3871acc96f3ac00b332b92b5a8a3493e02e4fe36a549243", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-deep-linking", "description": "Complete guide to implementing deep links and universal links in Capacitor apps. Covers iOS Universal Links, Android App Links, custom URL schemes, and navigation handling. Use this skill when users n", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-features/skills/capacitor-deep-linking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-deep-linking. Complete guide to implementing deep links and universal links in Capacitor apps. Covers iOS Universal Links, Android App Links, custom URL schemes, and navigation handling. Use this skill when users n Platforms: claude_code."} +{"id": "87513f695bd8fae23c0e7aed31e7761e7dde7fcae455e21eec347875936d1ba8", "repo_url": "https://github.com/prebid/salesagent", "name": "audit", "description": "Run a repeatable code review audit on migration changes. Inventories files by architectural layer, reviews each layer against #1050/#1066 principles, and files beads issues for findings. Re-run after", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prebid/salesagent/blob/main/.claude/skills/audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 33, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:49Z"}, "embedding_text": "audit. Run a repeatable code review audit on migration changes. Inventories files by architectural layer, reviews each layer against #1050/#1066 principles, and files beads issues for findings. Re-run after Platforms: claude_code."} +{"id": "6a3c385060e2e96616de92fb593e1493acc319c4f0d36797d34ffda433d9f753", "repo_url": "https://github.com/doccker/cc-use-exp", "name": "java-dev", "description": "Java \u5f00\u53d1\u89c4\u8303\u3002\u5f53\u7528\u6237\u64cd\u4f5c .java\u3001pom.xml\u3001build.gradle \u6587\u4ef6\uff0c\u6216\u6d89\u53ca Spring Boot\u3001JPA\u3001MyBatis \u5f00\u53d1\u65f6\u89e6\u53d1\u3002 \u5305\u542b\u547d\u540d\u7ea6\u5b9a\u3001\u5f02\u5e38\u5904\u7406\u3001DTO/VO \u89c4\u8303\u3001\u6279\u91cf\u67e5\u8be2\u3001N+1 \u9632\u8303\u3001\u5e76\u53d1\u5b89\u5168\u3001\u8f93\u5165\u6821\u9a8c\u3001Spring Boot \u6700\u4f73\u5b9e\u8df5\u7b49\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doccker/cc-use-exp/blob/main/.claude/skills/java-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 854, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T07:19:36Z"}, "embedding_text": "java-dev. Java \u5f00\u53d1\u89c4\u8303\u3002\u5f53\u7528\u6237\u64cd\u4f5c .java\u3001pom.xml\u3001build.gradle \u6587\u4ef6\uff0c\u6216\u6d89\u53ca Spring Boot\u3001JPA\u3001MyBatis \u5f00\u53d1\u65f6\u89e6\u53d1\u3002 \u5305\u542b\u547d\u540d\u7ea6\u5b9a\u3001\u5f02\u5e38\u5904\u7406\u3001DTO/VO \u89c4\u8303\u3001\u6279\u91cf\u67e5\u8be2\u3001N+1 \u9632\u8303\u3001\u5e76\u53d1\u5b89\u5168\u3001\u8f93\u5165\u6821\u9a8c\u3001Spring Boot \u6700\u4f73\u5b9e\u8df5\u7b49\u3002 Platforms: claude_code."} +{"id": "842937926731748547026c8ebc68df7da0cea52c89520b22cb7207d341408927", "repo_url": "https://github.com/camoa/claude-skills", "name": "brand-content-design", "description": "Use when user says \"create presentation\", \"make carousel\", \"setup brand\", \"brand init\", \"extract brand\", \"get outline\", or wants to create visual content with consistent branding. Creates branded pres", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/camoa/claude-skills/blob/main/brand-content-design/skills/brand-content-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T19:12:28Z"}, "embedding_text": "brand-content-design. Use when user says \"create presentation\", \"make carousel\", \"setup brand\", \"brand init\", \"extract brand\", \"get outline\", or wants to create visual content with consistent branding. Creates branded pres Platforms: claude_code."} +{"id": "27774bdc38e234960582d522600950ea9588a9ab206a65fff7c2da026ab422f5", "repo_url": "https://github.com/plurigrid/asi", "name": "pdf", "description": "Comprehensive PDF manipulation toolkit for extracting text and tables,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/analyzing-malicious-pdf-with-peepdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "pdf. Comprehensive PDF manipulation toolkit for extracting text and tables, Platforms: claude_code."} +{"id": "1c3edb6b79a1f72b2b7e53c70c8881ff1c464041f9ab61ad3b3864a6c8e9e399", "repo_url": "https://github.com/plurigrid/asi", "name": "domain-name-brainstormer", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/domain-name-brainstormer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "domain-name-brainstormer. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1bf5aea9e2316afe78404c12caf9d9a3a05c54bf5e4449ab7c8d972b6842ecda", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "create-plan", "description": "Create detailed implementation plans through interactive research and iteration. This skill should be used when creating new implementation plans, designing feature specifications, planning technical", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/create-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "create-plan. Create detailed implementation plans through interactive research and iteration. This skill should be used when creating new implementation plans, designing feature specifications, planning technical Platforms: claude_code."} +{"id": "9ec47e85c8e526d01b3afa6f0af4cd171dd8e9ba962433934b29b32f9190e3fe", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-estimate", "description": "Estimate effort, duration and cost using 4 complementary models (Function Points, Planning Poker AI, COCOMO, Historical). Activate when user mentions \"estimate\", \"estimation\", \"effort\", \"how long\", \"c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-estimate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-estimate. Estimate effort, duration and cost using 4 complementary models (Function Points, Planning Poker AI, COCOMO, Historical). Activate when user mentions \"estimate\", \"estimation\", \"effort\", \"how long\", \"c Platforms: claude_code."} +{"id": "9c66af059be2c0c5156257469afb754bd25ea9215f1f9077548c9e68dbe0965b", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-pathtraversal", "description": "Detect path traversal vulnerabilities in a codebase using a three-phase approach: recon (find file-loading sinks with dynamic paths), batched verify (trace user input and mitigations in parallel subag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-pathtraversal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-pathtraversal. Detect path traversal vulnerabilities in a codebase using a three-phase approach: recon (find file-loading sinks with dynamic paths), batched verify (trace user input and mitigations in parallel subag Platforms: claude_code."} +{"id": "0b39e140e66358a80890137f5f0e239783a06c9c1d90701b90466175468c3a0b", "repo_url": "https://github.com/prebid/salesagent", "name": "surface", "description": "Map the complete test surface for domain entities by cross-referencing test-obligations with existing tests. Produces one canonical test module per entity with real tests + skip stubs for gaps. Every", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prebid/salesagent/blob/main/.claude/skills/surface/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 33, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:49Z"}, "embedding_text": "surface. Map the complete test surface for domain entities by cross-referencing test-obligations with existing tests. Produces one canonical test module per entity with real tests + skip stubs for gaps. Every Platforms: claude_code."} +{"id": "0cdd9c857a0fa3cbac9e1cd1e73bd3f45ef570e0919abef9bb8c3bfb631e72d3", "repo_url": "https://github.com/prebid/salesagent", "name": "guard", "description": "Create structural guard tests that enforce architecture principles on every `make quality` run. Guards are AST-scanning tests that prevent categories of violations automatically. Available guards: sch", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prebid/salesagent/blob/main/.claude/skills/guard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 33, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:49Z"}, "embedding_text": "guard. Create structural guard tests that enforce architecture principles on every `make quality` run. Guards are AST-scanning tests that prevent categories of violations automatically. Available guards: sch Platforms: claude_code."} +{"id": "929bc31df2893298ddd6599d1f9dbd697b212ca7ddb8d7fb4e403997587d4778", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "flutter-testing", "description": "Comprehensive Flutter testing guidance covering unit tests, widget tests, and integration tests. Use when working with Flutter applications to write unit tests for functions/methods/classes, create wi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/flutter-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "flutter-testing. Comprehensive Flutter testing guidance covering unit tests, widget tests, and integration tests. Use when working with Flutter applications to write unit tests for functions/methods/classes, create wi Platforms: claude_code."} +{"id": "dcb3c940d9839341f390d707789d3c49fb6b667d06380d6a4ff0b6cf247eb7cf", "repo_url": "https://github.com/whiskeyjack96/obsidian-agent", "name": "release-new-version", "description": "Help the user release new versions of this plugin. Use anytime the user asks for help releasing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/whiskeyjack96/obsidian-agent/blob/main/.claude/skills/release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T01:56:41Z"}, "embedding_text": "release-new-version. Help the user release new versions of this plugin. Use anytime the user asks for help releasing Platforms: claude_code."} +{"id": "e24e700c37c9143342abf68e07e3a45dc7617d48863426837eb70f5c2e5ee9db", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "tool-search", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/tool-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "tool-search. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "59ff07d6621011efd5bebcac28988509c05a2de99268829d9513c71f13d374bd", "repo_url": "https://github.com/samhvw8/dotfiles", "name": "chrome-devtools", "description": "Browser automation via Puppeteer CLI scripts (JSON output). Capabilities: screenshots, PDF generation, web scraping, form automation, network monitoring, performance profiling, JavaScript debugging, h", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samhvw8/dotfiles/blob/master/dot_ccp/hub/skills/chrome-devtools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:59:44Z"}, "embedding_text": "chrome-devtools. Browser automation via Puppeteer CLI scripts (JSON output). Capabilities: screenshots, PDF generation, web scraping, form automation, network monitoring, performance profiling, JavaScript debugging, h Platforms: claude_code."} +{"id": "cd921d77563a5c3555192f08642c12b9391a9324c86cbd97f5512ea2ea041f5d", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-trace-graph", "description": "Build complete call graphs with GrepAI trace. Use this skill for recursive dependency analysis.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/trace/grepai-trace-graph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-trace-graph. Build complete call graphs with GrepAI trace. Use this skill for recursive dependency analysis. Platforms: claude_code."} +{"id": "19818029ddd5b44f8a9c94cd970845926beeb98c5be527b58a975f25d93a6e85", "repo_url": "https://github.com/iota9star/my-skills", "name": "finding-files", "description": "Performs fast file discovery with parallel search and smart defaults. Use this skill when searching for files by name, pattern, or type, especially when performance matters or when working with large", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iota9star/my-skills/blob/main/skills/ast-grep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-24T04:33:50Z"}, "embedding_text": "finding-files. Performs fast file discovery with parallel search and smart defaults. Use this skill when searching for files by name, pattern, or type, especially when performance matters or when working with large Platforms: claude_code."} +{"id": "0aff499f2428881653e62ef581482aa6dd55cdc908f3a91045524315c9ab1f51", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "golang-patterns", "description": "Go \u8bed\u8a00\u60ef\u7528\u6a21\u5f0f\u3001\u6700\u4f73\u5b9e\u8df5\u4ee5\u53ca\u6784\u5efa\u5065\u58ee\u3001\u9ad8\u6548\u4e14\u53ef\u7ef4\u62a4 Go \u5e94\u7528\u7a0b\u5e8f\u7684\u89c4\u8303\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/golang-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "golang-patterns. Go \u8bed\u8a00\u60ef\u7528\u6a21\u5f0f\u3001\u6700\u4f73\u5b9e\u8df5\u4ee5\u53ca\u6784\u5efa\u5065\u58ee\u3001\u9ad8\u6548\u4e14\u53ef\u7ef4\u62a4 Go \u5e94\u7528\u7a0b\u5e8f\u7684\u89c4\u8303\u3002 Platforms: claude_code."} +{"id": "f80b47047e54d236433814cdb29d04662aabc4bff5f4e9f5caf51d3c506f3e0a", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-xxe", "description": "Detect XML External Entity (XXE) vulnerabilities in a codebase using a three-phase approach: recon (find XML parsing sites without external-entity hardening), batched verify (trace user input to each", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-xxe/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-xxe. Detect XML External Entity (XXE) vulnerabilities in a codebase using a three-phase approach: recon (find XML parsing sites without external-entity hardening), batched verify (trace user input to each Platforms: claude_code."} +{"id": "fd95fd66e6bf643f6860a7e18b5855aaab738f8c73c0290acd67db101413a3cd", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "async-expert", "description": "Expert in asynchronous programming patterns across languages (Python asyncio, JavaScript/TypeScript promises, C# async/await, Rust futures). Use for concurrent programming, event loops, async patterns", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/async-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "async-expert. Expert in asynchronous programming patterns across languages (Python asyncio, JavaScript/TypeScript promises, C# async/await, Rust futures). Use for concurrent programming, event loops, async patterns Platforms: claude_code."} +{"id": "3e2b28e61d8db29f1eb319b54d52b6c5c40a633ae268e074ad57143dee353b6d", "repo_url": "https://github.com/encoredev/skills", "name": "encore-auth", "description": "Implement authentication with auth handlers and gateways in Encore.ts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/encoredev/skills/blob/main/encore/auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T21:00:31Z"}, "embedding_text": "encore-auth. Implement authentication with auth handlers and gateways in Encore.ts. Platforms: claude_code."} +{"id": "0a04da9dad5d4cd59b97ba44dcbc4d6237e09a711f881b0dad30eefcf30e871f", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-compliance", "description": "Comprehensive Azure compliance and security auditing capabilities including best practices assessment, Key Vault expiration monitoring, and resource configuration validation. WHEN: compliance scan, security audit, BEFORE running azqr (compliance cli tool), Azure best practices, Key Vault expiration check, compliance assessment, resource review, configuration validation, expired certificates, expiring secrets, orphaned resources, policy compliance, security posture evaluation.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-compliance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-compliance"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-compliance. Comprehensive Azure compliance and security auditing capabilities including best practices assessment, Key Vault expiration monitoring, and resource configuration validation. WHEN: compliance scan, security audit, BEFORE running azqr (compliance cli tool), Azure best practices, Key Vault expiration check, compliance assessment, resource review, configuration validation, expired certificates, expiring secrets, orphaned resources, policy compliance, security posture evaluation. Platforms: claude_code."} +{"id": "7b292f8a17ceb7abc4896c47ea1c682b7311d30158c81f4de142dd91021c5219", "repo_url": "https://github.com/robertguss/claude-skills", "name": "app-store-opportunity-research", "description": "Full-pipeline iOS App Store opportunity research. Discovers underserved niches, analyzes competitor gaps, estimates revenue, produces scored top-3 opportunity reports, and writes MVP PRDs \u2014 all throug", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/mobile-app-dev/app-store-opportunity-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "app-store-opportunity-research. Full-pipeline iOS App Store opportunity research. Discovers underserved niches, analyzes competitor gaps, estimates revenue, produces scored top-3 opportunity reports, and writes MVP PRDs \u2014 all throug Platforms: claude_code."} +{"id": "8d820913abbfeab47c97906d41cae9a018be0c4a9e7b3aa3ca594dc6dd8d1506", "repo_url": "https://github.com/basher83/lunar-claude", "name": "git-workflow", "description": "This skill should be used when the user asks to \"make commits\", \"commit all changes\", \"create a branch\", \"name a branch\", \"organize commits\", \"conventional commits\", \"generate changelog\", \"release ver", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/devops/git-workflow/skills/git-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "git-workflow. This skill should be used when the user asks to \"make commits\", \"commit all changes\", \"create a branch\", \"name a branch\", \"organize commits\", \"conventional commits\", \"generate changelog\", \"release ver Platforms: claude_code."} +{"id": "6996ef3ab2c73d5599de8c047532b4ef05da8321ccd226297e0924a7a3439a02", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-push-notifications", "description": "Complete guide to implementing push notifications in Capacitor apps using Firebase Cloud Messaging (FCM) and Apple Push Notification Service (APNs). Covers setup, handling, and best practices. Use thi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-features/skills/capacitor-push-notifications/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-push-notifications. Complete guide to implementing push notifications in Capacitor apps using Firebase Cloud Messaging (FCM) and Apple Push Notification Service (APNs). Covers setup, handling, and best practices. Use thi Platforms: claude_code."} +{"id": "1cbfe2f67deb4065c5d5c71a5c4521ecde871045abe6b001c333091b04f8df42", "repo_url": "https://github.com/plurigrid/asi", "name": "lean-proof-walk", "description": "GF(3)-balanced random walk through Lean proof states. Use when generating formal proof chains with parallel triad verification. Invokes 3 agents (Generator +1, Coordinator 0, Validator -1) to traverse", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/lean-proof-walk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "lean-proof-walk. GF(3)-balanced random walk through Lean proof states. Use when generating formal proof chains with parallel triad verification. Invokes 3 agents (Generator +1, Coordinator 0, Validator -1) to traverse Platforms: claude_code."} +{"id": "df3a027159a93af274e2f7225612ef04f7a5ddf05511afefd83ff3f27159b6c7", "repo_url": "https://github.com/plurigrid/asi", "name": "sicmutils", "description": "SICMUtils/Emmy - Clojure library for symbolic mathematics, automatic differentiation, and classical mechanics. Bridges SICM concepts to executable computation via SRFI-compatible abstractions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/sicmutils/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "sicmutils. SICMUtils/Emmy - Clojure library for symbolic mathematics, automatic differentiation, and classical mechanics. Bridges SICM concepts to executable computation via SRFI-compatible abstractions. Platforms: claude_code."} +{"id": "fa1e3c130e93a3d28dea9379d6152521a1e9b864502020d4258e3490b355b1ac", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "setup-device", "description": "Install and configure agent-device MCP server for simulator/emulator control", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/erne-setup-device/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "setup-device. Install and configure agent-device MCP server for simulator/emulator control Platforms: claude_code."} +{"id": "b3aac73f17bb2074a54843643f0284b247d8074db5a6a9e03fcc77a4c21b5a6e", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "sentry-monitoring", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/sentry-monitoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "sentry-monitoring. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ddf87ae169e6f536505927a4c9ca009a90493350c34aa97cff17bb3f8fe7ed81", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "cloudflare-ai-gateway", "description": "Cloudflare AI Gateway for unified interface to AI providers with caching, rate limiting, and analytics", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/cloudflare-ai-gateway/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "cloudflare-ai-gateway. Cloudflare AI Gateway for unified interface to AI providers with caching, rate limiting, and analytics Platforms: claude_code."} +{"id": "60bc2d7ec7ff412c6b3a611f5311e858d94591701e3ae59c223a71b2c294d8cd", "repo_url": "https://github.com/brazil-bench/pourpoise", "name": "pdd", "description": "This sop guides you through the process of transforming a rough idea into a detailed design document with an implementation plan and todo list. It follows the Prompt-Driven Development methodology to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brazil-bench/pourpoise/blob/main/skills/pdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:46:45Z"}, "embedding_text": "pdd. This sop guides you through the process of transforming a rough idea into a detailed design document with an implementation plan and todo list. It follows the Prompt-Driven Development methodology to Platforms: claude_code."} +{"id": "2df8ae17be3c6dad81675b982d3d795cac0f0f6b453281d645c532816e126380", "repo_url": "https://github.com/pacphi/sindri", "name": "sindri-extension-guide", "description": "Guide users through creating Sindri extensions. Use when creating new extensions, understanding extension.yaml structure, validating extensions against schemas, or learning about extension installatio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pacphi/sindri/blob/main/.claude/skills/extension-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:07:37Z"}, "embedding_text": "sindri-extension-guide. Guide users through creating Sindri extensions. Use when creating new extensions, understanding extension.yaml structure, validating extensions against schemas, or learning about extension installatio Platforms: claude_code."} +{"id": "9b66e3b07478dbde233a0e6969c50510fdf2f021a762df3c26d9f19bb3ce616c", "repo_url": "https://github.com/jubakitiashvili/everything-react-native-expo", "name": "native-module-scaffold", "description": "Guided wizard for creating Turbo Modules and Expo Modules with iOS and Android implementations", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jubakitiashvili/everything-react-native-expo/blob/main/.claude/skills/native-module-scaffold/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T16:10:07Z"}, "embedding_text": "native-module-scaffold. Guided wizard for creating Turbo Modules and Expo Modules with iOS and Android implementations Platforms: claude_code."} +{"id": "56ed1d5eff9fcc3c7b015dcdaf8e77d16902f37bb83ff068228f052f7520dd5b", "repo_url": "https://github.com/washanhanzi/connectrpc-axum", "name": "submit-issue", "description": "Handle user questions, feature requests, and bug reports for connectrpc-axum. This skill should be used when users ask questions about the library, request new features, or report bugs. It first attem", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/washanhanzi/connectrpc-axum/blob/main/.agents/skills/submit-issue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T07:16:53Z"}, "embedding_text": "submit-issue. Handle user questions, feature requests, and bug reports for connectrpc-axum. This skill should be used when users ask questions about the library, request new features, or report bugs. It first attem Platforms: claude_code."} +{"id": "a73e1c75e8094b555e6daa34b2857420f75e1dd4f8f04342e6355d578ff0e059", "repo_url": "https://github.com/plurigrid/asi", "name": "implicit-coordination", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/implicit-coordination/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "implicit-coordination. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "51d76168809ae24db31ce8be0a7c8c255959ff6e8053194c24f7a0066370e755", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-drawings", "description": "Draw and annotate during Slidev presentations. Use this skill for live annotations, highlighting, and visual explanations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/presentation/slidev-drawings/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-drawings. Draw and annotate during Slidev presentations. Use this skill for live annotations, highlighting, and visual explanations. Platforms: claude_code."} +{"id": "6c2942984f003d78ffd7669e9a2ef7f11e6a6448f41dcd0e101542dd33887595", "repo_url": "https://github.com/doccker/cc-use-exp", "name": "go-dev", "description": "Go \u5f00\u53d1\u89c4\u8303\u3002\u5f53\u7528\u6237\u64cd\u4f5c .go\u3001go.mod\u3001go.sum \u6587\u4ef6\uff0c\u6216\u6d89\u53ca Go \u540e\u7aef\u5f00\u53d1\uff08Gin\u3001GORM\u3001Echo\uff09\u65f6\u89e6\u53d1\u3002 \u5305\u542b\u547d\u540d\u7ea6\u5b9a\u3001import \u987a\u5e8f\u3001\u9519\u8bef\u5904\u7406\u3001\u5e76\u53d1\u7f16\u7a0b\u3001\u6d4b\u8bd5\u89c4\u8303\u3001\u6027\u80fd\u4f18\u5316\u7b49\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doccker/cc-use-exp/blob/main/.claude/skills/go-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 854, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T07:19:36Z"}, "embedding_text": "go-dev. Go \u5f00\u53d1\u89c4\u8303\u3002\u5f53\u7528\u6237\u64cd\u4f5c .go\u3001go.mod\u3001go.sum \u6587\u4ef6\uff0c\u6216\u6d89\u53ca Go \u540e\u7aef\u5f00\u53d1\uff08Gin\u3001GORM\u3001Echo\uff09\u65f6\u89e6\u53d1\u3002 \u5305\u542b\u547d\u540d\u7ea6\u5b9a\u3001import \u987a\u5e8f\u3001\u9519\u8bef\u5904\u7406\u3001\u5e76\u53d1\u7f16\u7a0b\u3001\u6d4b\u8bd5\u89c4\u8303\u3001\u6027\u80fd\u4f18\u5316\u7b49\u3002 Platforms: claude_code."} +{"id": "ceb938f71f70b5a86d601f4d421fae64c94081034e9dbc8fbc0f8aac95158174", "repo_url": "https://github.com/plurigrid/asi", "name": "paypal-mcp", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/paypal-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "paypal-mcp. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ef479a7d0905b4a130b0066c2e001682f2abd57d024bb7bdb7f69ebceee4b394", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "woocommerce-webhooks", "description": "Receive and verify WooCommerce webhooks. Use when setting up WooCommerce webhook handlers, debugging signature verification, or handling e-commerce events like order.created, order.updated, product.cr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/woocommerce-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "woocommerce-webhooks. Receive and verify WooCommerce webhooks. Use when setting up WooCommerce webhook handlers, debugging signature verification, or handling e-commerce events like order.created, order.updated, product.cr Platforms: claude_code."} +{"id": "c5ff9671d9a5233114707d06f6e167fdda232ba7ff7389c73e414c5d2f54c53e", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "cloudflare-ai-search", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/cloudflare-ai-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "cloudflare-ai-search. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "08a8a2273238f9cab86aa5f48807eaef559982f72a9a924368fb39df8dfaa6f6", "repo_url": "https://github.com/agent-network-protocol/anp", "name": "anp-agent", "description": "ANP \u534f\u8bae\u8de8 Agent \u8c03\u7528\u6280\u80fd\u3002\u901a\u8fc7 did:wba \u53bb\u4e2d\u5fc3\u5316\u8eab\u4efd\uff0c\u8c03\u7528 ANP \u7f51\u7edc\u4e2d\u7684\u4efb\u610f Agent\uff08\u5982\u9ad8\u5fb7\u5730\u56fe\u3001\u9152\u5e97\u9884\u8ba2\u3001\u5feb\u9012\u67e5\u8be2\u7b49\uff09\u3002\u5f53\u7528\u6237\u63d0\u5230 ANP\u3001\u8c03\u7528 Agent\u3001\u8ba2\u9152\u5e97\u3001\u67e5\u5feb\u9012\u3001\u67e5\u5730\u56fe\u3001\u8def\u7ebf\u89c4\u5212\u65f6\u89e6\u53d1\u6b64\u6280\u80fd\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-network-protocol/anp/blob/master/skills/anp-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T16:06:55Z"}, "embedding_text": "anp-agent. ANP \u534f\u8bae\u8de8 Agent \u8c03\u7528\u6280\u80fd\u3002\u901a\u8fc7 did:wba \u53bb\u4e2d\u5fc3\u5316\u8eab\u4efd\uff0c\u8c03\u7528 ANP \u7f51\u7edc\u4e2d\u7684\u4efb\u610f Agent\uff08\u5982\u9ad8\u5fb7\u5730\u56fe\u3001\u9152\u5e97\u9884\u8ba2\u3001\u5feb\u9012\u67e5\u8be2\u7b49\uff09\u3002\u5f53\u7528\u6237\u63d0\u5230 ANP\u3001\u8c03\u7528 Agent\u3001\u8ba2\u9152\u5e97\u3001\u67e5\u5feb\u9012\u3001\u67e5\u5730\u56fe\u3001\u8def\u7ebf\u89c4\u5212\u65f6\u89e6\u53d1\u6b64\u6280\u80fd\u3002 Platforms: claude_code."} +{"id": "da0d9027bc33ffd07b770fdb2f9d46992f3188cbbe536d5513096461bcc17f28", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "memory-systems", "description": "Design and implement memory architectures for agent systems. Use when building agents that need to persist state across sessions, maintain entity consistency, or reason over structured knowledge.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/memory-systems/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "memory-systems. Design and implement memory architectures for agent systems. Use when building agents that need to persist state across sessions, maintain entity consistency, or reason over structured knowledge. Platforms: claude_code."} +{"id": "2b7804d05495137480dc4577cf17109e93f1a79ac11c026d162d0ee7efe8eba1", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "ralph", "description": "Agent-agnostic autonomous loop creator. Use when asked to 'use ralph', 'ralph this', 'reverse ralph', 'decompose a feature', or '/ralph decompose'. Forward mode implements features end-to-end; decompo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/factory-ralph-loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "ralph. Agent-agnostic autonomous loop creator. Use when asked to 'use ralph', 'ralph this', 'reverse ralph', 'decompose a feature', or '/ralph decompose'. Forward mode implements features end-to-end; decompo Platforms: claude_code."} +{"id": "4db64e9661eb368ebe5d67fe30e6c3292aba7333783b451e0739c1ba5c8ddc7f", "repo_url": "https://github.com/plurigrid/asi", "name": "specter-navigator-gadget", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/specter-navigator-gadget/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "specter-navigator-gadget. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "461dd312443a1e2e091ac8b8f9621c6adb41b1e8ea96ae99140510c6761c3123", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "documentation-specialist", "description": "\u521b\u5efa\u548c\u7ef4\u62a4\u6280\u672f\u6587\u6863\u3001API \u6587\u6863\u3001\u4ee3\u7801\u6ce8\u91ca\u548c\u9879\u76ee\u6587\u6863\u3002\u5f53\u9700\u8981\u751f\u6210\u3001\u66f4\u65b0\u6216\u6539\u8fdb\u6587\u6863\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/documentation-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "documentation-specialist. \u521b\u5efa\u548c\u7ef4\u62a4\u6280\u672f\u6587\u6863\u3001API \u6587\u6863\u3001\u4ee3\u7801\u6ce8\u91ca\u548c\u9879\u76ee\u6587\u6863\u3002\u5f53\u9700\u8981\u751f\u6210\u3001\u66f4\u65b0\u6216\u6539\u8fdb\u6587\u6863\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "c0453c96655edd8999b8a3362e5a1fc347516a5bb3c1822f8dda0886ac987ff2", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "cloudflare-pulumi", "description": "Pulumi infrastructure as code for Cloudflare resources with TypeScript, Python, and Go support", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/cloudflare-pulumi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "cloudflare-pulumi. Pulumi infrastructure as code for Cloudflare resources with TypeScript, Python, and Go support Platforms: claude_code."} +{"id": "5e908c81cde99b1579d666ca8e115897f9f55b5bbc5875015f24e9c3bb361cfc", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "ios-android-logs", "description": "Guide to accessing device logs on iOS and Android for Capacitor apps. Covers command-line tools, GUI applications, filtering, and real-time streaming. Use this skill when users need to view device log", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-quality/skills/ios-android-logs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "ios-android-logs. Guide to accessing device logs on iOS and Android for Capacitor apps. Covers command-line tools, GUI applications, filtering, and real-time streaming. Use this skill when users need to view device log Platforms: claude_code."} +{"id": "3dbfd7d27d3b0b9532b6ba8fe882f0b8ed0ed49821c6c7f4fa7539b36abb70d5", "repo_url": "https://github.com/plurigrid/asi", "name": "jaxlife-open-ended", "description": "JaxLife open-ended agentic simulator for emergent behavior, tool use,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/jaxlife-open-ended/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "jaxlife-open-ended. JaxLife open-ended agentic simulator for emergent behavior, tool use, Platforms: claude_code."} +{"id": "7730f16f3a0bcf9615493acc6e4e63e86edb12c5379d1bcf954c4924204da0c5", "repo_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit", "name": "api-authentication", "description": "API authentication patterns including JWT, OAuth 2.0, API keys, and session-based auth. Covers token generation, validation, refresh strategies, security best practices, and when to use each pattern.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit/blob/main/skills/general-dev/api-authentication/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T12:36:10Z"}, "embedding_text": "api-authentication. API authentication patterns including JWT, OAuth 2.0, API keys, and session-based auth. Covers token generation, validation, refresh strategies, security best practices, and when to use each pattern. Platforms: claude_code."} +{"id": "35a8a3d88feb29c3e6ddbf157e0ac3d3a0806d6c327317598a8ba66cbe57de00", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "fusionauth-webhooks", "description": "Receive and verify FusionAuth webhooks. Use when setting up FusionAuth webhook handlers, debugging JWT signature verification, or handling authentication events like user.create, user.login.success, u", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/fusionauth-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "fusionauth-webhooks. Receive and verify FusionAuth webhooks. Use when setting up FusionAuth webhook handlers, debugging JWT signature verification, or handling authentication events like user.create, user.login.success, u Platforms: claude_code."} +{"id": "72964873d210d9e828012ecb72a14b2a620ee8607ac31cb63d5e02c18d56c8ae", "repo_url": "https://github.com/congdon1207/agents.md", "name": "planning", "description": "Use when you need to plan technical solutions that are scalable, secure, and maintainable.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/planning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "planning. Use when you need to plan technical solutions that are scalable, secure, and maintainable. Platforms: claude_code."} +{"id": "d8a4b1fdae67d994d88b216190e1a33abb36a9877447103fb9faae1e79086307", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "assignation-refere-recouvrement-creance-selim-brihi", "description": "R\u00e9daction d'assignations en r\u00e9f\u00e9r\u00e9 devant le tribunal de commerce ou des activit\u00e9s \u00e9conomiques pour le recouvrement de cr\u00e9ances commerciales. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger, pr\u00e9parer ou cr\u00e9er une assignation en r\u00e9f\u00e9r\u00e9 pour obtenir le paiement d'une cr\u00e9ance impay\u00e9e (factures, prestations de services, ventes de marchandises, etc.) lorsque le d\u00e9biteur n'a pas honor\u00e9 ses obligations de paiement et qu'il n'existe pas de contestation s\u00e9rieuse.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/assignation-refere-recouvrement-creance-selim-brihi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install assignation-refere-recouvrement-creance-selim-brihi"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "assignation-refere-recouvrement-creance-selim-brihi. R\u00e9daction d'assignations en r\u00e9f\u00e9r\u00e9 devant le tribunal de commerce ou des activit\u00e9s \u00e9conomiques pour le recouvrement de cr\u00e9ances commerciales. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger, pr\u00e9parer ou cr\u00e9er une assignation en r\u00e9f\u00e9r\u00e9 pour obtenir le paiement d'une cr\u00e9ance impay\u00e9e (factures, prestations de services, ventes de marchandises, etc.) lorsque le d\u00e9biteur n'a pas honor\u00e9 ses obligations de paiement et qu'il n'existe pas de contestation s\u00e9rieuse. Platforms: claude_code."} +{"id": "0d04a6b0878736edb0e44f76e52be0ee2558d8c24ffdbb418bee49849bb0da95", "repo_url": "https://github.com/reduxjs/redux-toolkit", "name": "model-redux-state/build-slices-and-selectors", "description": "Use this when authoring or refactoring slices with createSlice, selectors, create.asyncThunk, entity adapters, or lazy reducer injection. Covers Immer-backed mutation syntax, slice selectors, getSelec", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reduxjs/redux-toolkit/blob/master/packages/toolkit/skills/model-redux-state/build-slices-and-selectors/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:41:25Z"}, "embedding_text": "model-redux-state/build-slices-and-selectors. Use this when authoring or refactoring slices with createSlice, selectors, create.asyncThunk, entity adapters, or lazy reducer injection. Covers Immer-backed mutation syntax, slice selectors, getSelec Platforms: claude_code."} +{"id": "a3e2b481de72e15eef09f159ec18cf6b28149330f6061e4e678d1c754ed1faa4", "repo_url": "https://github.com/nahisaho/musubi", "name": "security-auditor", "description": "security-auditor skill\n\nTrigger terms: security audit, vulnerability scan, OWASP, security analysis, penetration testing, security review, threat modeling, security best practices, CVE\n\nUse when: User", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/security-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "security-auditor. security-auditor skill\n\nTrigger terms: security audit, vulnerability scan, OWASP, security analysis, penetration testing, security review, threat modeling, security best practices, CVE\n\nUse when: User Platforms: claude_code."} +{"id": "8e5c9cc1e922e716ee7793bfc0f9ed92f8fc73459dc067dee166a4a0b22e4326", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "specialist-skill-routing", "description": "Use as the routing layer for Python development tasks \u2014 matches task descriptions against trigger lists and activates specialist skills before starting work. Covers Typer, Rich, Textual, FastMCP/MCP,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/specialist-skill-routing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "specialist-skill-routing. Use as the routing layer for Python development tasks \u2014 matches task descriptions against trigger lists and activates specialist skills before starting work. Covers Typer, Rich, Textual, FastMCP/MCP, Platforms: claude_code."} +{"id": "a28a969179bc28ef6bee986d83531ce788b1ced94c00b5b9f56781b3e6cfb43d", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robotics-design-patterns", "description": "Architecture patterns, design principles, and proven recipes for building robust robotics software. Use this skill when designing robot software architectures, choosing between behavioral frameworks, structuring perception-planning-control pipelines, implementing state machines, designing safety systems, or architecting multi-robot systems. Trigger whenever the user mentions behavior trees, finite state machines, subsumption architecture, sensor fusion, robot safety, watchdogs, heartbeats, graceful degradation, hardware abstraction layers, real-time constraints, or software architecture for robots. Also applies to sim-to-real transfer, digital twins, and robot fleet management.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robotics-design-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robotics-design-patterns"}, "quality": {"stars": 287, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T23:26:20Z"}, "embedding_text": "robotics-design-patterns. Architecture patterns, design principles, and proven recipes for building robust robotics software. Use this skill when designing robot software architectures, choosing between behavioral frameworks, structuring perception-planning-control pipelines, implementing state machines, designing safety systems, or architecting multi-robot systems. Trigger whenever the user mentions behavior trees, finite state machines, subsumption architecture, sensor fusion, robot safety, watchdogs, heartbeats, graceful degradation, hardware abstraction layers, real-time constraints, or software architecture for robots. Also applies to sim-to-real transfer, digital twins, and robot fleet management. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} +{"id": "8dba7dbb76a3bff482afbda41f1c9100176bde20f058324e68b6bb0a2f9bb3ba", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "start-milestone", "description": "Begin active work on a GitHub milestone. Args: {milestone-number}. Lists all open issues in the milestone, shows current label state, asks for confirmation, then bulk-transitions status labels from 's", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/start-milestone/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "start-milestone. Begin active work on a GitHub milestone. Args: {milestone-number}. Lists all open issues in the milestone, shows current label state, asks for confirmation, then bulk-transitions status labels from 's Platforms: claude_code."} +{"id": "413adb9dc0f6ccb8677d8488a4ed6b686a060e16604d0edeba7508e66dc3f61c", "repo_url": "https://github.com/plurigrid/asi", "name": "theme-factory", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "theme-factory. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "64629a5199e039460bda7ce1042b09b44dd79d467403f684d262dbcbaf698c98", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "kanidm-expert", "description": "Expert in Kanidm modern identity management system specializing in user/group management, OAuth2/OIDC, LDAP, RADIUS, SSH key management, WebAuthn, and MFA. Deep expertise in secure authentication flow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/kanidm-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "kanidm-expert. Expert in Kanidm modern identity management system specializing in user/group management, OAuth2/OIDC, LDAP, RADIUS, SSH key management, WebAuthn, and MFA. Deep expertise in secure authentication flow Platforms: claude_code."} +{"id": "a76869387dcfcada1e881c4b13bcbfecdb5880241169ec23f1f810fbb81ccd4b", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "javascript-expert", "description": "Expert JavaScript developer specializing in modern ES6+ features, async patterns, Node.js, and browser APIs. Use when building JavaScript applications, optimizing performance, handling async operation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/javascript-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "javascript-expert. Expert JavaScript developer specializing in modern ES6+ features, async patterns, Node.js, and browser APIs. Use when building JavaScript applications, optimizing performance, handling async operation Platforms: claude_code."} +{"id": "eb21c7fbc8cd5a226c4b1b85a5b465ec0ada005de46a42b258b91fbab0a926c3", "repo_url": "https://github.com/plurigrid/asi", "name": "structured-decomp", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/structured-decomp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "structured-decomp. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ac93432a14519544b32e12d68296701e10697826119d4b66815faee693ebbb55", "repo_url": "https://github.com/scientiacapital/skills", "name": "sales-revenue", "description": "B2B sales - cold outreach, lead scoring, pipeline metrics, MEDDIC/BANT qualification, discovery calls, and demos. Use when writing cold emails, scoring leads, running pipeline reviews, or preparing fo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/sales-revenue-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "sales-revenue. B2B sales - cold outreach, lead scoring, pipeline metrics, MEDDIC/BANT qualification, discovery calls, and demos. Use when writing cold emails, scoring leads, running pipeline reviews, or preparing fo Platforms: claude_code."} +{"id": "d8293105130d2be9ea86016193595f947b2d9c1e54742e195b7b8ed6466a525b", "repo_url": "https://github.com/joe-re/eyes-on-claude-code", "name": "release", "description": "Create a new release by bumping version, committing, and pushing a git tag. Use when the user wants to release a new version (e.g., \"release 1.0.1\", \"release patch\", \"make a release\", \"bump version an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joe-re/eyes-on-claude-code/blob/main/.claude/skills/release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:56:31Z"}, "embedding_text": "release. Create a new release by bumping version, committing, and pushing a git tag. Use when the user wants to release a new version (e.g., \"release 1.0.1\", \"release patch\", \"make a release\", \"bump version an Platforms: claude_code."} +{"id": "1cfe233ea58ac7e1b740d73a45af0b88a9ee751391a84aea2e48a5f62be1ae92", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "adding-tweets", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/adding-tweets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "adding-tweets. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "929c9b9eaf352c1e2bf4b71d4e9c79abe5bd6340be0f9e3adef02aa631746aac", "repo_url": "https://github.com/aspiers/ai-config", "name": "task-generation", "description": "Generate a detailed task list from a PRP. Use after a PRP is created and ready for implementation planning.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/task-generation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "task-generation. Generate a detailed task list from a PRP. Use after a PRP is created and ready for implementation planning. Platforms: claude_code."} +{"id": "868d75c03fd3d1482a03b7f488325dcec5be8048e2d7a5ffb625e07fcabff32b", "repo_url": "https://github.com/encoredev/skills", "name": "encore-testing", "description": "Test APIs and services with Vitest in Encore.ts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/encoredev/skills/blob/main/encore/testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T21:00:31Z"}, "embedding_text": "encore-testing. Test APIs and services with Vitest in Encore.ts. Platforms: claude_code."} +{"id": "ec4378ae4570eb3595d18d278dbd729df89a4c88f9e92feb903689977cb63255", "repo_url": "https://github.com/aspiers/ai-config", "name": "test-running", "description": "Run tests according to repository guidelines. Use after linting passes, before staging changes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/test-running/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "test-running. Run tests according to repository guidelines. Use after linting passes, before staging changes. Platforms: claude_code."} +{"id": "a7048152dae58e91119a98c5be3de818c8fcabf89f63a4267a5abb1c04f6e6d3", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "btcpayserver-doc", "description": "GitHub repository skill for btcpayserver/btcpayserver-doc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/cryptocurrency/btcpayserver-doc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "btcpayserver-doc. GitHub repository skill for btcpayserver/btcpayserver-doc Platforms: claude_code."} +{"id": "1e4a3c4d85788ce3f00fc54f52adae1d5e7878334b618e166a80d2329399fc54", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "kubernetes-flux", "description": "Kubernetes cluster management and troubleshooting. Query pods, deployments, services, logs, and events. Supports context switching, scaling, and rollout management. Use for Kubernetes debugging, monit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/kubernetes-flux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "kubernetes-flux. Kubernetes cluster management and troubleshooting. Query pods, deployments, services, logs, and events. Supports context switching, scaling, and rollout management. Use for Kubernetes debugging, monit Platforms: claude_code."} +{"id": "fbb1050f656bf0b143e82c6d1bbb61b03f9231011e04d90a8fc6af3328b631f3", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "typescript", "description": "Type-safe development patterns for JARVIS AI Assistant", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/typescript-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "typescript. Type-safe development patterns for JARVIS AI Assistant Platforms: claude_code."} +{"id": "7473cd4288245a819ffe56b472d96d26ceed2d3d09a8a6771104c5087d529499", "repo_url": "https://github.com/theforeman/foreman-documentation", "name": "abstract", "description": "Review or write abstract", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/theforeman/foreman-documentation/blob/master/.claude/skills/abstract/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:18Z"}, "embedding_text": "abstract. Review or write abstract Platforms: claude_code."} +{"id": "1063732caf94a1447b02d71d2b944636ea88a3d9eb387fbcaf94b6c382cf3cf3", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "d884a16dcbefa0670f5c24b9b4e0e8ca4e0ab297e555bb4ede45d766214cf592", "repo_url": "https://github.com/sugarforever/01coder-agent-skills", "name": "publish-x-article", "description": "Publish Markdown articles to X (Twitter) Articles editor with proper formatting. Use when user wants to publish a Markdown file/URL to X Articles, or mentions \"publish to X\", \"post article to Twitter\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sugarforever/01coder-agent-skills/blob/main/skills/publish-x-article/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 120, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:52:39Z"}, "embedding_text": "publish-x-article. Publish Markdown articles to X (Twitter) Articles editor with proper formatting. Use when user wants to publish a Markdown file/URL to X Articles, or mentions \"publish to X\", \"post article to Twitter\" Platforms: claude_code."} +{"id": "d0b0a80a864c4d6d1c45dd8d3aae2be2634c465d8d7ae05be31ae34bd3420cae", "repo_url": "https://github.com/stackloklabs/toolhive", "name": "operator-crds", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/stackloklabs/toolhive/blob/main/.claude/skills/add-rule/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1898, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T22:51:29Z"}, "embedding_text": "operator-crds. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "68b06a6f1857a8f0effcee34b888eb687dc4febb14f2dadf02ed2eeaf72eb698", "repo_url": "https://github.com/howells/arc", "name": "testing", "description": "Comprehensive testing strategy. Creates test plans covering unit, integration, and E2E.\nUses specialist agents for each test type. Supports vitest and Playwright with auth testing\nguidance for Clerk a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/howells/arc/blob/main/plugins/arc/skills/testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T00:43:08Z"}, "embedding_text": "testing. Comprehensive testing strategy. Creates test plans covering unit, integration, and E2E.\nUses specialist agents for each test type. Supports vitest and Playwright with auth testing\nguidance for Clerk a Platforms: claude_code."} +{"id": "4196e0d2ed29bd06d8713df27e8c29c1414037497e337faf17649e0d9d58e1a3", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "Multimodal Fusion for Speaker Diarization", "description": "Combine visual features (face detection, lip movement analysis) with audio features to improve speaker diarization accuracy in video files. Use OpenCV for face detection and lip movement tracking, the", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks-extra/speaker-diarization-subtitles/environment/skills/multimodal-fusion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "Multimodal Fusion for Speaker Diarization. Combine visual features (face detection, lip movement analysis) with audio features to improve speaker diarization accuracy in video files. Use OpenCV for face detection and lip movement tracking, the Platforms: claude_code."} +{"id": "7de59dd92ab6e4f17fce864db2c288b958e8582c62267998bc9f61b3d994f138", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "finding-mentors-sponsors", "description": "Build a Mentor & Sponsor Plan Pack (mentor portfolio, sponsor strategy, target list, outreach scripts, meeting agenda, tracking + cadence). Use for finding a mentor, finding a sponsor, mentorship, spo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/finding-mentors-sponsors/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "finding-mentors-sponsors. Build a Mentor & Sponsor Plan Pack (mentor portfolio, sponsor strategy, target list, outreach scripts, meeting agenda, tracking + cadence). Use for finding a mentor, finding a sponsor, mentorship, spo Platforms: claude_code."} +{"id": "f62cd558ea416d74f9f91823397215357879d459939d283568631fa0457ce702", "repo_url": "https://github.com/technicalpickles/pickled-claude-plugins", "name": "finding-api-docs", "description": "Use when APIs fail repeatedly with version-related errors (method not found, wrong arguments, unknown flag) or when about to use library APIs with uncertain knowledge - guides finding current, accurate documentation instead of guessing from training data", "source": ["skillhub", "topic"], "categories": ["buildkite", "claude-code", "claude-skills", "monorepo", "workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/technicalpickles/pickled-claude-plugins/blob/main/plugins/dev-tools/skills/finding-api-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install finding-api-docs"}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T20:55:10Z"}, "embedding_text": "finding-api-docs. Use when APIs fail repeatedly with version-related errors (method not found, wrong arguments, unknown flag) or when about to use library APIs with uncertain knowledge - guides finding current, accurate documentation instead of guessing from training data Categories: buildkite, claude-code, claude-skills, monorepo, workflow. Platforms: claude_code."} +{"id": "4d85306421db4de43bdab1e8163f07f328e663737165aa1777fe20bcfdc4a467", "repo_url": "https://github.com/technicalpickles/pickled-claude-plugins", "name": "working-in-scratch-areas", "description": "Use when creating one-off scripts, debug tools, analysis reports, or temporary documentation - ensures work is saved to persistent .scratch areas with proper documentation, organization, and executable patterns", "source": ["skillhub", "topic"], "categories": ["buildkite", "claude-code", "claude-skills", "monorepo", "workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/technicalpickles/pickled-claude-plugins/blob/main/plugins/dev-tools/skills/working-in-scratch-areas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install working-in-scratch-areas"}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T20:55:10Z"}, "embedding_text": "working-in-scratch-areas. Use when creating one-off scripts, debug tools, analysis reports, or temporary documentation - ensures work is saved to persistent .scratch areas with proper documentation, organization, and executable patterns Categories: buildkite, claude-code, claude-skills, monorepo, workflow. Platforms: claude_code."} +{"id": "ca445e14c3d13c7c41139af1b99ac91f9d2753b2930a0c07fd37054ba56df5bd", "repo_url": "https://github.com/anthropics/claude-plugins-official", "name": "build-mcp-app", "description": "This skill should be used when the user wants to build an \"MCP app\", add \"interactive UI\" or \"widgets\" to an MCP server, \"render components in chat\", build \"MCP UI resources\", make a tool that shows a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/claude-plugins-official/blob/main/plugins/mcp-server-dev/skills/build-mcp-app/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 30585, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:04:10Z"}, "embedding_text": "build-mcp-app. This skill should be used when the user wants to build an \"MCP app\", add \"interactive UI\" or \"widgets\" to an MCP server, \"render components in chat\", build \"MCP UI resources\", make a tool that shows a Platforms: claude_code."} +{"id": "5d39646548ac6eb544a07224ad94656ae01fcc0e30533a05f9c6cb6c5d9d1644", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "visual-identity-direction", "description": "Provides visual identity direction and creative briefing frameworks including Alina Wheeler's five-phase process, strategy-to-visual translation method, mood board methodology, logo brief structure, p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/visual-identity-direction/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "visual-identity-direction. Provides visual identity direction and creative briefing frameworks including Alina Wheeler's five-phase process, strategy-to-visual translation method, mood board methodology, logo brief structure, p Platforms: claude_code."} +{"id": "b62237319a8163e7188a86dc89d5acae9ffee9dc97f84e3f950347a60d4ef17e", "repo_url": "https://github.com/plurigrid/asi", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support Platforms: claude_code."} +{"id": "32711623012b72ab8d281191e7afda21867aa3dc1ab99f2fd35363da67fefd53", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-rc", "description": "Release candidate preparation. Final checks before merge - QA, security, review, changelog. The last gate before shipping.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-rc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-rc"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-rc. Release candidate preparation. Final checks before merge - QA, security, review, changelog. The last gate before shipping. Platforms: claude_code."} +{"id": "93f55cd3e8ca9031f22e6a779b17d95c8fcace44c1dc45818f45937f91d695ef", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-mcp-cursor", "description": "Integrate GrepAI with Cursor IDE via MCP. Use this skill to enable semantic code search in Cursor.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/integration/grepai-mcp-cursor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-mcp-cursor. Integrate GrepAI with Cursor IDE via MCP. Use this skill to enable semantic code search in Cursor. Platforms: claude_code."} +{"id": "140deb4a7e12d5c18b2d98052c2259f367078623b98905d1c3a9b1cb5439a6a0", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "plugin-lifecycle", "description": "Orchestrate the full plugin development lifecycle from blank canvas to marketplace-ready. Use when creating a new plugin, improving an existing plugin, fixing validation errors, or taking a plugin thr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/plugin-lifecycle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "plugin-lifecycle. Orchestrate the full plugin development lifecycle from blank canvas to marketplace-ready. Use when creating a new plugin, improving an existing plugin, fixing validation errors, or taking a plugin thr Platforms: claude_code."} +{"id": "c665ae421417fb510f1ffa23fbfb3d3dd9a38c37d75c5d82269bafa10fe2cf32", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-quickstart", "description": "Get started with GrepAI in 5 minutes. Use this skill for a complete walkthrough from installation to first search.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/getting-started/grepai-quickstart/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-quickstart. Get started with GrepAI in 5 minutes. Use this skill for a complete walkthrough from installation to first search. Platforms: claude_code."} +{"id": "28b9e634ef0e6e813e7252b8ac68924a64ef161c274cd0d06a8b007d29cbc375", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "mkdocs", "description": "Comprehensive guide for creating and managing MkDocs documentation projects with Material theme. Includes official CLI command reference with complete parameters and arguments, and mkdocs.yml configur", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/mkdocs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "mkdocs. Comprehensive guide for creating and managing MkDocs documentation projects with Material theme. Includes official CLI command reference with complete parameters and arguments, and mkdocs.yml configur Platforms: claude_code."} +{"id": "093a6b4be75a5c9d5a388fe59efe09f117aee9cc5f150af5d08bcd5ec4415c71", "repo_url": "https://github.com/plurigrid/asi", "name": "tasks-acset", "description": "Google Tasks management via TasksACSet. Transforms task operations into GF(3)-typed Interactions, routes to triadic queues, detects saturation for task-zero-as-condensed-state.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/tasks-acset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "tasks-acset. Google Tasks management via TasksACSet. Transforms task operations into GF(3)-typed Interactions, routes to triadic queues, detects saturation for task-zero-as-condensed-state. Platforms: claude_code."} +{"id": "32fc8c7c6e4d3d0d7ead1e33a7f08be429ee9e2d1db7a003aa9b68a2c30b2571", "repo_url": "https://github.com/technicalpickles/pickled-claude-plugins", "name": "designing-clis", "description": "Use when building, improving, or reviewing command-line interfaces for better user experience - before implementing commands/output/errors, when users report confusion or frustration, or when CLI feels hard to use - provides UX principles, visual design techniques, and practical patterns for creating discoverable, delightful CLIs", "source": ["skillhub", "topic"], "categories": ["buildkite", "claude-code", "claude-skills", "monorepo", "workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/technicalpickles/pickled-claude-plugins/blob/main/plugins/dev-tools/skills/designing-clis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install designing-clis"}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T20:55:10Z"}, "embedding_text": "designing-clis. Use when building, improving, or reviewing command-line interfaces for better user experience - before implementing commands/output/errors, when users report confusion or frustration, or when CLI feels hard to use - provides UX principles, visual design techniques, and practical patterns for creating discoverable, delightful CLIs Categories: buildkite, claude-code, claude-skills, monorepo, workflow. Platforms: claude_code."} +{"id": "7ed785fbd6ca1c4bbf2a7f52dfd59a727c4f066440a8436220a907d2f71a6ff7", "repo_url": "https://github.com/featbit/featbit-skills", "name": "featbit-deployment-docker", "description": "Expert guidance for deploying FeatBit using Docker Compose. Covers standalone, standard, and professional deployment tiers with Docker. Use when users work with docker-compose files or ask about Docke", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/featbit/featbit-skills/blob/main/skills/featbit-deployment-docker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-28T07:03:45Z"}, "embedding_text": "featbit-deployment-docker. Expert guidance for deploying FeatBit using Docker Compose. Covers standalone, standard, and professional deployment tiers with Docker. Use when users work with docker-compose files or ask about Docke Platforms: claude_code."} +{"id": "fd4797bf6f8b2f1081429e15bfbd5600fd5b2762f9d3aecbd37fdd9c2451eb53", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-system-archaeologist", "description": "Use when analyzing existing codebases to generate architecture documentation - coordinates subagent-driven exploration with mandatory workspace structure, validation gates, and pressure-resistant work", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-system-archaeologist/skills/using-system-archaeologist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-system-archaeologist. Use when analyzing existing codebases to generate architecture documentation - coordinates subagent-driven exploration with mandatory workspace structure, validation gates, and pressure-resistant work Platforms: claude_code."} +{"id": "252246f5ac9065554e1ff51baf0adfe8b06e598b6e0836f48b91fcee6e74f71b", "repo_url": "https://github.com/plurigrid/asi", "name": "gh-cli", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "gh-cli. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ae78fb827f2ed0b1508ae5f254c9359dc1539cb2cfa0285de4114d67d6c4c004", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "gh", "description": "Install and configure the GitHub CLI (gh) for AI agent environments where gh may not be pre-installed and git remotes use local proxies instead of github.com. Provides auto-install script with SHA256", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/gh/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "gh. Install and configure the GitHub CLI (gh) for AI agent environments where gh may not be pre-installed and git remotes use local proxies instead of github.com. Provides auto-install script with SHA256 Platforms: claude_code."} +{"id": "5c77784c37355617598c37c335dfde8cc6ea870b6f934558feb3e13a53463106", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "stinkysnake", "description": "Progressive Python quality improvement with static analysis, type refinement, modernization planning, plan review, and test-driven implementation. Use when addressing technical debt, eliminating Any t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/stinkysnake/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "stinkysnake. Progressive Python quality improvement with static analysis, type refinement, modernization planning, plan review, and test-driven implementation. Use when addressing technical debt, eliminating Any t Platforms: claude_code."} +{"id": "53354089de5c8e864e524bc88bb8df677555376515b32612d1abdab597290a41", "repo_url": "https://github.com/peiiii/skild", "name": "skild", "description": "Skill package manager for AI Agents \u2014 install, manage, and publish Agent Skills.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/skild/blob/main/skills/skild/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 108, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T08:44:02Z"}, "embedding_text": "skild. Skill package manager for AI Agents \u2014 install, manage, and publish Agent Skills. Platforms: claude_code."} +{"id": "912a90ddc2ca9b307c5b0c898aa84615c904634c17272d0bd46a8ffe7fbe184c", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "clarify-spec", "description": "AKTIVIERT SICH AUTOMATISCH bei vagen Auftraegen. LIEBER EINMAL ZU OFT NACHFRAGEN als falsch implementieren.\n\nErkennungsmerkmale (EINES genuegt!):\n- Auftrag <25 Woerter\n- Keine konkreten Dateinamen/Pfa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/clarify-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "clarify-spec. AKTIVIERT SICH AUTOMATISCH bei vagen Auftraegen. LIEBER EINMAL ZU OFT NACHFRAGEN als falsch implementieren.\n\nErkennungsmerkmale (EINES genuegt!):\n- Auftrag <25 Woerter\n- Keine konkreten Dateinamen/Pfa Platforms: claude_code."} +{"id": "56f3cf39108c60cfb91c2daeadb50f072affddc13a17ddce3d819590cddc82f8", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "doc-coauthoring", "description": "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 wor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/doc-coauthoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "doc-coauthoring. 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 wor Platforms: claude_code."} +{"id": "54df746337ad651eea11c5d75659f4020c48846470ca7f40d9ad2b5ca38b8777", "repo_url": "https://github.com/ruchernchong/dotfiles", "name": "sync-checker", "description": "Verify that dotfiles are properly symlinked and synchronised across the system. Use when the user wants to check symlink status, verify dotfiles setup, diagnose sync issues, find broken links, or ensu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruchernchong/dotfiles/blob/main/.claude/skills/sync-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T17:43:45Z"}, "embedding_text": "sync-checker. Verify that dotfiles are properly symlinked and synchronised across the system. Use when the user wants to check symlink status, verify dotfiles setup, diagnose sync issues, find broken links, or ensu Platforms: claude_code."} +{"id": "ddfd4afc925659f7a24c3eb4a5eefd8d321a1b406fd58f247a2eab2c6c99f2ba", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "ast-grep", "description": "Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or pe", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/ast-grep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ast-grep"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "ast-grep. Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or pe Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "0d378c81fdefaa6777ff83655dd677d07045f0d440bd1fc5c23e3da11c810186", "repo_url": "https://github.com/basher83/lunar-claude", "name": "python-uv-scripts", "description": "Python single-file script development using uv and PEP 723 inline metadata. Prevents invalid patterns like [tool.uv.metadata]. Use when creating standalone Python utilities, converting scripts to uv f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/devops/python-tools/skills/python-uv-scripts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "python-uv-scripts. Python single-file script development using uv and PEP 723 inline metadata. Prevents invalid patterns like [tool.uv.metadata]. Use when creating standalone Python utilities, converting scripts to uv f Platforms: claude_code."} +{"id": "858e019d1f7b175b66a4212e98c3f44d80806dedb7ad8f42c274946a55dce505", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "topic-patrol", "description": "Proactively explore the web for topics matching the user's interests and share findings conversationally. Designed for cron execution with Flash model.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/topic-patrol/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "topic-patrol. Proactively explore the web for topics matching the user's interests and share findings conversationally. Designed for cron execution with Flash model. Platforms: claude_code."} +{"id": "3622346d5491c1e105e6e6882acd507b1083850b3285265e2d546c1c9cdc8741", "repo_url": "https://github.com/crazygit/kube-audit-kit", "name": "kube-audit-kit", "description": "Performs read-only Kubernetes security audits by exporting resources, sanitizing metadata, grouping applications by topology, and generating PSS/NSA-compliant audit reports. Use when the user requests", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/crazygit/kube-audit-kit/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T03:36:18Z"}, "embedding_text": "kube-audit-kit. Performs read-only Kubernetes security audits by exporting resources, sanitizing metadata, grouping applications by topology, and generating PSS/NSA-compliant audit reports. Use when the user requests Platforms: claude_code."} +{"id": "57c6cb430e8e6c6cb7d05d510425f1c0542218be73307dd56ebc4592f78ef2cb", "repo_url": "https://github.com/rysweet/amplihack", "name": "aspire", "description": "Aspire orchestration for cloud-native distributed applications in any language (C#, Python, Node.js, Go). Handles dependency management, local dev with Docker, Azure deployment, service discovery, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rysweet/amplihack/blob/main/.claude/skills/aspire/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:49:54Z"}, "embedding_text": "aspire. Aspire orchestration for cloud-native distributed applications in any language (C#, Python, Node.js, Go). Handles dependency management, local dev with Docker, Azure deployment, service discovery, and Platforms: claude_code."} +{"id": "55fd75eff05530642a5be4a2d7492fcdbde9e1bf1450787cd18ecd1c875324c2", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-pkg-neurokit2", "description": "Comprehensive biosignal processing toolkit for analyzing physiological data including ECG, EEG, EDA, RSP, PPG, EMG, and EOG signals. Use this skill when processing cardiovascular signals, brain activity, electrodermal responses, respiratory patterns, muscle activity, or eye movements. Applicable for heart rate variability analysis, event-related potentials, complexity measures, autonomic nervous system assessment, psychophysiology research, and multi-modal physiological signal integration.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-pkg-neurokit2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-pkg-neurokit2"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-pkg-neurokit2. Comprehensive biosignal processing toolkit for analyzing physiological data including ECG, EEG, EDA, RSP, PPG, EMG, and EOG signals. Use this skill when processing cardiovascular signals, brain activity, electrodermal responses, respiratory patterns, muscle activity, or eye movements. Applicable for heart rate variability analysis, event-related potentials, complexity measures, autonomic nervous system assessment, psychophysiology research, and multi-modal physiological signal integration. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "01217349a984f4721eab88dea8c9485f5f8494071303c20db966a4080f2c1377", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "pdf", "description": "Safe PDF reading via text extraction. Use this skill whenever you need to read, analyze, or extract content from PDF files. Gemini CLI's read_file sends PDFs as base64 inlineData which frequently caus", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "pdf. Safe PDF reading via text extraction. Use this skill whenever you need to read, analyze, or extract content from PDF files. Gemini CLI's read_file sends PDFs as base64 inlineData which frequently caus Platforms: claude_code."} +{"id": "205b7d3d79427a3491673debfa14e0b36e6de631cf34a8b1cd1fb595ef056cfb", "repo_url": "https://github.com/codealive-ai/claude-code-reflection-skills", "name": "skills-manager", "description": "Lists, inspects, deletes, modifies, moves, and reviews skills for AI coding agents. Use when the user asks to view installed skills, list skills, delete a skill, remove a skill, move skills between sc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codealive-ai/claude-code-reflection-skills/blob/main/skills/agents-consilium/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 90, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:03:39Z"}, "embedding_text": "skills-manager. Lists, inspects, deletes, modifies, moves, and reviews skills for AI coding agents. Use when the user asks to view installed skills, list skills, delete a skill, remove a skill, move skills between sc Platforms: claude_code."} +{"id": "a22b59747e2fe8f62afc8d09138342c4110eb0dc45ca5322104fedd61bdb83c8", "repo_url": "https://github.com/notedit/happy-skills", "name": "gsap-animation", "description": "GSAP + Remotion integration for professional motion graphics video production. Timeline orchestration, text splitting, SVG morphing, advanced easing, and reusable effect presets.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/notedit/happy-skills/blob/main/skills/video/gsap-animation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 336, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T13:30:24Z"}, "embedding_text": "gsap-animation. GSAP + Remotion integration for professional motion graphics video production. Timeline orchestration, text splitting, SVG morphing, advanced easing, and reusable effect presets. Platforms: claude_code."} +{"id": "ef3c0f1eb273fc6a34b921fd50ba369efdc99b921748360182f68a2049ef2ffb", "repo_url": "https://github.com/plurigrid/asi", "name": "canvas-design", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "canvas-design. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "844ae12070f02b0abd6611eff3baf4b54f48fa88e8f4240df054f6c42dc34270", "repo_url": "https://github.com/plurigrid/asi", "name": "rama-gay-clojure", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/rama-gay-clojure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "rama-gay-clojure. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8fbd36bb470714041bb20fde8a442d4d60dfb48903c4696473bbb875eb9de49f", "repo_url": "https://github.com/thinkinaixyz/deepchat", "name": "algorithmic-art", "description": "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.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thinkinaixyz/deepchat/blob/dev/resources/skills/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install algorithmic-art"}, "quality": {"stars": 6039, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:17:36Z"}, "embedding_text": "algorithmic-art. 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. Platforms: claude_code."} +{"id": "b3b393d974bee4de4ed9f1e911f45b59e6f37d0dc0bd0cba76145efa472be4d6", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "building-nextjs-apps", "description": "Build Next.js 16 applications with correct patterns and distinctive design. Use when creating\npages, layouts, dynamic routes, upgrading from Next.js 15, or implementing proxy.ts. Covers\nbreaking chang", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/building-nextjs-apps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "building-nextjs-apps. Build Next.js 16 applications with correct patterns and distinctive design. Use when creating\npages, layouts, dynamic routes, upgrading from Next.js 15, or implementing proxy.ts. Covers\nbreaking chang Platforms: claude_code."} +{"id": "9833412d7a18321562d73343eca5369e9ff1451caf2eb413d544d28866da2558", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-implement", "description": "Execute TDD implementation from task list following RED-GREEN-REFACTOR cycle with mandatory tests, stub detection, and quality gates. Activate when user mentions \"implement\", \"build\", \"code\", \"develop", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-implement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-implement. Execute TDD implementation from task list following RED-GREEN-REFACTOR cycle with mandatory tests, stub detection, and quality gates. Activate when user mentions \"implement\", \"build\", \"code\", \"develop Platforms: claude_code."} +{"id": "46c2325b5b960c9a0dc4918c17d005b17b41e0be487e69e78d6cda0bf30577be", "repo_url": "https://github.com/plurigrid/asi", "name": "center-manifold", "description": "Invariant manifold tangent to center eigenspace", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/center-manifold/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "center-manifold. Invariant manifold tangent to center eigenspace Platforms: claude_code."} +{"id": "1ffd0ebe47ecf3da1452c031452076ae2cdac3baff2319fcfb804b3369863af0", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "brand-positioning-theory", "description": "Provides brand positioning frameworks, the 22 Immutable Laws of Marketing, ZAG methodology, Onliness Statement formula, and positioning templates. Auto-activates during positioning strategy, competiti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/brand-positioning-theory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "brand-positioning-theory. Provides brand positioning frameworks, the 22 Immutable Laws of Marketing, ZAG methodology, Onliness Statement formula, and positioning templates. Auto-activates during positioning strategy, competiti Platforms: claude_code."} +{"id": "97d0e94c040e7dfec40cd4c8113edc34f583f7337d43bc37db0dace0e9a4a24b", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "styling-with-shadcn", "description": "Build beautiful, accessible UIs with shadcn/ui components in Next.js. Use when creating\nforms, dialogs, tables, sidebars, or any UI components. Covers installation, component\npatterns, react-hook-form", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/styling-with-shadcn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "styling-with-shadcn. Build beautiful, accessible UIs with shadcn/ui components in Next.js. Use when creating\nforms, dialogs, tables, sidebars, or any UI components. Covers installation, component\npatterns, react-hook-form Platforms: claude_code."} +{"id": "f1f4c66b4fbcc29a484c5195aa125a1d6e902eaafa1b2c36ca65fd5ac3594946", "repo_url": "https://github.com/plurigrid/asi", "name": "bafishka", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/bafishka/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "bafishka. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2027bbb6b184805be9cb853f6cec22a69d06825fcb1bf6108f61ff17d634353e", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "model-quantization", "description": "Expert skill for AI model quantization and optimization. Covers 4-bit/8-bit quantization, GGUF conversion, memory optimization, and quality-performance tradeoffs for deploying LLMs in resource-constra", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/model-quantization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "model-quantization. Expert skill for AI model quantization and optimization. Covers 4-bit/8-bit quantization, GGUF conversion, memory optimization, and quality-performance tradeoffs for deploying LLMs in resource-constra Platforms: claude_code."} +{"id": "bace9247a4940e29f4aee44e392e600b78aed192d58f98d0ee82c032cbc88062", "repo_url": "https://github.com/specstoryai/agent-skills", "name": "specstory-guard", "description": "Install a pre-commit hook that scans .specstory/history for secrets before commits. Run when user says \"set up secret scanning\", \"install specstory guard\", \"protect my history\", or \"check for secrets\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/specstoryai/agent-skills/blob/main/skills/specstory-guard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T01:24:32Z"}, "embedding_text": "specstory-guard. Install a pre-commit hook that scans .specstory/history for secrets before commits. Run when user says \"set up secret scanning\", \"install specstory guard\", \"protect my history\", or \"check for secrets\" Platforms: claude_code."} +{"id": "4002d8ff161213bf32dd32026104919ca6a398780ed8ca9e02e90114af8858ba", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "minikube", "description": "Manages local Kubernetes clusters using Minikube for development and testing. This skill should be used when setting up local K8s environments, enabling addons, configuring networking, and deploying a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/minikube/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "minikube. Manages local Kubernetes clusters using Minikube for development and testing. This skill should be used when setting up local K8s environments, enabling addons, configuring networking, and deploying a Platforms: claude_code."} +{"id": "cc2e176f7925c35f1e3ba0e18e328697e29a917e50832968e0a851f095b60abc", "repo_url": "https://github.com/agent-3-7/agent37-skills-collection", "name": "yc-advisor", "description": "This skill should be used when the user asks questions about startups, founding decisions, co-founders, fundraising, product development, growth, hiring, or any entrepreneurial advice. It provides acc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-3-7/agent37-skills-collection/blob/main/plugins/yc-advisor/skills/yc-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 177, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T13:52:20Z"}, "embedding_text": "yc-advisor. This skill should be used when the user asks questions about startups, founding decisions, co-founders, fundraising, product development, growth, hiring, or any entrepreneurial advice. It provides acc Platforms: claude_code."} +{"id": "3c5aa75541339457837c08265789c66bcad4cf93d21596ddffec99f4cb1101f8", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "linearite", "description": "CLI tool for creating Linear issues and checking velocity rankings", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/cli-automation/linear-iterate-on-implementation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "linearite. CLI tool for creating Linear issues and checking velocity rankings Platforms: claude_code."} +{"id": "9b77942cebf2ad5fc5e27c47bd725c8ad914f846cfe4823783e08839f8cec3ab", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "managing-configuration", "description": "Guide users through creating, managing, and testing server configuration automation using Ansible. When automating server configurations, deploying applications with Ansible playbooks, managing dynamic inventories for cloud environments, or testing roles with Molecule, this skill provides idempotency patterns, secrets management with ansible-vault and HashiCorp Vault, and GitOps workflows for configuration as code.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/managing-configuration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install managing-configuration"}, "quality": {"stars": 375, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "managing-configuration. Guide users through creating, managing, and testing server configuration automation using Ansible. When automating server configurations, deploying applications with Ansible playbooks, managing dynamic inventories for cloud environments, or testing roles with Molecule, this skill provides idempotency patterns, secrets management with ansible-vault and HashiCorp Vault, and GitOps workflows for configuration as code. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} +{"id": "7d68d940e99eb9db8af5b5d64590ed7e73996368566ee36acb264213e0aa8633", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "cc-mcp-executor-skill", "description": "GitHub repository skill for mcfearsome/cc-mcp-executor-skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/orchestration/cc-mcp-executor-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "cc-mcp-executor-skill. GitHub repository skill for mcfearsome/cc-mcp-executor-skill Platforms: claude_code."} +{"id": "295218b6f8e69334f69cb10f723db4144a99c421e94d6db664cd0871c1c813fe", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "webapp-testing", "description": "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.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install webapp-testing"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:28:52Z"}, "embedding_text": "webapp-testing. 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. Platforms: claude_code."} +{"id": "1a0f3289762f7181a45fff293be79e0e44c7dd8f89dcaff6141ce97a57b51311", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "brand-color-psychology", "description": "Provides brand color psychology and strategic palette development frameworks including Color-in-Context Theory, 60-30-10 Rule, color harmony systems, archetype color associations, Blue Ocean color dif", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/brand-color-psychology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "brand-color-psychology. Provides brand color psychology and strategic palette development frameworks including Color-in-Context Theory, 60-30-10 Rule, color harmony systems, archetype color associations, Blue Ocean color dif Platforms: claude_code."} +{"id": "82cc165d7b107de45664b200a7e4e640814a8eca7537b3a2a3190f9da31db9d7", "repo_url": "https://github.com/agentera/agently-skills", "name": "agently-triggerflow", "description": "Use when the user needs workflow orchestration such as branching, concurrency, approvals, waiting and resume, runtime stream, restart-safe execution, mixed sync/async function or module orchestration,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentera/agently-skills/blob/main/skills/agently-triggerflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T08:55:43Z"}, "embedding_text": "agently-triggerflow. Use when the user needs workflow orchestration such as branching, concurrency, approvals, waiting and resume, runtime stream, restart-safe execution, mixed sync/async function or module orchestration, Platforms: claude_code."} +{"id": "68ddd1a2382fbb850745228330c66e1f57afbda65791ec2a816696f1533e9fb9", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "trader-memory-core", "description": "Track investment theses across their lifecycle \u2014 from screening idea to closed position with postmortem. Register theses from screener outputs, manage state transitions, attach position sizing, review", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/trader-memory-core/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "trader-memory-core. Track investment theses across their lifecycle \u2014 from screening idea to closed position with postmortem. Register theses from screener outputs, manage state transitions, attach position sizing, review Platforms: claude_code."} +{"id": "ac5f654ca2060e668f04c042b70c43b2b49722adb2b51a7af6ce4d96b8c024ab", "repo_url": "https://github.com/sjungling/claude-plugins", "name": "ios-swift-expert", "description": "Elite iOS and macOS development expertise for Swift, SwiftUI, UIKit, Xcode, and the entire Apple development ecosystem. Automatically activates when working with .swift files, Xcode projects (.xcodepr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sjungling/claude-plugins/blob/main/plugins/swift-engineer/skills/ios-swift-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T18:02:16Z"}, "embedding_text": "ios-swift-expert. Elite iOS and macOS development expertise for Swift, SwiftUI, UIKit, Xcode, and the entire Apple development ecosystem. Automatically activates when working with .swift files, Xcode projects (.xcodepr Platforms: claude_code."} +{"id": "214d3e37b32967cd04a869c2968f227df3c2815872351a15e7d9c1e9087a1ea0", "repo_url": "https://github.com/richtabor/agent-skills", "name": "x-writing", "description": "Transforms notes into X (Twitter) posts. Triggers when user asks to create social content, draft tweets, or turn notes/ideas into posts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/richtabor/agent-skills/blob/main/skills/x-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 64, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T01:38:39Z"}, "embedding_text": "x-writing. Transforms notes into X (Twitter) posts. Triggers when user asks to create social content, draft tweets, or turn notes/ideas into posts. Platforms: claude_code."} +{"id": "77158ac23fa6b0dd4cc89cb5c524d6d0861388b93f1267b3e93ece90ec0e0e72", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-architect", "description": "Comprehensive software architecture skill for designing scalable, maintainable systems using ReactJS, NextJS, NodeJS, Express, React Native, Swift, Kotlin, Flutter, Postgres, GraphQL, Go, Python. Incl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-architect. Comprehensive software architecture skill for designing scalable, maintainable systems using ReactJS, NextJS, NodeJS, Express, React Native, Swift, Kotlin, Flutter, Postgres, GraphQL, Go, Python. Incl Platforms: claude_code."} +{"id": "08efe0cbc8f2e44cf027fcd020c97ac899be88b0fef9630cc154f033b4a988c0", "repo_url": "https://github.com/nahisaho/musubi", "name": "design-reviewer", "description": "Copilot agent that assists with systematic design review using ATAM (Architecture Tradeoff Analysis Method), SOLID principles, design patterns, coupling/cohesion analysis, error handling, and security", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/src/templates/agents/claude-code/skills/design-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "design-reviewer. Copilot agent that assists with systematic design review using ATAM (Architecture Tradeoff Analysis Method), SOLID principles, design patterns, coupling/cohesion analysis, error handling, and security Platforms: claude_code."} +{"id": "a0d0cd930389caa61037fe5571c3feb9bba09f429dcbb64bd178bc0c9c8fecc8", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "testing-best-practices", "description": "Unit testing, integration testing, and test-driven development principles. Use when writing tests, reviewing test code, improving test coverage, or setting up testing strategy. Triggers on \"write test", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/testing-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "testing-best-practices. Unit testing, integration testing, and test-driven development principles. Use when writing tests, reviewing test code, improving test coverage, or setting up testing strategy. Triggers on \"write test Platforms: claude_code."} +{"id": "055356cad5ec5d0cf8ade3ec8de659cd38584ba2ad322dec6b645f8ebefedd60", "repo_url": "https://github.com/proxiblue/claude-skills", "name": "analyze-m1-module-for-migration", "description": "Systematically analyze a Magento 1 module to determine its purpose, usage, and migration requirements for Magento 2. Use when you need to decide whether to migrate a M1 module, find alternatives, or s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/proxiblue/claude-skills/blob/main/analyze-m1-module-for-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T02:03:02Z"}, "embedding_text": "analyze-m1-module-for-migration. Systematically analyze a Magento 1 module to determine its purpose, usage, and migration requirements for Magento 2. Use when you need to decide whether to migrate a M1 module, find alternatives, or s Platforms: claude_code."} +{"id": "e74d03961b59fed81f1686a8068e948f9a935b9b538a820d2c64ab9f43ed7d3d", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "clean-code-principles", "description": "SOLID principles, design patterns, DRY, KISS, and clean code fundamentals. Use when reviewing architecture, checking code quality, refactoring, or discussing design decisions. Triggers on \"review arch", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/clean-code-principles/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "clean-code-principles. SOLID principles, design patterns, DRY, KISS, and clean code fundamentals. Use when reviewing architecture, checking code quality, refactoring, or discussing design decisions. Triggers on \"review arch Platforms: claude_code."} +{"id": "a3d0de425e87cfa55572ad317378b252d55d006d6eb9d312f97a4e4fa08a2a16", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "content-creator", "description": "Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creating", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/marketing-skill/content-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "content-creator. Create SEO-optimized marketing content with consistent brand voice. Includes brand voice analyzer, SEO optimizer, content frameworks, and social media templates. Use when writing blog posts, creating Platforms: claude_code."} +{"id": "7db195b306a2957c02943f28f3a9b8a59bdb73dea5c5a0f392f876454ad368e5", "repo_url": "https://github.com/plurigrid/asi", "name": "haskell-diagrams", "description": "haskell-diagrams - Declarative Vector Graphics with Diagrams DSL", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/haskell-diagrams/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "haskell-diagrams. haskell-diagrams - Declarative Vector Graphics with Diagrams DSL Platforms: claude_code."} +{"id": "42d64a83073e5d98733b44579d6631e4c06e9aa6bb194f91f160ab016aa8e428", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "godot", "description": "MANDATORY for ALL GDScript/.gd files and Godot resources (.tscn, .tres). Invoke this skill FIRST before writing ANY Godot code\u2014never write GDScript directly without this skill. Provides documentation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/backend/godot-profile-performance-asreonn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "godot. MANDATORY for ALL GDScript/.gd files and Godot resources (.tscn, .tres). Invoke this skill FIRST before writing ANY Godot code\u2014never write GDScript directly without this skill. Provides documentation Platforms: linux, macos, windows."} +{"id": "15b56d32e3e2196f835fcfcd70fa7a02209f4c4c49f2d0e04abd80b4edc76b4c", "repo_url": "https://github.com/moonbitlang/moonbit-agent-guide", "name": "moonbit-agent-guide", "description": "Guide for writing, refactoring, and testing MoonBit projects. Use when working in MoonBit modules or packages, organizing MoonBit files, using moon tooling (build/check/run/test/doc/ide etc.), or foll", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moonbitlang/moonbit-agent-guide/blob/main/moonbit-agent-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T07:52:50Z"}, "embedding_text": "moonbit-agent-guide. Guide for writing, refactoring, and testing MoonBit projects. Use when working in MoonBit modules or packages, organizing MoonBit files, using moon tooling (build/check/run/test/doc/ide etc.), or foll Platforms: claude_code."} +{"id": "03aef0ae5fd4097393536504e5d5305614a7d1c2f4cff482ad65f10f892be000", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "go-expert", "description": "Expert guidance for Go (Golang) development following industry best practices. Use when writing Go code, reviewing PRs, bootstrapping new services, configuring linters, implementing observability, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/backend/django-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "go-expert. Expert guidance for Go (Golang) development following industry best practices. Use when writing Go code, reviewing PRs, bootstrapping new services, configuring linters, implementing observability, or Platforms: claude_code."} +{"id": "533361409c4ea0e9bba499e5bdd6e3cc05ce1703b71725c68d7c567a3f30e53e", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "vox", "description": "Lightweight voice MCP server with local Moonshine STT + Kokoro TTS", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/design/voxanne-branding-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "vox. Lightweight voice MCP server with local Moonshine STT + Kokoro TTS Platforms: claude_code."} +{"id": "c96ca553b81ce8e0c632ddb859b70b83c4407f1f13762245c5f806b3e2fb74fd", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "mnemonic", "description": "Unified memory system - aggregates communications and AI sessions across all channels into searchable, analyzable memory", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/mnemonic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "mnemonic. Unified memory system - aggregates communications and AI sessions across all channels into searchable, analyzable memory Platforms: claude_code."} +{"id": "28a98717edc8c99ac473e2a8dd887d0be7bfd8fb4139941796d8161dad9be265", "repo_url": "https://github.com/gmickel/claude-code-config", "name": "oracle", "description": "Use the @steipete/oracle CLI to bundle a prompt plus the right files and get a second-model review (API or browser) for debugging, refactors, design checks, or cross-validation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gmickel/claude-code-config/blob/main/skills/oracle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-28T21:39:18Z"}, "embedding_text": "oracle. Use the @steipete/oracle CLI to bundle a prompt plus the right files and get a second-model review (API or browser) for debugging, refactors, design checks, or cross-validation. Platforms: claude_code."} +{"id": "bbe0ea8cc7ac0dcd6ec7f462c23048216c7b8e0587dc51a9c8187ada8e2ceb80", "repo_url": "https://github.com/prebid/salesagent", "name": "verify-spec", "description": "Verify every test expectation in entity test suites against the authoritative adcp spec and library sources. Adds spec permalinks to each test for traceability. Flags discrepancies where our tests ass", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prebid/salesagent/blob/main/.claude/skills/verify-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 33, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:49Z"}, "embedding_text": "verify-spec. Verify every test expectation in entity test suites against the authoritative adcp spec and library sources. Adds spec permalinks to each test for traceability. Flags discrepancies where our tests ass Platforms: claude_code."} +{"id": "e03db3ad764bb3bff865dc07246fb09555831841eb3a5a2dc9a4ecad88b049a3", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "submit", "description": "This skill should be used when the user is ready to submit their tax return, needs a final review checklist, wants to know how to submit (e-Tax, mail, or in-person), or asks about common mistakes before submission. Trigger phrases include: \"\u63d0\u51fa\u6e96\u5099\", \"\u63d0\u51fa\u65b9\u6cd5\", \"e-Tax\u3067\u63d0\u51fa\", \"\u30c1\u30a7\u30c3\u30af\u30ea\u30b9\u30c8\", \"\u7533\u544a\u66f8\u306e\u78ba\u8a8d\", \"\u63d0\u51fa\u524d\u306e\u78ba\u8a8d\", \"\u90f5\u9001\u3067\u63d0\u51fa\", \"\u7a0e\u52d9\u7f72\u306b\u6301\u3063\u3066\u3044\u304f\", \"\u63d0\u51fa\u671f\u9650\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/submit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install submit"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "submit. This skill should be used when the user is ready to submit their tax return, needs a final review checklist, wants to know how to submit (e-Tax, mail, or in-person), or asks about common mistakes before submission. Trigger phrases include: \"\u63d0\u51fa\u6e96\u5099\", \"\u63d0\u51fa\u65b9\u6cd5\", \"e-Tax\u3067\u63d0\u51fa\", \"\u30c1\u30a7\u30c3\u30af\u30ea\u30b9\u30c8\", \"\u7533\u544a\u66f8\u306e\u78ba\u8a8d\", \"\u63d0\u51fa\u524d\u306e\u78ba\u8a8d\", \"\u90f5\u9001\u3067\u63d0\u51fa\", \"\u7a0e\u52d9\u7f72\u306b\u6301\u3063\u3066\u3044\u304f\", \"\u63d0\u51fa\u671f\u9650\". Platforms: claude_code."} +{"id": "3d86bd667c7a1895fddca2f69174127cfd5aab0e8642a6bfe0a145c8f0fc6374", "repo_url": "https://github.com/okx/agent-trade-kit", "name": "okx-cex-market", "description": "Use this skill when the user asks for: price of any asset, ticker, order book, market depth, candles, OHLCV, funding rate, open interest, mark price, index price, recent trades, price limit, instrumen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/okx/agent-trade-kit/blob/github-main/skills/okx-cex-market/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 338, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T09:57:46Z"}, "embedding_text": "okx-cex-market. Use this skill when the user asks for: price of any asset, ticker, order book, market depth, candles, OHLCV, funding rate, open interest, mark price, index price, recent trades, price limit, instrumen Platforms: claude_code."} +{"id": "57d1659739939ec43925951aed8592c6a93baad37dc510a43e9ba671538bde7f", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "technical-tutorials", "description": "When the user wants to create step-by-step technical tutorials, quickstarts, or code walkthroughs. Trigger phrases include \"tutorial,\" \"quickstart,\" \"getting started guide,\" \"walkthrough,\" \"step by st", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/technical-tutorials/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "technical-tutorials. When the user wants to create step-by-step technical tutorials, quickstarts, or code walkthroughs. Trigger phrases include \"tutorial,\" \"quickstart,\" \"getting started guide,\" \"walkthrough,\" \"step by st Platforms: claude_code."} +{"id": "11b3025b0df323ae5826c3c5a780939d8327974dc9087e3d1c08a64fd42d6290", "repo_url": "https://github.com/iamzifei/gtd-coach-plugin", "name": "gtd-coach", "description": "Personal GTD (Getting Things Done) coach that helps users achieve their annual goals. Use when users mention goals, plans, daily tasks, productivity, time management, task tracking, reviews, or need help breaking down objectives into actionable steps. Automatically remembers user's goals and progress across conversations. Supports multiple languages.", "source": ["skillhub", "topic"], "categories": ["ai", "claude", "claude-code", "claude-skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iamzifei/gtd-coach-plugin/blob/main/skills/gtd-coach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gtd-coach"}, "quality": {"stars": 34, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-10T00:31:50Z"}, "embedding_text": "gtd-coach. Personal GTD (Getting Things Done) coach that helps users achieve their annual goals. Use when users mention goals, plans, daily tasks, productivity, time management, task tracking, reviews, or need help breaking down objectives into actionable steps. Automatically remembers user's goals and progress across conversations. Supports multiple languages. Categories: ai, claude, claude-code, claude-skill. Platforms: claude_code."} +{"id": "a9ad8e2d34912d232f8b4c374ec95984fa5a6315c7cc63819f97ab5dbe1db63c", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "github-operations", "description": "Handles Git operations with human-style commits (no AI markers). Use when user mentions git, commits, committing code, pushing changes, or wants natural developer-style commit messages. Never includes", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/anti-hallucination/skills/anti-hallucination/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "github-operations. Handles Git operations with human-style commits (no AI markers). Use when user mentions git, commits, committing code, pushing changes, or wants natural developer-style commit messages. Never includes Platforms: claude_code."} +{"id": "8030a866f2e7f4fe7e618c46631a495b52d424839b1e8fc9c1e8021c75db0d2e", "repo_url": "https://github.com/vonrobak/fedora-homelab-containers", "name": "prompt-engineering-patterns", "description": "Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability in production. Use when optimizing prompts, improving LLM outputs, or designing production p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T15:42:32Z"}, "embedding_text": "prompt-engineering-patterns. Master advanced prompt engineering techniques to maximize LLM performance, reliability, and controllability in production. Use when optimizing prompts, improving LLM outputs, or designing production p Platforms: claude_code."} +{"id": "eded052ed209ff1556e38208871c68657a17d0595209d96334a7dc8a3482ce0b", "repo_url": "https://github.com/okx/agent-trade-kit", "name": "okx-cex-earn", "description": "Manages OKX Simple Earn (flexible savings/lending), On-chain Earn (staking/DeFi), Dual Investment (DCD/\u53cc\u5e01\u8d62), and AutoEarn (\u81ea\u52a8\u8d5a\u5e01) via the okx CLI. Use this skill whenever the user wants to check earn b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/okx/agent-trade-kit/blob/github-main/skills/okx-cex-earn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 338, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T09:57:46Z"}, "embedding_text": "okx-cex-earn. Manages OKX Simple Earn (flexible savings/lending), On-chain Earn (staking/DeFi), Dual Investment (DCD/\u53cc\u5e01\u8d62), and AutoEarn (\u81ea\u52a8\u8d5a\u5e01) via the okx CLI. Use this skill whenever the user wants to check earn b Platforms: claude_code."} +{"id": "1da81e374288c690e82ed75f2148b4c16152213243aa9c1f518fde4b0ddfba50", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "graph-database-expert", "description": "Expert in graph database design and development with deep knowledge of graph modeling, traversals, query optimization, and relationship patterns. Specializes in SurrealDB but applies generic graph dat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/graph-database-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "graph-database-expert. Expert in graph database design and development with deep knowledge of graph modeling, traversals, query optimization, and relationship patterns. Specializes in SurrealDB but applies generic graph dat Platforms: claude_code."} +{"id": "555d8ab07aa3ffe8342ef5a79555efabc30ab10f76dee0fc0eda76149497c4f1", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "brand-guidelines", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/ai/prompting/prompt-engineering/guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "brand-guidelines. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e2122618b0a04d3e849cc11dfd6a7a4d596142beec8edbe1c11221871333023f", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "settlement", "description": "This skill should be used when the user needs to perform year-end closing adjustments (\u6c7a\u7b97\u6574\u7406), review financial statements (\u6c7a\u7b97\u66f8), compute depreciation, or review their trial balance. Trigger phrases include: \"\u6c7a\u7b97\", \"\u6c7a\u7b97\u6574\u7406\", \"\u6c7a\u7b97\u66f8\u3092\u4f5c\u308b\", \"\u6e1b\u4fa1\u511f\u5374\", \"\u8a66\u7b97\u8868\", \"\u6b8b\u9ad8\u8a66\u7b97\u8868\", \"\u640d\u76ca\u8a08\u7b97\u66f8\", \"\u8cb8\u501f\u5bfe\u7167\u8868\", \"BS\", \"PL\", \"\u671f\u672b\u51e6\u7406\", \"\u68da\u5378\u3057\", \"\u672a\u6255\u8a08\u4e0a\", \"\u524d\u6255\u51e6\u7406\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/settlement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install settlement"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "settlement. This skill should be used when the user needs to perform year-end closing adjustments (\u6c7a\u7b97\u6574\u7406), review financial statements (\u6c7a\u7b97\u66f8), compute depreciation, or review their trial balance. Trigger phrases include: \"\u6c7a\u7b97\", \"\u6c7a\u7b97\u6574\u7406\", \"\u6c7a\u7b97\u66f8\u3092\u4f5c\u308b\", \"\u6e1b\u4fa1\u511f\u5374\", \"\u8a66\u7b97\u8868\", \"\u6b8b\u9ad8\u8a66\u7b97\u8868\", \"\u640d\u76ca\u8a08\u7b97\u66f8\", \"\u8cb8\u501f\u5bfe\u7167\u8868\", \"BS\", \"PL\", \"\u671f\u672b\u51e6\u7406\", \"\u68da\u5378\u3057\", \"\u672a\u6255\u8a08\u4e0a\", \"\u524d\u6255\u51e6\u7406\". Platforms: claude_code."} +{"id": "825fcf500b54fcf8aa1aca2dbf9c54875c5261767b4e4678daa43b766918a916", "repo_url": "https://github.com/benjaminastera/antigravity-awesome-skills", "name": "cc-skill-project-guidelines-example", "description": "Project Guidelines Skill (Example)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benjaminastera/antigravity-awesome-skills/blob/main/skills/cc-skill-project-guidelines-example/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 52, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T09:42:46Z"}, "embedding_text": "cc-skill-project-guidelines-example. Project Guidelines Skill (Example) Platforms: claude_code."} +{"id": "ce72be041b34be2cc1427f506de4a6d39a00255a4c77175c7225e47371bcc3c8", "repo_url": "https://github.com/plurigrid/asi", "name": "reafference-corollary-discharge", "description": "Von Holst reafference and corollary discharge for behavioral verification and signal processing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.opencode/skill/reafference-corollary-discharge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "reafference-corollary-discharge. Von Holst reafference and corollary discharge for behavioral verification and signal processing Platforms: claude_code."} +{"id": "5fe70585fc644f34a4508346fc486f9d0b0d3d3cd52440b7df898d81bb43cf47", "repo_url": "https://github.com/plurigrid/asi", "name": "pulse-mcp-stream", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/pulse-mcp-stream/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "pulse-mcp-stream. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "4052b7073c03dd423f8ccdcf022a4e4e8438455cdbec0210e47e11ff55b9ea78", "repo_url": "https://github.com/prorise-cool/prorise-claude-skills", "name": "project-analyze", "description": "Multi-phase iterative project analysis with Mermaid diagrams. Generates architecture reports, design reports, method analysis reports. Use when analyzing codebases, understanding project structure, re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/prorise-claude-skills/blob/master/.claude/skills/ai-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T14:13:57Z"}, "embedding_text": "project-analyze. Multi-phase iterative project analysis with Mermaid diagrams. Generates architecture reports, design reports, method analysis reports. Use when analyzing codebases, understanding project structure, re Platforms: claude_code."} +{"id": "06bfcf84f10f2cc1c0cf07457f81c7b3263cf407b1f50697d9a1787f456c03eb", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "platform-integration", "description": "Use when implementing CMMI processes in GitHub or Azure DevOps, migrating between platforms, or establishing traceability/compliance on GitHub/Azure - platform-specific process guidance", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-sdlc-engineering/skills/platform-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "platform-integration. Use when implementing CMMI processes in GitHub or Azure DevOps, migrating between platforms, or establishing traceability/compliance on GitHub/Azure - platform-specific process guidance Platforms: claude_code."} +{"id": "5ec2135242ff4c4947c3b906dc6e3d7b96f4a988b4ece5e4a9cb57ad65a37b37", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "theme-factory", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "theme-factory. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7379af3cb337562c47ffb6b75a44767cb8b80ba348b46be80cef6e1b553f86d5", "repo_url": "https://github.com/tomkrikorian/visionosagents", "name": "realitykit-visionos-developer", "description": "Build, debug, and optimize RealityKit scenes for visionOS, including entity/component setup, rendering, animation, physics, audio, input, attachments, and custom systems. Use when implementing Reality", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tomkrikorian/visionosagents/blob/main/skills/realitykit-visionos-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T00:27:41Z"}, "embedding_text": "realitykit-visionos-developer. Build, debug, and optimize RealityKit scenes for visionOS, including entity/component setup, rendering, animation, physics, audio, input, attachments, and custom systems. Use when implementing Reality Platforms: claude_code."} +{"id": "868fe64da1427e3e806348ee42f9a4bcc1a99d439c52b6bb3a7edd0e14ec557a", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "oracle-codex", "description": "This skill should be used when the user asks to \"use Codex\", \"ask Codex\", \"consult Codex\", \"use GPT for planning\", \"ask GPT to review\", \"get GPT's opinion\", \"what does GPT think\", \"second opinion on c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/shelved/oracle-codex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "oracle-codex. This skill should be used when the user asks to \"use Codex\", \"ask Codex\", \"consult Codex\", \"use GPT for planning\", \"ask GPT to review\", \"get GPT's opinion\", \"what does GPT think\", \"second opinion on c Platforms: claude_code."} +{"id": "ffb4a83a7a433a645968796defa13f7418527b7d97f8622c6c15f8c352db7e5f", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-ai-engineering", "description": "Route AI/ML tasks to correct Yzmir pack - frameworks, training, RL, LLMs, architectures, production", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/yzmir-ai-engineering-expert/skills/using-ai-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-ai-engineering. Route AI/ML tasks to correct Yzmir pack - frameworks, training, RL, LLMs, architectures, production Platforms: claude_code."} +{"id": "43b525f474c74e0cad88afb3e04249b212076f4d7f26eb83b2b9a1cfb34e0b18", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "webhook-handler-patterns", "description": "Best practices for webhook handlers. Use when implementing the handler sequence (verify first, parse second, handle idempotently), idempotency, error handling, retry logic, or framework-specific issue", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/webhook-handler-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "webhook-handler-patterns. Best practices for webhook handlers. Use when implementing the handler sequence (verify first, parse second, handle idempotently), idempotency, error handling, retry logic, or framework-specific issue Platforms: claude_code."} +{"id": "31659abdf8010be0468964df8123ec7bcde6a64565affeb0765085798713f502", "repo_url": "https://github.com/re-cinq/wave", "name": "opsx", "description": "OpenSpec workflow management system for creating, planning, implementing, and archiving specification-driven development changes with comprehensive lifecycle management", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/re-cinq/wave/blob/main/.claude/skills/opsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-03T20:03:21Z"}, "embedding_text": "opsx. OpenSpec workflow management system for creating, planning, implementing, and archiving specification-driven development changes with comprehensive lifecycle management Platforms: claude_code."} +{"id": "01317397ab825ad66df8592e60ac6b4140e65fc3733d1ebab3e38a086e99febf", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "commit", "description": "This skill should be used when the user asks to \"commit changes\", \"craft a commit message\", \"stage and commit\", \"commit only session edits\", or run a commit workflow with flags like --all, --deep, --c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "commit. This skill should be used when the user asks to \"commit changes\", \"craft a commit message\", \"stage and commit\", \"commit only session edits\", or run a commit workflow with flags like --all, --deep, --c Platforms: claude_code."} +{"id": "a67c6d790daa735c1528839c185983e6d007d28a6df14abee3e933d0e6cd1905", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "fastapi", "description": "REST API and WebSocket development with FastAPI emphasizing security, performance, and async patterns", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/fastapi-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "fastapi. REST API and WebSocket development with FastAPI emphasizing security, performance, and async patterns Platforms: claude_code."} +{"id": "89ce1b14bde82ba89007fb7dd7ace6ad0d3c396b8ea3c978648d5aa7625be01f", "repo_url": "https://github.com/grasmash/drupal-claude-skills", "name": "ivangrynenko-cursorrules-drupal", "description": "Drupal development and security patterns from Ivan Grynenko's cursor rules. Covers OWASP Top 10, authentication, access control, injection prevention, cryptography, configuration, database standards,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/grasmash/drupal-claude-skills/blob/main/skills/ivangrynenko-cursorrules-drupal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T20:58:16Z"}, "embedding_text": "ivangrynenko-cursorrules-drupal. Drupal development and security patterns from Ivan Grynenko's cursor rules. Covers OWASP Top 10, authentication, access control, injection prevention, cryptography, configuration, database standards, Platforms: claude_code."} +{"id": "9ca3344c8346b8a875f47e89d91cd8286116b3ca2c2b03054e969927eb60cd50", "repo_url": "https://github.com/mattpocock/skills", "name": "setup-matt-pocock-skills", "description": "Sets up an `## Agent skills` block in AGENTS.md/CLAUDE.md and `docs/agents/` so the engineering skills know this repo's issue tracker (GitHub or local markdown), triage label vocabulary, and domain do", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mattpocock/skills/blob/main/skills/engineering/setup-matt-pocock-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 140812, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T08:41:52Z"}, "embedding_text": "setup-matt-pocock-skills. Sets up an `## Agent skills` block in AGENTS.md/CLAUDE.md and `docs/agents/` so the engineering skills know this repo's issue tracker (GitHub or local markdown), triage label vocabulary, and domain do Platforms: claude_code."} +{"id": "21cf6cfbcec553b860d41343dddee9c026f99dbc899908520f3f0be7fd0a7544", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "bump-deps", "description": "This skill should be used when the user asks to \"update dependencies\", \"update npm packages\", \"bump dependencies\", \"upgrade node packages\", \"check for outdated packages\", \"update package.json\", or men", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/skills/bump-deps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "bump-deps. This skill should be used when the user asks to \"update dependencies\", \"update npm packages\", \"bump dependencies\", \"upgrade node packages\", \"check for outdated packages\", \"update package.json\", or men Platforms: claude_code."} +{"id": "a6c4b6fad0be2ab2741e7765384af7cd03a47a69ffc6e0a1c7e164dd7ff2268e", "repo_url": "https://github.com/harleycoops/math-to-manim", "name": "docs", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/harleycoops/math-to-manim/blob/main/hermes/skills/hermes-learns-manim/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2393, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T04:53:47Z"}, "embedding_text": "docs. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7f8bb0c216ae472460fd6e5cea172f2f0156f4aa6b3bd34d8891a2b63bc5a801", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "code-review", "description": "This skill should be used when the user asks to \"review code\", \"review PR\", \"code review\", \"audit code\", \"check for bugs\", \"security review\", \"review my changes\", \"find issues in this code\", \"review t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "code-review. This skill should be used when the user asks to \"review code\", \"review PR\", \"code review\", \"audit code\", \"check for bugs\", \"security review\", \"review my changes\", \"find issues in this code\", \"review t Platforms: claude_code."} +{"id": "a8d3adecb56317e8033fff6e7aca619435b7fa058c5c57105a1839c6b2919d51", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-dpdk", "description": "\u7528\u6237\u6001\u7f51\u7edc\u4e13\u5bb6\u3002\u5904\u7406 DPDK, \u7528\u6237\u6001\u9a71\u52a8, \u9ad8\u6027\u80fd\u7f51\u7edc, packet processing, \u96f6\u62f7\u8d1d, RSS \u8d1f\u8f7d\u5747\u8861---", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-dpdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-dpdk. \u7528\u6237\u6001\u7f51\u7edc\u4e13\u5bb6\u3002\u5904\u7406 DPDK, \u7528\u6237\u6001\u9a71\u52a8, \u9ad8\u6027\u80fd\u7f51\u7edc, packet processing, \u96f6\u62f7\u8d1d, RSS \u8d1f\u8f7d\u5747\u8861--- Platforms: claude_code."} +{"id": "949ba7654b52b57b4d4fd4f1188e581293ff4f61e71d47c7d8c049acec207905", "repo_url": "https://github.com/amkessler/nicar2026_skills_in_codex_claude", "name": "fecfile", "description": "Analyze FEC (Federal Election Commission) campaign finance filings. Use when working with FEC filing IDs, campaign finance data, contributions, disbursements, or political committee financial reports.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/amkessler/nicar2026_skills_in_codex_claude/blob/main/.claude/skills/fecfile/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T09:21:02Z"}, "embedding_text": "fecfile. Analyze FEC (Federal Election Commission) campaign finance filings. Use when working with FEC filing IDs, campaign finance data, contributions, disbursements, or political committee financial reports. Platforms: claude_code."} +{"id": "aadccdeb5eb5e9ff9f91ef6c29bc184470976e3d6e107ff745f87fc7b6155d72", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "twelve-factor-app", "description": "Reference guide for the Twelve-Factor App methodology \u2014 15 principles (12 original + 3 modern extensions) for building portable, resilient, cloud-native applications. Use when evaluating application a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/twelve-factor-app/skills/twelve-factor-app/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "twelve-factor-app. Reference guide for the Twelve-Factor App methodology \u2014 15 principles (12 original + 3 modern extensions) for building portable, resilient, cloud-native applications. Use when evaluating application a Platforms: claude_code."} +{"id": "99dce23c989ef065a609843d90a71dcc2e9f9f14584809d4883500ed339ee99a", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "plan-review", "description": "Use after implementation-planning to validate plans against codebase reality, risk, complexity, and project conventions before execution", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-planning/skills/plan-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "plan-review. Use after implementation-planning to validate plans against codebase reality, risk, complexity, and project conventions before execution Platforms: claude_code."} +{"id": "0a3bb487a13dbc82d50006b1f1673c5ff705cfabb3b43e72265d927ff7b6cb2c", "repo_url": "https://github.com/reduxjs/redux-toolkit", "name": "build-modern-redux-apps/modern-redux", "description": "Use this when setting up a new Redux Toolkit app or modernizing an existing React + Redux codebase. Covers configureStore, Provider wiring, typed hooks, hooks-first React-Redux usage, feature folders,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reduxjs/redux-toolkit/blob/master/packages/toolkit/skills/build-modern-redux-apps/modern-redux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:41:25Z"}, "embedding_text": "build-modern-redux-apps/modern-redux. Use this when setting up a new Redux Toolkit app or modernizing an existing React + Redux codebase. Covers configureStore, Provider wiring, typed hooks, hooks-first React-Redux usage, feature folders, Platforms: claude_code."} +{"id": "9585a3a652ab0b13fa09c7785dadcc0d64e55a76f117606d55774b8894dc7ed6", "repo_url": "https://github.com/itechmeat/llm-code", "name": "inworld", "description": "Inworld TTS API. Covers voice cloning, audio markups, timestamps. Keywords: text-to-speech, visemes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/inworld/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "inworld. Inworld TTS API. Covers voice cloning, audio markups, timestamps. Keywords: text-to-speech, visemes. Platforms: claude_code."} +{"id": "79878e31e98f6b1cd269b26f7c6e7eaae30c0876826ccf6d5f310ed3dd96ba45", "repo_url": "https://github.com/sendaifun/skills", "name": "solana-agent-kit", "description": "Comprehensive guide for building AI agents that interact with Solana blockchain using SendAI's Solana Agent Kit. Covers 60+ actions, LangChain/Vercel AI integration, MCP server setup, and autonomous agent patterns.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/solana-agent-kit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solana-agent-kit"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "solana-agent-kit. Comprehensive guide for building AI agents that interact with Solana blockchain using SendAI's Solana Agent Kit. Covers 60+ actions, LangChain/Vercel AI integration, MCP server setup, and autonomous agent patterns. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "538f6b6d02d013d4baace0717f89d9f0df7bcc17cd44873f328052cc6b77be89", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "session-wrap", "description": "\uc138\uc158 \uc885\ub8cc \uc804 \uc790\ub3d9 \uc815\ub9ac \uc2a4\ud0ac. 4\uac1c \ubcd1\ub82c subagent\uac00 \ubb38\uc11c \uc5c5\ub370\uc774\ud2b8, \ubc18\ubcf5 \ud328\ud134, \ud559\uc2b5 \ud3ec\uc778\ud2b8, \ud6c4\uc18d \uc791\uc5c5\uc744 \ub3d9\uc2dc \ud0d0\uc9c0\ud558\uace0, 1\uac1c \uac80\uc99d subagent\uac00 \uc911\ubcf5 \uc81c\uac70 \ud6c4 \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc120\ud0dd\uc9c0\ub97c \uc81c\uc2dc\ud55c\ub2e4.\n\ud2b8\ub9ac\uac70: /session-wrap, \uc138\uc158 \ub9c8\ubb34\ub9ac, \uc138\uc158 \uc815\ub9ac, \uc791\uc5c5 \ub9c8\ubb34\ub9ac\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/session-wrap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install session-wrap"}, "quality": {"stars": 752, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:57:09Z"}, "embedding_text": "session-wrap. \uc138\uc158 \uc885\ub8cc \uc804 \uc790\ub3d9 \uc815\ub9ac \uc2a4\ud0ac. 4\uac1c \ubcd1\ub82c subagent\uac00 \ubb38\uc11c \uc5c5\ub370\uc774\ud2b8, \ubc18\ubcf5 \ud328\ud134, \ud559\uc2b5 \ud3ec\uc778\ud2b8, \ud6c4\uc18d \uc791\uc5c5\uc744 \ub3d9\uc2dc \ud0d0\uc9c0\ud558\uace0, 1\uac1c \uac80\uc99d subagent\uac00 \uc911\ubcf5 \uc81c\uac70 \ud6c4 \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc120\ud0dd\uc9c0\ub97c \uc81c\uc2dc\ud55c\ub2e4.\n\ud2b8\ub9ac\uac70: /session-wrap, \uc138\uc158 \ub9c8\ubb34\ub9ac, \uc138\uc158 \uc815\ub9ac, \uc791\uc5c5 \ub9c8\ubb34\ub9ac\n Platforms: claude_code."} +{"id": "3411d02f3cd2ae9763c9273ae66654ba5cc3dcb3e8b1c85fdcded07bbec26414", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "flutter-architecture", "description": "Comprehensive guide for architecting Flutter applications following MVVM pattern and best practices with feature-first project organization. Use when working with Flutter projects to structure code pr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/flutter-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "flutter-architecture. Comprehensive guide for architecting Flutter applications following MVVM pattern and best practices with feature-first project organization. Use when working with Flutter projects to structure code pr Platforms: claude_code."} +{"id": "b33913e375f096fa2c3ec664307a91697e6d2c5cc444b865b7748db1ecb14cb1", "repo_url": "https://github.com/plurigrid/asi", "name": "duck-agent", "description": "DuckDB file discovery agent with verified absolute paths", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/duck-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "duck-agent. DuckDB file discovery agent with verified absolute paths Platforms: claude_code."} +{"id": "e503ff7902e4e10e438b13b82b2d55ccedbb316e32f14c630e468fdc7bc20dd8", "repo_url": "https://github.com/plurigrid/asi", "name": "segal-types", "description": "Segal types for synthetic \u221e-categories. Binary composites exist uniquely", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/segal-types/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "segal-types. Segal types for synthetic \u221e-categories. Binary composites exist uniquely Platforms: claude_code."} +{"id": "1b3d0d7395bc389aaedfb5b105c1636485e9ee38440800352915c8585b8e441b", "repo_url": "https://github.com/anthropics/life-sciences", "name": "clinical-trial-protocol-skill", "description": "Generate clinical trial protocols for medical devices or drugs. This skill should be used when users say \"Create a clinical trial protocol\", \"Generate protocol for [device/drug]\", \"Help me design a cl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/life-sciences/blob/main/clinical-trial-protocol-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 474, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-08T16:54:54Z"}, "embedding_text": "clinical-trial-protocol-skill. Generate clinical trial protocols for medical devices or drugs. This skill should be used when users say \"Create a clinical trial protocol\", \"Generate protocol for [device/drug]\", \"Help me design a cl Platforms: claude_code."} +{"id": "13b506ea0c5813e780457dfcb73197c0f6525ed7a93b22388ffee058577bd4a2", "repo_url": "https://github.com/plurigrid/asi", "name": "vector-field", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/vector-field/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "vector-field. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0f5a546538874a8d4eb6c0d42df2f5ff54438810c5fd68adefad4d04be8004bd", "repo_url": "https://github.com/exboys/skilllite", "name": "xiaohongshu-writer", "description": "\u5c0f\u7ea2\u4e66\u56fe\u6587\u5185\u5bb9\u521b\u4f5c\u52a9\u624b\u3002**\u5fc5\u987b\u4f20\u5165 content**\uff08\u542b title\u3001body\u3001hashtags\u3001thumbnail\uff09\uff0c\u5efa\u8bae generate_thumbnail=true\u3002\u4f18\u5148 Playwright HTML \u622a\u56fe\u751f\u6210\u5c01\u9762\uff0c\u5931\u8d25\u65f6\u56de\u9000 Pillow\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/exboys/skilllite/blob/main/.skills/xiaohongshu-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 157, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:36:11Z"}, "embedding_text": "xiaohongshu-writer. \u5c0f\u7ea2\u4e66\u56fe\u6587\u5185\u5bb9\u521b\u4f5c\u52a9\u624b\u3002**\u5fc5\u987b\u4f20\u5165 content**\uff08\u542b title\u3001body\u3001hashtags\u3001thumbnail\uff09\uff0c\u5efa\u8bae generate_thumbnail=true\u3002\u4f18\u5148 Playwright HTML \u622a\u56fe\u751f\u6210\u5c01\u9762\uff0c\u5931\u8d25\u65f6\u56de\u9000 Pillow\u3002 Platforms: claude_code."} +{"id": "876834bfb71aa06f80e86181b5b950c24a5090b5c4940dd4ad77f928644681e0", "repo_url": "https://github.com/scientiacapital/skills", "name": "workflow-orchestrator", "description": "Project workflow system - cost tracking, parallel execution, security gates, agent orchestration. Use when: start day, begin session, status check, new feature, build, implement, end day, wrap up, deb", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/workflow-orchestrator-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "workflow-orchestrator. Project workflow system - cost tracking, parallel execution, security gates, agent orchestration. Use when: start day, begin session, status check, new feature, build, implement, end day, wrap up, deb Platforms: claude_code."} +{"id": "76c9522879b79df8f4526dd48ff39c8cf28e9f374ec201cb655cac76b5ca4951", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-marketing-landing-pages", "description": "This skill provides shell scripts for managing marketing landing pages with built-in A/B testing. It enforces statistical significance requirements (100 conversions per variant, 95% confidence) and ha", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/cfn-extras/skills/marketing/cfn-marketing-landing-pages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "A", "skillhub_score": 7.7, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-marketing-landing-pages. This skill provides shell scripts for managing marketing landing pages with built-in A/B testing. It enforces statistical significance requirements (100 conversions per variant, 95% confidence) and ha Platforms: claude_code."} +{"id": "48be2350a90a7be4f8b41a994e62c9fdbe984fe23cd33ba68af930a0d417bb4f", "repo_url": "https://github.com/anthropics/healthcare", "name": "prior-auth-review-skill", "description": "Automate payer review of prior authorization (PA) requests. This skill should be used when users say \"Review this PA request\", \"Process prior authorization for [procedure]\", \"Assess medical necessity\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/healthcare/blob/main/plugins/healthcare/skills/prior-auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 315, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T23:29:48Z"}, "embedding_text": "prior-auth-review-skill. Automate payer review of prior authorization (PA) requests. This skill should be used when users say \"Review this PA request\", \"Process prior authorization for [procedure]\", \"Assess medical necessity\" Platforms: claude_code."} +{"id": "c70a9b702cc60c5aaa45a66111512acbd36183fca5b0481342a2dad19f7f8bae", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "reverse", "description": "[UDS] System archeology \u2014 reverse engineer code across Logic, Data, and Runtime dimensions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/reverse-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "reverse. [UDS] System archeology \u2014 reverse engineer code across Logic, Data, and Runtime dimensions Platforms: claude_code."} +{"id": "cbd5f6c7fe00a3191b5f42f64dcf17b8347cda182cef5d40dcf62d5c5813b057", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "holistic-linting-orchestrator", "description": "Orchestrator delegation workflows for linting. Guides orchestrators on when and how to delegate to linting-root-cause-resolver and post-linting-architecture-reviewer agents. Use when orchestrating lin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/holistic-linting/skills/holistic-linting-orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "holistic-linting-orchestrator. Orchestrator delegation workflows for linting. Guides orchestrators on when and how to delegate to linting-root-cause-resolver and post-linting-architecture-reviewer agents. Use when orchestrating lin Platforms: claude_code."} +{"id": "752b51c92af89c998ece53feda9646cabde8027fc31043dbf3a6b69ae356198e", "repo_url": "https://github.com/plurigrid/asi", "name": "ctp-yoneda", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/ctp-yoneda/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ctp-yoneda. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3167354edc791cc18f9639a09fe321b7e6396d274cf0fd106bb2d962fd1dcdd7", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "logging-guide", "description": "Implement structured logging with proper log levels and sensitive data handling.\nUse when: adding logging, debugging, setting up observability.\nKeywords: logging, log level, structured logging, observ", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/logging-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "logging-guide. Implement structured logging with proper log levels and sensitive data handling.\nUse when: adding logging, debugging, setting up observability.\nKeywords: logging, log level, structured logging, observ Platforms: claude_code."} +{"id": "8ba868a76842f34cfb16f3623bf0631a20f753bb9bb25a1d8640bf5f75bc6e93", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "MVP Builder", "description": "Rapid MVP development and feature prioritization for fast product validation. Use when building minimum viable products, prioritizing features, validating ideas quickly, or when users need to ship pro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/mvp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "MVP Builder. Rapid MVP development and feature prioritization for fast product validation. Use when building minimum viable products, prioritizing features, validating ideas quickly, or when users need to ship pro Platforms: claude_code."} +{"id": "b8fee963932e2c32e46c8ec650620242f4da844ec473e0c221107c6d0e62b086", "repo_url": "https://github.com/biocontext-ai/skill-to-mcp", "name": "help", "description": "Provides information about using the skill-to-mcp server and how to install additional skills", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/biocontext-ai/skill-to-mcp/blob/main/src/skill_to_mcp/default_skills/help/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-27T17:36:58Z"}, "embedding_text": "help. Provides information about using the skill-to-mcp server and how to install additional skills Platforms: claude_code."} +{"id": "21824dedac8b72e681d8aba90be33917603a93bf952c234e07e9726496e57341", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "project-structure-guide", "description": "Guide for organizing project directories following language-specific best practices.\nUse when: creating projects, reorganizing structure, adding modules, setting up builds.\nKeywords: project, structur", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/project-structure-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "project-structure-guide. Guide for organizing project directories following language-specific best practices.\nUse when: creating projects, reorganizing structure, adding modules, setting up builds.\nKeywords: project, structur Platforms: claude_code."} +{"id": "493f2ae3ede1bcf45f14ec30f65c692e335f333f443830ac06ed8bce16f24f17", "repo_url": "https://github.com/plurigrid/asi", "name": "accept-no-substitutes", "description": "This skill should be used when agents generate placeholder tokens like \"pseudo-\", \"mock-\", \"temporary\", \"TODO\", \"demo-\", or similar incompleteness markers. Detects substitution patterns in agent OUTPU", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/accept-no-substitutes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "accept-no-substitutes. This skill should be used when agents generate placeholder tokens like \"pseudo-\", \"mock-\", \"temporary\", \"TODO\", \"demo-\", or similar incompleteness markers. Detects substitution patterns in agent OUTPU Platforms: claude_code."} +{"id": "0ae5190f7e4863ccb42748625342a1df4491f2736c4d989cc4525cfffb86bb7f", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "feature-builder", "description": "Build complete React features with proper layered architecture including UI components, business logic, API integration, and state management. Use this skill when users request implementing features l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/feature-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "feature-builder. Build complete React features with proper layered architecture including UI components, business logic, API integration, and state management. Use this skill when users request implementing features l Platforms: claude_code."} +{"id": "24eb1c6c839a27647e0052662a59906197c93e85cfc50ac2445fa35245a4a491", "repo_url": "https://github.com/plurigrid/asi", "name": "mlx-jax-splitmix", "description": "MLX on Apple Silicon with JAX-style SplitMix64 PRNG. Deterministic color generation with GPU acceleration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/mlx-jax-splitmix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "mlx-jax-splitmix. MLX on Apple Silicon with JAX-style SplitMix64 PRNG. Deterministic color generation with GPU acceleration. Platforms: claude_code."} +{"id": "c25cec12caf8a604bcf2e3b1dab177da109f70549a19faf7b80b7eb25a1e75e5", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-validate", "description": "Pre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure (Bicep or Terraform), permissions, and prerequisites before deploying. WHEN: validate my app, check deployment readiness, run preflight checks, verify configuration, check if ready to deploy, validate azure.yaml, validate Bicep, test before deploying, troubleshoot deployment errors, validate Azure Functions, validate function app, validate serverless deployment.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-validate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-validate"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-validate. Pre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure (Bicep or Terraform), permissions, and prerequisites before deploying. WHEN: validate my app, check deployment readiness, run preflight checks, verify configuration, check if ready to deploy, validate azure.yaml, validate Bicep, test before deploying, troubleshoot deployment errors, validate Azure Functions, validate function app, validate serverless deployment. Platforms: claude_code."} +{"id": "e2dbdd62a40bfbda5a2324a2ba1e8000bb17a1b0e053b2ec37b7695045f16596", "repo_url": "https://github.com/plurigrid/asi", "name": "hy-emacs", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/emacs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "hy-emacs. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8e656f808e0aa338641d03d120873ef15d0799d6830366a395e6bd87e8e9f71e", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "setup", "description": "This skill should be used when the user wants to set up shinkoku for the first time, initialize their configuration, or update their existing settings. Trigger phrases include: \"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\", \"\u521d\u671f\u8a2d\u5b9a\", \"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u308b\", \"shinkoku\u306e\u8a2d\u5b9a\", \"config\", \"setup\", \"\u59cb\u3081\u65b9\", \"\u4f7f\u3044\u65b9\", \"\u8a2d\u5b9a\u3092\u66f4\u65b0\", \"config\u3092\u4f5c\u308a\u76f4\u3059\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install setup"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "setup. This skill should be used when the user wants to set up shinkoku for the first time, initialize their configuration, or update their existing settings. Trigger phrases include: \"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\", \"\u521d\u671f\u8a2d\u5b9a\", \"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u308b\", \"shinkoku\u306e\u8a2d\u5b9a\", \"config\", \"setup\", \"\u59cb\u3081\u65b9\", \"\u4f7f\u3044\u65b9\", \"\u8a2d\u5b9a\u3092\u66f4\u65b0\", \"config\u3092\u4f5c\u308a\u76f4\u3059\". Platforms: claude_code."} +{"id": "f04e8dd8fe57fc0c8db30b12e984908a8c2ef203f8a6e0ed06def4865bbfc115", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-cloud-migrate", "description": "Assess and migrate cross-cloud workloads to Azure. Generates assessment reports and converts code from AWS, GCP, or other providers to Azure services. WHEN: migrate Lambda to Azure Functions, migrate AWS to Azure, Lambda migration assessment, convert AWS serverless to Azure, migration readiness report, migrate from AWS, migrate from GCP, cross-cloud migration.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-cloud-migrate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-cloud-migrate"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-cloud-migrate. Assess and migrate cross-cloud workloads to Azure. Generates assessment reports and converts code from AWS, GCP, or other providers to Azure services. WHEN: migrate Lambda to Azure Functions, migrate AWS to Azure, Lambda migration assessment, convert AWS serverless to Azure, migration readiness report, migrate from AWS, migrate from GCP, cross-cloud migration. Platforms: claude_code."} +{"id": "f3e73fa07c8b56db90772084dde58576f21904f7afc9c2efd509f479d7b08ba3", "repo_url": "https://github.com/plurigrid/asi", "name": "asi-polynomial-operads", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/.claude-plugin/asi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "asi-polynomial-operads. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d6fd87fedbf2f001c8c1e185741258dfd3adb5246da69b72a13d84964ad5d2d0", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-messaging", "description": "Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-messaging"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-messaging. Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter. Platforms: claude_code."} +{"id": "7cdf63bb98909156d6c52bc163f8aa8012a97e61cad8bf2b4ac6e7f6b074b95a", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-zero-cost", "description": "\u96f6\u6210\u672c\u62bd\u8c61\u4e0e\u6cdb\u578b\u4e13\u5bb6\u3002\u5904\u7406\u6cdb\u578b, trait, monomorphization, static dispatch, dynamic dispatch, impl Trait, dyn Trait, \u6cdb\u578b, \u7279\u5f81, \u5355\u6001\u5316, \u96f6\u6210\u672c\u62bd\u8c61---", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-zero-cost/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-zero-cost. \u96f6\u6210\u672c\u62bd\u8c61\u4e0e\u6cdb\u578b\u4e13\u5bb6\u3002\u5904\u7406\u6cdb\u578b, trait, monomorphization, static dispatch, dynamic dispatch, impl Trait, dyn Trait, \u6cdb\u578b, \u7279\u5f81, \u5355\u6001\u5316, \u96f6\u6210\u672c\u62bd\u8c61--- Platforms: claude_code."} +{"id": "154dbe518586ceb21e743d7fe961c1adaa27383e7869ea532d97d6fe2caf9eed", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-upgrade", "description": "Assess and upgrade Azure workloads between plans, tiers, or SKUs within Azure. Generates assessment reports and automates upgrade steps. WHEN: upgrade Consumption to Flex Consumption, upgrade Azure Functions plan, migrate hosting plan, upgrade Functions SKU, move to Flex Consumption, upgrade Azure service tier, change hosting plan, upgrade function app plan, migrate App Service to Container Apps.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-upgrade/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-upgrade"}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "azure-upgrade. Assess and upgrade Azure workloads between plans, tiers, or SKUs within Azure. Generates assessment reports and automates upgrade steps. WHEN: upgrade Consumption to Flex Consumption, upgrade Azure Functions plan, migrate hosting plan, upgrade Functions SKU, move to Flex Consumption, upgrade Azure service tier, change hosting plan, upgrade function app plan, migrate App Service to Container Apps. Platforms: claude_code."} +{"id": "088c3e719394f9ce9b83d414df43a283cf76f6c1080a875f4e923387a6635b5e", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "smithnode", "description": "P2P blockchain for AI agents. Proof of Cognition. Run a validator, solve puzzles, earn SMITH tokens.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/smithnode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "smithnode. P2P blockchain for AI agents. Proof of Cognition. Run a validator, solve puzzles, earn SMITH tokens. Platforms: claude_code."} +{"id": "5aedfecc05640121a52f5ce093ca777780ae7be8a8dca92b14638a4bb7159173", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "zdev", "description": "Manage isolated dev environments with git worktrees, auto ports, and preview URLs", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/development/dayz-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "zdev. Manage isolated dev environments with git worktrees, auto ports, and preview URLs Platforms: claude_code."} +{"id": "38bf4500adcd4cbd56c1ce3890fb2caac4444d149753bd67888ee6a1bf745419", "repo_url": "https://github.com/netresearch/jira-skill", "name": "jira-syntax", "description": "Jira wiki markup syntax validation, templates, and formatting guidance. Use when: (1) Writing Jira issue descriptions or comments, (2) Converting Markdown to Jira wiki markup, (3) Requesting bug repor", "source": ["skillhub", "topic"], "categories": ["agent-skills", "ai-agent", "atlassian", "claude-code-skill", "jira", "mcp", "open-standard", "project-management", "skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/netresearch/jira-skill/blob/main/skills/jira-syntax/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jira-syntax"}, "quality": {"stars": 64, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T10:56:37Z"}, "embedding_text": "jira-syntax. Jira wiki markup syntax validation, templates, and formatting guidance. Use when: (1) Writing Jira issue descriptions or comments, (2) Converting Markdown to Jira wiki markup, (3) Requesting bug repor Categories: agent-skills, ai-agent, atlassian, claude-code-skill, jira, mcp, open-standard, project-management, skill. Platforms: claude_code."} +{"id": "c9d905918cdc528af55f7fa48b36af747071fc302a0040ebc628dd74239f465c", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "BrightData", "description": "Progressive URL scraping. USE WHEN Bright Data, scrape URL, web scraping tiers. SkillSearch('brightdata') for docs.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/td/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install BrightData"}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "BrightData. Progressive URL scraping. USE WHEN Bright Data, scrape URL, web scraping tiers. SkillSearch('brightdata') for docs. Platforms: claude_code."} +{"id": "37c18e46e8687d1b45adabf0afacabeef4a34fb03d706e4593bc79985452b8b4", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "building-rag-systems", "description": "Build production RAG systems with semantic chunking, incremental indexing, and filtered retrieval.\nUse when implementing document ingestion pipelines, vector search with Qdrant, or context-aware\nretri", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/building-rag-systems/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "building-rag-systems. Build production RAG systems with semantic chunking, incremental indexing, and filtered retrieval.\nUse when implementing document ingestion pipelines, vector search with Qdrant, or context-aware\nretri Platforms: claude_code."} +{"id": "0de9575fd73f5428c5d5ffea5d60b60c93c27c77d11153019d2645293448f2d8", "repo_url": "https://github.com/wsimmonds/claude-nextjs-skills", "name": "nextjs-advanced-routing", "description": "Guide for advanced Next.js App Router patterns including Route Handlers, Parallel Routes, Intercepting Routes, Server Actions, error boundaries, draft mode, and streaming with Suspense. CRITICAL for s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wsimmonds/claude-nextjs-skills/blob/main/nextjs-advanced-routing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-24T11:05:39Z"}, "embedding_text": "nextjs-advanced-routing. Guide for advanced Next.js App Router patterns including Route Handlers, Parallel Routes, Intercepting Routes, Server Actions, error boundaries, draft mode, and streaming with Suspense. CRITICAL for s Platforms: claude_code."} +{"id": "70363c3073959129acda75c18e692df0a2fb95ee37f06b0ce3c147fad935996d", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "managing-timelines", "description": "Turn a deadline, launch date, or delivery target into an executable Timeline Management Pack (deadline type + commitments, phase plan, milestone tracker, RAG cadence, scope/change control, stakeholder", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/managing-timelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "managing-timelines. Turn a deadline, launch date, or delivery target into an executable Timeline Management Pack (deadline type + commitments, phase plan, milestone tracker, RAG cadence, scope/change control, stakeholder Platforms: claude_code."} +{"id": "99bcdd5e6102f32b1358fa56683b52f5f9c433bee54144ec663b74b47ad88631", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "multi-agent-patterns", "description": "Design multi-agent architectures for complex tasks. Use when single-agent context limits are exceeded, when tasks decompose naturally into subtasks, or when specializing agents improves quality.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/multi-agent-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "multi-agent-patterns. Design multi-agent architectures for complex tasks. Use when single-agent context limits are exceeded, when tasks decompose naturally into subtasks, or when specializing agents improves quality. Platforms: claude_code."} +{"id": "f81a57af0edcec5beb4eca71a8fcbb847c04d626ea7346f32a59bf5a4978fc44", "repo_url": "https://github.com/youdotcom-oss/dx-toolkit", "name": "typescript-lsp", "description": "Search TypeScript SYMBOLS (functions, types, classes) - NOT text. Use Glob to find files, Grep for text search, LSP for symbol search. Provides type-aware results that understand imports, exports, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/youdotcom-oss/dx-toolkit/blob/main/.agents/skills/typescript-lsp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T22:11:19Z"}, "embedding_text": "typescript-lsp. Search TypeScript SYMBOLS (functions, types, classes) - NOT text. Use Glob to find files, Grep for text search, LSP for symbol search. Provides type-aware results that understand imports, exports, and Platforms: claude_code."} +{"id": "75b4b974d5e94fa90844f05307e13df7362946b554716477d3d24e6b685e61c5", "repo_url": "https://github.com/plurigrid/asi", "name": "cheapskate", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/cheapskate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "cheapskate. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ffc361c71e1cfac589e3ff68573e0b094c7b35e4f27328ec122d44a0398dc843", "repo_url": "https://github.com/plurigrid/asi", "name": "backend-development", "description": "Backend API design, database architecture, microservices patterns, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/backend-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "backend-development. Backend API design, database architecture, microservices patterns, and Platforms: claude_code."} +{"id": "41d341f362f6dc7f34988ac1aaee250922353a1dd87854887143d903a08bbc82", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "bash-script-helper", "description": "Expert helper for bash scripting, debugging, and best practices", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/bash-script-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bash-script-helper"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "bash-script-helper. Expert helper for bash scripting, debugging, and best practices Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "ceeb85d81a4de9c2fc630ff4002bd6e118270b1623fe1073d25a5a62289a7ce1", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "lean-lsp", "description": "Query Lean goals, diagnostics and other information.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/backend/lean-lsp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "lean-lsp. Query Lean goals, diagnostics and other information. Platforms: claude_code."} +{"id": "601ddd3a67566abdebd698bb460233c54147151ee8fe37d9b6903b91964573d5", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "context7-efficient", "description": "Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for Ja", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/panaversity-ri-vault/skills/context7-efficient/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "context7-efficient. Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for Ja Platforms: claude_code."} +{"id": "f3479668036b6828fddba6aafd728e4d4903ad677242b1c3b48ee1f16a972cce", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-thinking-scientific-writing", "description": "Write scientific manuscripts. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting guidelines (CONSORT/STROBE/PRISMA), abstracts, for research papers and journal submissions.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-thinking-scientific-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-thinking-scientific-writing"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-thinking-scientific-writing. Write scientific manuscripts. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting guidelines (CONSORT/STROBE/PRISMA), abstracts, for research papers and journal submissions. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "13a770f9bb2bdbbfd7e207abbab9d57e1fbac24f08bdaa0cf7684eadc7e60dc7", "repo_url": "https://github.com/plurigrid/asi", "name": "birkhoff-average", "description": "Time average of observable along trajectory", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/birkhoff-average/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "birkhoff-average. Time average of observable along trajectory Platforms: claude_code."} +{"id": "e883fc488168ce813a49c4de6145e2454c4093120bd424a686f2c695c94bc8f2", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "json-config-helper", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/json-config-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install json-config-helper"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "json-config-helper. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "00eebe192103135ee4bf66f30d42609c68e28ba423a23670718add59df664a20", "repo_url": "https://github.com/eferro/augmentedcode-skills", "name": "mutation-testing-js", "description": "Mutation testing patterns for JavaScript and TypeScript using Stryker. Use when analyzing JavaScript/TypeScript branch code to find weak or missing tests, verifying test effectiveness in JS/TS project", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eferro/augmentedcode-skills/blob/main/mutation-testing-js/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T09:25:57Z"}, "embedding_text": "mutation-testing-js. Mutation testing patterns for JavaScript and TypeScript using Stryker. Use when analyzing JavaScript/TypeScript branch code to find weak or missing tests, verifying test effectiveness in JS/TS project Platforms: claude_code."} +{"id": "c08f5be8e8980985f4ff3a1e6de5e535a084aa06d7327c97e51adfb6815e0c98", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "domain-name-brainstormer", "description": "Generates creative domain name ideas for your project and checks availability across multiple TLDs (.com, .io, .dev, .ai, etc.). Saves hours of brainstorming and manual checking.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/domain-name-brainstormer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "domain-name-brainstormer. Generates creative domain name ideas for your project and checks availability across multiple TLDs (.com, .io, .dev, .ai, etc.). Saves hours of brainstorming and manual checking. Platforms: claude_code."} +{"id": "fdc3e3b00c0178b10d0dfea971fa2af935e1320597912871f611dcdbaa5d048e", "repo_url": "https://github.com/sveltejs/mcp", "name": "svelte-core-bestpractices", "description": "Guidance on writing fast, robust, modern Svelte code. Load this skill whenever in a Svelte project and asked to write/edit or analyze a Svelte component or module. Covers reactivity, event handling, s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sveltejs/mcp/blob/main/packages/opencode/skills/svelte-core-bestpractices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 279, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T18:49:05Z"}, "embedding_text": "svelte-core-bestpractices. Guidance on writing fast, robust, modern Svelte code. Load this skill whenever in a Svelte project and asked to write/edit or analyze a Svelte component or module. Covers reactivity, event handling, s Platforms: claude_code."} +{"id": "a0557629c93a5ab27a8650a2c23a191ee209b00f3851cbed1b2953b1b04bca99", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "linkedin-technical", "description": "When the user wants to reach developers on LinkedIn, create technical content for B2B audiences, or understand when LinkedIn beats Twitter. Trigger phrases include \"LinkedIn,\" \"LinkedIn for developers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/linkedin-technical/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "linkedin-technical. When the user wants to reach developers on LinkedIn, create technical content for B2B audiences, or understand when LinkedIn beats Twitter. Trigger phrases include \"LinkedIn,\" \"LinkedIn for developers Platforms: claude_code."} +{"id": "f7f35ad36b2aa3031e66dd244353868c9db7ee71a0cac9a1c830abd6d78fa197", "repo_url": "https://github.com/plurigrid/asi", "name": "gf3-tripartite", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/gf3-tripartite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "gf3-tripartite. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "12c2aae2ff0ac9b3d903f7973b6449a5c04dd74ba0e088163d7484784e9c6e00", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "data-specialist", "description": "\u63d0\u4f9b\u6570\u636e\u5e93\u8bbe\u8ba1\u3001\u4f18\u5316\u3001\u6570\u636e\u5de5\u7a0b\u548c\u6570\u636e\u5206\u6790\u80fd\u529b\u3002\u5f53\u9700\u8981\u5904\u7406\u6570\u636e\u5e93\u64cd\u4f5c\u3001\u6570\u636e\u7ba1\u9053\u6216\u6570\u636e\u5206\u6790\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/data-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "data-specialist. \u63d0\u4f9b\u6570\u636e\u5e93\u8bbe\u8ba1\u3001\u4f18\u5316\u3001\u6570\u636e\u5de5\u7a0b\u548c\u6570\u636e\u5206\u6790\u80fd\u529b\u3002\u5f53\u9700\u8981\u5904\u7406\u6570\u636e\u5e93\u64cd\u4f5c\u3001\u6570\u636e\u7ba1\u9053\u6216\u6570\u636e\u5206\u6790\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "57c01b8aa90c64b092fac16550107d63ada45ef898427935bb88d2742c1ae15e", "repo_url": "https://github.com/plurigrid/asi", "name": "codex-self-rewriting", "description": "Lisp machine self-modification patterns via MCP Tasks and Narya bridge", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/codex-self-rewriting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "codex-self-rewriting. Lisp machine self-modification patterns via MCP Tasks and Narya bridge Platforms: claude_code."} +{"id": "aa7625894c50aa6e001399fd1fe89c5a6d62b9f58aa0ecdeddf9d7a4c20f1f4c", "repo_url": "https://github.com/nahisaho/musubi", "name": "software-developer", "description": "software-developer skill\n\nTrigger terms: implement, code, development, programming, coding, build feature, create function, write code, SOLID principles, clean code, refactor\n\nUse when: User requests", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/software-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "software-developer. software-developer skill\n\nTrigger terms: implement, code, development, programming, coding, build feature, create function, write code, SOLID principles, clean code, refactor\n\nUse when: User requests Platforms: claude_code."} +{"id": "bb61c6db9d0fce5029e1de4d66e4cc32349766496c3dfe56f7b1c92095785b37", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "refactor-break-bw-compat", "description": "Refactor by removing backward compatibility and legacy layers.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/refactor-break-bw-compat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refactor-break-bw-compat"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "refactor-break-bw-compat. Refactor by removing backward compatibility and legacy layers. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "2e923722639b66d79e44bdec34fabe7bd7622811073013ebd380ee165724f5f1", "repo_url": "https://github.com/scottermonk/agentautoflow", "name": "coding-css", "description": "When css being written or edited.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scottermonk/agentautoflow/blob/main/.kilocode/skills/coding-css/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T17:55:31Z"}, "embedding_text": "coding-css. When css being written or edited. Platforms: claude_code."} +{"id": "ea247d4c8ee236d153c590181440f4ea2b42b7713ed1e8a64f21ada7810df7f9", "repo_url": "https://github.com/nahisaho/musubi", "name": "system-architect", "description": "Copilot agent that assists with architecture design, C4 model diagrams, ADR creation, and tradeoff analysis\n\nTrigger terms: architecture, system design, C4 model, ADR, architecture decision, design pa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/system-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "system-architect. Copilot agent that assists with architecture design, C4 model diagrams, ADR creation, and tradeoff analysis\n\nTrigger terms: architecture, system design, C4 model, ADR, architecture decision, design pa Platforms: claude_code."} +{"id": "71535f65edfb780b80899f34717807b307a2126af67c029b5c3333babb86d79e", "repo_url": "https://github.com/plurigrid/asi", "name": "polysimy-effect-chains", "description": "Verify multiple effect interpretations through propagator networks with temporal coalgebra bisimulation and common fixpoint solutions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/polysimy-effect-chains/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "polysimy-effect-chains. Verify multiple effect interpretations through propagator networks with temporal coalgebra bisimulation and common fixpoint solutions. Platforms: claude_code."} +{"id": "8c62fc4d3f03c8c867873966ecdfb0a3f03bf1fe8e20065d771cf91e02748863", "repo_url": "https://github.com/joannis/claude-skills", "name": "hummingbird", "description": "Expert guidance on Hummingbird 2 web framework. Use when developers mention: (1) Hummingbird, HB, or Hummingbird 2, (2) Swift web server or HTTP server, (3) server-side Swift routing or middleware, (4", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joannis/claude-skills/blob/main/hummingbird/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T20:09:23Z"}, "embedding_text": "hummingbird. Expert guidance on Hummingbird 2 web framework. Use when developers mention: (1) Hummingbird, HB, or Hummingbird 2, (2) Swift web server or HTTP server, (3) server-side Swift routing or middleware, (4 Platforms: claude_code."} +{"id": "35b1cae98c672959515acac410feee8cad7bcaf2db0d6fa50378386161efeb8b", "repo_url": "https://github.com/plurigrid/asi", "name": "initial-value-problem", "description": "Existence and uniqueness of solutions to ODEs with initial conditions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/initial-value-problem/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "initial-value-problem. Existence and uniqueness of solutions to ODEs with initial conditions Platforms: claude_code."} +{"id": "e9c3d5b800b5c5b1512dde7fac081ca19706711c82ec9dacb7915c9705ce4f89", "repo_url": "https://github.com/plurigrid/asi", "name": "llm-application-dev", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/llm-application-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "llm-application-dev. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3b3440d26d12e450a40c6d6b82c62d2c81306090bf85ee236f198012fe4bbdef", "repo_url": "https://github.com/plurigrid/asi", "name": "refuse-mediocrity", "description": "Reject complacency. Demand excellence. Ship or die.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/refuse-mediocrity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "refuse-mediocrity. Reject complacency. Demand excellence. Ship or die. Platforms: claude_code."} +{"id": "ef4f7a62d1ee6950c741640d0430453655ed38df6754b72a9568aa18c0e443a8", "repo_url": "https://github.com/plurigrid/asi", "name": "topos-of-music", "description": "Guerino Mazzola's mathematical music theory - Forms, Denotators, Morphisms, and Neo-Riemannian PLR operations with Gay.jl color integration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/topos-of-music/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "topos-of-music. Guerino Mazzola's mathematical music theory - Forms, Denotators, Morphisms, and Neo-Riemannian PLR operations with Gay.jl color integration Platforms: claude_code."} +{"id": "fe538a89642250f5482d207b1a92e1c532e54767fbb42348c1164aee755c6bb5", "repo_url": "https://github.com/vintasoftware/django-ai-plugins", "name": "django-celery-expert", "description": "Expert Django and Celery guidance for asynchronous task processing. Use when designing background tasks, configuring workers, handling retries and errors, optimizing task performance, implementing per", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vintasoftware/django-ai-plugins/blob/main/plugins/cdrf-expert/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 87, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T16:25:05Z"}, "embedding_text": "django-celery-expert. Expert Django and Celery guidance for asynchronous task processing. Use when designing background tasks, configuring workers, handling retries and errors, optimizing task performance, implementing per Platforms: claude_code."} +{"id": "1c96554879b474f8145062b7e5089f9342fbf4a641b6dd5d7f2ad166fa533bf4", "repo_url": "https://github.com/scientiacapital/skills", "name": "voice-ai", "description": "Production voice AI agents with sub-500ms latency. Groq LLM, Deepgram STT, Cartesia TTS, Twilio integration. No OpenAI. Use when: voice agent, phone bot, STT, TTS, Deepgram, Cartesia, Twilio, voice AI", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/voice-ai-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "voice-ai. Production voice AI agents with sub-500ms latency. Groq LLM, Deepgram STT, Cartesia TTS, Twilio integration. No OpenAI. Use when: voice agent, phone bot, STT, TTS, Deepgram, Cartesia, Twilio, voice AI Platforms: claude_code."} +{"id": "89dd4d801ceab7df583cf1dd165fbf543e98c407fed02d53a50d4a265a3359f4", "repo_url": "https://github.com/plurigrid/asi", "name": "hyperbolicity", "description": "No eigenvalues on imaginary axis (robust dynamics)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/hyperbolicity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "hyperbolicity. No eigenvalues on imaginary axis (robust dynamics) Platforms: claude_code."} +{"id": "6da37f3fb44833f2c026d86bfde07e4fff6e756170a0804a25237f5d2da45e29", "repo_url": "https://github.com/plurigrid/asi", "name": "transcritical", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/transcritical/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "transcritical. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "bc44f9fe4e0548561b8fa2286b7618c9c2d8fb6b3e29ffba3312a9671595e1a5", "repo_url": "https://github.com/plurigrid/asi", "name": "cognitive-surrogate", "description": "Layer 6 Barton Cognitive Surrogate - build, train, validate psychological models with >90% fidelity", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/cognitive-surrogate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "cognitive-surrogate. Layer 6 Barton Cognitive Surrogate - build, train, validate psychological models with >90% fidelity Platforms: claude_code."} +{"id": "5c4c61de1d684c23e49e53dca234cf4b086a55fd23b4426f6bfa65d4e878b1cd", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-pkg-medchem", "description": "Medicinal chemistry filters. Apply drug-likeness rules (Lipinski, Veber), PAINS filters, structural alerts, complexity metrics, for compound prioritization and library filtering.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-pkg-medchem/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-pkg-medchem"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-pkg-medchem. Medicinal chemistry filters. Apply drug-likeness rules (Lipinski, Veber), PAINS filters, structural alerts, complexity metrics, for compound prioritization and library filtering. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "3aa850d0b9eee64ca1650e08f5574203aa7ec03848f8096ea32a3f6fbc17da6e", "repo_url": "https://github.com/plurigrid/asi", "name": "goblins", "description": "Distributed object capability system (6.5K lines info).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/goblins/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "goblins. Distributed object capability system (6.5K lines info). Platforms: claude_code."} +{"id": "47e051a4aa3bea021e3d08d5ab4af137ab1cad8e4802626a5c8c2ee227c84ace", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "tailwindcss", "description": "Tailwind CSS utility-first styling for JARVIS UI components", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/tailwindcss/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "tailwindcss. Tailwind CSS utility-first styling for JARVIS UI components Platforms: claude_code."} +{"id": "1cfeced4672faf1ebd2cb7329bbf58795c759c72d94543c4ce51f39d428b04c7", "repo_url": "https://github.com/glebis/claude-skills", "name": "deep-research", "description": "This skill should be used when conducting comprehensive research on any topic using the OpenAI Deep Research API. It automates prompt enhancement through interactive clarifying questions, saves resear", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/deep-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "deep-research. This skill should be used when conducting comprehensive research on any topic using the OpenAI Deep Research API. It automates prompt enhancement through interactive clarifying questions, saves resear Platforms: claude_code."} +{"id": "cc6a2f1bdf752a32c570050fda5882af94752ebc6086aac1a8e9270873b8bbe7", "repo_url": "https://github.com/plurigrid/asi", "name": "hvm-runtime", "description": "HVM Runtime Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/hvm-runtime/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "hvm-runtime. HVM Runtime Skill Platforms: claude_code."} +{"id": "15bbdb27730f7287b5f911966b5425261919336400be3c0385e7c9f8ebf1a01d", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-trace-callers", "description": "Find function callers with GrepAI trace. Use this skill to discover what code calls a specific function.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/trace/grepai-trace-callers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-trace-callers. Find function callers with GrepAI trace. Use this skill to discover what code calls a specific function. Platforms: claude_code."} +{"id": "b9986dd79164dec0738cccd924c14ba3291e670be881703b6311c401deab15ad", "repo_url": "https://github.com/plurigrid/asi", "name": "slowtime-mcp", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/slowtime-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "slowtime-mcp. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "91aaa79b09a597b2b140e09671561783179f2881c9de178d4f826466fffecf19", "repo_url": "https://github.com/composiohq/composio", "name": "building-agents-using-google", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/composio/blob/next/.agents/skills/building-agents-using-google/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28892, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:17:45Z"}, "embedding_text": "building-agents-using-google. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "51c2be3ca48da62d6ba762301c4c2efa96e1a4ce5f897eed954775209f8d927f", "repo_url": "https://github.com/plurigrid/asi", "name": "infinity-operads", "description": "\u221e-Operads for pairwise/tritwise Cat# interactions with lazy ACSet materialization unifying effective, realizability, and Grothendieck topoi via dendroidal Segal spaces.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/infinity-operads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "infinity-operads. \u221e-Operads for pairwise/tritwise Cat# interactions with lazy ACSet materialization unifying effective, realizability, and Grothendieck topoi via dendroidal Segal spaces. Platforms: claude_code."} +{"id": "30b8b929c07644ea13793794a00093a711d4717f18c99c13a9b6c66b5bd23130", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "product-strategist", "description": "Strategic product leadership toolkit for Head of Product including OKR cascade generation, market analysis, vision setting, and team scaling. Use for strategic planning, goal alignment, competitive an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/product-team/product-strategist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "product-strategist. Strategic product leadership toolkit for Head of Product including OKR cascade generation, market analysis, vision setting, and team scaling. Use for strategic planning, goal alignment, competitive an Platforms: claude_code."} +{"id": "59876a4d26220d2ca30cc5dae2f51badbbeee0028b206be9fbd3864ea81158e8", "repo_url": "https://github.com/plurigrid/asi", "name": "hyperbolic-bulk", "description": "On-chain GF(3) entropy storage via Aptos Move - bulk-boundary correspondence where entropy lives in the interior and observables project to agents", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/hyperbolic-bulk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "hyperbolic-bulk. On-chain GF(3) entropy storage via Aptos Move - bulk-boundary correspondence where entropy lives in the interior and observables project to agents Platforms: claude_code."} +{"id": "7a3db3ff06969db4eafaf8953541c8d8bf9ed9d3860bbd8d1af16bbf2b5893a7", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "evaluate-sdlc-layers", "description": "Evaluate and iterate on the SDLC Layer Separation Architecture implementation. Runs validation checks (cross-references, doc completeness, layer metadata, integration points), produces a findings repo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/evaluate-sdlc-layers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "evaluate-sdlc-layers. Evaluate and iterate on the SDLC Layer Separation Architecture implementation. Runs validation checks (cross-references, doc completeness, layer metadata, integration points), produces a findings repo Platforms: claude_code."} +{"id": "38c9259f0382acdd180f7129b3d31da485cf1179844de7a0f6831da8f6cf79cc", "repo_url": "https://github.com/plurigrid/asi", "name": "protocol-evolution-markets", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/protocol-evolution-markets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "protocol-evolution-markets. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "373642bc77e3a67bc0f318f8e474b48c0455d49d3578e5fd4c66b1b7fd8a958f", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "assessor", "description": "Assess a plugin and create refactoring task files for parallel agent execution. Use when you need to analyze a plugin structure, score its quality, and generate a phased refactoring plan with design m", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/assessor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "assessor. Assess a plugin and create refactoring task files for parallel agent execution. Use when you need to analyze a plugin structure, score its quality, and generate a phased refactoring plan with design m Platforms: claude_code."} +{"id": "cbcc809d243e67566f060af34c1f5df8d7d262504a18b2b546254a8e2ed70883", "repo_url": "https://github.com/plurigrid/asi", "name": "chromatic-walk", "description": "3 parallel agents explore codebase improvements via GF(3) balanced prime geodesics", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/chromatic-walk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "chromatic-walk. 3 parallel agents explore codebase improvements via GF(3) balanced prime geodesics Platforms: claude_code."} +{"id": "70c48ec5e29229792011a8ef24cdd4542c91e79f295e2abfbed8bc2854f99dd2", "repo_url": "https://github.com/plurigrid/asi", "name": "random-walk-fusion", "description": "Navigate skill graphs via deterministic random walks. Fuses derivational chains, algebraic structure, color determinism, and bidirectional flow for skill recombination.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/random-walk-fusion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "random-walk-fusion. Navigate skill graphs via deterministic random walks. Fuses derivational chains, algebraic structure, color determinism, and bidirectional flow for skill recombination. Platforms: claude_code."} +{"id": "3610b8a612004968b699a002181b29fcb7cc56a6b06c7216592408dc9345fb54", "repo_url": "https://github.com/plurigrid/asi", "name": "rust", "description": "Rust ecosystem = cargo + rustc + clippy + rustfmt.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/cargo-rust/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "rust. Rust ecosystem = cargo + rustc + clippy + rustfmt. Platforms: claude_code."} +{"id": "7dbd5b9a91f21ca6680920311b6c94222a40553f02ce12d990b9a093796894c1", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "latex-wikibook", "description": "Comprehensive assistance with latex-wikibook", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/documentation/latex-wikibook/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "latex-wikibook. Comprehensive assistance with latex-wikibook Platforms: claude_code."} +{"id": "16d7da77a4ca42b5ba90b1e222d7481733f1033bdee23def2e7a380e76a35399", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "zlibrary-to-notebooklm", "description": "Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/sickn33/notebooklm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zlibrary-to-notebooklm"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "zlibrary-to-notebooklm. Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "80155e9defe5354a38ba99ff859847632854c8be393be84351c7cd1ce6ac42ca", "repo_url": "https://github.com/zubair-trabzada/ai-marketing-claude", "name": "market-copy", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zubair-trabzada/ai-marketing-claude/blob/main/market/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install market-copy"}, "quality": {"stars": 1958, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T01:18:40Z"}, "embedding_text": "market-copy. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "106f9fae34d330e94dd102b26ea90db78ae7f8a394b53d2bcf4146c1640e75f5", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-routing-config", "description": "This mega-skill consolidates provider and hybrid routing configuration for CFN, handling API provider selection, routing rules, and CLI-task coordination in a unified production-ready package.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-routing-config/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-routing-config. This mega-skill consolidates provider and hybrid routing configuration for CFN, handling API provider selection, routing rules, and CLI-task coordination in a unified production-ready package. Platforms: claude_code."} +{"id": "ed21ffb3d33d933213967402430ed2a829a4f22db5daadc65e76bcf9a2503d90", "repo_url": "https://github.com/joannis/claude-skills", "name": "swift-nio", "description": "Expert guidance on SwiftNIO best practices, patterns, and implementation. Use when developers mention: (1) SwiftNIO, NIO, ByteBuffer, Channel, ChannelPipeline, ChannelHandler, EventLoop, NIOAsyncChann", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joannis/claude-skills/blob/main/swift-nio/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T20:09:23Z"}, "embedding_text": "swift-nio. Expert guidance on SwiftNIO best practices, patterns, and implementation. Use when developers mention: (1) SwiftNIO, NIO, ByteBuffer, Channel, ChannelPipeline, ChannelHandler, EventLoop, NIOAsyncChann Platforms: claude_code."} +{"id": "6ace04a09374d827709a338d3da276e14e1076aa6539a70fc6467cd8035f6a59", "repo_url": "https://github.com/full-stack-biz/claude-skills-toolkit", "name": "ask-user-question", "description": "Implement skills using AskUserQuestion tool for interactive user input and decisions. Use when authoring skills that need to gather options, handle free-text answers, process multi-select, or build mu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/full-stack-biz/claude-skills-toolkit/blob/main/skills/ask-user-question/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-06T15:31:41Z"}, "embedding_text": "ask-user-question. Implement skills using AskUserQuestion tool for interactive user input and decisions. Use when authoring skills that need to gather options, handle free-text answers, process multi-select, or build mu Platforms: claude_code."} +{"id": "2f60bb4efa8efde4c3dcb1ac4d3a409f64a14349b222e0d54e881760cc59283a", "repo_url": "https://github.com/plurigrid/asi", "name": "osm-topology", "description": "OSM Topology Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/osm-topology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "osm-topology. OSM Topology Skill Platforms: claude_code."} +{"id": "980d3599656027e4c1415d43d396a199e1fe61e91008715752e893f7cb1f76ca", "repo_url": "https://github.com/plurigrid/asi", "name": "quantum-music", "description": "Quantum computer music composition and performance using quantum circuits, ZX-calculus notation, and quantum instruments", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/quantum-music/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "quantum-music. Quantum computer music composition and performance using quantum circuits, ZX-calculus notation, and quantum instruments Platforms: claude_code."} +{"id": "fd616c40cb647ef672324045c5cc9dbbe7788e1accd460f3d6231cd1cad9e6f9", "repo_url": "https://github.com/composiohq/composio", "name": "building-agents-using-cloudflare", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/composio/blob/next/.agents/skills/building-agents-using-cloudflare/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28892, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:17:45Z"}, "embedding_text": "building-agents-using-cloudflare. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "46636ad96781c17212d276dbc196ac36396516892e9e1c0422978460361aef21", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "context-manager", "description": "Manages permanent memory storage for decisions, blockers, context, preferences, and procedures. Use when user says \"remember\", \"save this decision\", \"what did we decide\", \"recall\", \"search memories\", \"any blockers\", or when making important architectural decisions. Provides SDAM compensation through external memory.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/context-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install context-manager"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "context-manager. Manages permanent memory storage for decisions, blockers, context, preferences, and procedures. Use when user says \"remember\", \"save this decision\", \"what did we decide\", \"recall\", \"search memories\", \"any blockers\", or when making important architectural decisions. Provides SDAM compensation through external memory. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "d8e35ffe65776eca2735a760ac40b13ceac20584751eb7fba0edf2adc36dcc50", "repo_url": "https://github.com/plurigrid/asi", "name": "ward-identity-checker", "description": "Ward Identity Checker", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/ward-identity-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ward-identity-checker. Ward Identity Checker Platforms: claude_code."} +{"id": "964fba2055a3d7b94ce0be927bb92e06653aaf2bc876d29d2901ab2f112a7043", "repo_url": "https://github.com/plurigrid/asi", "name": "gay-mcp", "description": "Deterministic color generation with SplitMix64, GF(3) trits, and MCP", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/gay-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "gay-mcp. Deterministic color generation with SplitMix64, GF(3) trits, and MCP Platforms: claude_code."} +{"id": "7ea516076000c78257e5c5518a770d53bf3ecd826418c9400a0f461ac4e1dc31", "repo_url": "https://github.com/plurigrid/asi", "name": "localsend-mcp", "description": "LocalSend-based P2P transfer with MCP server design for NATS/Tailscale", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/localsend-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "localsend-mcp. LocalSend-based P2P transfer with MCP server design for NATS/Tailscale Platforms: claude_code."} +{"id": "d7a2eefbbbfe3ca4ccbec0b01483d1d461e06a1eb1026edb530ab65dfc25baf2", "repo_url": "https://github.com/plurigrid/asi", "name": "type-checker", "description": "Type Checker Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/type-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "type-checker. Type Checker Skill Platforms: claude_code."} +{"id": "bcde78b9a64467d2fe68c8a9ebf0fc39c301198def46bdfd10d2dcfc70f65e57", "repo_url": "https://github.com/plurigrid/asi", "name": "lhott-cohesive-linear", "description": "Cohesive Linear HoTT patterns for interaction entropy with diagram generation. Implements Schreiber's cohesive modalities (\u266f,\u266d,\u0283) and Riley's linear modality (\u266e) for quantum-classical bridging.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/lhott-cohesive-linear/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "lhott-cohesive-linear. Cohesive Linear HoTT patterns for interaction entropy with diagram generation. Implements Schreiber's cohesive modalities (\u266f,\u266d,\u0283) and Riley's linear modality (\u266e) for quantum-classical bridging. Platforms: claude_code."} +{"id": "5b91f455482bd4408f469f53d6db9ed5ffbebbac2f02ad7aa9467c31a4c066b5", "repo_url": "https://github.com/plurigrid/asi", "name": "sheaf-laplacian-coordination", "description": "Sheaf neural network coordination via graph Laplacians for distributed", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/sheaf-laplacian-coordination/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "sheaf-laplacian-coordination. Sheaf neural network coordination via graph Laplacians for distributed Platforms: claude_code."} +{"id": "5366938691222e488e8947eab2287e471d148a6546f294a175defbb2ce39d732", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-dynamic-architectures", "description": "Use when building networks that grow, prune, or adapt topology during training. Routes to continual learning, gradient isolation, modular composition, and lifecycle orchestration skills.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/yzmir-dynamic-architectures/skills/using-dynamic-architectures/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-dynamic-architectures. Use when building networks that grow, prune, or adapt topology during training. Routes to continual learning, gradient isolation, modular composition, and lifecycle orchestration skills. Platforms: claude_code."} +{"id": "eead5cadc240291245fa320ea605b80eaafe961a18b6cf8e80ce5e7a6a4c4fe0", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Codebase Organizer", "description": "Monitor and refactor large files into smaller, AI-friendly modules. Use when user asks to check file sizes, split large files, or organize the codebase. Ensures tests pass before and after refactoring", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/codebase-organizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Codebase Organizer. Monitor and refactor large files into smaller, AI-friendly modules. Use when user asks to check file sizes, split large files, or organize the codebase. Ensures tests pass before and after refactoring Platforms: claude_code."} +{"id": "95b47a4c5ff4f289ff8a9cce250d5c50ab861ba58c6538572d6d976fc544c099", "repo_url": "https://github.com/peiiii/zenmark-editor", "name": "project-os", "description": "AI project OS for autonomous loop, automated orchestration, and rule-driven execution.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peiiii/zenmark-editor/blob/master/.codex/skills/project-os/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 35, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T14:32:35Z"}, "embedding_text": "project-os. AI project OS for autonomous loop, automated orchestration, and rule-driven execution. Platforms: claude_code."} +{"id": "f6c6c82ec1b652b8643e5e152d9421f39c6103832ee8cd0969c49f3dc8bf926c", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-trace-callees", "description": "Find function callees with GrepAI trace. Use this skill to discover what functions a specific function calls.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/trace/grepai-trace-callees/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-trace-callees. Find function callees with GrepAI trace. Use this skill to discover what functions a specific function calls. Platforms: claude_code."} +{"id": "9440ee918d5d5cbfba992b639ae06b46a440718eb60fe0dbc444f9e03f04ceb2", "repo_url": "https://github.com/plurigrid/asi", "name": "parallel-fanout", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/parallel-fanout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "parallel-fanout. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "17b04edfaa961ec6b42069d9d8f23fe4a15a4b3971fea1ddf0c1179f00c22025", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-task-intelligence", "description": "Analyzes task descriptions to classify type and domain, estimate complexity and iterations, and recommend specialists based on recurring feedback themes, helping optimize CFN Loop configuration and ag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-task-intelligence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-task-intelligence. Analyzes task descriptions to classify type and domain, estimate complexity and iterations, and recommend specialists based on recurring feedback themes, helping optimize CFN Loop configuration and ag Platforms: claude_code."} +{"id": "bbc23985323bd13da557766b7955be3d75adda1c3f0fe99bde7c959f3b840ef6", "repo_url": "https://github.com/sendaifun/skills", "name": "sanctum", "description": "Complete Sanctum SDK for liquid staking, LST swaps, and Infinity pool operations on Solana. Use when working with LSTs (mSOL, jitoSOL, bSOL, INF), staking SOL, swapping between liquid staking tokens, or integrating Sanctum's liquidity infrastructure.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/sanctum/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sanctum"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "sanctum. Complete Sanctum SDK for liquid staking, LST swaps, and Infinity pool operations on Solana. Use when working with LSTs (mSOL, jitoSOL, bSOL, INF), staking SOL, swapping between liquid staking tokens, or integrating Sanctum's liquidity infrastructure. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "42c5f285c0fb6b7e969913c9df69097dce8e5901e56111d4ec7940c932229c2a", "repo_url": "https://github.com/asteroid-belt/skulto", "name": "superbuild", "description": "Use when executing implementation plans phase-by-phase with strict enforcement of quality gates, tests, and Definition of Done. Triggers on \"build this plan\", \"execute plan\", \"implement phases\", or wh", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asteroid-belt/skulto/blob/main/.claude/skills/superbuild/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T05:18:31Z"}, "embedding_text": "superbuild. Use when executing implementation plans phase-by-phase with strict enforcement of quality gates, tests, and Definition of Done. Triggers on \"build this plan\", \"execute plan\", \"implement phases\", or wh Platforms: claude_code."} +{"id": "43171e890ae8a213947a31b7f11031116961b9cdf762ecc97d199942d634bcc9", "repo_url": "https://github.com/cherryhq/cherry-studio", "name": "cherry-studio", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cherryhq/cherry-studio/blob/main/.agents/skills/cherry-pr-test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47647, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T11:04:29Z"}, "embedding_text": "cherry-studio. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9507c98c6349bb669d204f99f339070acf150f80c273b35b83b38042fa626ffe", "repo_url": "https://github.com/plurigrid/asi", "name": "ramanujan-expander", "description": "Ramanujan graphs and Alon-Boppana spectral optimality for edge growth", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/ramanujan-expander/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ramanujan-expander. Ramanujan graphs and Alon-Boppana spectral optimality for edge growth Platforms: claude_code."} +{"id": "2407fd999ad4c094de0c33f217d263244e06f5ecde6c6e11f78b7678e51ea6d7", "repo_url": "https://github.com/plurigrid/asi", "name": "temporal-coalgebra", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/temporal-coalgebra/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "temporal-coalgebra. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "32e5ed00b0a44b5e88d4ec25fd039de68be3d004a7dcc84d309cfdf85ea10f12", "repo_url": "https://github.com/plurigrid/asi", "name": "interaction-nets", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/interaction-nets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "interaction-nets. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f5a795b867ddb023b19453c379e8fc8d8856b02e4b4150cfa07bbaa77e36927e", "repo_url": "https://github.com/martinemde/skillet", "name": "task-test", "description": "Test skill that exercises the Task tool system to create and manage tasks", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinemde/skillet/blob/main/.claude/skills/task-test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T05:19:06Z"}, "embedding_text": "task-test. Test skill that exercises the Task tool system to create and manage tasks Platforms: claude_code."} +{"id": "171befb9b1a42908c1b575319b377e84c3eff3cdc8fbb0e6a56d9f32cc98454f", "repo_url": "https://github.com/plurigrid/asi", "name": "ewig-editor", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/ewig-editor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ewig-editor. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b0673d2a9738482be5f5f45c446a8572b85f043074fb2efc0df61ce853239b28", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "hooks-automation", "description": "Manage event hooks and connectors with secure routing and backoff", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/orchestration/hooks-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "hooks-automation. Manage event hooks and connectors with secure routing and backoff Platforms: claude_code."} +{"id": "e7d6033d3d0d1fa5e4b4b3f8f94dc484cb50c79e73f86b586789c5a739dbebb2", "repo_url": "https://github.com/encoredev/skills", "name": "encore-database", "description": "Database queries, migrations, and ORM integration with Encore.ts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/encoredev/skills/blob/main/encore/database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T21:00:31Z"}, "embedding_text": "encore-database. Database queries, migrations, and ORM integration with Encore.ts. Platforms: claude_code."} +{"id": "2b12ccebd16969ba1400b31b36371eabc0faba5167a2f7c0a38e1e7a2794c002", "repo_url": "https://github.com/basher83/lunar-claude", "name": "ansible-secrets", "description": "This skill should be used when working with secrets in Ansible playbooks, integrating Infisical vault, using no_log directive, retrieving credentials securely, or implementing fallback patterns for se", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/infrastructure/ansible-workflows/skills/ansible-secrets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "ansible-secrets. This skill should be used when working with secrets in Ansible playbooks, integrating Infisical vault, using no_log directive, retrieving credentials securely, or implementing fallback patterns for se Platforms: claude_code."} +{"id": "2fa610d4eb15481ba46b0951ef635ce54f3b5a766981372bc6b4e43fa153cde6", "repo_url": "https://github.com/johnlindquist/claude-workshop-skills", "name": "ts-testing", "description": "Design, implement, and maintain high\u2011value TypeScript test suites using popular JS/TS testing libraries. Use this skill whenever the user is adding tests, debugging failing tests, or refactoring code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnlindquist/claude-workshop-skills/blob/main/skills/ts-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-21T12:42:00Z"}, "embedding_text": "ts-testing. Design, implement, and maintain high\u2011value TypeScript test suites using popular JS/TS testing libraries. Use this skill whenever the user is adding tests, debugging failing tests, or refactoring code Platforms: claude_code."} +{"id": "2b4b55a80911d596eb1c61a3b7687809b43df14973f4988971e0a6eeaa39b151", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "algorithmic-art", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "algorithmic-art. 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 Platforms: claude_code."} +{"id": "c37154158bd9d36af95267c5309ff6958e5429b6cdbb6c7aad1781209543080f", "repo_url": "https://github.com/plurigrid/asi", "name": "oapply-colimit", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/oapply-colimit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "oapply-colimit. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6dd434c2ff55869c5fbdc9331fea126a2b7db92b879360d8bd5ddd37568eac75", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "agent-browser", "description": "Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "agent-browser. Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web a Platforms: claude_code."} +{"id": "3676ea31b411ae1a053d5f5387b61946f68cce21ee0acc48fa1a2a44bcb3dc3f", "repo_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit", "name": "llm-evaluation", "description": "LLM evaluation and testing patterns including prompt testing, hallucination detection, benchmark creation, and quality metrics. Use when testing LLM applications, validating prompt quality, implementi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit/blob/main/skills/llm-evaluation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T12:36:10Z"}, "embedding_text": "llm-evaluation. LLM evaluation and testing patterns including prompt testing, hallucination detection, benchmark creation, and quality metrics. Use when testing LLM applications, validating prompt quality, implementi Platforms: claude_code."} +{"id": "06fb0eb9e711f4fcfc83ca5ef0f0a3ff0cb32f142d8948a9aae721227d9b4026", "repo_url": "https://github.com/plurigrid/asi", "name": "dynamical-system-functor", "description": "Categorical structure of dynamical systems", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/dynamical-system-functor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "dynamical-system-functor. Categorical structure of dynamical systems Platforms: claude_code."} +{"id": "7ab060c419e549ffabce7196e64d7e9a8676f5e11ac3ab416ccfeaa5518ccc13", "repo_url": "https://github.com/plurigrid/asi", "name": "eigenvalue-stability", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/eigenvalue-stability/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "eigenvalue-stability. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "03dd52ce7419da724c30ee6aebe85d922b9b0da43954fe304526dece968c680f", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "brand-values-development", "description": "Provides brand values frameworks, differentiation tests, discovery questions, and behavior mapping templates. Auto-activates during values definition, core values curation, and values testing. Use whe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/brand-values-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "brand-values-development. Provides brand values frameworks, differentiation tests, discovery questions, and behavior mapping templates. Auto-activates during values definition, core values curation, and values testing. Use whe Platforms: claude_code."} +{"id": "f4aab4a2eba7a51493de316b9692c0ecc79b0af350562f862284df9ba795af49", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "baoyu-image-gen", "description": "AI SDK-based image generation using official OpenAI and Google APIs. Supports text-to-image, reference images, aspect ratios, and quality presets.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/examples/comic_skill_example/skills/baoyu-image-gen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "baoyu-image-gen. AI SDK-based image generation using official OpenAI and Google APIs. Supports text-to-image, reference images, aspect ratios, and quality presets. Platforms: claude_code."} +{"id": "a8762014fe747d05432d9a3c99d67960a53ae1540ce7962cbe50c0aa7a22b937", "repo_url": "https://github.com/encoredev/skills", "name": "encore-infrastructure", "description": "Declare databases, Pub/Sub, cron jobs, and secrets with Encore.ts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/encoredev/skills/blob/main/encore/api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T21:00:31Z"}, "embedding_text": "encore-infrastructure. Declare databases, Pub/Sub, cron jobs, and secrets with Encore.ts. Platforms: claude_code."} +{"id": "4fe2d3237293d5c61e526583624a1318ec63332cc59eb90f1ad71544b7e90603", "repo_url": "https://github.com/encoredev/skills", "name": "encore-go-testing", "description": "Test APIs and services with Encore Go.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/encoredev/skills/blob/main/encore/go-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T21:00:31Z"}, "embedding_text": "encore-go-testing. Test APIs and services with Encore Go. Platforms: claude_code."} +{"id": "b997cb60ae4ed10273960535e598abbdc24c1e090a41c2034b53c8e8f977e520", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "work", "description": "This skill should be run only when the user explicitly invokes it. Orchestrates end-to-end task implementation \u2014 understands the task, assesses complexity, implements directly or via a team of subagen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/skills/work/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "work. This skill should be run only when the user explicitly invokes it. Orchestrates end-to-end task implementation \u2014 understands the task, assesses complexity, implements directly or via a team of subagen Platforms: claude_code."} +{"id": "5ab43b4d9ca1dcd0c5126784cdc53afe9354d9394f3a023f8aec923e3b80302c", "repo_url": "https://github.com/hect0x7/jmcomic-ai", "name": "jmcomic", "description": "Search, browse, and download manga from JMComic (18comic). Use for manga discovery, ranking, downloads, and configuration management.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hect0x7/jmcomic-ai/blob/master/src/jmcomic_ai/skills/jmcomic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T17:20:03Z"}, "embedding_text": "jmcomic. Search, browse, and download manga from JMComic (18comic). Use for manga discovery, ranking, downloads, and configuration management. Platforms: claude_code."} +{"id": "c1fea80c3fc87285231a5eedc614fff1d5217550a2e566f25014618c4c05d296", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "cilium-expert", "description": "Expert in Cilium eBPF-based networking and security for Kubernetes. Use for CNI setup, network policies (L3/L4/L7), service mesh, Hubble observability, zero-trust security, and cluster-wide network tr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/cilium-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "cilium-expert. Expert in Cilium eBPF-based networking and security for Kubernetes. Use for CNI setup, network policies (L3/L4/L7), service mesh, Hubble observability, zero-trust security, and cluster-wide network tr Platforms: claude_code."} +{"id": "477bf80f3eb2ea43663a68f96f91f044e088b1374ab5bcf4f595eca56725d706", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robotics-testing", "description": "Testing strategies, patterns, and tools for robotics software. Use this skill when writing unit tests, integration tests, simulation tests, or hardware-in-the-loop tests for robot systems. Trigger whenever the user mentions testing ROS nodes, pytest with ROS, launch_testing, simulation testing, CI/CD for robotics, test fixtures for sensors, mock hardware, deterministic replay, regression testing for robot behaviors, or validating perception/planning/control pipelines. Also covers property-based testing for kinematics, fuzz testing for message handlers, and golden-file testing for trajectories.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robotics-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robotics-testing"}, "quality": {"stars": 287, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T23:26:20Z"}, "embedding_text": "robotics-testing. Testing strategies, patterns, and tools for robotics software. Use this skill when writing unit tests, integration tests, simulation tests, or hardware-in-the-loop tests for robot systems. Trigger whenever the user mentions testing ROS nodes, pytest with ROS, launch_testing, simulation testing, CI/CD for robotics, test fixtures for sensors, mock hardware, deterministic replay, regression testing for robot behaviors, or validating perception/planning/control pipelines. Also covers property-based testing for kinematics, fuzz testing for message handlers, and golden-file testing for trajectories. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} +{"id": "82593822ae79f8e8fa173daec79b9b9939abb903971049d5e1696c3580142693", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-sandbox", "description": "Design and build interactive playgrounds that let developers experience your product without commitment. This skill covers playground architecture, pre-populated examples, embedding strategies, gating", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-sandbox/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-sandbox. Design and build interactive playgrounds that let developers experience your product without commitment. This skill covers playground architecture, pre-populated examples, embedding strategies, gating Platforms: claude_code."} +{"id": "4dca332d3ab824edf371a78a94e6575e6a9326516c9bb28080894fc519d108ce", "repo_url": "https://github.com/plurigrid/asi", "name": "phase-space-transformation", "description": "Coordinate changes preserving dynamics", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/phase-space-transformation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "phase-space-transformation. Coordinate changes preserving dynamics Platforms: claude_code."} +{"id": "f6dea5e130ba690f2f15691bf2bd4fea4ae3fd0c6d236968a4a4cb9f92b67239", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-onboarding", "description": "Get developers to \"Hello World\" fast with optimized quickstarts, tutorials,\nand sample apps. Trigger phrases: developer onboarding, time to first value,\nquickstart guide, hello world tutorial, develop", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-onboarding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-onboarding. Get developers to \"Hello World\" fast with optimized quickstarts, tutorials,\nand sample apps. Trigger phrases: developer onboarding, time to first value,\nquickstart guide, hello world tutorial, develop Platforms: claude_code."} +{"id": "93277c6029a623798b5cdb1c308d41f8fe77df036641f9b0aa9a438075ec0dd1", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "yaml-workflow-executor", "description": "Execute configuration-driven analysis workflows from YAML files. Use for running analysis pipelines, data processing tasks, and automation workflows defined in YAML configuration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/data/documents/xlsx/workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "yaml-workflow-executor. Execute configuration-driven analysis workflows from YAML files. Use for running analysis pipelines, data processing tasks, and automation workflows defined in YAML configuration. Platforms: claude_code."} +{"id": "ab7a7764a3f28b4bdc6dcf0a153af76650b7f39089211b81ecf061f42efb3a58", "repo_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit", "name": "rag-implementation", "description": "Comprehensive guide to implementing RAG systems including vector database selection, chunking strategies, embedding models, and retrieval optimization. Use when building RAG systems, implementing sema", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit/blob/main/skills/rag-implementation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T12:36:10Z"}, "embedding_text": "rag-implementation. Comprehensive guide to implementing RAG systems including vector database selection, chunking strategies, embedding models, and retrieval optimization. Use when building RAG systems, implementing sema Platforms: claude_code."} +{"id": "73aedf0d20ccce64445acd2e836c1c842277542bb3fe48a1d79235f8edef1cee", "repo_url": "https://github.com/reduxjs/redux-toolkit", "name": "manage-server-data/adopt-rtk-query", "description": "Use this when adding RTK Query as the default server-data and document-cache layer. Covers createApi, store integration, hooks, invalidation behavior, optimistic updates, and deciding when RTK Query i", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reduxjs/redux-toolkit/blob/master/packages/toolkit/skills/manage-server-data/adopt-rtk-query/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:41:25Z"}, "embedding_text": "manage-server-data/adopt-rtk-query. Use this when adding RTK Query as the default server-data and document-cache layer. Covers createApi, store integration, hooks, invalidation behavior, optimistic updates, and deciding when RTK Query i Platforms: claude_code."} +{"id": "3839518dbda7c2dad2b3f67243fbb284578d021fdac1182f48964aba56ad312d", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "arweave-standards", "description": "GitHub repository skill for ArweaveTeam/arweave-standards", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/arweave-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "arweave-standards. GitHub repository skill for ArweaveTeam/arweave-standards Platforms: claude_code."} +{"id": "a27d6b007368b881f25a39ef918cebe17132a6a64055aa869d76acfae30d55d4", "repo_url": "https://github.com/plurigrid/asi", "name": "rg-flow-acset", "description": "RG Flow ACSet Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "rg-flow-acset. RG Flow ACSet Skill Platforms: claude_code."} +{"id": "c986097510b5e21701ebbf6a2f830b2dabf322ba06d2c099bd73f4ebc71cec65", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "raffle-winner-picker", "description": "Picks random winners from lists, spreadsheets, or Google Sheets for giveaways, raffles, and contests. Ensures fair, unbiased selection with transparency.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/raffle-winner-picker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "raffle-winner-picker. Picks random winners from lists, spreadsheets, or Google Sheets for giveaways, raffles, and contests. Ensures fair, unbiased selection with transparency. Platforms: claude_code."} +{"id": "7a26dccc98ba19e03aa8130736d01b2199380969b0369345bfdcf22f51ed4896", "repo_url": "https://github.com/mckinsey/agents-at-scale-ark", "name": "Ark Setup", "description": "Set up and install the Ark platform from source. Use this skill when the user wants to install, deploy, or configure Ark in their local Kubernetes cluster.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mckinsey/agents-at-scale-ark/blob/main/.claude/skills/ark-setup-cluster/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 399, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:54:57Z"}, "embedding_text": "Ark Setup. Set up and install the Ark platform from source. Use this skill when the user wants to install, deploy, or configure Ark in their local Kubernetes cluster. Platforms: claude_code."} +{"id": "bda8bffb4d65c3f0f5fc484f2f06b0f4491537e6d65355fc302f9f05ff6e413c", "repo_url": "https://github.com/plurigrid/asi", "name": "graph-grafting", "description": "Graph Grafting Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/graph-grafting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "graph-grafting. Graph Grafting Skill Platforms: claude_code."} +{"id": "2c0d80787ad291a7b446e6edc32a36d317b0347d4a237a494cbe2bba066b060c", "repo_url": "https://github.com/jezweb/claude-skills", "name": "gws-setup", "description": "Set up the Google Workspace CLI (gws) from scratch. Guides through GCP project creation, OAuth credentials, authentication, and installing 90+ agent skills for Claude Code. Use when setting up gws for the first time, configuring Google Workspace API access, or troubleshooting gws auth issues. Triggers: \"set up gws\", \"google workspace cli\", \"gws setup\", \"install gws\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/integrations/skills/gws-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gws-setup"}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "gws-setup. Set up the Google Workspace CLI (gws) from scratch. Guides through GCP project creation, OAuth credentials, authentication, and installing 90+ agent skills for Claude Code. Use when setting up gws for the first time, configuring Google Workspace API access, or troubleshooting gws auth issues. Triggers: \"set up gws\", \"google workspace cli\", \"gws setup\", \"install gws\".\n Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} +{"id": "db75d4c9a65b3c5d189677ef1d5d8efa359f00322b538bdaf70fba5341298743", "repo_url": "https://github.com/plurigrid/asi", "name": "covariant-fibrations", "description": "Riehl-Shulman covariant fibrations for dependent types over directed", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.ruler/skills/covariant-fibrations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "covariant-fibrations. Riehl-Shulman covariant fibrations for dependent types over directed Platforms: claude_code."} +{"id": "dfc6a2d0412555c14e37872c29bed38d93cc26e4508932ee786a1e7f936560b5", "repo_url": "https://github.com/plurigrid/asi", "name": "ocaml", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/ocaml/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ocaml. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "122e67b600c6c782fee628acc63357c12c39081432c276f1023bbb92adc61353", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "ai-writing-detection", "description": "Comprehensive AI writing detection patterns and methodology. Provides vocabulary lists, structural patterns, model-specific fingerprints, and false positive prevention guidance. Use when analyzing tex", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/ai-writing-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "ai-writing-detection. Comprehensive AI writing detection patterns and methodology. Provides vocabulary lists, structural patterns, model-specific fingerprints, and false positive prevention guidance. Use when analyzing tex Platforms: claude_code."} +{"id": "2e91b17ded3a091af37da2ceb9a7ab22162c29d1196c506141bb469dfecc533f", "repo_url": "https://github.com/plurigrid/asi", "name": "bmorphism-diagrams", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/bmorphism-diagrams/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "bmorphism-diagrams. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7cf32b6cf63b9999d69661904bdef187869bb25befaee7e9e3613dbf291718a0", "repo_url": "https://github.com/hummat/paperpipe", "name": "papi", "description": "CLI reference for paperpipe (papi). Use BEFORE MCP RAG tools. For listing, searching, showing, adding papers.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hummat/paperpipe/blob/main/skills/papi-ask/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T10:02:39Z"}, "embedding_text": "papi. CLI reference for paperpipe (papi). Use BEFORE MCP RAG tools. For listing, searching, showing, adding papers. Platforms: claude_code."} +{"id": "55fad0cb8798dcc25851dc48f2e355bcabfb30a0012cb9e7d31dab073bcd1921", "repo_url": "https://github.com/sunholo-data/ailang", "name": "collaboration-hub", "description": "Develop and modify the AILANG Collaboration Hub UI. Use when user asks to add features to the monitoring dashboard, modify the approval queue, update the message center, or make changes to the React f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/collaboration-hub/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "collaboration-hub. Develop and modify the AILANG Collaboration Hub UI. Use when user asks to add features to the monitoring dashboard, modify the approval queue, update the message center, or make changes to the React f Platforms: claude_code."} +{"id": "93f65895de1223ecb0b816e2383f5a5f9e9b03b8ca741ef9f1ada7958416b34b", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "do", "description": "Execute increment implementation following spec and plan - hooks run after EVERY task", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/dog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "do. Execute increment implementation following spec and plan - hooks run after EVERY task Platforms: claude_code."} +{"id": "2e8ecfcba450312f14c9a3ef2c94472179d2cf89cef3796dd2d993d3cc30e2cf", "repo_url": "https://github.com/plurigrid/asi", "name": "kolmogorov-compression", "description": "Kolmogorov complexity as the ultimate intelligence measure. Shortest", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/kolmogorov-compression/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "kolmogorov-compression. Kolmogorov complexity as the ultimate intelligence measure. Shortest Platforms: claude_code."} +{"id": "a0a65d1cdae4170573b67d84cb4d65da1fea889ad17acaa6606c5d0f1c3d6921", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-btp-intelligent-situation-automation", "description": "This skill provides comprehensive guidance for SAP BTP Intelligent Situation Automation setup, configuration, and operations.\nIt should be used when implementing situation-based automation between SAP", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-btp-intelligent-situation-automation/skills/sap-btp-intelligent-situation-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-btp-intelligent-situation-automation. This skill provides comprehensive guidance for SAP BTP Intelligent Situation Automation setup, configuration, and operations.\nIt should be used when implementing situation-based automation between SAP Platforms: claude_code."} +{"id": "edea645080a228c1d1b243bbca9e247183cd1cd819f17c23dfbd85323be36d79", "repo_url": "https://github.com/plurigrid/asi", "name": "elisp", "description": "Emacs Lisp reference (106K lines info).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/slime-lisp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "elisp. Emacs Lisp reference (106K lines info). Platforms: claude_code."} +{"id": "4d3c0c079ff829bab62d01d2c41dde9965b4f6e5d4411e5de866e2081ba87907", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "api-gateway", "description": "Build, manage, and operate APIs with Amazon API Gateway (REST, HTTP, and WebSocket). Triggers on phrases like: API Gateway, REST API, HTTP API, WebSocket API, custom domain, Lambda authorizer, usage p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/aws-serverless/skills/api-gateway/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 796, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:53:29Z"}, "embedding_text": "api-gateway. Build, manage, and operate APIs with Amazon API Gateway (REST, HTTP, and WebSocket). Triggers on phrases like: API Gateway, REST API, HTTP API, WebSocket API, custom domain, Lambda authorizer, usage p Platforms: claude_code."} +{"id": "f05d1071d9d97b89d5969dcb109aacaeac3b357d3bc123e43079825187f15ae2", "repo_url": "https://github.com/plurigrid/asi", "name": "crn-topology", "description": "Chemical Reaction Network topology for generating and analyzing reaction", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.ruler/skills/crn-topology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "crn-topology. Chemical Reaction Network topology for generating and analyzing reaction Platforms: claude_code."} +{"id": "4874fa648ccc672f5cd0883e052b85df0392728fbfe24fbb9f556fcc17175e87", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "cross-chain-bridge", "description": "Cross-chain bridge skill for LayerZero, Wormhole, Stargate, and multi-chain asset transfers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/web3-core-operations/bridge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "cross-chain-bridge. Cross-chain bridge skill for LayerZero, Wormhole, Stargate, and multi-chain asset transfers Platforms: claude_code."} +{"id": "83b7d60f482049195d89f4d202f43dabceec0a75e4499d3c4a85383d9849ffbd", "repo_url": "https://github.com/jdonohoo/vern-bot", "name": "yolo", "description": "YOLO Vern - Gemini with --yolo mode. No guardrails. Full send.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jdonohoo/vern-bot/blob/master/skills/yolo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T19:13:58Z"}, "embedding_text": "yolo. YOLO Vern - Gemini with --yolo mode. No guardrails. Full send. Platforms: claude_code."} +{"id": "847bd93a9f64297e256ef331d0426a43c6fa0ec2dfcf58a7d4110314aebc2dff", "repo_url": "https://github.com/plurigrid/asi", "name": "mermaid-reverse-attempt", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/mermaid-reverse-attempt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "mermaid-reverse-attempt. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9c01143278130611bfb9d15dde9b6b86333e0eb2f5468bf80473cf70f5085ae5", "repo_url": "https://github.com/plurigrid/asi", "name": "emacs", "description": "Emacs ecosystem = elisp + org + gnus + tramp + eglot.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/emacs-color-chain/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "emacs. Emacs ecosystem = elisp + org + gnus + tramp + eglot. Platforms: claude_code."} +{"id": "b38cd08ee363af058321fde4561baefba6ffce490a4e5585362334e0eb04e6b8", "repo_url": "https://github.com/netboxlabs/netbox-best-practices", "name": "netbox-integration-best-practices", "description": "Best practices for building integrations with NetBox REST and GraphQL APIs. Use when building NetBox API integrations, reviewing integration code, troubleshooting NetBox performance issues, planning a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/netboxlabs/netbox-best-practices/blob/main/skills/netbox-integration-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T13:34:42Z"}, "embedding_text": "netbox-integration-best-practices. Best practices for building integrations with NetBox REST and GraphQL APIs. Use when building NetBox API integrations, reviewing integration code, troubleshooting NetBox performance issues, planning a Platforms: claude_code."} +{"id": "8ea347684cbe9bedf1457d7d1e7543c608d8125b26b4a52d6cc2625edc1542fc", "repo_url": "https://github.com/plurigrid/asi", "name": "raffle-winner-picker", "description": "Picks random winners from lists, spreadsheets, or Google Sheets for giveaways,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/raffle-winner-picker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "raffle-winner-picker. Picks random winners from lists, spreadsheets, or Google Sheets for giveaways, Platforms: claude_code."} +{"id": "f2959d74f461814ffe227b94e5206cb37973165e55fb0eb667e53684a8471fd5", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "srgn-cli", "description": "Practical guide for building safe, syntax-aware srgn CLI commands for source-code search and transformation. Use when users ask for srgn commands, scoped refactors (comments/docstrings/imports/functio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/agnix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "srgn-cli. Practical guide for building safe, syntax-aware srgn CLI commands for source-code search and transformation. Use when users ask for srgn commands, scoped refactors (comments/docstrings/imports/functio Platforms: claude_code."} +{"id": "c264bb8f90eac6db6705d83d67bbf871e8509df28acd22d5b1f3d25872e1e136", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-release-swarm", "description": "Orchestrate complex software releases using AI swarms that handle everything from changelog generation to multi-platform deployment. Use for release planning, automated versioning, artifact building,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/release-swarm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-release-swarm. Orchestrate complex software releases using AI swarms that handle everything from changelog generation to multi-platform deployment. Use for release planning, automated versioning, artifact building, Platforms: claude_code."} +{"id": "447cf5dfbb6560f59b8454a4bab85ffd4fcda43f011b61c590da4651bff9474b", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "semantic-search-setup", "description": "Setup vector embeddings and semantic search for document collections. Use for AI-powered similarity search, finding related documents, and preparing knowledge bases for RAG systems.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/data/documents/semantic-search-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "semantic-search-setup. Setup vector embeddings and semantic search for document collections. Use for AI-powered similarity search, finding related documents, and preparing knowledge bases for RAG systems. Platforms: claude_code."} +{"id": "170b99ecd08355115049201e11bc9f2c557afa0b4031be1fab6be9f628d2996e", "repo_url": "https://github.com/laguagu/claude-code-nextjs-skills", "name": "ai-sdk-6", "description": "Vercel AI SDK v6 development. Use when building AI agents, chatbots, tool integrations, or streaming applications with the ai package.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/laguagu/claude-code-nextjs-skills/blob/main/skills/ai-sdk-6/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T11:40:42Z"}, "embedding_text": "ai-sdk-6. Vercel AI SDK v6 development. Use when building AI agents, chatbots, tool integrations, or streaming applications with the ai package. Platforms: claude_code."} +{"id": "1d2bacdc23ffbc6d7aceb1bbac4f504e758facb4a087d9ef8ecef1ec9aad9a11", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "project-development", "description": "Design and build LLM-powered projects from ideation through deployment. Use when starting new agent projects, choosing between LLM and traditional approaches, or structuring batch processing pipelines", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/project-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "project-development. Design and build LLM-powered projects from ideation through deployment. Use when starting new agent projects, choosing between LLM and traditional approaches, or structuring batch processing pipelines Platforms: claude_code."} +{"id": "e522e1d8ae9d47a015a78ff39cc3d53384f5c91df6ce86cf9701ea298692c7ad", "repo_url": "https://github.com/github/gh-aw-firewall", "name": "awf-skill", "description": "Use the AWF (Agentic Workflow Firewall) to run commands with network isolation and domain whitelisting. Provides L7 HTTP/HTTPS egress control for AI agents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/gh-aw-firewall/blob/main/.claude/skills/awf-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:27:40Z"}, "embedding_text": "awf-skill. Use the AWF (Agentic Workflow Firewall) to run commands with network isolation and domain whitelisting. Provides L7 HTTP/HTTPS egress control for AI agents. Platforms: claude_code."} +{"id": "084ebd10858a777322f45c1f58711e273dba507a7b17b6f40b66b0bb5616d572", "repo_url": "https://github.com/plurigrid/asi", "name": "tidar-thread-probe", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/tidar-thread-probe/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "tidar-thread-probe. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "28a791ddffcbe34033dd75bbfb09680fd7f70f502c7976817882580fb3b9361b", "repo_url": "https://github.com/memodb-io/skill-memory", "name": "skill-memory", "description": "Use skill-memory to download, view and edit agent skills in memory. TRIGGER by 'skill', 'memory', 'learn'.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/memodb-io/skill-memory/blob/main/skills/skill-memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T05:37:51Z"}, "embedding_text": "skill-memory. Use skill-memory to download, view and edit agent skills in memory. TRIGGER by 'skill', 'memory', 'learn'. Platforms: claude_code."} +{"id": "ad9a43c26455d3b93c66232eb5c55ea315d3282799f8c50e60b9684b00ff6d76", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "webapp-testing", "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "webapp-testing. Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l Platforms: claude_code."} +{"id": "923607d533a26fad3cf521db0ea5b59697a817da21eef628dee39aeef44811a7", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-repo-architect", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/repo-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-repo-architect. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a6ab742163d80eeab2700c7f67c29cea33b222b607ffaa238112c2c9b80bfa81", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "strict-typescript-mode", "description": "Enforces TypeScript best practices when writing code. Automatically enables strict typing for TypeScript projects, prevents `any` usage, and recommends generic constraints. Activate on TS/TSX files, n", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/strict-typescript-mode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "strict-typescript-mode. Enforces TypeScript best practices when writing code. Automatically enables strict typing for TypeScript projects, prevents `any` usage, and recommends generic constraints. Activate on TS/TSX files, n Platforms: claude_code."} +{"id": "dd14461439dd8ae46f96c8787de46652d524a0d2b00fff9b3edfa6b80150b9f9", "repo_url": "https://github.com/karanchawla/vvm", "name": "vvm", "description": "VVM (Vibe Virtual Machine) is a language for agentic programs where the LLM is the runtime.\n\nActivate when: running .vvm files, mentioning VVM, calling /vvm-boot, /vvm-run, /vvm-compile, /vvm-run-insp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/karanchawla/vvm/blob/main/skills/vvm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T19:27:10Z"}, "embedding_text": "vvm. VVM (Vibe Virtual Machine) is a language for agentic programs where the LLM is the runtime.\n\nActivate when: running .vvm files, mentioning VVM, calling /vvm-boot, /vvm-run, /vvm-compile, /vvm-run-insp Platforms: claude_code."} +{"id": "88961eff94928e668fdeae2deb08a272aedc936b2f4ebc3cc4b380ea161f8a08", "repo_url": "https://github.com/blacktop/mcp-tts", "name": "speak", "description": "Automatically announces plans, issues, and summaries out loud using TTS. Use this skill PROACTIVELY after completing major tasks like finalizing a plan, resolving an issue, or generating a summary. Ea", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blacktop/mcp-tts/blob/main/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-30T22:26:13Z"}, "embedding_text": "speak. Automatically announces plans, issues, and summaries out loud using TTS. Use this skill PROACTIVELY after completing major tasks like finalizing a plan, resolving an issue, or generating a summary. Ea Platforms: claude_code."} +{"id": "6d903c77b30229cf726d4d1686b99ab6f4d9415c8d9b535c3a553cbde2889c5f", "repo_url": "https://github.com/plurigrid/asi", "name": "synchronization", "description": "Convergence to common trajectory in coupled systems", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/synchronization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "synchronization. Convergence to common trajectory in coupled systems Platforms: claude_code."} +{"id": "f15356bf0972ad9051fc5ff233ee7570e88936360d6f6059ffd327e4923043dc", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "docker-helper", "description": "Expert helper for Docker containers, Docker Compose, and container optimization", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/docker-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docker-helper"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "docker-helper. Expert helper for Docker containers, Docker Compose, and container optimization Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "ff67caf6aebf21fd228665656932335792788ead6b611ebce79ef1f619f5e712", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-pr-manager", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/pr-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-pr-manager. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "19d573609741842b03a3fd6677560b7f1baf7184686225a28adbe88750db2de4", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-multi-repo", "description": "Cross-repository swarm orchestration for organization-wide automation and intelligent collaboration. Use for multi-repo coordination, synchronized operations, dependency management, and organization-w", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/multi-repo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-multi-repo. Cross-repository swarm orchestration for organization-wide automation and intelligent collaboration. Use for multi-repo coordination, synchronized operations, dependency management, and organization-w Platforms: claude_code."} +{"id": "d29dbf1ddd72e2ec033b5d89e4e501e85a823dfe67126778692dffbcf2b2ae88", "repo_url": "https://github.com/plurigrid/asi", "name": "scheme", "description": "GNU Scheme ecosystem = guile + goblins + hoot + fibers.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/little-schemer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "scheme. GNU Scheme ecosystem = guile + goblins + hoot + fibers. Platforms: claude_code."} +{"id": "8ad39c2dcf002b274fbd1b07ded86ca91c1a8f0ba8fc606d19535732591d86d9", "repo_url": "https://github.com/dianel555/dskills", "name": "exa", "description": "High-precision semantic search and content retrieval via Exa API. Use when: (1) Deep research requiring semantic understanding, (2) Code documentation and examples lookup, (3) Company/professional research, (4) AI-powered comprehensive research tasks, (5) URL content extraction with structured output. Triggers: \"research\", \"find papers\", \"code examples\", \"company info\", \"LinkedIn profiles\", \"deep analysis\". Differentiator: Exa excels at semantic/neural search while grok-search is better for real-time news and general web content.", "source": ["skillhub", "topic"], "categories": ["claude-skills", "codex-skills", "gemini-cli-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dianel555/dskills/blob/main/skills/exa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install exa"}, "quality": {"stars": 63, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:37:01Z"}, "embedding_text": "exa. High-precision semantic search and content retrieval via Exa API. Use when: (1) Deep research requiring semantic understanding, (2) Code documentation and examples lookup, (3) Company/professional research, (4) AI-powered comprehensive research tasks, (5) URL content extraction with structured output. Triggers: \"research\", \"find papers\", \"code examples\", \"company info\", \"LinkedIn profiles\", \"deep analysis\". Differentiator: Exa excels at semantic/neural search while grok-search is better for real-time news and general web content. Categories: claude-skills, codex-skills, gemini-cli-skills, skills. Platforms: claude_code."} +{"id": "8fe1ad1e5337f0de4857bf3582218acc574f4716764aacf3acfd067d313dc35a", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "uv", "description": "Use when working with Astral's uv \u2014 managing Python project dependencies, creating PEP 723 scripts, installing tools, managing Python versions, configuring package indexes, or migrating from pip/poetr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/uv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "uv. Use when working with Astral's uv \u2014 managing Python project dependencies, creating PEP 723 scripts, installing tools, managing Python versions, configuring package indexes, or migrating from pip/poetr Platforms: claude_code."} +{"id": "76d2b52dbb9819d24292519bef616c5a0f80cf73ed02fa1324131780c7c3a534", "repo_url": "https://github.com/laguagu/claude-code-nextjs-skills", "name": "nextjs-shadcn", "description": "Creates Next.js 16 frontends with shadcn/ui. Use when building React UIs, components, pages, or applications with shadcn, Tailwind, or modern frontend patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/laguagu/claude-code-nextjs-skills/blob/main/skills/nextjs-shadcn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T11:40:42Z"}, "embedding_text": "nextjs-shadcn. Creates Next.js 16 frontends with shadcn/ui. Use when building React UIs, components, pages, or applications with shadcn, Tailwind, or modern frontend patterns. Platforms: claude_code."} +{"id": "43c309d93fc0221f0857a5ba937db5d46eac30813999e6299eff447eee3bf5bb", "repo_url": "https://github.com/plurigrid/asi", "name": "hatchery-index", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/hatchery-index/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "hatchery-index. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1405015eb8efd4ed57a0f32d58c18ef515bc590ef8da3ba9eddd8c7465c32198", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "defi-protocol-interaction", "description": "DeFi protocol interaction skill for Uniswap, Aave, Compound, and other major DeFi protocols", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/web3-core-operations/defi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "defi-protocol-interaction. DeFi protocol interaction skill for Uniswap, Aave, Compound, and other major DeFi protocols Platforms: claude_code."} +{"id": "ae1d3656b35d3e17f7ff5c383b946eeb21d517717379fae2eb53b187df5eb5b9", "repo_url": "https://github.com/nahisaho/musubi", "name": "cloud-architect", "description": "Copilot agent for cloud architecture design, AWS/Azure/GCP configuration, IaC code generation (Terraform/Bicep), and cost optimization\n\nTrigger terms: cloud architecture, AWS, Azure, GCP, cloud infras", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/cloud-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "cloud-architect. Copilot agent for cloud architecture design, AWS/Azure/GCP configuration, IaC code generation (Terraform/Bicep), and cost optimization\n\nTrigger terms: cloud architecture, AWS, Azure, GCP, cloud infras Platforms: claude_code."} +{"id": "9eb3a8361193c89a46ad39f744be20e7eb36966c6f40ca24ebc9f4a460d57dbc", "repo_url": "https://github.com/nahisaho/musubi", "name": "release-coordinator", "description": "Coordinates multi-component releases, feature flags, versioning, and rollback strategies.\n\nTrigger terms: release management, release planning, release coordination, feature flags,\ncanary deployment,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/release-coordinator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "release-coordinator. Coordinates multi-component releases, feature flags, versioning, and rollback strategies.\n\nTrigger terms: release management, release planning, release coordination, feature flags,\ncanary deployment, Platforms: claude_code."} +{"id": "63d13ce3aa2b2db14ef10bdf77c84748855e0d88957ab84063a11149dd689ef0", "repo_url": "https://github.com/sebastienelet/dotfiles", "name": "fish", "description": "Fish shell conventions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sebastienelet/dotfiles/blob/main/.cursor/skills/fish/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:44:38Z"}, "embedding_text": "fish. Fish shell conventions Platforms: claude_code."} +{"id": "7c4966234f6f65e2bbd533d9c4ba87bd7ef978088edd1d6e5efa7541faca6a85", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-components", "description": "Leverage Vue components in Slidev slides. Use this skill to add interactivity with built-in components or create custom ones.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/content/slidev-components/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-components. Leverage Vue components in Slidev slides. Use this skill to add interactivity with built-in components or create custom ones. Platforms: claude_code."} +{"id": "38f9989268cf61d6428727e6058780cd832461d6dafa00d9acd6e29599e6148c", "repo_url": "https://github.com/vm0-ai/vm0-skills", "name": "pdfco", "description": "PDF processing API for conversion, extraction, merging, splitting and more", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vm0-ai/vm0-skills/blob/main/pdfco/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 69, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:53:03Z"}, "embedding_text": "pdfco. PDF processing API for conversion, extraction, merging, splitting and more Platforms: claude_code."} +{"id": "d7557b68b3a26e866b16855c1b487988a0346f15197617ed8baef9d1c8c2910a", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "tech-article-writer", "description": "\u6280\u672f\u5e72\u8d27\u6587\u7ae0\u521b\u4f5c\u4e13\u5bb6,\u64c5\u957f\u7528\u7b80\u7ec3\u8bed\u8a00\u4f20\u9012\u6838\u5fc3\u77e5\u8bc6\u70b9,\u4e0d\u9057\u6f0f\u5173\u952e\u4fe1\u606f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/tech-article-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "tech-article-writer. \u6280\u672f\u5e72\u8d27\u6587\u7ae0\u521b\u4f5c\u4e13\u5bb6,\u64c5\u957f\u7528\u7b80\u7ec3\u8bed\u8a00\u4f20\u9012\u6838\u5fc3\u77e5\u8bc6\u70b9,\u4e0d\u9057\u6f0f\u5173\u952e\u4fe1\u606f Platforms: claude_code."} +{"id": "0ae1fb3c83a357fd04aaf04b5c1b46c2a226a170c815f57d6345512a94574b35", "repo_url": "https://github.com/plurigrid/asi", "name": "lispsyntax-acset", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/lispsyntax-acset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "lispsyntax-acset. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7e9b32693ac4f7a8f30ff3568262a469a489dfe9988820fc86bf76d2364b94e5", "repo_url": "https://github.com/avivsinai/bitbucket-cli", "name": "bkt", "description": "Bitbucket CLI for Data Center and Cloud. Use when users need to manage repositories, pull requests, branches, issues, webhooks, or pipelines in Bitbucket. Triggers include \"bitbucket\", \"bkt\", \"pull re", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avivsinai/bitbucket-cli/blob/master/skills/bkt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 148, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T10:52:04Z"}, "embedding_text": "bkt. Bitbucket CLI for Data Center and Cloud. Use when users need to manage repositories, pull requests, branches, issues, webhooks, or pipelines in Bitbucket. Triggers include \"bitbucket\", \"bkt\", \"pull re Platforms: claude_code."} +{"id": "a4dbbd52b61d54b0dee7930400d7039d0be95bb6ce4dd4b37c329eb063f08d1d", "repo_url": "https://github.com/scientiacapital/skills", "name": "gtm-pricing", "description": "B2B go-to-market strategy, pricing models, ICP development, positioning, and competitive intelligence. Use when planning GTM strategy, setting pricing, defining ICP, or evaluating opportunities.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/gtm-pricing-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "gtm-pricing. B2B go-to-market strategy, pricing models, ICP development, positioning, and competitive intelligence. Use when planning GTM strategy, setting pricing, defining ICP, or evaluating opportunities. Platforms: claude_code."} +{"id": "cc3b26016854af6ddc41561570354ddf1ce7525ecc28ae38d1a196ef1e70beb8", "repo_url": "https://github.com/bkircher/skills", "name": "gh-code-review", "description": "Conduct a thorough and in-depth code review. Use this skill when conducting a code review for a PR on GitHub.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bkircher/skills/blob/main/gh-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-13T12:23:43Z"}, "embedding_text": "gh-code-review. Conduct a thorough and in-depth code review. Use this skill when conducting a code review for a PR on GitHub. Platforms: claude_code."} +{"id": "87186b0d976322e29d903a79a94d53499aab9a54c8e7aceb6464c2b2c1d3cc39", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "sparc-specification", "description": "SPARC Specification phase specialist for requirements analysis, constraint identification, use case definition, and acceptance criteria creation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/development/sparc/sparc-specification/sparc-specification-phase/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "sparc-specification. SPARC Specification phase specialist for requirements analysis, constraint identification, use case definition, and acceptance criteria creation Platforms: claude_code."} +{"id": "97e79f40eaedc1f71d379b9ab4052b3fb2f40cb34f37cb8b88e9426af5b53e08", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "aws-cloud-ops", "description": "AWS cloud operations for CloudWatch, S3, Lambda, EC2, and IAM", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/aws-cloud-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "aws-cloud-ops. AWS cloud operations for CloudWatch, S3, Lambda, EC2, and IAM Platforms: claude_code."} +{"id": "5e1304bc38fdfff0edfda65dcab1fa505a528933ccda3f322dc5b9f6ce5badaf", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "brand-messaging-architecture", "description": "Provides brand messaging architecture, value proposition, and brand pillar development frameworks including Peep Laja's Message Layers, Osterwalder's Value Proposition Canvas, Geoffrey Moore positioni", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/brand-messaging-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "brand-messaging-architecture. Provides brand messaging architecture, value proposition, and brand pillar development frameworks including Peep Laja's Message Layers, Osterwalder's Value Proposition Canvas, Geoffrey Moore positioni Platforms: claude_code."} +{"id": "d70ad5c99e8a5acb58713b162bfba8e9ffcf7c1b0238875e6fdbdfa047a98e4e", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-review", "description": "Perform strict 7-dimension peer review analyzing correctness, tests, performance, architecture, security, style, and diff cleanliness. Activate when user mentions \"review\", \"revisar\", \"peer review\", \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-review. Perform strict 7-dimension peer review analyzing correctness, tests, performance, architecture, security, style, and diff cleanliness. Activate when user mentions \"review\", \"revisar\", \"peer review\", \" Platforms: claude_code."} +{"id": "063fc4240f06bc25274be238d8afcb47fc75dfc324aaf688af07df4d819d9550", "repo_url": "https://github.com/sendaifun/skills", "name": "surfpool", "description": "Complete Surfpool development environment for Solana - drop-in replacement for solana-test-validator with mainnet forking, cheatcodes, Infrastructure as Code, and Surfpool Studio. The fastest way to develop and test Solana programs.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/surfpool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install surfpool"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "surfpool. Complete Surfpool development environment for Solana - drop-in replacement for solana-test-validator with mainnet forking, cheatcodes, Infrastructure as Code, and Surfpool Studio. The fastest way to develop and test Solana programs. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "0c623909284f724bf3a162196e61e8f1b31ddb25f2f18baf81f0bedbad8bde9a", "repo_url": "https://github.com/superme-ai-skills/niw-skill-suite", "name": "vera-niw-recommendation", "description": "Drafts a complete NIW reference letter from a recommender's perspective. Supports three letter types: (A) Methodology \u2014 praises technical innovation; (B) Domain Application \u2014 describes real-world impa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 166, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T23:28:49Z"}, "embedding_text": "vera-niw-recommendation. Drafts a complete NIW reference letter from a recommender's perspective. Supports three letter types: (A) Methodology \u2014 praises technical innovation; (B) Domain Application \u2014 describes real-world impa Platforms: claude_code."} +{"id": "7a8351a59c3887cb42b1fbc0709e70ff7dbc55ed02e3d56269b582ddd1d48db2", "repo_url": "https://github.com/plurigrid/asi", "name": "emacs-info", "description": "Emacs Info documentation system. Navigate and query Info manuals for Emacs, Elisp, and GNU tools.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/emacs-info/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "emacs-info. Emacs Info documentation system. Navigate and query Info manuals for Emacs, Elisp, and GNU tools. Platforms: claude_code."} +{"id": "2ab61e038b5ede12e843b7c30b9a8c56b50e15c77c2b3b3a8838c76092241d7a", "repo_url": "https://github.com/sendaifun/skills", "name": "example-skill", "description": "Template and guide for creating skills. Demonstrates the standard skill structure with resources, docs, examples, and templates directories. Use this as a reference when building new protocol integrations.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/example-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install example-skill"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "example-skill. Template and guide for creating skills. Demonstrates the standard skill structure with resources, docs, examples, and templates directories. Use this as a reference when building new protocol integrations. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "13c9f8ca530b0d5ca9643e33ab38fd3465fa8abc612e9201114e170c7efd99de", "repo_url": "https://github.com/plurigrid/asi", "name": "ultrametric-distance", "description": "Non-Archimedean distance metrics for hierarchical clustering and p-adic analysis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/ultrametric-distance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ultrametric-distance. Non-Archimedean distance metrics for hierarchical clustering and p-adic analysis Platforms: claude_code."} +{"id": "06e67e79757be114f643d3080fc6562226266de23ef40d991077bc6e6dbae495", "repo_url": "https://github.com/jeremy-allen/claude-skills", "name": "metaprogramming-rlang", "description": "Tidy evaluation and programmatic tidyverse patterns using rlang. Use this skill when writing functions that accept column names as arguments, building tidyverse-compatible APIs, or working with data-m", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeremy-allen/claude-skills/blob/main/metaprogramming-rlang/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T03:59:58Z"}, "embedding_text": "metaprogramming-rlang. Tidy evaluation and programmatic tidyverse patterns using rlang. Use this skill when writing functions that accept column names as arguments, building tidyverse-compatible APIs, or working with data-m Platforms: claude_code."} +{"id": "6e57af62c0c2b3f7c559b40bc3148b5aac3b06b66f3efd19f926a8fbd5ea99b9", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-security", "description": "Perform OWASP Top 10 static security audit identifying vulnerabilities in access control, cryptography, injection, configuration, and logging. Activate when user mentions \"security audit\", \"OWASP\", \"s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-security. Perform OWASP Top 10 static security audit identifying vulnerabilities in access control, cryptography, injection, configuration, and logging. Activate when user mentions \"security audit\", \"OWASP\", \"s Platforms: claude_code."} +{"id": "858fdbcd097cc5ba058859bb1938d42c56d853e5f89e368069d2cdcb6f6345fb", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "ui-freeze", "description": "Protects design and theme files from unintended changes. Locks tailwind.config, global CSS, and theme variables. Requires explicit confirmation before modifying UI components. Activate on changes to C", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/ui-freeze/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "ui-freeze. Protects design and theme files from unintended changes. Locks tailwind.config, global CSS, and theme variables. Requires explicit confirmation before modifying UI components. Activate on changes to C Platforms: claude_code."} +{"id": "ffeea6b1ba353e800660f8ddc841398da43a5ffcdd2e3effcd3b5f11448a6de5", "repo_url": "https://github.com/indexedlabs/pydantic-ai-gepa", "name": "plan", "description": "Plan work using Mighty (mt) by creating/updating specs and recording decisions, then spawning/structuring implementation tasks. Use when asked to plan/outline/break down a change, draft a spec (featur", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/indexedlabs/pydantic-ai-gepa/blob/main/.claude/skills/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 30, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T05:04:46Z"}, "embedding_text": "plan. Plan work using Mighty (mt) by creating/updating specs and recording decisions, then spawning/structuring implementation tasks. Use when asked to plan/outline/break down a change, draft a spec (featur Platforms: claude_code."} +{"id": "ce6c05ca5eefb4ddd1c244bb544f6ae993ca79cc26f4eb6586425e57fc551e0f", "repo_url": "https://github.com/webmcp-org/npm-packages", "name": "webmcp", "description": "Create MCP tools for any website or web app. Use when the user wants to:\n- Add AI tools to their React/Vue/Next.js app\n- Create userscripts for sites they don't control (Notion, GitHub, etc.)\n- Test M", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/webmcp-org/npm-packages/blob/main/.agents/skills/diataxis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:14:25Z"}, "embedding_text": "webmcp. Create MCP tools for any website or web app. Use when the user wants to:\n- Add AI tools to their React/Vue/Next.js app\n- Create userscripts for sites they don't control (Notion, GitHub, etc.)\n- Test M Platforms: claude_code."} +{"id": "9fc80b8988433d326e248e952837a624d3eaa366843c7c1d44ce5039637ef1f1", "repo_url": "https://github.com/plurigrid/asi", "name": "juvix-intents", "description": "Juvix intent-centric language for Anoma with Geb compilation and GF(3) typed resources", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/juvix-intents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "juvix-intents. Juvix intent-centric language for Anoma with Geb compilation and GF(3) typed resources Platforms: claude_code."} +{"id": "8014ed7b716e11868fa88bc76bb4a5be167e8031dd63d569c15ce217880410d5", "repo_url": "https://github.com/scientiacapital/skills", "name": "stripe-stack", "description": "Stripe integration patterns for Next.js + Supabase - payments, subscriptions, webhooks, credit systems, checkout. Use when: stripe, payments, billing, subscription, webhook, checkout, add payments to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/stripe-stack-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "stripe-stack. Stripe integration patterns for Next.js + Supabase - payments, subscriptions, webhooks, credit systems, checkout. Use when: stripe, payments, billing, subscription, webhook, checkout, add payments to Platforms: claude_code."} +{"id": "21f0dc6f0e355e6cbb02ecaa33c455b3e78b37f314ae88d87fde9e904529d15a", "repo_url": "https://github.com/plurigrid/asi", "name": "langevin-dynamics", "description": "Layer 5: SDE-Based Learning Analysis via Langevin Dynamics", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/langevin-dynamics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "langevin-dynamics. Layer 5: SDE-Based Learning Analysis via Langevin Dynamics Platforms: claude_code."} +{"id": "37d1e0b1327a9f09b0443b10b58c9a04e38be1618afafb7e6b1b0dce5e99d3ae", "repo_url": "https://github.com/bikach/skills-claude-code", "name": "security-guardian", "description": "Expert en s\u00e9curit\u00e9 applicative pour d\u00e9tecter les vuln\u00e9rabilit\u00e9s, auditer le code, et guider les bonnes pratiques de s\u00e9curit\u00e9. OWASP Top 10, authentification, autorisation, cryptographie, gestion de se", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bikach/skills-claude-code/blob/main/security-guardian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-01T05:37:21Z"}, "embedding_text": "security-guardian. Expert en s\u00e9curit\u00e9 applicative pour d\u00e9tecter les vuln\u00e9rabilit\u00e9s, auditer le code, et guider les bonnes pratiques de s\u00e9curit\u00e9. OWASP Top 10, authentification, autorisation, cryptographie, gestion de se Platforms: claude_code."} +{"id": "be97d29d5cde6a1fc5fb459f0e934a8a4901f2cd38e822801653e777c40f5964", "repo_url": "https://github.com/gocallum/nextjs16-agent-skills", "name": "prisma-orm-v7-skills", "description": "Key facts and breaking changes for upgrading to Prisma ORM 7. Consider version 7 changes before generation or troubleshooting", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gocallum/nextjs16-agent-skills/blob/main/skills/prisma-orm-v7-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T13:27:54Z"}, "embedding_text": "prisma-orm-v7-skills. Key facts and breaking changes for upgrading to Prisma ORM 7. Consider version 7 changes before generation or troubleshooting Platforms: claude_code."} +{"id": "fadcdb0d2909d329e5525acd30155673aa14421017ab68d3e7a103ae28642a03", "repo_url": "https://github.com/sendaifun/skills", "name": "orca", "description": "Complete guide for Orca - Solana's leading concentrated liquidity AMM (CLMM). Covers Whirlpools SDK for swaps, liquidity provision, pool creation, position management, and fee harvesting on Solana and Eclipse networks.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/orca/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install orca"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "orca. Complete guide for Orca - Solana's leading concentrated liquidity AMM (CLMM). Covers Whirlpools SDK for swaps, liquidity provision, pool creation, position management, and fee harvesting on Solana and Eclipse networks. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "1ddb429b49a22cfe74b3c30fed9e6ee402da9948c9d3d193c969217f5591a1df", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "gcloud-cli", "description": "Google Cloud CLI operations and resource management", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/gcloud-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "gcloud-cli. Google Cloud CLI operations and resource management Platforms: claude_code."} +{"id": "fe9461aa2fddf9fae8e4d4d02dd8251bf18a82e7c2da4d3a9908433ccdc91f96", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "helm-chart-builder", "description": "Helm chart development agent skill and plugin for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw \u2014 chart scaffolding, values design, template patterns, dependency management, security hardening, and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/helm-chart-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "helm-chart-builder. Helm chart development agent skill and plugin for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw \u2014 chart scaffolding, values design, template patterns, dependency management, security hardening, and Platforms: claude_code."} +{"id": "bdc1a014f9bd0ffd10fccd4dff6d5c53cf8fee4acba646eb92450c0e02f55f34", "repo_url": "https://github.com/johnlindquist/claude-workshop-skills", "name": "chrome-devtools", "description": "Control and inspect Chrome browser using Chrome DevTools Protocol - navigate pages, debug network requests, analyze performance, take screenshots, interact with elements, and automate browser tasks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnlindquist/claude-workshop-skills/blob/main/skills/chrome-devtools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-21T12:42:00Z"}, "embedding_text": "chrome-devtools. Control and inspect Chrome browser using Chrome DevTools Protocol - navigate pages, debug network requests, analyze performance, take screenshots, interact with elements, and automate browser tasks. Platforms: claude_code."} +{"id": "85c6a9973a51607ee0871226efd4403803f9734397a8e252e224ea9a6809c93a", "repo_url": "https://github.com/plurigrid/asi", "name": "unstable-manifold", "description": "Manifold of points diverging from equilibrium", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/stable-manifold/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "unstable-manifold. Manifold of points diverging from equilibrium Platforms: claude_code."} +{"id": "c4529de8a09efac7e0cb8a3825cbe7e5be5c389231119c90a69ddb8dd2bc04cf", "repo_url": "https://github.com/plurigrid/asi", "name": "zx-calculus", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/zx-calculus/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "zx-calculus. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "bb425fb085f685c043aa22c79e404867290d8bbbc255493e27d870c99ddb6b8e", "repo_url": "https://github.com/plurigrid/asi", "name": "nix-acset-worlding", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/nix-acset-worlding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "nix-acset-worlding. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3d7eab63d4fb5dc15ef315a062fd558c46f5acf8e6a5620d4a4b37f0e1a60044", "repo_url": "https://github.com/jacbk/persona", "name": "research", "description": "Gather information about users from materials, profile config, GitHub, and web search to inform portfolio content and design decisions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jacbk/persona/blob/main/.agent/skills/research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-06T05:32:30Z"}, "embedding_text": "research. Gather information about users from materials, profile config, GitHub, and web search to inform portfolio content and design decisions. Platforms: claude_code."} +{"id": "c7eb09e58adf88020a786f42ae4ac518cd30272e43ed642aba1e9767aabdd96d", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "openai-webhooks", "description": "Receive and verify OpenAI webhooks. Use when setting up OpenAI webhook handlers for fine-tuning jobs, batch completions, or async events like fine_tuning.job.completed, batch.completed, or realtime.ca", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/openai-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "openai-webhooks. Receive and verify OpenAI webhooks. Use when setting up OpenAI webhook handlers for fine-tuning jobs, batch completions, or async events like fine_tuning.job.completed, batch.completed, or realtime.ca Platforms: claude_code."} +{"id": "4ad19d3704ff38b92072c3eb65ceb0176e07d189e8c35a80a68a0a20b7d85d52", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "algorithmic-art", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "algorithmic-art. 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 Platforms: claude_code."} +{"id": "f3253bc90c7e227bb7530b7df89b0ca521fce7624ff1896be27baade2430f569", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "web-artifacts-builder", "description": "Build self-contained interactive web applications as single HTML files. Use for creating demos, prototypes, interactive tools, and standalone web experiences that work without external servers.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_internal/builders/web-artifacts-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "web-artifacts-builder. Build self-contained interactive web applications as single HTML files. Use for creating demos, prototypes, interactive tools, and standalone web experiences that work without external servers. Platforms: claude_code."} +{"id": "64ffe9a82b86e75e1ca4ecb2067fd5d90f16afe00f765df01c2ebe449ad7c41a", "repo_url": "https://github.com/enbyaugust/zacs-claude-skills", "name": "build-update-tests", "description": "Evaluate existing test coverage, identify gaps and pattern violations, then create or update comprehensive tests. Use when user says \"build tests\", \"update tests\", \"test [component]\", \"add test covera", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enbyaugust/zacs-claude-skills/blob/master/skills/build-update-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T06:54:23Z"}, "embedding_text": "build-update-tests. Evaluate existing test coverage, identify gaps and pattern violations, then create or update comprehensive tests. Use when user says \"build tests\", \"update tests\", \"test [component]\", \"add test covera Platforms: claude_code."} +{"id": "e2dc3a495cd66ca9fae4ce485978e1c99c126d664bdc68efc5fae2ea5aedda50", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-functions", "description": "Discover and test Supabase Edge Functions for security vulnerabilities and misconfigurations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-functions/supabase-audit-functions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-functions. Discover and test Supabase Edge Functions for security vulnerabilities and misconfigurations. Platforms: claude_code."} +{"id": "db251f6aed9967bf5be30d1d32fe151f43571fda3a56e8eaec434f6ad1758aba", "repo_url": "https://github.com/enbyaugust/zacs-claude-skills", "name": "test-or-bug", "description": "Diagnoses failing E2E tests to determine if failure is a code bug or test issue. Use when user says \"test or bug\", \"is this a test issue\", \"why is this test failing\", \"diagnose test failure\", \"debug e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enbyaugust/zacs-claude-skills/blob/master/skills/test-or-bug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T06:54:23Z"}, "embedding_text": "test-or-bug. Diagnoses failing E2E tests to determine if failure is a code bug or test issue. Use when user says \"test or bug\", \"is this a test issue\", \"why is this test failing\", \"diagnose test failure\", \"debug e Platforms: claude_code."} +{"id": "f9c0178fe29c93b698076c1bfc7ea2e8e7e8260d13cda2edb1056ba4cc9574d6", "repo_url": "https://github.com/jmanhype/speckit", "name": "project-standards", "description": "Provides project coding standards and architectural principles on-demand. Automatically invoked when implementing features, writing code, or making technical decisions. Reads constitution.md to ensure", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jmanhype/speckit/blob/main/.claude/skills/project-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T16:54:33Z"}, "embedding_text": "project-standards. Provides project coding standards and architectural principles on-demand. Automatically invoked when implementing features, writing code, or making technical decisions. Reads constitution.md to ensure Platforms: claude_code."} +{"id": "0967b22b5510963da999ca14a648d8d8eaf3b67b2b2a2567938d45292bc901d2", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "proceed", "description": "Execute an implementation plan with surgical precision. Use after a planning phase (plan-now or similar) has produced a step-by-step strategy and identified critical files. Focuses on precise code changes with verification at each step.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/proceed/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install proceed"}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T03:21:29Z"}, "embedding_text": "proceed. Execute an implementation plan with surgical precision. Use after a planning phase (plan-now or similar) has produced a step-by-step strategy and identified critical files. Focuses on precise code changes with verification at each step. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} +{"id": "e7ae5a833dfd8202d12c0f8204777bbf6e840828a88e764a25d68708b6c0ffbc", "repo_url": "https://github.com/plurigrid/asi", "name": "directed-interval", "description": "Directed interval type 2 axiomatizing (0 \u2192 1). Time-directed homotopy", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/directed-interval/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "directed-interval. Directed interval type 2 axiomatizing (0 \u2192 1). Time-directed homotopy Platforms: claude_code."} +{"id": "3ff00678f1f462c4991f3ec95aa48c6c58fd7bb6a9de153db31673c0fcfc3609", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "requete-cph-licenciement-faute-grave-selim-brihi", "description": "R\u00e9daction de requ\u00eates devant le Conseil de prud'hommes pour contester un licenciement pour faute grave. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger une requ\u00eate CPH, contester un licenciement pour faute grave, pr\u00e9parer une saisine du CPH pour un litige li\u00e9 \u00e0 un licenciement, ou cr\u00e9er un document de contestation de licenciement en droit du travail fran\u00e7ais.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/requete-cph-licenciement-faute-grave-selim-brihi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install requete-cph-licenciement-faute-grave-selim-brihi"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "requete-cph-licenciement-faute-grave-selim-brihi. R\u00e9daction de requ\u00eates devant le Conseil de prud'hommes pour contester un licenciement pour faute grave. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger une requ\u00eate CPH, contester un licenciement pour faute grave, pr\u00e9parer une saisine du CPH pour un litige li\u00e9 \u00e0 un licenciement, ou cr\u00e9er un document de contestation de licenciement en droit du travail fran\u00e7ais. Platforms: claude_code."} +{"id": "8849f75db6301f7c14c83392917a8a3085afcaf4cd93f8509158bd88231d0adc", "repo_url": "https://github.com/plurigrid/asi", "name": "webapp-testing", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "webapp-testing. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f6c536a0f2f698c500e099f891470c2577306d280ab3e2938efce2c2e5877096", "repo_url": "https://github.com/agiflow/openskill", "name": "canvas-design", "description": "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 ori", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agiflow/openskill/blob/main/.claude/skills/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-19T11:42:28Z"}, "embedding_text": "canvas-design. 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 ori Platforms: claude_code."} +{"id": "5488e2e2874079b80be007897f46591f8f8a786950b9cedc640d30539b5d998a", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "mcp-server-evaluations", "description": "Test MCP servers for quality and reliability. Verify tool functionality, test error handling, generate tests, and assess response quality with no dependencies other than curl. Use this when validating", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/evaluation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "mcp-server-evaluations. Test MCP servers for quality and reliability. Verify tool functionality, test error handling, generate tests, and assess response quality with no dependencies other than curl. Use this when validating Platforms: claude_code."} +{"id": "0b0391bd041689909f5b26d8630e20738a8fb97f55ca870e8784d72c5a8a6c58", "repo_url": "https://github.com/microsoft/azure-skills", "name": "airunway-aks-setup", "description": "Set up AI Runway on AKS \u2014 from bare cluster to running model. Covers cluster verification, controller install, GPU assessment, provider setup, and first deployment. WHEN: \"setup AI Runway\", \"onboard A", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/airunway-aks-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:49:05Z"}, "embedding_text": "airunway-aks-setup. Set up AI Runway on AKS \u2014 from bare cluster to running model. Covers cluster verification, controller install, GPU assessment, provider setup, and first deployment. WHEN: \"setup AI Runway\", \"onboard A Platforms: claude_code."} +{"id": "e17c0fff5f1c9b1c91531e9f7d63526d7491513ccb36b618b4bbcfdaeacffd45", "repo_url": "https://github.com/encoredev/skills", "name": "encore-migrate", "description": "Migrate Express/Fastify apps to Encore.ts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/encoredev/skills/blob/main/encore/migrate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T21:00:31Z"}, "embedding_text": "encore-migrate. Migrate Express/Fastify apps to Encore.ts. Platforms: claude_code."} +{"id": "f77ccfcab923d78e33b21c0907d2a1d35448504ac090af72414bca5f7e7b5c98", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "open-source-marketing", "description": "When the user wants to market an open source project authentically. Trigger phrases include \"open source marketing,\" \"OSS marketing,\" \"GitHub marketing,\" \"promote my library,\" \"grow stars,\" \"launch op", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/open-source-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "open-source-marketing. When the user wants to market an open source project authentically. Trigger phrases include \"open source marketing,\" \"OSS marketing,\" \"GitHub marketing,\" \"promote my library,\" \"grow stars,\" \"launch op Platforms: claude_code."} +{"id": "cd6772a181a4a4a58d65165b8a16086acb0ed8a3b70aa88b6d89fa4b3b4e9938", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "skilleval", "description": "Professional skills assessment system for evidence-based evaluation across technical abilities, soft skills, and domain expertise. Provides multi-dimensional scoring, gap analysis, and personalized im", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/skill-evaluator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "skilleval. Professional skills assessment system for evidence-based evaluation across technical abilities, soft skills, and domain expertise. Provides multi-dimensional scoring, gap analysis, and personalized im Platforms: claude_code."} +{"id": "25a836d70ab5a892c3e76b1a30063f80a88655e5947879cedc1214974cbe5317", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "zed-editor", "description": "Configure, customize, and manage the Zed code editor. Use when the user wants to modify Zed keybindings, settings, tasks, or extensions \u2014 especially for chaining editor actions via workspace::SendKeys", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/tools/zed-editor-chronista-club/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "zed-editor. Configure, customize, and manage the Zed code editor. Use when the user wants to modify Zed keybindings, settings, tasks, or extensions \u2014 especially for chaining editor actions via workspace::SendKeys Platforms: claude_code."} +{"id": "ba46a99a8f3c61bfdca03c66bdd7277fb3bf3d1aff76ac55224e97942e800fae", "repo_url": "https://github.com/darkroomengineering/cc-settings", "name": "tldr", "description": "TLDR code analysis for token-efficient codebase understanding.\n\nAUTO-INVOKE when:\n- User asks \"who calls X\", \"what affects X\", \"find implementation\"\n- Need to trace dependencies, call graphs, or data", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/darkroomengineering/cc-settings/blob/main/skills/tldr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:59:42Z"}, "embedding_text": "tldr. TLDR code analysis for token-efficient codebase understanding.\n\nAUTO-INVOKE when:\n- User asks \"who calls X\", \"what affects X\", \"find implementation\"\n- Need to trace dependencies, call graphs, or data Platforms: claude_code."} +{"id": "93488e330f73b9e415335e21f22c2ded8fea36fac76f11604b5a3038a88fa76c", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "ui-ux", "description": "UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, creat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/design/audit-ui-ux-consistency/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "ui-ux. UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, creat Platforms: claude_code."} +{"id": "006bd33078cf7b3338571555998398fa211be4ab5f11adb71f37ba64545d92cb", "repo_url": "https://github.com/mattpocock/skills", "name": "handoff", "description": "Compact the current conversation into a handoff document for another agent to pick up.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mattpocock/skills/blob/main/skills/productivity/handoff/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 140812, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T08:41:52Z"}, "embedding_text": "handoff. Compact the current conversation into a handoff document for another agent to pick up. Platforms: claude_code."} +{"id": "a71d0edbc0c8110c16b426b1bbba7b4ea60fb57287c81075e3f7d8bc4bee6c3f", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "claw-chat", "description": "Real-time chat platform for AI agents. Global chat, private rooms, bot directory.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/claw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "claw-chat. Real-time chat platform for AI agents. Global chat, private rooms, bot directory. Platforms: claude_code."} +{"id": "cd158c2fa64bba79572c6f8c902686ae50aae767c01bf68b435de1ae4d491aeb", "repo_url": "https://github.com/plurigrid/asi", "name": "pun-decomposition", "description": "Pun Decomposition Skill (MINUS -1)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/pun-decomposition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "pun-decomposition. Pun Decomposition Skill (MINUS -1) Platforms: claude_code."} +{"id": "f105da816cdd40fce28b7f7c269209991eea65ce25d31451aa707822dd6f82df", "repo_url": "https://github.com/dragosroua/claude-content-skills", "name": "seo-wordpress-manager", "description": "Batch update Yoast SEO metadata (titles, descriptions, focus keyphrases) in WordPress via GraphQL. Use when the user wants to update SEO metadata, optimize titles, fix meta descriptions, or manage Yoa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dragosroua/claude-content-skills/blob/main/skills/seo-wordpress-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T02:27:21Z"}, "embedding_text": "seo-wordpress-manager. Batch update Yoast SEO metadata (titles, descriptions, focus keyphrases) in WordPress via GraphQL. Use when the user wants to update SEO metadata, optimize titles, fix meta descriptions, or manage Yoa Platforms: claude_code."} +{"id": "4f23ea5a701045e8ebe4dea2c878683c07828d69618ad16b40fa14e1a5bd2027", "repo_url": "https://github.com/re-cinq/wave", "name": "tui", "description": "Expert terminal user interface development including interactive console applications, cross-platform TUI libraries, and responsive terminal layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/re-cinq/wave/blob/main/.claude/skills/tui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-03T20:03:21Z"}, "embedding_text": "tui. Expert terminal user interface development including interactive console applications, cross-platform TUI libraries, and responsive terminal layouts Platforms: claude_code."} +{"id": "48e9cd9b6662b89e394adb20713144e4f15b5831f6468d7c3d7e470fbfeae200", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "idea-plan", "description": "\u79d1\u7814idea\u89c4\u5212\u4e0e\u8de8\u5bf9\u8bdd\u8ffd\u8e2askill\u3002\u5c06\u79d1\u7814\u9700\u6c42\u8f6c\u5316\u4e3a Milestone-Keypoint \u4e24\u7ea7\u4efb\u52a1\u4f53\u7cfb\uff0c\u4ee5 .plan \u6587\u4ef6\u7ed3\u6784\u652f\u6301\u8de8\u5bf9\u8bdd\u72b6\u6001\u8ffd\u8e2a\u3002\u89e6\u53d1\u573a\u666f\uff1a\u7528\u6237\u9700\u8981\u89c4\u5212\u5b9e\u65bd\u8def\u5f84\u3001\u8ffd\u8e2a\u591a\u9636\u6bb5\u8fdb\u5ea6\u3001\u8de8\u5bf9\u8bdd\u7ee7\u7eed\u79d1\u7814\u9879\u76ee\u3001\u8c03\u6574\u73b0\u6709\u8ba1\u5212\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/development/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "idea-plan. \u79d1\u7814idea\u89c4\u5212\u4e0e\u8de8\u5bf9\u8bdd\u8ffd\u8e2askill\u3002\u5c06\u79d1\u7814\u9700\u6c42\u8f6c\u5316\u4e3a Milestone-Keypoint \u4e24\u7ea7\u4efb\u52a1\u4f53\u7cfb\uff0c\u4ee5 .plan \u6587\u4ef6\u7ed3\u6784\u652f\u6301\u8de8\u5bf9\u8bdd\u72b6\u6001\u8ffd\u8e2a\u3002\u89e6\u53d1\u573a\u666f\uff1a\u7528\u6237\u9700\u8981\u89c4\u5212\u5b9e\u65bd\u8def\u5f84\u3001\u8ffd\u8e2a\u591a\u9636\u6bb5\u8fdb\u5ea6\u3001\u8de8\u5bf9\u8bdd\u7ee7\u7eed\u79d1\u7814\u9879\u76ee\u3001\u8c03\u6574\u73b0\u6709\u8ba1\u5212\u3002 Platforms: claude_code."} +{"id": "1c93b35a90a32cbca5b6d153dc92e9cacc6cf12107e62ad63379ed939514747e", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "having-difficult-conversations", "description": "Prepare and lead difficult conversations as a manager/leader and produce a Difficult Conversation Pack (conversation brief, talk track/script, objection+emotion handling plan, follow-up note, and qual", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/having-difficult-conversations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "having-difficult-conversations. Prepare and lead difficult conversations as a manager/leader and produce a Difficult Conversation Pack (conversation brief, talk track/script, objection+emotion handling plan, follow-up note, and qual Platforms: claude_code."} +{"id": "65884ae10b43113e7de6061756032f330de16dbdc965fa5a5fc516f5d37ad7f6", "repo_url": "https://github.com/cris-achiardi/claude-skills", "name": "codebase-index", "description": "Automatically generate relationship and dependency maps for any component-based codebase (React, Vue, Svelte, Astro, Next.js, Angular, Solid). Auto-detects framework. Supports TOON format for 30-60% t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cris-achiardi/claude-skills/blob/main/.claude/skills/codebase-index/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T18:36:11Z"}, "embedding_text": "codebase-index. Automatically generate relationship and dependency maps for any component-based codebase (React, Vue, Svelte, Astro, Next.js, Angular, Solid). Auto-detects framework. Supports TOON format for 30-60% t Platforms: claude_code."} +{"id": "2ae912c35643f0c0f3303f6343ffdc52faad8f0961553f9e3143aad51a445137", "repo_url": "https://github.com/nahisaho/musubi", "name": "ai-ml-engineer", "description": "Copilot agent that assists with machine learning model development, training, evaluation, deployment, and MLOps\n\nTrigger terms: machine learning, ML, AI, model training, MLOps, model deployment, featu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/ai-ml-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "ai-ml-engineer. Copilot agent that assists with machine learning model development, training, evaluation, deployment, and MLOps\n\nTrigger terms: machine learning, ML, AI, model training, MLOps, model deployment, featu Platforms: claude_code."} +{"id": "266fd33371799096689c50bc611c62aa862347c327be145883f264ef7cf35ebc", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "terraform-iac-helper", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/terraform-iac-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-iac-helper"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "terraform-iac-helper. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "736234da44763a71439fa682241fced55bdf689d5c3444210110c63fed611f3f", "repo_url": "https://github.com/doncheli/don-cheli-sdd", "name": "doncheli-data-policy", "description": "Audit and document what personal or sensitive data the project collects, processes, and stores. Activate when user mentions \"privacy\", \"data policy\", \"what data\", \"GDPR\", \"personal data\", \"data retent", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doncheli/don-cheli-sdd/blob/main/.agent/skills/doncheli-data-policy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T20:59:43Z"}, "embedding_text": "doncheli-data-policy. Audit and document what personal or sensitive data the project collects, processes, and stores. Activate when user mentions \"privacy\", \"data policy\", \"what data\", \"GDPR\", \"personal data\", \"data retent Platforms: claude_code."} +{"id": "23f24cccef508c7146f1dcb0d381a064884ca33e157131bf503d8439059e5bc9", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "request-analyzer", "description": "Proactively analyze user requests at the start of conversations to determine task type, assess prompt quality, and intelligently recommend which skills to activate. Should activate for ALL user reques", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/request-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "request-analyzer. Proactively analyze user requests at the start of conversations to determine task type, assess prompt quality, and intelligently recommend which skills to activate. Should activate for ALL user reques Platforms: claude_code."} +{"id": "1161b5762edcce7d0e5459a38c472abe1a6de214454d0d8952e67a809729de01", "repo_url": "https://github.com/plurigrid/asi", "name": "geiser-chicken", "description": "Geiser REPL integration for Chicken Scheme with SplitMixTernary 3-coloring and crdt.el sexp patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/geiser-chicken/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "geiser-chicken. Geiser REPL integration for Chicken Scheme with SplitMixTernary 3-coloring and crdt.el sexp patterns. Platforms: claude_code."} +{"id": "911f15b105ac653af4b08d69eefbe11a4c7931d58cbb0833ea36ec36e232c734", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-watch-daemon", "description": "Configure and manage the GrepAI watch daemon. Use this skill for real-time code indexing and file monitoring.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/indexing/grepai-watch-daemon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-watch-daemon. Configure and manage the GrepAI watch daemon. Use this skill for real-time code indexing and file monitoring. Platforms: claude_code."} +{"id": "c798461af53e6c9b38626d0c23670e0c3c8827e0be54dc9e23df1a8df7c3249a", "repo_url": "https://github.com/nahisaho/musubi", "name": "database-schema-designer", "description": "Copilot agent for database schema design, ER diagrams, normalization, DDL generation, and performance optimization\n\nTrigger terms: database design, schema design, ER diagram, normalization, DDL, datab", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/database-schema-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "database-schema-designer. Copilot agent for database schema design, ER diagrams, normalization, DDL generation, and performance optimization\n\nTrigger terms: database design, schema design, ER diagram, normalization, DDL, datab Platforms: claude_code."} +{"id": "62ba6ea553a739314831413469ff183315909e531ac2100726464a50cb37016a", "repo_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins", "name": "fifteen-factor-app", "description": "The Fifteen-Factor App methodology for modern cloud-native SaaS applications. This skill should be automatically invoked when planning SaaS tools, product software architecture, microservices design,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/henkisdabro/wookstar-claude-code-plugins/blob/main/plugins/developer/skills/fifteen-factor-app/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T05:46:55Z"}, "embedding_text": "fifteen-factor-app. The Fifteen-Factor App methodology for modern cloud-native SaaS applications. This skill should be automatically invoked when planning SaaS tools, product software architecture, microservices design, Platforms: claude_code."} +{"id": "5318ebfd9fb88f37b26abed395627d109f05b49acd37aed757840621e11d164c", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "brand-voice-development", "description": "Provides brand voice and verbal identity frameworks including Bloomstein's BrandSort, Nielsen Norman Group's Four Dimensions of Tone, Aaker's Brand Personality, the \"this but not that\" technique, tone", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/brand-voice-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "brand-voice-development. Provides brand voice and verbal identity frameworks including Bloomstein's BrandSort, Nielsen Norman Group's Four Dimensions of Tone, Aaker's Brand Personality, the \"this but not that\" technique, tone Platforms: claude_code."} +{"id": "ab14deba9a06ff427f548b78691804671d0de6d8a994deb55b2214a731577f20", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-ssrf", "description": "Detect Server-Side Request Forgery (SSRF) vulnerabilities in a codebase using a three-phase approach: recon (find outbound call sites), batched verify (trace user input to destinations in parallel sub", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-ssrf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-ssrf. Detect Server-Side Request Forgery (SSRF) vulnerabilities in a codebase using a three-phase approach: recon (find outbound call sites), batched verify (trace user input to destinations in parallel sub Platforms: claude_code."} +{"id": "3ff09b5c1d5b1724d3bd698d6db1e0d1d10733dc0929cd0ab4067b287cf88646", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "megg-learn", "description": "Capture a learning to megg knowledge", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/megg-learn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install megg-learn"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "megg-learn. Capture a learning to megg knowledge Platforms: claude_code."} +{"id": "26f3e0b690e9439f885e773172289526e4edcc65784d1ead54c536105f0e4aba", "repo_url": "https://github.com/nahisaho/musubi", "name": "devops-engineer", "description": "Copilot agent that assists with CI/CD pipeline creation, infrastructure automation, Docker/Kubernetes deployment, and DevOps best practices\n\nTrigger terms: CI/CD, DevOps, pipeline, Docker, Kubernetes,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/devops-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "devops-engineer. Copilot agent that assists with CI/CD pipeline creation, infrastructure automation, Docker/Kubernetes deployment, and DevOps best practices\n\nTrigger terms: CI/CD, DevOps, pipeline, Docker, Kubernetes, Platforms: claude_code."} +{"id": "1eaaf0c5aebf2858a63ad67b8718c82d2180da5b09417f49b047c1db0e90fd4f", "repo_url": "https://github.com/sugarforever/01coder-agent-skills", "name": "subtitle-correction", "description": "Correct subtitle files (.srt) generated from speech recognition. Use when the user uploads subtitle files and asks to correct, fix, or proofread subtitles, especially for technical content like progra", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sugarforever/01coder-agent-skills/blob/main/skills/subtitle-correction/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 120, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:52:39Z"}, "embedding_text": "subtitle-correction. Correct subtitle files (.srt) generated from speech recognition. Use when the user uploads subtitle files and asks to correct, fix, or proofread subtitles, especially for technical content like progra Platforms: claude_code."} +{"id": "0b0e2e95eb305592333afaa0ae3cd9e8508a8e4d0a3ad2446424af463e0ff0aa", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "recovery", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/error-recovery-escalation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "recovery. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e46eb4c8725f9474942b0cda47be8d571b7e99553cc4301f8392a82d6a07bd44", "repo_url": "https://github.com/plurigrid/asi", "name": "sheaf-cohomology", "description": "\u010cech cohomology for local-to-global consistency verification in code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/sheaf-cohomology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "sheaf-cohomology. \u010cech cohomology for local-to-global consistency verification in code Platforms: claude_code."} +{"id": "cdaebb5ecbd2b1ccfcd6bf9f98b3efd42c74d1f98c59203ff8eb784b28a7fa12", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "codebase-research", "description": "Orchestrates comprehensive codebase research by decomposing user queries into parallel sub-agent tasks and synthesizing findings. This skill should be used when users ask questions about how code work", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/codebase-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "codebase-research. Orchestrates comprehensive codebase research by decomposing user queries into parallel sub-agent tasks and synthesizing findings. This skill should be used when users ask questions about how code work Platforms: claude_code."} +{"id": "1b76eea22ed325c33cc9b732daf3fc37a9a2c87a3e641e658c8974e5fba2069f", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "braiins-proxy", "description": "Braiins Farm Proxy - high-performance Stratum V2 mining proxy for large-scale Bitcoin mining operations with aggregation and fallback features", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills/braiins-proxy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "braiins-proxy. Braiins Farm Proxy - high-performance Stratum V2 mining proxy for large-scale Bitcoin mining operations with aggregation and fallback features Platforms: claude_code."} +{"id": "f6447d135902a563561ba6eaf2afbe3588aee2682009b3aaff92fe7fef1cbe3b", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "bash-52-features", "description": "Bash 5.2 release features and improvements with practical examples. Use when working with Bash 5.2 features, variable handling enhancements, readline improvements, or when user asks about Bash 5.2 cha", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/bash-development/skills/bash-52-features/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "bash-52-features. Bash 5.2 release features and improvements with practical examples. Use when working with Bash 5.2 features, variable handling enhancements, readline improvements, or when user asks about Bash 5.2 cha Platforms: claude_code."} +{"id": "aa47bb3ae7c88b629e318e800f99ce0c48a42a1ce7dfd919ae5d420c3f012f1c", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "mermaid-diagrams", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/mermaid-diagrams/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "mermaid-diagrams. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5751307286b06422dd4c9a7addb88a52c32f0d47693f2f48ab0bd3b62e9546c5", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "go-mode", "description": "Autonomous goal execution \u2014 give a goal, get a plan, confirm, execute, report. You steer, Claude drives.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/go-mode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install go-mode"}, "quality": {"stars": 335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T12:37:28Z"}, "embedding_text": "go-mode. Autonomous goal execution \u2014 give a goal, get a plan, confirm, execute, report. You steer, Claude drives. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} +{"id": "f13c6ebb2f9f65c23f07efc4e3e62b9e3ab815ca46babf46e29f706a96c54227", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-qa", "description": "Run QA checks on current work. Tests, linting, type checking, build verification. Use during or after development to catch issues early.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-qa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-qa"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-qa. Run QA checks on current work. Tests, linting, type checking, build verification. Use during or after development to catch issues early. Platforms: claude_code."} +{"id": "341a47f0af99e81da45fa50ecb59911315f63a92a5f547046cc46cef7a0c7269", "repo_url": "https://github.com/projectnewm/newm-server", "name": "cbor-encoding-decoding", "description": "Guidance for encoding/decoding CBOR and interpreting cbor-hex/diag using cbor-diag.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/projectnewm/newm-server/blob/master/.agent/skills/cbor-encoding-decoding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:37:00Z"}, "embedding_text": "cbor-encoding-decoding. Guidance for encoding/decoding CBOR and interpreting cbor-hex/diag using cbor-diag. Platforms: claude_code."} +{"id": "c161a5e7733816cab9e79de81d8c7444754d026b42ee9438c16da47fd3a5fdf3", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "verify", "description": "Rigorous self-assessment checklist before marking any task as complete. Use when about to claim task completion, before final commit, when user asks \"is it done?\", or when transitioning from implement", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/development-harness/skills/verify-done/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "verify. Rigorous self-assessment checklist before marking any task as complete. Use when about to claim task completion, before final commit, when user asks \"is it done?\", or when transitioning from implement Platforms: claude_code."} +{"id": "7947d2a8cb16a59ff9278ac3163dd6a76589235b1c8086edec81c8a0282013f9", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "marketplace-publishing", "description": "Workflow for publishing skills and agents to the dotnet-skills Claude Code marketplace. Covers adding new content, updating plugin.json, validation, and release tagging.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/marketplace-publishing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install marketplace-publishing"}, "quality": {"stars": 1024, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T01:02:32Z"}, "embedding_text": "marketplace-publishing. Workflow for publishing skills and agents to the dotnet-skills Claude Code marketplace. Covers adding new content, updating plugin.json, validation, and release tagging. Platforms: claude_code."} +{"id": "c9d2a022b8e57d9ae52c960730556358de81769e3e75d60f246365605b8b9003", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "Art", "description": "Complete visual content system. USE WHEN user wants to create visual content, illustrations, diagrams, OR mentions art, header images, visualizations, mermaid, flowchart, technical diagram, infographi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "Art. Complete visual content system. USE WHEN user wants to create visual content, illustrations, diagrams, OR mentions art, header images, visualizations, mermaid, flowchart, technical diagram, infographi Platforms: claude_code."} +{"id": "0fa69883a31ff3baf316f5e35a78b3f7592384f4b5263153756da283804e99b9", "repo_url": "https://github.com/scientiacapital/skills", "name": "trading-signals", "description": "Technical analysis patterns - Elliott Wave, Wyckoff, Fibonacci, Markov Regime, and Turtle Trading with confluence detection. Use when analyzing charts, identifying trading signals, or calculating tech", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/trading-signals-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "trading-signals. Technical analysis patterns - Elliott Wave, Wyckoff, Fibonacci, Markov Regime, and Turtle Trading with confluence detection. Use when analyzing charts, identifying trading signals, or calculating tech Platforms: claude_code."} +{"id": "d78ca4191ed3789f8471aefdfe6c7016c60318f3b168ee5f561e8f9e58cb8140", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "sdk", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/vercel-ai-sdk-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "sdk. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "31f3c1433bf1187ae75880c5803bdb0bdca7eb501ac475f774b2fdee63edafcd", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "mcp-builder", "description": "\u521b\u5efa\u9ad8\u8d28\u91cf MCP\uff08\u6a21\u578b\u4e0a\u4e0b\u6587\u534f\u8bae\uff09\u670d\u52a1\u5668\u7684\u6307\u5357\uff0c\u4f7f LLM \u80fd\u591f\u901a\u8fc7\u7cbe\u5fc3\u8bbe\u8ba1\u7684\u5de5\u5177\u4e0e\u5916\u90e8\u670d\u52a1\u4ea4\u4e92\u3002\u5728\u6784\u5efa MCP \u670d\u52a1\u5668\u4ee5\u96c6\u6210\u5916\u90e8 API \u6216\u670d\u52a1\u65f6\u4f7f\u7528\uff0c\u65e0\u8bba\u662f Python (FastMCP) \u8fd8\u662f Node/TypeScript (MCP SDK)\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "mcp-builder. \u521b\u5efa\u9ad8\u8d28\u91cf MCP\uff08\u6a21\u578b\u4e0a\u4e0b\u6587\u534f\u8bae\uff09\u670d\u52a1\u5668\u7684\u6307\u5357\uff0c\u4f7f LLM \u80fd\u591f\u901a\u8fc7\u7cbe\u5fc3\u8bbe\u8ba1\u7684\u5de5\u5177\u4e0e\u5916\u90e8\u670d\u52a1\u4ea4\u4e92\u3002\u5728\u6784\u5efa MCP \u670d\u52a1\u5668\u4ee5\u96c6\u6210\u5916\u90e8 API \u6216\u670d\u52a1\u65f6\u4f7f\u7528\uff0c\u65e0\u8bba\u662f Python (FastMCP) \u8fd8\u662f Node/TypeScript (MCP SDK)\u3002 Platforms: claude_code."} +{"id": "64366a8a386c00750e906c9e82cb5b0223a0e21c60761f7bc036664dbf41116d", "repo_url": "https://github.com/eferro/augmentedcode-skills", "name": "test-desiderata", "description": "Analyze and improve test code quality using Kent Beck's Test Desiderata framework. Use when analyzing test files, reviewing test code, identifying test quality issues, suggesting test improvements, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eferro/augmentedcode-skills/blob/main/test-desiderata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T09:25:57Z"}, "embedding_text": "test-desiderata. Analyze and improve test code quality using Kent Beck's Test Desiderata framework. Use when analyzing test files, reviewing test code, identifying test quality issues, suggesting test improvements, or Platforms: claude_code."} +{"id": "941ddc18022780f1d2d678a9dfffbfedcb3e14a0a1c983b6415fade02a42a6c7", "repo_url": "https://github.com/yutkat/my-neovim-pluginlist", "name": "add", "description": "Categorize new Neovim plugins and insert them into the correct markdown category files", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yutkat/my-neovim-pluginlist/blob/main/.codex/skills/add/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 821, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:18:57Z"}, "embedding_text": "add. Categorize new Neovim plugins and insert them into the correct markdown category files Platforms: claude_code."} +{"id": "eac2cc33002a15f9120fa47d4498baa98ba16d1ff557316e55380d65555bb2ef", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "brainstorming", "description": "\u5728\u4efb\u4f55\u521b\u9020\u6027\u5de5\u4f5c\u4e4b\u524d\u5fc5\u987b\u4f7f\u7528\u6b64\u6280\u80fd\u2014\u2014\u521b\u5efa\u529f\u80fd\u3001\u6784\u5efa\u7ec4\u4ef6\u3001\u6dfb\u52a0\u529f\u80fd\u6216\u4fee\u6539\u884c\u4e3a\u3002\u5728\u5b9e\u73b0\u4e4b\u524d\u5148\u63a2\u7d22\u7528\u6237\u610f\u56fe\u3001\u9700\u6c42\u548c\u8bbe\u8ba1\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/brainstorming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "brainstorming. \u5728\u4efb\u4f55\u521b\u9020\u6027\u5de5\u4f5c\u4e4b\u524d\u5fc5\u987b\u4f7f\u7528\u6b64\u6280\u80fd\u2014\u2014\u521b\u5efa\u529f\u80fd\u3001\u6784\u5efa\u7ec4\u4ef6\u3001\u6dfb\u52a0\u529f\u80fd\u6216\u4fee\u6539\u884c\u4e3a\u3002\u5728\u5b9e\u73b0\u4e4b\u524d\u5148\u63a2\u7d22\u7528\u6237\u610f\u56fe\u3001\u9700\u6c42\u548c\u8bbe\u8ba1\u3002 Platforms: claude_code."} +{"id": "657c119de8cbe8015920b345461bb9ed8fbf93be005be9a5ca54d4accae6adeb", "repo_url": "https://github.com/triggerdotdev/skills", "name": "trigger-realtime", "description": "Subscribe to Trigger.dev task runs in real-time from frontend and backend. Use when building progress indicators, live dashboards, streaming AI/LLM responses, or React components that display task sta", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/triggerdotdev/skills/blob/main/trigger-realtime/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T11:16:43Z"}, "embedding_text": "trigger-realtime. Subscribe to Trigger.dev task runs in real-time from frontend and backend. Use when building progress indicators, live dashboards, streaming AI/LLM responses, or React components that display task sta Platforms: claude_code."} +{"id": "9e63ba0992e53b7c46ff5101c28cf074ce5b5b6688a0976d339edf9a48a75e43", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "pre-commit", "description": "Use when setting up automated code quality checks on git commit, configuring .pre-commit-config.yaml, implementing git hooks for formatting or linting, creating prepare-commit-msg hooks, or distributi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python-engineering/skills/pre-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "pre-commit. Use when setting up automated code quality checks on git commit, configuring .pre-commit-config.yaml, implementing git hooks for formatting or linting, creating prepare-commit-msg hooks, or distributi Platforms: claude_code."} +{"id": "91f1e4d0adefaf4aaeb6a230a48efb3fbabc3e52040e75556dd5ae842ae89230", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "theme-factory", "description": "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 t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "theme-factory. 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 t Platforms: claude_code."} +{"id": "7d5a0eb16d0214f26ecd85819a00c2f5fb41ef5972ff6a44c24f700170db723e", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "cto-advisor", "description": "Technical leadership guidance for engineering teams, architecture decisions, and technology strategy. Includes tech debt analyzer, team scaling calculator, engineering metrics frameworks, technology e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/c-level-advisor/cto-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "cto-advisor. Technical leadership guidance for engineering teams, architecture decisions, and technology strategy. Includes tech debt analyzer, team scaling calculator, engineering metrics frameworks, technology e Platforms: claude_code."} +{"id": "c85dac0748e0cc41a5335f4d69e1dd2e7f022e0c56b12ba290592d0ad2521b69", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "cfn-marketing-competitive-intel", "description": "A set of bash scripts that connect to n8n workflows for competitive intelligence tasks. It tracks brand mentions, competitor activity, trending topics, backlink profiles, and keyword rankings. The doc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/cfn-extras/skills/marketing/cfn-marketing-competitive-intel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "A", "skillhub_score": 7.2, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "cfn-marketing-competitive-intel. A set of bash scripts that connect to n8n workflows for competitive intelligence tasks. It tracks brand mentions, competitor activity, trending topics, backlink profiles, and keyword rankings. The doc Platforms: claude_code."} +{"id": "c486de949d3e6769fe80774108c649361edb7b16c30c7a699ee568c9310fd1ff", "repo_url": "https://github.com/sendaifun/skills", "name": "lulo", "description": "Complete guide for Lulo - Solana's premier lending aggregator. Covers API integration for deposits, withdrawals, balance queries, Protected/Boosted deposits, Custom deposits, and automated yield optimization across Kamino, Drift, MarginFi, and Jupiter.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/lulo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install lulo"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "lulo. Complete guide for Lulo - Solana's premier lending aggregator. Covers API integration for deposits, withdrawals, balance queries, Protected/Boosted deposits, Custom deposits, and automated yield optimization across Kamino, Drift, MarginFi, and Jupiter. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "701ff68846ed654b1709eaf2c387752bb372c9beb97bb56e5140ca0c06095226", "repo_url": "https://github.com/plurigrid/asi", "name": "planar-isotopy-screen", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/planar-isotopy-screen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "planar-isotopy-screen. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "cbc79ac12f4c22435eab5caad3bf7ab66c6b23255382a348c60a8d1cebfecd51", "repo_url": "https://github.com/plurigrid/asi", "name": "algorithmic-art", "description": "Creating algorithmic art using p5.js with seeded randomness and interactive", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "algorithmic-art. Creating algorithmic art using p5.js with seeded randomness and interactive Platforms: claude_code."} +{"id": "61c9488d7a65f50eb1abcd526b62d22337b170276fff615c1357831d2d87a6f8", "repo_url": "https://github.com/plurigrid/asi", "name": "parameter-dependent", "description": "Systems varying with external parameters", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/parameter-dependent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "parameter-dependent. Systems varying with external parameters Platforms: claude_code."} +{"id": "c9540ecb011cd0b78b3fe011fc9d00bcac5c40be2705a8ebc8b240593ca5ca8e", "repo_url": "https://github.com/plurigrid/asi", "name": "tailscale-mesh", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/tailscale-mesh/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "tailscale-mesh. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d06a847975e3d18b6e4b90f8a371f0a3869dde981a772bd9fe0a60cfd573d963", "repo_url": "https://github.com/plurigrid/asi", "name": "lyapunov-stability", "description": "Stability via Lyapunov's direct method", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/lyapunov-stability/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "lyapunov-stability. Stability via Lyapunov's direct method Platforms: claude_code."} +{"id": "4603ddc5948b3d02f89e298939753b4fa41d9fbff18cfd2f940ec140ff8f9fce", "repo_url": "https://github.com/plurigrid/asi", "name": "naturality-factor", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/naturality-factor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "naturality-factor. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a51a9d183baa95a56e3961207c6e3127acff00f9070a4df5d12bcdbe8bb91804", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-resource", "description": "\u667a\u80fd\u6307\u9488\u4e0e\u8d44\u6e90\u7ba1\u7406\u4e13\u5bb6\u3002\u5904\u7406 Box, Rc, Arc, Weak, RefCell, Cell, interior mutability, RAII, Drop, \u5806\u5206\u914d, \u5f15\u7528\u8ba1\u6570, \u667a\u80fd\u6307\u9488---", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-resource/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-resource. \u667a\u80fd\u6307\u9488\u4e0e\u8d44\u6e90\u7ba1\u7406\u4e13\u5bb6\u3002\u5904\u7406 Box, Rc, Arc, Weak, RefCell, Cell, interior mutability, RAII, Drop, \u5806\u5206\u914d, \u5f15\u7528\u8ba1\u6570, \u667a\u80fd\u6307\u9488--- Platforms: claude_code."} +{"id": "90c02fae94f7a7e5a7608a7c3af449807a2173179dcb5c07359f4214e7ad622f", "repo_url": "https://github.com/plurigrid/asi", "name": "spotify", "description": "Control Spotify playback and manage playlists. Play music, pause, skip tracks, search for songs/albums/artists, create playlists, add tracks, check what's playing, and manage your library. Requires Sp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/spotify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "spotify. Control Spotify playback and manage playlists. Play music, pause, skip tracks, search for songs/albums/artists, create playlists, add tracks, check what's playing, and manage your library. Requires Sp Platforms: claude_code."} +{"id": "d46c396b3fa5fccde42097e59a9be98daadc8cdaeb9954488fe4fd44339bfc2b", "repo_url": "https://github.com/plurigrid/asi", "name": "javascript-typescript", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/javascript-typescript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "javascript-typescript. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "13636fc19f2c54386b772540d44bd103c1148a6b198e243f4e4084a11a58c774", "repo_url": "https://github.com/i2y/castella", "name": "castella-agent-ui", "description": "Build chat interfaces and agent management UIs with Castella. Create chat components, display tool calls, manage multiple agents, and build agent hubs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/i2y/castella/blob/main/skills/castella-agent-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T04:00:38Z"}, "embedding_text": "castella-agent-ui. Build chat interfaces and agent management UIs with Castella. Create chat components, display tool calls, manage multiple agents, and build agent hubs. Platforms: claude_code."} +{"id": "06223c888687bee7d995d374ee4dfc5923082520966a54b54ba80c9fdbdfec33", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-coroutine", "description": "\u534f\u7a0b\u4e0e\u7eff\u8272\u7ebf\u7a0b\u4e13\u5bb6\u3002\u5904\u7406 generator, suspend/resume, stackful coroutine, stackless coroutine, context switch, \u534f\u7a0b, \u7eff\u8272\u7ebf\u7a0b, \u4e0a\u4e0b\u6587\u5207\u6362, \u751f\u6210\u5668---", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-coroutine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-coroutine. \u534f\u7a0b\u4e0e\u7eff\u8272\u7ebf\u7a0b\u4e13\u5bb6\u3002\u5904\u7406 generator, suspend/resume, stackful coroutine, stackless coroutine, context switch, \u534f\u7a0b, \u7eff\u8272\u7ebf\u7a0b, \u4e0a\u4e0b\u6587\u5207\u6362, \u751f\u6210\u5668--- Platforms: claude_code."} +{"id": "48082116fcbbed2341ea04a2d1a6698100ffff6a625933da51f552f7d16761b5", "repo_url": "https://github.com/i2y/castella", "name": "castella-a2a", "description": "Connect to A2A protocol agents from Castella. Communicate with agents, display agent cards, send messages, handle responses, and stream results.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/i2y/castella/blob/main/skills/castella-a2a/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T04:00:38Z"}, "embedding_text": "castella-a2a. Connect to A2A protocol agents from Castella. Communicate with agents, display agent cards, send messages, handle responses, and stream results. Platforms: claude_code."} +{"id": "a97fcf04d3bf9d4646558f6a0c7b0e9ffbbafd5b6e76a82687383c4e60466699", "repo_url": "https://github.com/plurigrid/asi", "name": "tailscale-localsend", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/tailscale-localsend/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "tailscale-localsend. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "77888cd1302b876c16d45aa21e9cd08dba4bb3c48dfd1d9657904ce21c02b1c8", "repo_url": "https://github.com/plurigrid/asi", "name": "image-enhancer", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/image-enhancer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "image-enhancer. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "083d09b6f7cd7bdd2bd7028c9607be00214a4286557d27c87b9a6c7d0c5e532c", "repo_url": "https://github.com/weizhena/deep-research-skills", "name": "research", "description": "Conduct preliminary research on a topic and generate research outline. For academic research, benchmark research, technology selection, etc.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/weizhena/deep-research-skills/blob/master/skills/research-codex-en/research-add-fields/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install research"}, "quality": {"stars": 1261, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-07T16:08:07Z"}, "embedding_text": "research. Conduct preliminary research on a topic and generate research outline. For academic research, benchmark research, technology selection, etc. Platforms: claude_code."} +{"id": "190bebff92efd7d08092fa819d2eebeac1fca830d26348cd89da95260f8813f5", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "quality-advisor", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/quality-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "quality-advisor. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9463bd56ac1a6199462bb7fe54a50e7ce0ab31989117950196473b30f1965725", "repo_url": "https://github.com/plurigrid/asi", "name": "semi-conjugacy", "description": "Surjective map intertwining two dynamical systems", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/semi-conjugacy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "semi-conjugacy. Surjective map intertwining two dynamical systems Platforms: claude_code."} +{"id": "5a9999f3ed11d75b120b77e68a20460f63eb214a199ebacef2cafc0a13c19478", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-gpu", "description": "GPU \u5185\u5b58\u4e0e\u8ba1\u7b97\u4e13\u5bb6\u3002\u5904\u7406 CUDA, OpenCL, GPU memory, compute shader, memory coalescing, zero-copy, \u663e\u5b58\u7ba1\u7406, \u5f02\u6784\u8ba1\u7b97---", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-gpu/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-gpu. GPU \u5185\u5b58\u4e0e\u8ba1\u7b97\u4e13\u5bb6\u3002\u5904\u7406 CUDA, OpenCL, GPU memory, compute shader, memory coalescing, zero-copy, \u663e\u5b58\u7ba1\u7406, \u5f02\u6784\u8ba1\u7b97--- Platforms: claude_code."} +{"id": "f9497346392c112cad2a7c1fa4e4a447282e84a9d59eb79490101e593a126149", "repo_url": "https://github.com/plurigrid/asi", "name": "bumpus-narratives", "description": "Sheaves on time categories for compositional temporal reasoning. Bumpus", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/bumpus-narratives/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "bumpus-narratives. Sheaves on time categories for compositional temporal reasoning. Bumpus Platforms: claude_code."} +{"id": "6e60e71b585a3777e658c1134ecf4e0e0e93bf2d594300487c1a7fc2bc1965f9", "repo_url": "https://github.com/plurigrid/asi", "name": "ruler", "description": "Unified AI agent configuration propagation across 18+ coding assistants.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/mruler/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ruler. Unified AI agent configuration propagation across 18+ coding assistants. Platforms: claude_code."} +{"id": "ded77cf1c88f48f230f1d2fc19b2da99ba2a4149e2f5127d26f01ea7e8ad60e1", "repo_url": "https://github.com/plurigrid/asi", "name": "equilibrium", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/lib/HYJAX_RELATIONAL_SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "equilibrium. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2d786a7511d575fefe0c23a207f1bf4c29a89d3dfd460bdfe5097182df108cfd", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "writing-style", "description": "Writing guidelines for clear, economical prose. Reference this skill when creating or enhancing note content.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/writing-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "writing-style. Writing guidelines for clear, economical prose. Reference this skill when creating or enhancing note content. Platforms: claude_code."} +{"id": "2288189e37c13d10b4c55a9e2fd45214430db843806889bfbe0cacb21ebb3363", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "building-chatgpt-apps", "description": "Guides creation of ChatGPT Apps with interactive widgets using OpenAI Apps SDK and MCP servers.\nUse when building ChatGPT custom apps with visual UI components, embedded widgets, or rich\ninteractive e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/building-chatgpt-apps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "building-chatgpt-apps. Guides creation of ChatGPT Apps with interactive widgets using OpenAI Apps SDK and MCP servers.\nUse when building ChatGPT custom apps with visual UI components, embedded widgets, or rich\ninteractive e Platforms: claude_code."} +{"id": "6d572af60a9beac0d4b645074643ddf755348e0488e1122a2992b55fe993f028", "repo_url": "https://github.com/bingud/filemat", "name": "create-opencode-skill", "description": "Use this skill to create or update OpenCode Skills or skill files.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bingud/filemat/blob/main/.opencode/skills/create-opencode-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T17:12:10Z"}, "embedding_text": "create-opencode-skill. Use this skill to create or update OpenCode Skills or skill files. Platforms: claude_code."} +{"id": "b55019e2f85da838bd676d31abe5316c00e69e880282c1624e6569de4930c55b", "repo_url": "https://github.com/congdon1207/agents.md", "name": "docs-seeker", "description": "Search technical documentation using executable scripts to detect query type, fetch from llms.txt sources (context7.com), and analyze results. Use when user needs: (1) Topic-specific documentation (fe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/docs-seeker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "docs-seeker. Search technical documentation using executable scripts to detect query type, fetch from llms.txt sources (context7.com), and analyze results. Use when user needs: (1) Topic-specific documentation (fe Platforms: claude_code."} +{"id": "46e552943036b43d400f595bdfb1fb8051e9f6bf1fdb4f3e4f4c4dcd1f2848aa", "repo_url": "https://github.com/navi-language/navi", "name": "navi", "description": "Navi programming language expert. Use when writing Navi code, implementing features, handling errors, or working with Navi's type system, concurrency, and modules. Navi is a high-performance, statical", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/navi-language/navi/blob/main/.claude/skills/navi-stream/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 104, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T12:05:01Z"}, "embedding_text": "navi. Navi programming language expert. Use when writing Navi code, implementing features, handling errors, or working with Navi's type system, concurrency, and modules. Navi is a high-performance, statical Platforms: claude_code."} +{"id": "8d5c198be8929b24f2a64c647c6d6afa00c01181279cf52eaa1c68818dec3c72", "repo_url": "https://github.com/plurigrid/asi", "name": "propagators", "description": "Sussman/Radul propagator networks for constraint propagation and bidirectional", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/propagators/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "propagators. Sussman/Radul propagator networks for constraint propagation and bidirectional Platforms: claude_code."} +{"id": "7c13f11a8d828a6fa2810ce0edfd2925cc342eea98341e6383d1295b140cbfb8", "repo_url": "https://github.com/plurigrid/asi", "name": "map-projection", "description": "Map Projection Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/map-projection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "map-projection. Map Projection Skill Platforms: claude_code."} +{"id": "8573e5f99d81cdae4145aa42c53332422bb7aa33c0f22151dabd92690dd9866b", "repo_url": "https://github.com/robertguss/claude-skills", "name": "dhh-writing", "description": "This skill should be used when writing in the distinctive style of David Heinemeier Hansson (DHH). It applies when creating blog posts, technical articles, business content, manifestos, or any prose r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/plugins/compound-writing/skills/dhh-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "dhh-writing. This skill should be used when writing in the distinctive style of David Heinemeier Hansson (DHH). It applies when creating blog posts, technical articles, business content, manifestos, or any prose r Platforms: claude_code."} +{"id": "e47ba077736545b1bfd0329f79a151f4ec2b983470d0c782e5bf4145d6e796b7", "repo_url": "https://github.com/xdg/xdg-claude", "name": "code-structure", "description": "Extract file structure (functions, classes, exports) efficiently without reading entire files, using ast-grep, go doc, ctags, or other language-specific tools to get outlines and signatures", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xdg/xdg-claude/blob/main/context-efficient-tools/skills/code-structure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T13:26:18Z"}, "embedding_text": "code-structure. Extract file structure (functions, classes, exports) efficiently without reading entire files, using ast-grep, go doc, ctags, or other language-specific tools to get outlines and signatures Platforms: claude_code."} +{"id": "e98047c12098dac579cb73caf43547243ecc84201d3c1d9026256bcc2e946b77", "repo_url": "https://github.com/plurigrid/asi", "name": "move-smith-fuzzer", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/move-smith-fuzzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "move-smith-fuzzer. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f826264812edec75ebd3140a428cdafa2092da020398f418905b757bafa4d3ed", "repo_url": "https://github.com/team-attention/hoyeon", "name": "council", "description": "This skill should be used when the user says \"/council\", \"council\", \"deliberate\",\n\"multi-perspective decision\", \"\ud2b8\ub808\uc774\ub4dc\uc624\ud504 \ubd84\uc11d\", \"\uc704\uc6d0\ud68c \uc18c\uc9d1\", \"\uc5ec\ub7ec \uad00\uc810\uc73c\ub85c \uac80\ud1a0\",\nor wants deep multi-perspective deliberation with t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/council/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "council. This skill should be used when the user says \"/council\", \"council\", \"deliberate\",\n\"multi-perspective decision\", \"\ud2b8\ub808\uc774\ub4dc\uc624\ud504 \ubd84\uc11d\", \"\uc704\uc6d0\ud68c \uc18c\uc9d1\", \"\uc5ec\ub7ec \uad00\uc810\uc73c\ub85c \uac80\ud1a0\",\nor wants deep multi-perspective deliberation with t Platforms: claude_code."} +{"id": "4aed7c81227444cc3a440e17cb4d4b5d9228206b989bc30bd8e4d7d3ef1ca91c", "repo_url": "https://github.com/plurigrid/asi", "name": "world-memory-worlding", "description": "World memory is world remembering is world worlding - the autopoietic loop where memory enables remembering enables worlding enables memory", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/world-memory-worlding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "world-memory-worlding. World memory is world remembering is world worlding - the autopoietic loop where memory enables remembering enables worlding enables memory Platforms: claude_code."} +{"id": "fa4919e7e684428b41c50f62a317a3ab820602caf6fb53951de4dbb1d251918c", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "commit-validator", "description": "Validates commit messages against Conventional Commits specification using programmatic validation. Replaces the git-conventional-commit-messages text file with a tool that provides instant feedback.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/commit-validator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "commit-validator. Validates commit messages against Conventional Commits specification using programmatic validation. Replaces the git-conventional-commit-messages text file with a tool that provides instant feedback. Platforms: claude_code."} +{"id": "bc9e783327dfa661d52b2b757f5a0b4de093ed401ebb4104bd11387845387e25", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "operations-specialist", "description": "\u63d0\u4f9b\u8fd0\u8425\u5206\u6790\u3001\u8d22\u52a1\u8ddf\u8e2a\u3001\u57fa\u7840\u8bbe\u65bd\u7ef4\u62a4\u548c\u5ba2\u6237\u652f\u6301\u80fd\u529b\u3002\u5f53\u9700\u8981\u5904\u7406\u8fd0\u8425\u4efb\u52a1\u3001\u751f\u6210\u62a5\u544a\u6216\u7ef4\u62a4\u7cfb\u7edf\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/operations-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "operations-specialist. \u63d0\u4f9b\u8fd0\u8425\u5206\u6790\u3001\u8d22\u52a1\u8ddf\u8e2a\u3001\u57fa\u7840\u8bbe\u65bd\u7ef4\u62a4\u548c\u5ba2\u6237\u652f\u6301\u80fd\u529b\u3002\u5f53\u9700\u8981\u5904\u7406\u8fd0\u8425\u4efb\u52a1\u3001\u751f\u6210\u62a5\u544a\u6216\u7ef4\u62a4\u7cfb\u7edf\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "a7608da4f8d7155e9511dc8e3bf08f63a68e78a30a76539541d53d4d04deafed", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "ml-paper-writing", "description": "Write publication-ready ML/AI papers for NeurIPS, ICML, ICLR, ACL, AAAI, COLM.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/ml-paper-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "ml-paper-writing. Write publication-ready ML/AI papers for NeurIPS, ICML, ICLR, ACL, AAAI, COLM. Platforms: claude_code."} +{"id": "670aae419bb3d6f155690a3884d658a711a219f2bda15eeda0b69ce66fe7f294", "repo_url": "https://github.com/artwist-polyakov/polyakov-claude-skills", "name": "yandex-wordstat", "description": "Analyze search demand via Yandex Wordstat API", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artwist-polyakov/polyakov-claude-skills/blob/main/plugins/yandex-wordstat/skills/yandex-wordstat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 164, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-10T07:24:23Z"}, "embedding_text": "yandex-wordstat. Analyze search demand via Yandex Wordstat API Platforms: claude_code."} +{"id": "4929c247be9330a0b8343c7da574f0c3748402388926e0f6596a5d82105d2e99", "repo_url": "https://github.com/malob/nix-config", "name": "search-tips", "description": "This skill should be used when performing web research beyond a simple single search -- looking into topics, comparing options, investigating questions, finding recommendations, or any task where effective use of Exa, Firecrawl, and Reddit tools matters. Triggers on \"research\", \"look into\", \"investigate\", \"compare\", \"find out about\", \"search for\", \"find information\", \"what do people think about\", \"what are the best\", \"look up\", or multi-source search tasks. Also invocable explicitly by deep-research team members via the Skill tool.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/skills/search-tips/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install search-tips"}, "quality": {"stars": 460, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:26:28Z"}, "embedding_text": "search-tips. This skill should be used when performing web research beyond a simple single search -- looking into topics, comparing options, investigating questions, finding recommendations, or any task where effective use of Exa, Firecrawl, and Reddit tools matters. Triggers on \"research\", \"look into\", \"investigate\", \"compare\", \"find out about\", \"search for\", \"find information\", \"what do people think about\", \"what are the best\", \"look up\", or multi-source search tasks. Also invocable explicitly by deep-research team members via the Skill tool. Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} +{"id": "5215cb68baa9edfe1075d8354a4ee47406c8e9db02b3b30261d793fbc2037eaa", "repo_url": "https://github.com/plurigrid/asi", "name": "dialectica", "description": "Dialectica Skill (ERGODIC 0)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/dialectica/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "dialectica. Dialectica Skill (ERGODIC 0) Platforms: claude_code."} +{"id": "0ce05ff667666f348d6d3b75c901fe1d33c35c04f0f865c6bac1beac73cdafa8", "repo_url": "https://github.com/apollographql/skills", "name": "apollo-server", "description": "Guide for building GraphQL servers with Apollo Server 5.x. Use this skill when: (1) setting up a new Apollo Server project, (2) writing resolvers or defining GraphQL schemas, (3) implementing authenti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/apollographql/skills/blob/main/skills/apollo-server/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 86, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:14:23Z"}, "embedding_text": "apollo-server. Guide for building GraphQL servers with Apollo Server 5.x. Use this skill when: (1) setting up a new Apollo Server project, (2) writing resolvers or defining GraphQL schemas, (3) implementing authenti Platforms: claude_code."} +{"id": "3d93e4b607de476c3462c1efc7ac8d582579a804c7205ea9e5988651517a472a", "repo_url": "https://github.com/majiayu000/claude-skill-registry-data", "name": "generate-sdk-types", "description": "Generates TypeScript type definitions for SDK from Rust tool schemas, ensuring type safety between server and client", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry-data/blob/main/data/s/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T04:55:53Z"}, "embedding_text": "generate-sdk-types. Generates TypeScript type definitions for SDK from Rust tool schemas, ensuring type safety between server and client Platforms: claude_code."} +{"id": "cf8328a90a5f5148635e9691b1bc32e18d2b109c6360135d973f01ddc357d5da", "repo_url": "https://github.com/plurigrid/asi", "name": "amp-team-usage", "description": "Amp Team Usage", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/amp-team-usage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "amp-team-usage. Amp Team Usage Platforms: claude_code."} +{"id": "77f1534d1d6491670d1cd384e744e8bc6f83a75c44ec0b19c22b1b3dc434337b", "repo_url": "https://github.com/thepexcel/agent-skills", "name": "explain-concepts", "description": "Explains difficult concepts using master teaching methodologies (Feynman, Socratic, Cognitive Load, Dual Coding). Use when user asks to explain a concept, \"I don't understand X\", ELI5 requests, \"what", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thepexcel/agent-skills/blob/main/explain-concepts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-07T09:54:47Z"}, "embedding_text": "explain-concepts. Explains difficult concepts using master teaching methodologies (Feynman, Socratic, Cognitive Load, Dual Coding). Use when user asks to explain a concept, \"I don't understand X\", ELI5 requests, \"what Platforms: claude_code."} +{"id": "c227a745fc877870bf1d756879952ffe67b4445a41ec9d5a190f1fd5d79b17c2", "repo_url": "https://github.com/xenitv1/antigravity-workflows", "name": "app-builder", "description": "Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xenitv1/antigravity-workflows/blob/main/skills/app-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 131, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T19:01:50Z"}, "embedding_text": "app-builder. Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents. Platforms: claude_code."} +{"id": "ac8bf346e5a4ae1bf30dd5fe78803513535016d37dee86c188f8549b53ce1e6b", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "code-style-validator", "description": "Programmatic code style validation using AST analysis. Complements (not replaces) code-style rules by providing automated checking and instant feedback.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/code-style-validator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "code-style-validator. Programmatic code style validation using AST analysis. Complements (not replaces) code-style rules by providing automated checking and instant feedback. Platforms: claude_code."} +{"id": "568b126a3999bcec21ce2b31da03a26674ddd68e15bef3e6dfb6de803fa17270", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "compliance-check", "description": "Verify and enforce coding standards, AI guidelines, and workspace compliance across repositories. Use for standards propagation, compliance verification, and enforcing development best practices.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/business/legal/compliance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "compliance-check. Verify and enforce coding standards, AI guidelines, and workspace compliance across repositories. Use for standards propagation, compliance verification, and enforcing development best practices. Platforms: claude_code."} +{"id": "c8ddb3dedc72cb924027e6bd54a364599d9871b177387746445056ea302ba2cf", "repo_url": "https://github.com/plurigrid/asi", "name": "_integrated", "description": "Unified Plurigrid ASI skill combining ACSets, Gay-MCP colors, bisimulation games, world-hopping, glass-bead synthesis, and triad interleaving for autonomous skill dispersal.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/_integrated/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "_integrated. Unified Plurigrid ASI skill combining ACSets, Gay-MCP colors, bisimulation games, world-hopping, glass-bead synthesis, and triad interleaving for autonomous skill dispersal. Platforms: claude_code."} +{"id": "f7907ccd4f3b4d14e8f7f1f106798e12bd37cba9f1dfbf2380559bb0398ac6ca", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "inno-idea-generation", "description": "Facilitates structured brainstorming sessions, conducts comprehensive research, and generates creative solutions using proven frameworks.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/inno-idea-generation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "inno-idea-generation. Facilitates structured brainstorming sessions, conducts comprehensive research, and generates creative solutions using proven frameworks. Platforms: claude_code."} +{"id": "7f69f4d3a0f704163fdac7c4daeced80d6d847094285e0c6e910d6e126f06f6c", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "browsing-with-playwright", "description": "Browser automation using Playwright MCP. Navigate websites, fill forms, click elements,\ntake screenshots, and extract data. Use when tasks require web browsing, form submission,\nweb scraping, UI testi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/browsing-with-playwright/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "browsing-with-playwright. Browser automation using Playwright MCP. Navigate websites, fill forms, click elements,\ntake screenshots, and extract data. Use when tasks require web browsing, form submission,\nweb scraping, UI testi Platforms: claude_code."} +{"id": "473a2b5427b088575e5e35c0f4c1d2d5e46432ff3ba5889afb0cd4135d449a1c", "repo_url": "https://github.com/scientiacapital/skills", "name": "unsloth-training", "description": "Fine-tune LLMs with Unsloth using GRPO or SFT. Supports FP8, vision models, mobile deployment, Docker, packing, GGUF export. Use when: train with GRPO, fine-tune, reward functions, SFT training, FP8 t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/unsloth-training-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "unsloth-training. Fine-tune LLMs with Unsloth using GRPO or SFT. Supports FP8, vision models, mobile deployment, Docker, packing, GGUF export. Use when: train with GRPO, fine-tune, reward functions, SFT training, FP8 t Platforms: claude_code."} +{"id": "a75d9815691473a16d0c21b7ae0830d398beca648cc9c1de971db3a7f501ba3f", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "harbor-expert", "description": "Expert Harbor container registry administrator specializing in registry operations, vulnerability scanning with Trivy, artifact signing with Notary, RBAC, and multi-region replication. Use when managi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/harbor-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "harbor-expert. Expert Harbor container registry administrator specializing in registry operations, vulnerability scanning with Trivy, artifact signing with Notary, RBAC, and multi-region replication. Use when managi Platforms: claude_code."} +{"id": "1cda4f1514eebaee8ae8aa2d4d5bc1ae95cee1a8f354be6c75ebbe5ee3a3efa8", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "amikonet", "description": "Interact with AmikoNet decentralized social network for AI Agents", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/amikonet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "amikonet. Interact with AmikoNet decentralized social network for AI Agents Platforms: claude_code."} +{"id": "85f31f0738440e059012b9dfbb6ab24fa3453e62b232f48702891a392958f635", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "ionic-design", "description": "Guide to using Ionic Framework components for beautiful native-looking Capacitor apps. Covers component usage, theming, platform-specific styling, and best practices for mobile UI. Use this skill when", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-ui/skills/ionic-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "ionic-design. Guide to using Ionic Framework components for beautiful native-looking Capacitor apps. Covers component usage, theming, platform-specific styling, and best practices for mobile UI. Use this skill when Platforms: claude_code."} +{"id": "2f790f4ab29a7207b115b424fe059b5b3494e4f1ec7aac523e56973d16f4a0eb", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-advocacy", "description": "When the user wants to do developer advocacy activities including conference talks, live coding, podcasts, and building in public. Trigger phrases include \"developer advocacy,\" \"devrel,\" \"conference t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-advocacy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-advocacy. When the user wants to do developer advocacy activities including conference talks, live coding, podcasts, and building in public. Trigger phrases include \"developer advocacy,\" \"devrel,\" \"conference t Platforms: claude_code."} +{"id": "b085bd5518e3b6e8c47379b90e018e51a04e8db6d65ac7309ad921d7dffa1a48", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "web3-security-analysis", "description": "Analyze Web3 security risks with SpoonOS agents. Use when checking token safety (honeypots, rugs), simulating transactions, detecting MEV, or auditing contracts.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/web3-data-intelligence/security-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "web3-security-analysis. Analyze Web3 security risks with SpoonOS agents. Use when checking token safety (honeypots, rugs), simulating transactions, detecting MEV, or auditing contracts. Platforms: claude_code."} +{"id": "7c1adccdc552f028e62ce656decb9a2dc0f8b65d448937980b94df4e0c4a42b2", "repo_url": "https://github.com/plurigrid/asi", "name": "pkg-memory-bridge", "description": "Bridge to PKG systems (Mem0, Graphiti, Solid PODs, Logseq) for individuated information indices", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/pkg-memory-bridge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "pkg-memory-bridge. Bridge to PKG systems (Mem0, Graphiti, Solid PODs, Logseq) for individuated information indices Platforms: claude_code."} +{"id": "ba252666b285c1191c0417608c54997a24f327eb4972ee3bc2ab9dffcc680003", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "devops-specialist", "description": "\u63d0\u4f9b\u90e8\u7f72\u3001CI/CD\u3001\u57fa\u7840\u8bbe\u65bd\u7ba1\u7406\u548c DevOps \u81ea\u52a8\u5316\u80fd\u529b\u3002\u5f53\u9700\u8981\u90e8\u7f72\u5e94\u7528\u3001\u914d\u7f6e\u57fa\u7840\u8bbe\u65bd\u6216\u4f18\u5316\u5f00\u53d1\u6d41\u7a0b\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/devops-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "devops-specialist. \u63d0\u4f9b\u90e8\u7f72\u3001CI/CD\u3001\u57fa\u7840\u8bbe\u65bd\u7ba1\u7406\u548c DevOps \u81ea\u52a8\u5316\u80fd\u529b\u3002\u5f53\u9700\u8981\u90e8\u7f72\u5e94\u7528\u3001\u914d\u7f6e\u57fa\u7840\u8bbe\u65bd\u6216\u4f18\u5316\u5f00\u53d1\u6d41\u7a0b\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "566da09f69f1a30dd3f40b9f4d3c90a1e660510ace26da30fe80f71b37d3b76b", "repo_url": "https://github.com/teamwiseflow/wiseflow", "name": "new-media-editor", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/teamwiseflow/wiseflow/blob/master/_disabled/skills/affiliate-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 8264, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T05:13:32Z"}, "embedding_text": "new-media-editor. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "616407c4a4d65dcf84cf6b6d65a0404197fdfa416530e47c3723b97ef7e9764b", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "weavedb.backup-20260102-004437", "description": "Comprehensive assistance with weavedb", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/data-services/weavedb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "weavedb.backup-20260102-004437. Comprehensive assistance with weavedb Platforms: claude_code."} +{"id": "bf1ac2f0a28fa3e41fe31dd2f907948bc2fb9012c0ce51794ad5c08ec9daa359", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "agent-cc", "description": "Agent Credit Cards - give your agents single and multiuse credit cards so they can securely make purchases with fixed balances.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "agent-cc. Agent Credit Cards - give your agents single and multiuse credit cards so they can securely make purchases with fixed balances. Platforms: claude_code."} +{"id": "8ee56af1f3af44468c21c9883f57f81bdf2965ed941af60c67105070dcf7099d", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "sapience", "description": "Prediction markets on Ethereal. Trade outcomes, provide liquidity, claim winnings.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/backend/api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "sapience. Prediction markets on Ethereal. Trade outcomes, provide liquidity, claim winnings. Platforms: claude_code."} +{"id": "2733d8cb55b6526adaf4865a5fca7b11bc271de98bed22784a5e2fd9b7603adb", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "writing-skills", "description": "\u5f53\u521b\u5efa\u65b0\u6280\u80fd\u3001\u7f16\u8f91\u73b0\u6709\u6280\u80fd\u6216\u5728\u90e8\u7f72\u524d\u9a8c\u8bc1\u6280\u80fd\u662f\u5426\u6709\u6548\u65f6\u4f7f\u7528", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/writing-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "writing-skills. \u5f53\u521b\u5efa\u65b0\u6280\u80fd\u3001\u7f16\u8f91\u73b0\u6709\u6280\u80fd\u6216\u5728\u90e8\u7f72\u524d\u9a8c\u8bc1\u6280\u80fd\u662f\u5426\u6709\u6548\u65f6\u4f7f\u7528 Platforms: claude_code."} +{"id": "52ebcf446ed40672f1578e8362907fc011cf7b8555e3e8c22e8c7d613fc50883", "repo_url": "https://github.com/n8n-io/n8n", "name": "db", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/n8n-io/n8n/blob/master/.agents/skills/db-migrations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193537, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:19:28Z"}, "embedding_text": "db. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "a938c72cbed01c1dba2dbe803bf5768a055b838c3a837bb8aaf0c278d8fcff78", "repo_url": "https://github.com/p4nda0s/reverse-skills", "name": "rev-struct", "description": "Reconstruct data structures by analyzing memory access patterns across functions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/p4nda0s/reverse-skills/blob/main/skills/rev-struct/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1352, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-06T12:46:29Z"}, "embedding_text": "rev-struct. Reconstruct data structures by analyzing memory access patterns across functions Platforms: claude_code."} +{"id": "76b63b117c6e92142cda6add508c3cc69bd36f7961e0ac2baa62b9c1bd746f2d", "repo_url": "https://github.com/scientiacapital/skills", "name": "agent-capability-matrix", "description": "Map task types to the best agent, skill, model, and fallback. Route any task to the right tool. Use when: which agent, route task, agent for this, best agent, capability matrix.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/agent-capability-matrix-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "agent-capability-matrix. Map task types to the best agent, skill, model, and fallback. Route any task to the right tool. Use when: which agent, route task, agent for this, best agent, capability matrix. Platforms: claude_code."} +{"id": "8c6b29313b86238aa7ae3d73125ce20a13f1a099cab5d0b4505eb11f3fc46eff", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "uwu", "description": "MizukiAI's UwU Club. Grow m/uwu with a cute UwU tone + proof hub workflow.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/uwu/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "uwu. MizukiAI's UwU Club. Grow m/uwu with a cute UwU tone + proof hub workflow. Platforms: claude_code."} +{"id": "5b2e05547ece1f2b6bb3cd7d16b8c179d9ffcd830e8808149d38d3fb98009869", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "api-integration-builder", "description": "Build reliable third-party API integrations including OAuth, webhooks, rate limiting, error handling, and data sync. Use when integrating with external services (Slack, Stripe, Gmail, etc.), building", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/api-integration-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "api-integration-builder. Build reliable third-party API integrations including OAuth, webhooks, rate limiting, error handling, and data sync. Use when integrating with external services (Slack, Stripe, Gmail, etc.), building Platforms: claude_code."} +{"id": "fc4f4d070a910ec815db0e5b3b3d399c32476a5e8d39034875d8dbf9020c5612", "repo_url": "https://github.com/plurigrid/asi", "name": "narya-hatchery", "description": "Narya Hatchery", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/narya-hatchery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "narya-hatchery. Narya Hatchery Platforms: claude_code."} +{"id": "f6d53345bd4ccc532e5b2538831ca50dd7bed4ff4bca5d6fbcacc0aad4b53b9d", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "242b60d32b237e6789067116f6e3e064e0d04d69e0757192897ca33df25bcdfb", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "branch-workflow", "description": "Git branch workflow for autonomous work. Apply when implementing features, fixes, or any code changes.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/branch-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install branch-workflow"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "branch-workflow. Git branch workflow for autonomous work. Apply when implementing features, fixes, or any code changes. Platforms: claude_code."} +{"id": "3823a87e292933b0e2e3b7638b742f52aa327d2695bae473c46566c96271a912", "repo_url": "https://github.com/congdon1207/agents.md", "name": "ai-artist", "description": "Write and optimize prompts for AI-generated outcomes across text and image models. Use when crafting prompts for LLMs (Codex, GPT, Gemini), image generators (Midjourney, DALL-E, Stable Diffusion, Imag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/ai-artist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "ai-artist. Write and optimize prompts for AI-generated outcomes across text and image models. Use when crafting prompts for LLMs (Codex, GPT, Gemini), image generators (Midjourney, DALL-E, Stable Diffusion, Imag Platforms: claude_code."} +{"id": "24c67b1ac2ef8fc04d7f13445c919250b91bb92c05e1086cfb9e4615571228d5", "repo_url": "https://github.com/plurigrid/asi", "name": "whitehole-audio", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/whitehole-audio/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "whitehole-audio. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "cf990fcc78f63910a63fcd10325ce74c7a43fcedbc2bdd079205fa856f15d9a5", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "building-mcp-servers", "description": "Guides creation of high-quality MCP (Model Context Protocol) servers that enable LLMs\nto interact with external services through well-designed tools. Use when building MCP\nservers to integrate externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/building-mcp-servers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "building-mcp-servers. Guides creation of high-quality MCP (Model Context Protocol) servers that enable LLMs\nto interact with external services through well-designed tools. Use when building MCP\nservers to integrate externa Platforms: claude_code."} +{"id": "4f5fee0ebf4e4be9e36cebf07e5541467c89310171582252d766ea0498f16f21", "repo_url": "https://github.com/aspiers/ai-config", "name": "editorconfig", "description": "Generate a .editorconfig file for a repository", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/editorconfig/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "editorconfig. Generate a .editorconfig file for a repository Platforms: claude_code."} +{"id": "e5a1fc59102d3330b0b9410ccdbe31ae5894e35055dd25bd82fc90522f572e59", "repo_url": "https://github.com/plurigrid/asi", "name": "video-downloader", "description": "Downloads videos from YouTube and other platforms for offline viewing,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/video-downloader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "video-downloader. Downloads videos from YouTube and other platforms for offline viewing, Platforms: claude_code."} +{"id": "5349142155de7accac8491574185a44649b1945e57703251e76d454318b7676d", "repo_url": "https://github.com/anthropics/knowledge-work-plugins", "name": "memory-management", "description": "Two-tier memory system that makes Claude a true workplace collaborator. Decodes shorthand, acronyms, nicknames, and internal language so Claude understands requests like a colleague would. CLAUDE.md f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/knowledge-work-plugins/blob/main/productivity/skills/memory-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21662, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T13:47:45Z"}, "embedding_text": "memory-management. Two-tier memory system that makes Claude a true workplace collaborator. Decodes shorthand, acronyms, nicknames, and internal language so Claude understands requests like a colleague would. CLAUDE.md f Platforms: claude_code."} +{"id": "ce7825f1fdc6f82e0ceb0dad9c6182fc37896a789bb1ce28ee3618d636630277", "repo_url": "https://github.com/plurigrid/asi", "name": "python-development", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/python-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "python-development. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "96185d162047ca822e4fcaa96286db4c280f0d028f0d3d74a89d849995fcef3d", "repo_url": "https://github.com/robertguss/claude-skills", "name": "writing-orchestration", "description": "This skill should be used when orchestrating complex writing workflows with multiple phases. It provides two-agent orchestration patterns, the two-gate content readiness assessment, 10 baseline writin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/plugins/compound-writing/skills/writing-orchestration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "writing-orchestration. This skill should be used when orchestrating complex writing workflows with multiple phases. It provides two-agent orchestration patterns, the two-gate content readiness assessment, 10 baseline writin Platforms: claude_code."} +{"id": "87aced6123cc1fa1796995a7c56e90a7d37455f04dc784ca5b36d9d6ece2b492", "repo_url": "https://github.com/arvindand/agent-skills", "name": "github-navigator", "description": "GitHub operations via gh CLI. CRITICAL: Always use instead of WebFetch for ANY github.com URL. Use when user provides GitHub URL, says 'facebook/react', 'show README', 'list issues', 'check PR', 'clon", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arvindand/agent-skills/blob/main/skills/github-navigator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T22:50:41Z"}, "embedding_text": "github-navigator. GitHub operations via gh CLI. CRITICAL: Always use instead of WebFetch for ANY github.com URL. Use when user provides GitHub URL, says 'facebook/react', 'show README', 'list issues', 'check PR', 'clon Platforms: claude_code."} +{"id": "f4323bca8a4c6604d99c8b459b0aa5fbec36f7c98a5ed470dec4c1f79dbc284f", "repo_url": "https://github.com/enbyaugust/zacs-claude-skills", "name": "migration-test-and-push", "description": "Unified database migration skill. Use when user says \"test migration\", \"push migration\", \"deploy migration\", \"reset local database\", or \"db push\". Promotion pipeline local \u2192 staging \u2192 production with", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enbyaugust/zacs-claude-skills/blob/master/skills/migration-test-and-push/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T06:54:23Z"}, "embedding_text": "migration-test-and-push. Unified database migration skill. Use when user says \"test migration\", \"push migration\", \"deploy migration\", \"reset local database\", or \"db push\". Promotion pipeline local \u2192 staging \u2192 production with Platforms: claude_code."} +{"id": "b644f55268b024d5fbf3c210a3603134b948155b3ef6e8577d7eee7ee494c869", "repo_url": "https://github.com/jmanhype/speckit", "name": "spec-kit-workflow", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jmanhype/speckit/blob/main/.claude/skills/spec-kit-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T16:54:33Z"}, "embedding_text": "spec-kit-workflow. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "40e68551af263aa0d75c66ba284c24ec4ef084bc596f82ef5949b28e97a78859", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "venice-ai", "description": "Comprehensive assistance with venice-ai", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/venice-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "venice-ai. Comprehensive assistance with venice-ai Platforms: claude_code."} +{"id": "9b96c3c441ec802bcd6a5490ec55c7647ff0b18fe4c009321aedc8c077ac49b4", "repo_url": "https://github.com/yeachan-heo/oh-my-claude-sisyphus", "name": "doctor", "description": "Diagnose and fix oh-my-claudecode installation issues", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yeachan-heo/oh-my-claude-sisyphus/blob/main/skills/omc-doctor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36737, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T12:59:43Z"}, "embedding_text": "doctor. Diagnose and fix oh-my-claudecode installation issues Platforms: claude_code."} +{"id": "2ca9790f3c103ca0d4538eba5979463a3f78d9091cd1875e72d508e2ff6f1586", "repo_url": "https://github.com/jmanhype/speckit", "name": "spec-validation", "description": "Validates specification quality for technology-agnosticism, testability, and completeness. Automatically invoked when reviewing specs, checking requirements, or before transitioning from specify to pl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jmanhype/speckit/blob/main/.claude/skills/spec-validation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T16:54:33Z"}, "embedding_text": "spec-validation. Validates specification quality for technology-agnosticism, testability, and completeness. Automatically invoked when reviewing specs, checking requirements, or before transitioning from specify to pl Platforms: claude_code."} +{"id": "56673a8cfb20d37d76e1d732dad322e04c3d854ebfc20b2e69a329db0e16a0f5", "repo_url": "https://github.com/yizhiyanhua-ai/chuinb-skill", "name": "chuinb", "description": "This skill transforms users into confident industry insiders through immersive, research-driven learning experiences. It should be used when users want to quickly master an unfamiliar industry, field,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yizhiyanhua-ai/chuinb-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T16:54:23Z"}, "embedding_text": "chuinb. This skill transforms users into confident industry insiders through immersive, research-driven learning experiences. It should be used when users want to quickly master an unfamiliar industry, field, Platforms: claude_code."} +{"id": "8697421d7f74416efb0a8b84c2b268de2b122ca4e975401daa26df844936fa90", "repo_url": "https://github.com/pjuniszewski/cook", "name": "cook-menu", "description": "Interactive menu for managing cook artifacts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pjuniszewski/cook/blob/main/.claude/skills/cook/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-07T08:41:12Z"}, "embedding_text": "cook-menu. Interactive menu for managing cook artifacts Platforms: claude_code."} +{"id": "224faad30dadb595f55ea9dd4681b498e5a3272601136a933238e773e0fa5e58", "repo_url": "https://github.com/robertguss/claude-skills", "name": "voice-capture", "description": "This skill should be used when extracting voice profiles from sample text, creating voice documentation, or matching a specific writing style. It applies when users provide sample text and want to cap", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/plugins/compound-writing/skills/voice-capture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "voice-capture. This skill should be used when extracting voice profiles from sample text, creating voice documentation, or matching a specific writing style. It applies when users provide sample text and want to cap Platforms: claude_code."} +{"id": "3e3bbc55069457e8ca7a2a7bc1c31f81f502d4f05bf1bbf106e12c90d171b681", "repo_url": "https://github.com/dragosroua/claude-content-skills", "name": "astro-cta-injector", "description": "Inject Call-to-Action blocks into Astro site content with intelligent placement strategies. Use when the user wants to add CTAs, newsletter signups, product promotions, or any content blocks to blog p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dragosroua/claude-content-skills/blob/main/skills/astro-cta-injector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T02:27:21Z"}, "embedding_text": "astro-cta-injector. Inject Call-to-Action blocks into Astro site content with intelligent placement strategies. Use when the user wants to add CTAs, newsletter signups, product promotions, or any content blocks to blog p Platforms: claude_code."} +{"id": "8ddbae52d316156e241727476e8b61831a104737d22d4d9fdffcd59815719d39", "repo_url": "https://github.com/plurigrid/asi", "name": "intent-sink", "description": "Intent Sink Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/intent-sink/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "intent-sink. Intent Sink Skill Platforms: claude_code."} +{"id": "18678b00d81f7b5df5451c80ad2838eea1facb023d55eedaf4c352d3ebd17bef", "repo_url": "https://github.com/plurigrid/asi", "name": "resource-sharing", "description": "Resource Sharing Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/resource-sharing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "resource-sharing. Resource Sharing Skill Platforms: claude_code."} +{"id": "77fba25d2375a64a3c50d0b793e14408e6ee1aad49376535896e543dd179da06", "repo_url": "https://github.com/whtoo/how_to_implment_pl_in_antlr4", "name": "vm-dev", "description": "\u865a\u62df\u673a\u5f00\u53d1\u4e13\u5bb6\uff0c\u4e13\u6ce8\u4e8e\u5b57\u8282\u7801\u3001\u6307\u4ee4\u3001\u6808\u5e27\u3001\u5185\u5b58\u7ba1\u7406\u548c\u5783\u573e\u56de\u6536\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/whtoo/how_to_implment_pl_in_antlr4/blob/main/.claude/skills/vm-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 34, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T13:47:54Z"}, "embedding_text": "vm-dev. \u865a\u62df\u673a\u5f00\u53d1\u4e13\u5bb6\uff0c\u4e13\u6ce8\u4e8e\u5b57\u8282\u7801\u3001\u6307\u4ee4\u3001\u6808\u5e27\u3001\u5185\u5b58\u7ba1\u7406\u548c\u5783\u573e\u56de\u6536\u3002 Platforms: claude_code."} +{"id": "31c3a1a1c8965c5452c553a6649761451f2748a430284db719d58daf28508f93", "repo_url": "https://github.com/plurigrid/asi", "name": "topos-unified", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/topos-unified/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "topos-unified. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2d84b2f477031f284caf25a621c0c62ec0f6272347b017c9b951cca0e804cfa7", "repo_url": "https://github.com/plurigrid/asi", "name": "external", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/external/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "external. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5e30a0fce2dfe580e60262558781761f92bfa79762a615778a7fd05b62a5a5a3", "repo_url": "https://github.com/plurigrid/asi", "name": "tmux", "description": "Terminal multiplexer.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/tmux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "tmux. Terminal multiplexer. Platforms: claude_code."} +{"id": "213a81e3d207131e8a0b598bc819a980e123052a46c9037ea2847471b045d67d", "repo_url": "https://github.com/plurigrid/asi", "name": "ruler-maximal", "description": "Ruler Maximal Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/ruler-maximal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ruler-maximal. Ruler Maximal Skill Platforms: claude_code."} +{"id": "0f3cb7f730d49f02101ab23737bb916cc80f2a6d8a78ae0db0ef2f1d8c3f044a", "repo_url": "https://github.com/plurigrid/asi", "name": "solver-fee", "description": "Solver Fee Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/solver-fee/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "solver-fee. Solver Fee Skill Platforms: claude_code."} +{"id": "55ad348949e1e3e0dae0f7d80aaf5f1ee59345133f1bef85c640555bca8347b8", "repo_url": "https://github.com/matteocervelli/llms", "name": "design", "description": "Design system architecture, API contracts, and data flows. Use when translating analyzed requirements into technical design for feature implementation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matteocervelli/llms/blob/main/.archive/builders/tools/skill_builder/templates/design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T17:33:55Z"}, "embedding_text": "design. Design system architecture, API contracts, and data flows. Use when translating analyzed requirements into technical design for feature implementation. Platforms: claude_code."} +{"id": "2016450ec2da604357cd9f07db0f25ed99db9c18d0f518bf3feec4a9d39b807b", "repo_url": "https://github.com/slowmist/slowmist-agent-security", "name": "slowmist-agent-security", "description": "Comprehensive security review framework for AI agents. Covers skill/MCP installation, GitHub repos, URLs/documents, on-chain addresses, products/services, and social shares. Built from real-world atta", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/slowmist/slowmist-agent-security/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 472, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-17T02:12:58Z"}, "embedding_text": "slowmist-agent-security. Comprehensive security review framework for AI agents. Covers skill/MCP installation, GitHub repos, URLs/documents, on-chain addresses, products/services, and social shares. Built from real-world atta Platforms: claude_code."} +{"id": "894418efc1feb34278e70b2d9ac74affbe8b2a340169cffc673e12f812a90bf0", "repo_url": "https://github.com/plurigrid/asi", "name": "ergodicity", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/ergodicity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ergodicity. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2a6ac1eef93f528d74e1ba413a8cea0a0d17371be42596b5f4b5159dad461c9c", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-analysis", "description": "Perform codebase analysis and architecture mapping as the first phase of a security assessment. Explores the tech stack, frameworks, entry points, data flows, and trust boundaries. Outputs sast/archit", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-analysis. Perform codebase analysis and architecture mapping as the first phase of a security assessment. Explores the tech stack, frameworks, entry points, data flows, and trust boundaries. Outputs sast/archit Platforms: claude_code."} +{"id": "0d15f502fe8b30fbbffedfe733931f8cc01f90afe660a0fdaefcd2ae99b07d49", "repo_url": "https://github.com/agent-sh/agnix", "name": "invalid_name", "description": "Use when user wants to review code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/invalid/skills/invalid-name/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "invalid_name. Use when user wants to review code Platforms: claude_code."} +{"id": "c0ac64bb0b68785339c06175a9308dbd8a7b2633403e701a6a7ea63fd5366fae", "repo_url": "https://github.com/plurigrid/asi", "name": "latent-latency", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/latent-latency/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "latent-latency. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "dada514fc86eabd747750df3e7625c2f7f81903f31ab04db4045e93850af1e96", "repo_url": "https://github.com/ovachiever/droid-tings", "name": "tinacms", "description": "Build content-heavy sites with Git-backed TinaCMS. Provides visual editing and content management for blogs, documentation, and marketing sites with non-technical editors.\n\nUse when implementing Next.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ovachiever/droid-tings/blob/master/skills/tinacms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-25T21:44:12Z"}, "embedding_text": "tinacms. Build content-heavy sites with Git-backed TinaCMS. Provides visual editing and content management for blogs, documentation, and marketing sites with non-technical editors.\n\nUse when implementing Next. Platforms: claude_code."} +{"id": "0b4cff03ae96330c59a1c871d9e75ac99ea5135addeb29b630d221c18c06ec11", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "api-onboarding", "description": "Reduce time-to-first-API-call (TTFAC) by optimizing every step of the developer onboarding journey. This skill covers authentication simplification, sandbox environments, interactive documentation, an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/api-onboarding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "api-onboarding. Reduce time-to-first-API-call (TTFAC) by optimizing every step of the developer onboarding journey. This skill covers authentication simplification, sandbox environments, interactive documentation, an Platforms: claude_code."} +{"id": "573b06e1317587521f92b7e2d64730d6ae4c5ca70285a2310afac89c059e24bf", "repo_url": "https://github.com/plurigrid/asi", "name": "system2-attention", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.ruler/skills/system2-attention/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "system2-attention. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9f2fcd7ed314aa2dbd6c333c1a7a00c0c85b4b2666ff768a0c933384178bebf7", "repo_url": "https://github.com/reduxjs/redux-toolkit", "name": "model-redux-state/design-state-ownership", "description": "Use this when deciding whether data belongs in Redux, component state, router state, or another external source. Covers state ownership, authority boundaries, slice sizing, and when to move or split d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reduxjs/redux-toolkit/blob/master/packages/toolkit/skills/model-redux-state/design-state-ownership/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:41:25Z"}, "embedding_text": "model-redux-state/design-state-ownership. Use this when deciding whether data belongs in Redux, component state, router state, or another external source. Covers state ownership, authority boundaries, slice sizing, and when to move or split d Platforms: claude_code."} +{"id": "da14f9f6384f911bc623942ff8ab7c1c8039119702826085a3c47c0600994674", "repo_url": "https://github.com/plurigrid/asi", "name": "network", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/oriented-simplicial-networks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "network. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f48e254e0f39eab2f95201bcef8775a279d27667f9bc59f5e93a7a5ec38a751e", "repo_url": "https://github.com/plurigrid/asi", "name": "babashka", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/babashka-clj/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "babashka. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "96cc40be1c19ffd89293f321b2513aff0033465922419968eee788f080e27c4c", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "plugin-checker", "description": "Use this skill when asked to \"validate plugin\", \"check plugin structure\", \"verify plugin\", \"audit plugin\", \"is my plugin correct\", \"plugin issues\", or when troubleshooting plugin problems.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/plugin-checker/skills/plugin-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "plugin-checker. Use this skill when asked to \"validate plugin\", \"check plugin structure\", \"verify plugin\", \"audit plugin\", \"is my plugin correct\", \"plugin issues\", or when troubleshooting plugin problems. Platforms: claude_code."} +{"id": "85f024570f41dfa43f9c0864fd209dc7519e1f7cc310aaba1b1c93f24a9c503c", "repo_url": "https://github.com/vcnoc/claude-code-zen-mcp-skill-work", "name": "main-router", "description": "Intelligent skill router that analyzes user requests and automatically dispatches to the most appropriate skill(s) or zen-mcp tools. Routes to zen-chat for Q&A, zen-thinkdeep for deep problem investig", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vcnoc/claude-code-zen-mcp-skill-work/blob/main/skills/main-router/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 117, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T08:51:53Z"}, "embedding_text": "main-router. Intelligent skill router that analyzes user requests and automatically dispatches to the most appropriate skill(s) or zen-mcp tools. Routes to zen-chat for Q&A, zen-thinkdeep for deep problem investig Platforms: claude_code."} +{"id": "cacf53a0f6bf7864f9975d3e3e084b2379867c8acf5ede976cc4632d31ebd95e", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "better-auth-sso", "description": "Integrate with Better Auth SSO for OAuth2/OIDC authentication. Use this skill when implementing SSO login flows, PKCE authentication, token management, JWKS verification, or global logout in Next.js a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/better-auth-sso/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "better-auth-sso. Integrate with Better Auth SSO for OAuth2/OIDC authentication. Use this skill when implementing SSO login flows, PKCE authentication, token management, JWKS verification, or global logout in Next.js a Platforms: claude_code."} +{"id": "8b8d23e86b32960618bde3775184d4f3ff18049cef3a4c2b8f0143730423acc3", "repo_url": "https://github.com/prisma/skills", "name": "prisma-client-api", "description": "Prisma Client API reference covering model queries, filters, operators, and client methods. Use when writing database queries, using CRUD operations, filtering data, or configuring Prisma Client. Trig", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prisma/skills/blob/main/prisma-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T13:20:16Z"}, "embedding_text": "prisma-client-api. Prisma Client API reference covering model queries, filters, operators, and client methods. Use when writing database queries, using CRUD operations, filtering data, or configuring Prisma Client. Trig Platforms: claude_code."} +{"id": "a51c5447407d56de7175ab9e52b2da77bffb6bbf8f9a3ac5618d7d6b44a38930", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "node-backend", "description": "Node.js backend development patterns for Express, NestJS, Fastify, and Hono. Use when implementing APIs, authentication, middleware, services, and server-side logic with Node.js and TypeScript. Provid", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/node-backend/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "node-backend. Node.js backend development patterns for Express, NestJS, Fastify, and Hono. Use when implementing APIs, authentication, middleware, services, and server-side logic with Node.js and TypeScript. Provid Platforms: claude_code."} +{"id": "57b677f424b78b371a7ef74bc3b95d3585915c6bd570aa107fe436f1cb0d9900", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "happyflow-generator", "description": "Automatically generate and execute Python test scripts from OpenAPI specifications and GraphQL schemas with enhanced features", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chaim12345/happyflow-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install happyflow-generator"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "happyflow-generator. Automatically generate and execute Python test scripts from OpenAPI specifications and GraphQL schemas with enhanced features Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "22bc121869d0323e6c067d9da7a041c6f536eba6480aee17968e26b4c24c1a72", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "politique-lanceur-alerte-malik-taiar", "description": "Guide for (a) auditing an existing whistleblower system or (b) drafting a compliant reporting policy from a provided template. Covers EU Directive 2019/1937, the amended Sapin II law (Waserman 2022), Decree 2022-1284, CNIL guidelines, public sector requirements, and duty of vigilance.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/politique-lanceur-alerte-malik-taiar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install politique-lanceur-alerte-malik-taiar"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "politique-lanceur-alerte-malik-taiar. Guide for (a) auditing an existing whistleblower system or (b) drafting a compliant reporting policy from a provided template. Covers EU Directive 2019/1937, the amended Sapin II law (Waserman 2022), Decree 2022-1284, CNIL guidelines, public sector requirements, and duty of vigilance. Platforms: claude_code."} +{"id": "703cc9aa1b66934f211b62b0f8b25e218e9d6a58ae917e6774a08da3766bc10d", "repo_url": "https://github.com/sendaifun/skills", "name": "kamino", "description": "Complete guide for Kamino Finance - Solana's leading DeFi protocol for lending, borrowing, liquidity management, and leverage trading. Covers klend-sdk (lending), kliquidity-sdk (automated liquidity strategies), scope-sdk (oracle aggregator), multiply/leverage operations, vaults, and obligation orders.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/kamino/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install kamino"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "kamino. Complete guide for Kamino Finance - Solana's leading DeFi protocol for lending, borrowing, liquidity management, and leverage trading. Covers klend-sdk (lending), kliquidity-sdk (automated liquidity strategies), scope-sdk (oracle aggregator), multiply/leverage operations, vaults, and obligation orders. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "558c8e10b5ff7bfbe4d53bf00a2fa117a1bd0c223ce8d70b5db249d7302cd05e", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "agent-browser", "description": "Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/.agents/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "agent-browser. Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web a Platforms: claude_code."} +{"id": "3cda6bdf8efa34012769b9752e1e94eff45d5498b14e9a000f935281f8769155", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "nextjs-16", "description": "Build Next.js 16 applications with the correct patterns. Use this skill when creating pages, layouts, middleware (now proxy.ts), dynamic routes, or upgrading from Next.js 15. Covers breaking changes l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/nextjs-16/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "nextjs-16. Build Next.js 16 applications with the correct patterns. Use this skill when creating pages, layouts, middleware (now proxy.ts), dynamic routes, or upgrading from Next.js 15. Covers breaking changes l Platforms: claude_code."} +{"id": "6a4e489f844fc1380961e8e15033a1dc38300ce3302496110aab6559f7c79c3a", "repo_url": "https://github.com/plurigrid/asi", "name": "merkle-proof-validation", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/merkle-proof-validation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "merkle-proof-validation. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "4bd16723ff567e685c6ea8656fb7501c234a16c96cdb0707f110e7ce9e3a0f03", "repo_url": "https://github.com/jawwadfirdousi/agent-skills", "name": "read-only-postgres", "description": "Execute read-only SQL queries against PostgreSQL databases. Use when: (1) querying PostgreSQL data, (2) exploring schemas/tables, (3) running SELECT queries for analysis, (4) checking database content", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jawwadfirdousi/agent-skills/blob/main/read-only-postgres/skills/read-only-postgres/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T22:31:50Z"}, "embedding_text": "read-only-postgres. Execute read-only SQL queries against PostgreSQL databases. Use when: (1) querying PostgreSQL data, (2) exploring schemas/tables, (3) running SELECT queries for analysis, (4) checking database content Platforms: claude_code."} +{"id": "39c493b17d3d07838c98baae7723077d06da76e86b158b9b9cfd3290ad7e8531", "repo_url": "https://github.com/itechmeat/llm-code", "name": "turso", "description": "Turso SQLite database. Covers encryption, sync, agent patterns. Keywords: libSQL, embedded.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/turso/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "turso. Turso SQLite database. Covers encryption, sync, agent patterns. Keywords: libSQL, embedded. Platforms: claude_code."} +{"id": "adeef1d14f86f510c6975292dae0fa8d2bd69643339ab9450d8af84f42e5528a", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "skill-authoring", "description": "Guidelines for writing Agent Skills that comply with the agentskills.io specification. WHEN: \"create a skill\", \"new skill\", \"write a skill\", \"skill template\", \"skill structure\", \"review skill\", \"skill PR\", \"skill compliance\", \"SKILL.md format\", \"skill frontmatter\", \"skill best practices\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/skill-authoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-authoring"}, "quality": {"stars": 225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:17:52Z"}, "embedding_text": "skill-authoring. Guidelines for writing Agent Skills that comply with the agentskills.io specification. WHEN: \"create a skill\", \"new skill\", \"write a skill\", \"skill template\", \"skill structure\", \"review skill\", \"skill PR\", \"skill compliance\", \"SKILL.md format\", \"skill frontmatter\", \"skill best practices\". Platforms: claude_code."} +{"id": "42ec0609a173fe732b3cdc5c4ace773b078a0cfff12c9875b48c254198bd66c1", "repo_url": "https://github.com/malob/nix-config", "name": "cancel", "description": "Stop any currently playing text-to-speech audio", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/plugins/tts/skills/cancel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cancel"}, "quality": {"stars": 460, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:26:28Z"}, "embedding_text": "cancel. Stop any currently playing text-to-speech audio Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} +{"id": "330e3192e46c537120328336ad0744820267b442a54b17c0071199c32ecfb2c2", "repo_url": "https://github.com/malob/nix-config", "name": "stop", "description": "Disable auto TTS for this session", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/plugins/tts/skills/stop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install stop"}, "quality": {"stars": 460, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:26:28Z"}, "embedding_text": "stop. Disable auto TTS for this session Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} +{"id": "aad639e9bd061250d6309cacab33acdaaf629ceddd790d9445acc76ec6f5759e", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "fetching-library-docs", "description": "Token-efficient library API documentation fetcher using Context7 MCP with 77% token savings.\nFetches code examples, API references, and usage patterns for published libraries (React,\nNext.js, Prisma,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/fetching-library-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "fetching-library-docs. Token-efficient library API documentation fetcher using Context7 MCP with 77% token savings.\nFetches code examples, API references, and usage patterns for published libraries (React,\nNext.js, Prisma, Platforms: claude_code."} +{"id": "0e040315d3d261b72ad3bb0611ef1a75fa60105c10c2b31a28a3b8e90bd1c989", "repo_url": "https://github.com/plurigrid/asi", "name": "cargo", "description": "Rust package manager (36 subcommands).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/cargo-fuzz/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "cargo. Rust package manager (36 subcommands). Platforms: claude_code."} +{"id": "ca270b1fc0728a2bbf27a71ad6fd51421d066ee4bcca80e20257fc5d8e493e69", "repo_url": "https://github.com/glebis/claude-skills", "name": "health-data", "description": "Query Apple Health SQLite database for vitals, activity, sleep, and workouts. Supports Markdown, JSON, and FHIR R4 output formats. This skill should be used when analyzing health metrics, generating h", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/glebis/claude-skills/blob/main/health-data/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 278, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:09:37Z"}, "embedding_text": "health-data. Query Apple Health SQLite database for vitals, activity, sleep, and workouts. Supports Markdown, JSON, and FHIR R4 output formats. This skill should be used when analyzing health metrics, generating h Platforms: claude_code."} +{"id": "bf59e392d52a2c5772e16e64955e3fd97fb2674627a22388fc1d04134de06dc0", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-web-backend", "description": "Use when building web APIs, backend services, or encountering FastAPI/Django/Express/GraphQL questions, microservices architecture, authentication, or message queues - routes to 11 specialist skills r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-web-backend/skills/using-web-backend/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-web-backend. Use when building web APIs, backend services, or encountering FastAPI/Django/Express/GraphQL questions, microservices architecture, authentication, or message queues - routes to 11 specialist skills r Platforms: claude_code."} +{"id": "e71442818f2f66614f564f3b7d092af5a3a3cb6dfcb81f7854548d03c1fb5abe", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "git-workflow-helper", "description": "Expert guidance for Git workflows, troubleshooting, and best practices", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/git-workflow-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-workflow-helper"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "git-workflow-helper. Expert guidance for Git workflows, troubleshooting, and best practices Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "48f93da9a70a45fc7b0b0ed8664ba377d299b1d53b9b1268a501011c5bdf1ebd", "repo_url": "https://github.com/pulumi/agent-skills", "name": "pulumi-component", "description": "Guide for authoring Pulumi ComponentResource classes. Use when creating reusable infrastructure components, designing component interfaces, setting up multi-language support, or distributing component", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pulumi/agent-skills/blob/main/pulumi/skills/pulumi-component/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T16:30:16Z"}, "embedding_text": "pulumi-component. Guide for authoring Pulumi ComponentResource classes. Use when creating reusable infrastructure components, designing component interfaces, setting up multi-language support, or distributing component Platforms: claude_code."} +{"id": "652824dedb104c3d9fe14728eabc8187a40e2ae53178af967db439c3a56e0666", "repo_url": "https://github.com/zaoqu-liu/scienceclaw", "name": "tooluniverse-custom-tool", "description": "Add custom local tools to ToolUniverse and use them alongside the 1000+ built-in tools. Use this skill when a user wants to: create their own tool for a private or custom API, add a local tool to thei", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zaoqu-liu/scienceclaw/blob/main/skills/tooluniverse-custom-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-18T07:40:17Z"}, "embedding_text": "tooluniverse-custom-tool. Add custom local tools to ToolUniverse and use them alongside the 1000+ built-in tools. Use this skill when a user wants to: create their own tool for a private or custom API, add a local tool to thei Platforms: claude_code."} +{"id": "87ffbce57d95cab102e84a3245bfd84e69838228c88e6dc9c071a330937625ab", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "configuring-better-auth", "description": "Implement OAuth 2.1 / OIDC authentication using Better Auth with MCP assistance. Use when setting\nup a centralized auth server (SSO provider), implementing SSO clients in Next.js apps, configuring\nPKC", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/configuring-better-auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "configuring-better-auth. Implement OAuth 2.1 / OIDC authentication using Better Auth with MCP assistance. Use when setting\nup a centralized auth server (SSO provider), implementing SSO clients in Next.js apps, configuring\nPKC Platforms: claude_code."} +{"id": "863876e69d6001f7f8d2b9013f8a9bfad2a0b00f5d7f9257a8d796b38f6ffdb0", "repo_url": "https://github.com/plurigrid/asi", "name": "nerv", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/nerv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "nerv. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "fe14a4066cd1873c83abd069559bd9b933e90cb687fee0843b926c1a01b9cded", "repo_url": "https://github.com/plurigrid/asi", "name": "attractor", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/attractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "attractor. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e345a0f0a534b7983b25e94f4f80e3340e9b12e67b1cc2f0007492282babdce9", "repo_url": "https://github.com/x-cmd/skill", "name": "project-guidelines-example", "description": "Example project-specific skill template based on a real production application.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/x-cmd/skill/blob/main/data/affaanmustafa/project-guidelines-example/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-23T04:14:32Z"}, "embedding_text": "project-guidelines-example. Example project-specific skill template based on a real production application. Platforms: claude_code."} +{"id": "6f0ef401136becfed1c61486c20d907a994721fa9eae4577ee51a8a8020dfce1", "repo_url": "https://github.com/scientiacapital/skills", "name": "security", "description": "Application security patterns - authentication, secrets management, input validation, OWASP Top 10. Use when: auth, JWT, secrets, API keys, SQL injection, XSS, CSRF, RLS, security audit, pen testing b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/security-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "security. Application security patterns - authentication, secrets management, input validation, OWASP Top 10. Use when: auth, JWT, secrets, API keys, SQL injection, XSS, CSRF, RLS, security audit, pen testing b Platforms: claude_code."} +{"id": "6e8492ef9c951f4ac81ed785dcfdeae39fce0a5525e913a5577c05dec4dfc9cf", "repo_url": "https://github.com/plurigrid/asi", "name": "mcp-builder", "description": "Guide for creating high-quality MCP (Model Context Protocol) servers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "mcp-builder. Guide for creating high-quality MCP (Model Context Protocol) servers Platforms: claude_code."} +{"id": "ea1f6b043a2b289ae86e4bac1621451c187538f25904795d24ae75c7b106d5fe", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "canvas-design", "description": "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 ori", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "canvas-design. 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 ori Platforms: claude_code."} +{"id": "a54d69f8703f39214886b4ae3c421b21ae3a5d05a7008bdcbf351cb8466c93d0", "repo_url": "https://github.com/ronnycoding/my-personal-assistant", "name": "scan-inbox", "description": "Scan Apple Mail inbox for unread, actionable, and priority messages. Use this when the user asks to check their email, see unread messages, find urgent emails, or triage their inbox. Returns categoriz", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ronnycoding/my-personal-assistant/blob/main/.claude/skills/scan-inbox/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-09T03:25:33Z"}, "embedding_text": "scan-inbox. Scan Apple Mail inbox for unread, actionable, and priority messages. Use this when the user asks to check their email, see unread messages, find urgent emails, or triage their inbox. Returns categoriz Platforms: claude_code."} +{"id": "f6ea70890e3609b3778c6dd14df234486ec72740d8396ef80266862d8d220597", "repo_url": "https://github.com/getlago/lago-front", "name": "migrate-formik-to-tanstack", "description": "Migrate a React form from Formik to TanStack Form following project conventions. Use this skill when the user wants to migrate a form component from Formik to TanStack Form.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/getlago/lago-front/blob/main/.agents/skills/migrate-formik-to-tanstack/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 158, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:39:39Z"}, "embedding_text": "migrate-formik-to-tanstack. Migrate a React form from Formik to TanStack Form following project conventions. Use this skill when the user wants to migrate a form component from Formik to TanStack Form. Platforms: claude_code."} +{"id": "31545c1d23f96ffc64ddf119508becf0f34bf3545b86477cdc6a2c4036f6509a", "repo_url": "https://github.com/asteroid-belt/skulto", "name": "golang-cli-review", "description": "Comprehensive code review for Golang CLI applications. Produces an actionable checklist covering error handling, CLI framework patterns (Cobra/urfave), testing, performance, security, and Go idioms.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asteroid-belt/skulto/blob/main/.claude/skills/golang-cli-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T05:18:31Z"}, "embedding_text": "golang-cli-review. Comprehensive code review for Golang CLI applications. Produces an actionable checklist covering error handling, CLI framework patterns (Cobra/urfave), testing, performance, security, and Go idioms. Platforms: claude_code."} +{"id": "66cf649142eaa68db4c8db035931890b7f64577651485014180e3158ae5326c4", "repo_url": "https://github.com/plurigrid/asi", "name": "julia-gay", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/julia-gay/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "julia-gay. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1ae6af59daf5daa1ecd0834fb984f3141671cf06d0b1161ad75362edbc965274", "repo_url": "https://github.com/scottermonk/agentautoflow", "name": "github-use", "description": "Any time github activity is required.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scottermonk/agentautoflow/blob/main/.kilocode/skills/github-use/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T17:55:31Z"}, "embedding_text": "github-use. Any time github activity is required. Platforms: claude_code."} +{"id": "4c7ed51ea3ef0c21a7dd0307eb3c2c5dea382b949f9923f48aacf20e3ef1ec64", "repo_url": "https://github.com/nahisaho/musubi", "name": "technical-writer", "description": "technical-writer skill\n\nTrigger terms: documentation, technical writing, API documentation, README, user guide, developer guide, tutorial, runbook, technical docs\n\nUse when: User requests involve tech", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/technical-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "technical-writer. technical-writer skill\n\nTrigger terms: documentation, technical writing, API documentation, README, user guide, developer guide, tutorial, runbook, technical docs\n\nUse when: User requests involve tech Platforms: claude_code."} +{"id": "3906d0d87cf2a933162a3ad2d33febcdfab30f89c5a7649d52009412d1fa6b5e", "repo_url": "https://github.com/plurigrid/asi", "name": "substitute-eraser", "description": "This skill should be used when the user asks to \"scan for TODOs\", \"find placeholders\", \"clean up stubs\", \"remove temporary code\", \"audit for incomplete code\", or \"erase substitutions from codebase\". S", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/substitute-eraser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "substitute-eraser. This skill should be used when the user asks to \"scan for TODOs\", \"find placeholders\", \"clean up stubs\", \"remove temporary code\", \"audit for incomplete code\", or \"erase substitutions from codebase\". S Platforms: claude_code."} +{"id": "79da11f8256632d411b4b21f80d538c40ab5bc6a057a898e0004f2978e2ca97a", "repo_url": "https://github.com/alexanderop/second-brain-nuxt", "name": "enhancing-talks", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alexanderop/second-brain-nuxt/blob/main/.claude/skills/enhancing-talks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T12:45:55Z"}, "embedding_text": "enhancing-talks. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "52771accd36c95b09eb5ade290cb954850b0165ed17b379b7d48d8975a7e212c", "repo_url": "https://github.com/plurigrid/asi", "name": "synthetic-adjunctions", "description": "Synthetic adjunctions in directed type theory for \u221e-categorical universal", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.ruler/skills/synthetic-adjunctions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "synthetic-adjunctions. Synthetic adjunctions in directed type theory for \u221e-categorical universal Platforms: claude_code."} +{"id": "8c14097d4512a4182c13dae8cad0395ead39585d72dcd0f6a29f88044c8fa222", "repo_url": "https://github.com/eldment/meting-agent", "name": "meting-agent", "description": "Use when an AI agent needs direct music lookup capabilities through the bundled Meting scripts in this skill, including song search, album lookup, artist lookup, playlist lookup, lyrics, cover URLs, a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eldment/meting-agent/blob/main/skills/meting-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-20T13:54:40Z"}, "embedding_text": "meting-agent. Use when an AI agent needs direct music lookup capabilities through the bundled Meting scripts in this skill, including song search, album lookup, artist lookup, playlist lookup, lyrics, cover URLs, a Platforms: claude_code."} +{"id": "f97095d8915edc14283c939bf0f4d7c9f9f90bd7df4e128738472cd4682e92a9", "repo_url": "https://github.com/scottermonk/agentautoflow", "name": "mode-selection", "description": "For understanding what each mode does, which mode is best (most appropriate mode) for a given situation, and establishing a pattern for choosing when and how a mode delegates or passes operation to an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scottermonk/agentautoflow/blob/main/.kilocode/skills/mode-selection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T17:55:31Z"}, "embedding_text": "mode-selection. For understanding what each mode does, which mode is best (most appropriate mode) for a given situation, and establishing a pattern for choosing when and how a mode delegates or passes operation to an Platforms: claude_code."} +{"id": "0a538bb8c62f9afb9dd990d4758055b8eafa1a385c3e197fd0e25428822caa4a", "repo_url": "https://github.com/nahisaho/musubi", "name": "steering", "description": "steering skill\n\nTrigger terms: steering, project memory, codebase analysis, auto-update context, generate steering, architecture patterns, tech stack analysis, project structure, analyze codebase, und", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/steering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "steering. steering skill\n\nTrigger terms: steering, project memory, codebase analysis, auto-update context, generate steering, architecture patterns, tech stack analysis, project structure, analyze codebase, und Platforms: claude_code."} +{"id": "452db2189959ce4536b9bb12729ea5e4021aab4af1f8e6725396042501b1b3e7", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "maintain-docs", "description": "Update and maintain documentation to reflect current implementation after code changes, refactoring, or new features. Remove temporal language, verify accuracy against code, and keep docs current. Use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/maintain-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "maintain-docs. Update and maintain documentation to reflect current implementation after code changes, refactoring, or new features. Remove temporal language, verify accuracy against code, and keep docs current. Use Platforms: claude_code."} +{"id": "a5f04f97550531cf4e3705af3214d988fadb4237ade383f932eaac82ad29180f", "repo_url": "https://github.com/scientiacapital/skills", "name": "phone-verification-waterfall", "description": "Always-on callable lead pipeline for BDRs: HubSpot lead pull \u2192 Apollo phone lookup \u2192 Clay waterfall enrichment \u2192 HubSpot sync \u2192 callable queue. Ensures 50+ daily dials by maintaining verified phone in", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/phone-verification-waterfall-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "phone-verification-waterfall. Always-on callable lead pipeline for BDRs: HubSpot lead pull \u2192 Apollo phone lookup \u2192 Clay waterfall enrichment \u2192 HubSpot sync \u2192 callable queue. Ensures 50+ daily dials by maintaining verified phone in Platforms: claude_code."} +{"id": "517fa404528f51a921b57de46bbc1deb8c15b1a88211fc6faa18ed09d665f84c", "repo_url": "https://github.com/plurigrid/asi", "name": "yoneda-directed", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/yoneda-directed/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "yoneda-directed. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2588136466468a800bed5c9fe5592a5118cd7f7bc2f2ea82f2d4eb0d0b6d4b6f", "repo_url": "https://github.com/everyinc/every-marketplace", "name": "ce:plan-beta", "description": "[BETA] Transform feature descriptions or requirements into structured implementation plans grounded in repo patterns and research. Use when the user says 'plan this', 'create a plan', 'write a tech pl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/everyinc/every-marketplace/blob/main/plugins/compound-engineering/skills/ce-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:25:13Z"}, "embedding_text": "ce:plan-beta. [BETA] Transform feature descriptions or requirements into structured implementation plans grounded in repo patterns and research. Use when the user says 'plan this', 'create a plan', 'write a tech pl Platforms: claude_code."} +{"id": "a5616c2f7b710cf3f110d1b2d98a12583b531c16773ec9f16138dc4b5a3363cb", "repo_url": "https://github.com/juliusbrussee/caveman", "name": "caveman-compress", "description": "Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/juliusbrussee/caveman/blob/main/plugins/caveman/skills/caveman-compress/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 75568, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T13:51:06Z"}, "embedding_text": "caveman-compress. Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens. Preserves all technical substance, code, URLs, and structure. Compressed version overwr Platforms: claude_code."} +{"id": "23ef36dcdd3606de93e470c6790dd2e15b401cb80860bdd1dcfb04e7d25262cc", "repo_url": "https://github.com/plurigrid/asi", "name": "three-match", "description": "3-MATCH colored subgraph isomorphism gadget for 3-SAT reduction", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/three-match/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "three-match. 3-MATCH colored subgraph isomorphism gadget for 3-SAT reduction Platforms: claude_code."} +{"id": "14b94ebce5f5d3cd8979953a75776b738e54d2057db37e6edd99b8489b087ad9", "repo_url": "https://github.com/plurigrid/asi", "name": "uv-oneliners", "description": "UV/UVX awesome one-liners for ephemeral Python environments with multi-package", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/uv-oneliners/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "uv-oneliners. UV/UVX awesome one-liners for ephemeral Python environments with multi-package Platforms: claude_code."} +{"id": "fb4eb74080da8f8aa55d4cdf22e2638b220c4e648ac74748cf5658b2a94e642b", "repo_url": "https://github.com/plurigrid/asi", "name": "hopf", "description": "Bifurcation creating limit cycle from equilibrium", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/hopf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "hopf. Bifurcation creating limit cycle from equilibrium Platforms: claude_code."} +{"id": "4fcea43efce230f98accb19b5780669299718be5cd02f0857aa25bf3cbee15dc", "repo_url": "https://github.com/mattpocock/skills", "name": "zoom-out", "description": "Tell the agent to zoom out and give broader context or a higher-level perspective. Use when you're unfamiliar with a section of code or need to understand how it fits into the bigger picture.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mattpocock/skills/blob/main/skills/deprecated/design-an-interface/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 140812, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T08:41:52Z"}, "embedding_text": "zoom-out. Tell the agent to zoom out and give broader context or a higher-level perspective. Use when you're unfamiliar with a section of code or need to understand how it fits into the bigger picture. Platforms: claude_code."} +{"id": "f0a2ae9bdba8f8ada759b85c92059ff6b556fe5eef0043a1065d027367cd3271", "repo_url": "https://github.com/nahisaho/musubi", "name": "orchestrator", "description": "Integrated orchestrator agent that manages and coordinates 25 specialized AI agents for Specification Driven Development\n\nTrigger terms: orchestrate, coordinate, multi-agent, workflow, execution plan,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "orchestrator. Integrated orchestrator agent that manages and coordinates 25 specialized AI agents for Specification Driven Development\n\nTrigger terms: orchestrate, coordinate, multi-agent, workflow, execution plan, Platforms: claude_code."} +{"id": "0c8af3ef9f1e8a0064953a81df2d2cb5814e0a0144de216e4d899f502c463134", "repo_url": "https://github.com/0xdarkmatter/claude-mods", "name": "ci-cd-ops", "description": "CI/CD pipeline patterns with GitHub Actions, release automation, and testing strategies. Use for: github actions, workflow, CI, CD, pipeline, deploy, release, semantic release, changesets, goreleaser,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/0xdarkmatter/claude-mods/blob/main/skills/ci-cd-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:30:48Z"}, "embedding_text": "ci-cd-ops. CI/CD pipeline patterns with GitHub Actions, release automation, and testing strategies. Use for: github actions, workflow, CI, CD, pipeline, deploy, release, semantic release, changesets, goreleaser, Platforms: claude_code."} +{"id": "bf5de3858ca3c9e91d1a2e9cc50a56d22080c73f9133ab69f50d2bffbee6fcef", "repo_url": "https://github.com/plurigrid/asi", "name": "coupled-system", "description": "Interacting dynamical systems", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/coupled-system/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "coupled-system. Interacting dynamical systems Platforms: claude_code."} +{"id": "22e2451f3ed92d36768a4ecd67a02478dc1b188e88fa4f9d5d8f3b423f029255", "repo_url": "https://github.com/k-dense-ai/scientific-agent-skills", "name": "arboreto", "description": "Infer gene regulatory networks (GRNs) from gene expression data using scalable algorithms (GRNBoost2, GENIE3). Use when analyzing transcriptomics data (bulk RNA-seq, single-cell RNA-seq) to identify t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/k-dense-ai/scientific-agent-skills/blob/main/skills/arbor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29025, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T23:48:13Z"}, "embedding_text": "arboreto. Infer gene regulatory networks (GRNs) from gene expression data using scalable algorithms (GRNBoost2, GENIE3). Use when analyzing transcriptomics data (bulk RNA-seq, single-cell RNA-seq) to identify t Platforms: claude_code."} +{"id": "2194366fb98e7798dd5cf530224f67868f429990cd5c5c6869060631bca44434", "repo_url": "https://github.com/sendaifun/skills", "name": "pyth", "description": "Complete guide for Pyth Network - decentralized oracle providing real-time price feeds for DeFi. Covers price feed integration, confidence intervals, EMA prices, on-chain CPI, off-chain fetching, and streaming updates for Solana applications.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/pyth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pyth"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "pyth. Complete guide for Pyth Network - decentralized oracle providing real-time price feeds for DeFi. Covers price feed integration, confidence intervals, EMA prices, on-chain CPI, off-chain fetching, and streaming updates for Solana applications. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "73b4598405a87287e85d10d8aee05d0c1963c2b6105fe1d7c13f792eb4ab3623", "repo_url": "https://github.com/plurigrid/asi", "name": "saddle-node", "description": "Bifurcation creating/destroying equilibrium pair", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/saddle-node/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "saddle-node. Bifurcation creating/destroying equilibrium pair Platforms: claude_code."} +{"id": "592bb2871ba0705cd752ec3b19c1a65b165995796106bb3d7931507501f42401", "repo_url": "https://github.com/nexu-io/open-design", "name": "blog-post", "description": "A long-form article / blog post \u2014 masthead, hero image placeholder,\narticle body with figures and pull quotes, author byline, related posts.\nUse when the brief asks for \"blog\", \"article\", \"post\", \"ess", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nexu-io/open-design/blob/main/design-templates/blog-post/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 68931, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T11:40:55Z"}, "embedding_text": "blog-post. A long-form article / blog post \u2014 masthead, hero image placeholder,\narticle body with figures and pull quotes, author byline, related posts.\nUse when the brief asks for \"blog\", \"article\", \"post\", \"ess Platforms: claude_code."} +{"id": "d99df7dc4f16bf000c9e828855540ef5c71fb49c75c30ae363ada35956fd33d5", "repo_url": "https://github.com/plurigrid/asi", "name": "trajectory", "description": "Path traced by solution through phase space", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/trajectory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "trajectory. Path traced by solution through phase space Platforms: claude_code."} +{"id": "e742d0d1335490830650d62247e7daa630733061420a82e3e3827804d2f3e52c", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "ai-friendly-architecture", "description": "Design AI-friendly architecture with explicit patterns, layered documentation, and semantic boundaries.\nUse when: structuring projects for AI collaboration, optimizing codebase for AI analysis, settin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/ai-friendly-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "ai-friendly-architecture. Design AI-friendly architecture with explicit patterns, layered documentation, and semantic boundaries.\nUse when: structuring projects for AI collaboration, optimizing codebase for AI analysis, settin Platforms: claude_code."} +{"id": "f65b1d34d42df0a742715b71450806790fc8b4959b96374557bcafcd95ed30c5", "repo_url": "https://github.com/oikon48/cc-frontend-skills", "name": "frontend-design-system", "description": "\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9UI\u30c7\u30b6\u30a4\u30f3\u3092\u6d17\u7df4\u3055\u308c\u305f\u72ec\u81ea\u6027\u306e\u3042\u308b\u30b9\u30bf\u30a4\u30eb\u3067\u751f\u6210\u3057\u307e\u3059\u3002\u30e9\u30f3\u30c7\u30a3\u30f3\u30b0\u30da\u30fc\u30b8\u3001\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3001Web\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30c7\u30b6\u30a4\u30f3\u3001UI\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u4f5c\u6210\u6642\u306b\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u300cAI\u3063\u307d\u3044\u300d\u6c4e\u7528\u30c7\u30b6\u30a4\u30f3\u3092\u907f\u3051\u3001\u30d7\u30ed\u30d5\u30a7\u30c3\u30b7\u30e7\u30ca\u30eb\u3067\u8a18\u61b6\u306b\u6b8b\u308bUI\u3092\u5b9f\u73fe\u3057\u307e\u3059\u3002", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oikon48/cc-frontend-skills/blob/main/skills/frontend-design-system/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-design-system"}, "quality": {"stars": 68, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-08T06:32:39Z"}, "embedding_text": "frontend-design-system. \u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9UI\u30c7\u30b6\u30a4\u30f3\u3092\u6d17\u7df4\u3055\u308c\u305f\u72ec\u81ea\u6027\u306e\u3042\u308b\u30b9\u30bf\u30a4\u30eb\u3067\u751f\u6210\u3057\u307e\u3059\u3002\u30e9\u30f3\u30c7\u30a3\u30f3\u30b0\u30da\u30fc\u30b8\u3001\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3001Web\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30c7\u30b6\u30a4\u30f3\u3001UI\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u4f5c\u6210\u6642\u306b\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u300cAI\u3063\u307d\u3044\u300d\u6c4e\u7528\u30c7\u30b6\u30a4\u30f3\u3092\u907f\u3051\u3001\u30d7\u30ed\u30d5\u30a7\u30c3\u30b7\u30e7\u30ca\u30eb\u3067\u8a18\u61b6\u306b\u6b8b\u308bUI\u3092\u5b9f\u73fe\u3057\u307e\u3059\u3002 Categories: claude, claude-code, claude-skills. Platforms: claude_code."} +{"id": "c2b5682d85969bae09d84fb45bb2a29c5973cdbe8a2f871af546637cf159ffa2", "repo_url": "https://github.com/msrbuilds/elementor-mcp", "name": "wp-plugin-dev", "description": "Develop WordPress plugins following official WordPress coding standards, security best practices, and WordPress.org directory guidelines. Use this skill whenever the user wants to create, scaffold, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/msrbuilds/elementor-mcp/blob/main/.claude/skills/wp-plugin-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 456, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T18:58:56Z"}, "embedding_text": "wp-plugin-dev. Develop WordPress plugins following official WordPress coding standards, security best practices, and WordPress.org directory guidelines. Use this skill whenever the user wants to create, scaffold, or Platforms: claude_code."} +{"id": "2b74d1f9dfa6182c535c2185cfad74eb77cad508256ade3205f54e0cfb20f9a3", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-magic-move", "description": "Animate code transformations with Shiki Magic Move. Use this skill to create smooth morphing transitions between code states.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/code/slidev-magic-move/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-magic-move. Animate code transformations with Shiki Magic Move. Use this skill to create smooth morphing transitions between code states. Platforms: claude_code."} +{"id": "079ff2a767a69234cbddc4920fae230bf2e77f5e744bdc7879431b6d99f13f49", "repo_url": "https://github.com/codingcossack/agent-skills-library", "name": "writing-skills", "description": "Use when creating new skills, editing existing skills, or verifying skills work before deployment", "source": ["skillhub", "topic"], "categories": ["agent-framework", "agent-skills", "agent-system", "agent-workflow", "agentic-workflow", "ai-agents", "anthropic", "claude", "claude-code", "claude-skills", "claude-skills-hub", "claude-skills-libary", "code-review", "codex", "context-engineering", "debugging", "developer-workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codingcossack/agent-skills-library/blob/main/skills/writing-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-skills"}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-03T20:02:38Z"}, "embedding_text": "writing-skills. Use when creating new skills, editing existing skills, or verifying skills work before deployment Categories: agent-framework, agent-skills, agent-system, agent-workflow, agentic-workflow, ai-agents, anthropic, claude, claude-code, claude-skills, claude-skills-hub, claude-skills-libary, code-review, codex, context-engineering, debugging, developer-workflow. Platforms: claude_code."} +{"id": "fbaa94aaae6226ad6bef2d958d5f052937fb99d54749d88e3db6072c34edc7d3", "repo_url": "https://github.com/plurigrid/asi", "name": "influence-propagation", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.agents/skills/influence-propagation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "influence-propagation. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c2be5096dced3ecea9ae79581f1be14f5dc48f40a9718d29c42812031029ccc9", "repo_url": "https://github.com/mattpocock/skills", "name": "prototype", "description": "Build a throwaway prototype to flesh out a design before committing to it. Routes between two branches \u2014 a runnable terminal app for state/business-logic questions, or several radically different UI v", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mattpocock/skills/blob/main/skills/engineering/prototype/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 140812, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T08:41:52Z"}, "embedding_text": "prototype. Build a throwaway prototype to flesh out a design before committing to it. Routes between two branches \u2014 a runnable terminal app for state/business-logic questions, or several radically different UI v Platforms: claude_code."} +{"id": "d1036445aed22b1c5902320e67e837b0fc7b5000b435e55eaecd07e7156c4055", "repo_url": "https://github.com/robertguss/claude-skills", "name": "ghost-writer", "description": "Produce first drafts that match a writer's authentic voice using their Voice DNA Document. Consumes DNA documents from writing-dna-discovery skill. Generates 2 meaningfully different drafts with headl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/writing/ghost-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "ghost-writer. Produce first drafts that match a writer's authentic voice using their Voice DNA Document. Consumes DNA documents from writing-dna-discovery skill. Generates 2 meaningfully different drafts with headl Platforms: claude_code."} +{"id": "f6aaebe0404389cb35150a991937534d6dab26a1324a54836127f709bf452aac", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "lifecycle-adoption", "description": "Use when starting new projects with CMMI, adding CMMI to active development, preparing for audits, migrating tools, or facing team resistance to process adoption", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-sdlc-engineering/skills/lifecycle-adoption/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "lifecycle-adoption. Use when starting new projects with CMMI, adding CMMI to active development, preparing for audits, migrating tools, or facing team resistance to process adoption Platforms: claude_code."} +{"id": "1740b6c8dd7f72f627ec2d23b1481a1be1608997757510a92ff93c9ffaba02cb", "repo_url": "https://github.com/youware-labs/figma-pilot", "name": "figma-pilot", "description": "REQUIRED reading before using figma_execute. Contains API syntax, parameter formats, and examples. READ rules/*.md files for correct usage.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/youware-labs/figma-pilot/blob/master/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T14:10:48Z"}, "embedding_text": "figma-pilot. REQUIRED reading before using figma_execute. Contains API syntax, parameter formats, and examples. READ rules/*.md files for correct usage. Platforms: claude_code."} +{"id": "18053612fab7c52439e0c882ed6daf0dae60bda1ea03115928abbe6083bb5eb1", "repo_url": "https://github.com/nanorepublica/django-prodserver", "name": "global-commenting", "description": "A minimal skill that merely references external commenting standards without providing actual implementation, examples, or concrete guidance for Claude.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nanorepublica/django-prodserver/blob/main/.claude/skills/global-commenting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 58, "skillhub_rank": "C", "skillhub_score": 3.0, "last_updated": "2026-05-21T05:56:15Z"}, "embedding_text": "global-commenting. A minimal skill that merely references external commenting standards without providing actual implementation, examples, or concrete guidance for Claude. Platforms: claude_code."} +{"id": "d82dd3b2a0d3ec4d815cdb840ab7aa85c18a1ba0a7fd79369f8e0d3f4b4bdabc", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "algorithmic-art", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "algorithmic-art. 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 Platforms: claude_code."} +{"id": "3bd33e84f337b8b30f18c580895fc24ea9999033f7e8c5abaa9c59ee11912e3f", "repo_url": "https://github.com/plurigrid/asi", "name": "aptos-wallet-mcp", "description": "Aptos Wallet MCP Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/aptos-wallet-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "aptos-wallet-mcp. Aptos Wallet MCP Skill Platforms: claude_code."} +{"id": "abd2ad6807d8f8068e2e81cb42e06e13cd8fbcbfb11ddcfc51ce54dfe53aad6a", "repo_url": "https://github.com/kiraneswaran/engineering-skills", "name": "mcp-development", "description": "Model Context Protocol (MCP) server development and AI/ML integration patterns. Covers MCP server implementation, tool design, resource handling, and LLM integration best practices. Use when developin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kiraneswaran/engineering-skills/blob/main/mcp-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-19T00:45:25Z"}, "embedding_text": "mcp-development. Model Context Protocol (MCP) server development and AI/ML integration patterns. Covers MCP server implementation, tool design, resource handling, and LLM integration best practices. Use when developin Platforms: claude_code."} +{"id": "5f3e536e2e315049b8d5ec1888564249be0f691db3791c05d4759cbcb2d927c5", "repo_url": "https://github.com/arvindand/agent-skills", "name": "context7", "description": "Fetch up-to-date library documentation via Context7 REST API. Use when needing current API docs, framework patterns, or code examples for any library. Use when user asks about React, Next.js, Prisma,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arvindand/agent-skills/blob/main/skills/context7/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T22:50:41Z"}, "embedding_text": "context7. Fetch up-to-date library documentation via Context7 REST API. Use when needing current API docs, framework patterns, or code examples for any library. Use when user asks about React, Next.js, Prisma, Platforms: claude_code."} +{"id": "638f9e224d8c994b381bbd1ef8b96b3cb6fd1ba6b02e4f153c627629a78c8afa", "repo_url": "https://github.com/gh123man/opensnek", "name": "release", "description": "Use this skill when the user wants to cut an OpenSnek release, push a new semantic version tag, or trigger the tag-driven GitHub release workflow. It follows the repo's release script and docs instead", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gh123man/opensnek/blob/main/.codex/skills/release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 30, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:07:44Z"}, "embedding_text": "release. Use this skill when the user wants to cut an OpenSnek release, push a new semantic version tag, or trigger the tag-driven GitHub release workflow. It follows the repo's release script and docs instead Platforms: claude_code."} +{"id": "734e1357f393fc3be61e099df87b9611812138693211c37377d095e2c8b72ca9", "repo_url": "https://github.com/apollographql/skills", "name": "rust-best-practices", "description": "Guide for writing idiomatic Rust code based on Apollo GraphQL's best practices handbook. Use this skill when: (1) writing new Rust code or functions, (2) reviewing or refactoring existing Rust code, (", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/apollographql/skills/blob/main/skills/rust-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 86, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:14:23Z"}, "embedding_text": "rust-best-practices. Guide for writing idiomatic Rust code based on Apollo GraphQL's best practices handbook. Use this skill when: (1) writing new Rust code or functions, (2) reviewing or refactoring existing Rust code, ( Platforms: claude_code."} +{"id": "1a1cc6c99b00696e215eb8b7cee34bc53de27b2e4b3f8f4a3c607022eba3cfef", "repo_url": "https://github.com/plurigrid/asi", "name": "local-compositionality-gadget", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/local-compositionality-gadget/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "local-compositionality-gadget. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "aa5068d63c5cb031582b644e83545bf2c140c6ad40127b8906d3ee18ddd7482e", "repo_url": "https://github.com/managedcode/dotpilot", "name": "mcaf-nfr", "description": "Capture or refine non-functional requirements such as accessibility, reliability, scalability, maintainability, performance, and compliance. Use when a feature or architecture change needs explicit qu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/managedcode/dotpilot/blob/main/.codex/skills/mcaf-nfr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-13T11:06:37Z"}, "embedding_text": "mcaf-nfr. Capture or refine non-functional requirements such as accessibility, reliability, scalability, maintainability, performance, and compliance. Use when a feature or architecture change needs explicit qu Platforms: claude_code."} +{"id": "9ee5bebe32f71c110b1c9d8223b313e8ca262eff5ee69a50b1cd7a4b23310896", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-transitions", "description": "Add smooth slide transitions in Slidev. Use this skill for fade, slide, and custom transitions between slides.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/animations/slidev-transitions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-transitions. Add smooth slide transitions in Slidev. Use this skill for fade, slide, and custom transitions between slides. Platforms: claude_code."} +{"id": "1aa8c520d2035c9327018e70f57fed408e3b469a301ca23f49fbc71c27dc9eaf", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-mutability", "description": "Interior mutability expert covering Cell, RefCell, Mutex, RwLock patterns, borrow conflicts (E0596, E0499, E0502), and thread-safe mutation strategies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-mutability/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-mutability. Interior mutability expert covering Cell, RefCell, Mutex, RwLock patterns, borrow conflicts (E0596, E0499, E0502), and thread-safe mutation strategies. Platforms: claude_code."} +{"id": "63374915be6f10af892caa602127cd24a12ef79e7b2e2007aaf2cdbbfd07ee0e", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-search-advanced", "description": "Advanced search options in GrepAI. Use this skill for JSON output, compact mode, and AI agent integration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/search/grepai-search-advanced/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-search-advanced. Advanced search options in GrepAI. Use this skill for JSON output, compact mode, and AI agent integration. Platforms: claude_code."} +{"id": "4f5b59ea8aa892e2c4d280dcd334054bdc850f766026f92866dc5db2d82785aa", "repo_url": "https://github.com/run-llama/vibe-llama", "name": "Use llamactl - a CLI tool for LlamaAgents", "description": "Use llamactl to initialize, locally preview, deploy and manage LlamaIndex workflows as LlamaAgents. Required llama-index-workflows and llamactl to be installed in the environment.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/run-llama/vibe-llama/blob/main/documentation/skills/llamactl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 177, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-03T16:27:23Z"}, "embedding_text": "Use llamactl - a CLI tool for LlamaAgents. Use llamactl to initialize, locally preview, deploy and manage LlamaIndex workflows as LlamaAgents. Required llama-index-workflows and llamactl to be installed in the environment. Platforms: claude_code."} +{"id": "9a4b72f884529078283abd55c4eca86ed3935d77c97e03bdbd0963cbf235f866", "repo_url": "https://github.com/christophacham/agent-skills-library", "name": "apify-actorization", "description": "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...", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/christophacham/agent-skills-library/blob/main/skills/backend-dev/apify-actorization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T14:59:53Z"}, "embedding_text": "apify-actorization. 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... Platforms: claude_code."} +{"id": "e62eaaa8edbbb930cebd710ab8b6cfdfb62006ce134a4226bea4ff3fced72159", "repo_url": "https://github.com/codealive-ai/claude-code-reflection-skills", "name": "skills-management", "description": "Search, find, discover, install, remove, update, review, list, and move skills for AI coding agents. Use when user asks \"find a skill for X\", \"search for a skill\", \"is there a skill for X\", \"install s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codealive-ai/claude-code-reflection-skills/blob/main/skills/skills-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 90, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:03:39Z"}, "embedding_text": "skills-management. Search, find, discover, install, remove, update, review, list, and move skills for AI coding agents. Use when user asks \"find a skill for X\", \"search for a skill\", \"is there a skill for X\", \"install s Platforms: claude_code."} +{"id": "fc54a62dd857b29c2b674333aba0ff3c0f1e2ef40fc1a42cfe5a43e7d7b663d7", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-languages", "description": "Supported programming languages in GrepAI. Use this skill to understand which languages can be indexed and traced.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/advanced/grepai-languages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-languages. Supported programming languages in GrepAI. Use this skill to understand which languages can be indexed and traced. Platforms: claude_code."} +{"id": "7e0b41cf22c12bf7c82d84e2e17d6b3f6a0db043797dd8ef3bd1f5ee9f370c85", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "politique-cookies-malik-taiar", "description": "Guide for drafting cookie policies compliant with GDPR and the ePrivacy Directive. Includes CNIL 2020 recommendations, a reference template, and best practices. Use when drafting or revising a cookie policy for a website or application.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/politique-cookies-malik-taiar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install politique-cookies-malik-taiar"}, "quality": {"stars": 471, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "politique-cookies-malik-taiar. Guide for drafting cookie policies compliant with GDPR and the ePrivacy Directive. Includes CNIL 2020 recommendations, a reference template, and best practices. Use when drafting or revising a cookie policy for a website or application. Platforms: claude_code."} +{"id": "793079b6355be4916f4e96c451cbf2335e5633308b0870a6901cc251d8f9f73b", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "safe-area-handling", "description": "Complete guide to handling safe areas in Capacitor apps for iPhone notch, Dynamic Island, home indicator, and Android cutouts. Covers CSS, JavaScript, and native solutions. Use this skill when users h", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-ui/skills/safe-area-handling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "safe-area-handling. Complete guide to handling safe areas in Capacitor apps for iPhone notch, Dynamic Island, home indicator, and Android cutouts. Covers CSS, JavaScript, and native solutions. Use this skill when users h Platforms: claude_code."} +{"id": "e6481a266ae7ad380b959fb7c0e690bd3acc7a8d33290401a721d2a798e78353", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "error-code-guide", "description": "Design consistent error codes following the PREFIX_CATEGORY_NUMBER format.\nUse when: defining error codes, creating error handling, designing APIs.\nKeywords: error code, error handling, error format,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/error-code-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "error-code-guide. Design consistent error codes following the PREFIX_CATEGORY_NUMBER format.\nUse when: defining error codes, creating error handling, designing APIs.\nKeywords: error code, error handling, error format, Platforms: claude_code."} +{"id": "ec1ebdc24f3f21d33e472dee6a81d26a19730291f60a734294dd672ab99e058d", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "blueprint-skill-creator", "description": "Creates blueprint-driven skills for infrastructure and deployment tasks. This skill should be used when creating new skills that require templates, patterns, or reference configurations (e.g., Dockerf", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/blueprint-skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "blueprint-skill-creator. Creates blueprint-driven skills for infrastructure and deployment tasks. This skill should be used when creating new skills that require templates, patterns, or reference configurations (e.g., Dockerf Platforms: claude_code."} +{"id": "cc21d7b3e071eeb5b0b1d8a5b6c46eabca5970566aa98f9d51988c32d0bc4113", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-embeddings-openai", "description": "Configure OpenAI as embedding provider for GrepAI. Use this skill for high-quality cloud embeddings.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/embeddings/grepai-embeddings-openai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-embeddings-openai. Configure OpenAI as embedding provider for GrepAI. Use this skill for high-quality cloud embeddings. Platforms: claude_code."} +{"id": "0c603fba5169b61f34e2f7e29b22b894558941315de63a01aa77d9a223d8bcc4", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "web3-defi-protocols", "description": "Integrate DeFi protocols into SpoonOS agents. Use when building lending integrations (Aave, Compound), DEX aggregators (1inch, CoW Protocol), or yield strategies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/web3-core-operations/defi-protocols/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "web3-defi-protocols. Integrate DeFi protocols into SpoonOS agents. Use when building lending integrations (Aave, Compound), DEX aggregators (1inch, CoW Protocol), or yield strategies. Platforms: claude_code."} +{"id": "18d0f73c9d249d2d168653d6e3302aa4d5a2bc4b1c4291caa1973713300091b4", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-ecosystem", "description": "Rust ecosystem expert covering crate selection, library recommendations, framework comparisons, async runtime choices (tokio, async-std), and common tools.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-ecosystem/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-ecosystem. Rust ecosystem expert covering crate selection, library recommendations, framework comparisons, async runtime choices (tokio, async-std), and common tools. Platforms: claude_code."} +{"id": "d0e19afd52971c43eff18966fd57acd31778d5bec1edc50f0f0d980f97e3bf80", "repo_url": "https://github.com/xdg/xdg-claude", "name": "jira-cli", "description": "Manage Jira issues via command line - read issues, query by filters, create/update issues, add comments, and close issues after work completion.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xdg/xdg-claude/blob/main/jira-cli/skills/jira-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T13:26:18Z"}, "embedding_text": "jira-cli. Manage Jira issues via command line - read issues, query by filters, create/update issues, add comments, and close issues after work completion. Platforms: claude_code."} +{"id": "bae93f792b443ee0ffae0fd44403e4b3a561099bd41e52ffdf9c2909635fbc2a", "repo_url": "https://github.com/sliday/daub", "name": "lp-editor", "description": "Opinionated UI/UX editor for landing pages and marketing sites. Reviews, plans, and builds high-converting pages using proven conversion patterns. Use when the user asks to review a landing page, plan", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sliday/daub/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T17:08:32Z"}, "embedding_text": "lp-editor. Opinionated UI/UX editor for landing pages and marketing sites. Reviews, plans, and builds high-converting pages using proven conversion patterns. Use when the user asks to review a landing page, plan Platforms: claude_code."} +{"id": "2a373c55d1fdf72f62534364fd80245462995a6d4d2e6b41e41027fa51115c7d", "repo_url": "https://github.com/gerstep/cybos", "name": "research", "description": "Company due diligence, technology deep-dives, market analysis, and topic exploration for cyber\u2022Fund investment decisions, content creation, and personal projects. Supports 3 intensity levels (quick/st", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gerstep/cybos/blob/main/.claude/skills/Research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T09:47:18Z"}, "embedding_text": "research. Company due diligence, technology deep-dives, market analysis, and topic exploration for cyber\u2022Fund investment decisions, content creation, and personal projects. Supports 3 intensity levels (quick/st Platforms: claude_code."} +{"id": "15f4055264a59050f9cabe1440c123084f35b96dc20235fe7ea17a3c15943c2a", "repo_url": "https://github.com/corporatesmalltalkconsultingltd/claudesmalltalk", "name": "smalltalk-mcp", "description": "Interact with live Smalltalk images (Squeak, Cuis) via MCP. Evaluate code, browse classes, view method source, define and modify classes and methods, query hierarchies and categories in a running Smal", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/corporatesmalltalkconsultingltd/claudesmalltalk/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-12T01:58:50Z"}, "embedding_text": "smalltalk-mcp. Interact with live Smalltalk images (Squeak, Cuis) via MCP. Evaluate code, browse classes, view method source, define and modify classes and methods, query hierarchies and categories in a running Smal Platforms: claude_code."} +{"id": "c38ec62bd5376c89b66bc3dac5719eea23666045223f232b3d39961cb208685c", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "lenny-skillpack-creator", "description": "Converts a Refound/Lenny Skill into a high-density, agent-executable Skill Pack (Agent Skills standard). Output must be in English.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/lenny-skillpack-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "lenny-skillpack-creator. Converts a Refound/Lenny Skill into a high-density, agent-executable Skill Pack (Agent Skills standard). Output must be in English. Platforms: claude_code."} +{"id": "d47fa01a8c04f2a913654cc305a8f2f92d3e1bcc571dd115a754523009261780", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-coding", "description": "Rust coding conventions expert covering naming, formatting, comments, clippy, rustfmt, lints, code style, best practices, and idiomatic patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-coding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-coding. Rust coding conventions expert covering naming, formatting, comments, clippy, rustfmt, lints, code style, best practices, and idiomatic patterns. Platforms: claude_code."} +{"id": "dec77b64ec213630e7ac23a9b342102817570a811fcc7752a748616479138ac1", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-ignore-patterns", "description": "Configure ignore patterns in GrepAI. Use this skill when excluding files and directories from indexing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/configuration/grepai-ignore-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-ignore-patterns. Configure ignore patterns in GrepAI. Use this skill when excluding files and directories from indexing. Platforms: claude_code."} +{"id": "fc8d0b13741fc5b6baa8f66b93d0e37f21098f0e339434ef72544428f7113c2f", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "holistic-linting-resolver", "description": "Linter-specific resolution workflows for ruff, mypy, pyright, and basedpyright. Provides systematic root-cause analysis procedures, suppression gates, and verification steps. Use when resolving lintin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/holistic-linting/skills/holistic-linting-resolver/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "holistic-linting-resolver. Linter-specific resolution workflows for ruff, mypy, pyright, and basedpyright. Provides systematic root-cause analysis procedures, suppression gates, and verification steps. Use when resolving lintin Platforms: claude_code."} +{"id": "13b99a6330fe563819863e0a997e7d00cfa7e40bede9a32dec88b8d3bf579e9b", "repo_url": "https://github.com/bencium/bencium-claude-code-design-skill", "name": "bencium-innovative-ux-designer", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bencium/bencium-claude-code-design-skill/blob/main/bencium-innovative-ux-designer/skills/bencium-innovative-ux-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 295, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-03T19:16:51Z"}, "embedding_text": "bencium-innovative-ux-designer. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code Platforms: claude_code."} +{"id": "fdd873484668e677f0ffc73e586d181cc047579444f4af17e44b6924bc4949c9", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-async", "description": "Advanced async patterns expert. Handles Stream processing, backpressure control, select/join operations, cancellation, Future trait implementation, and async runtime optimization.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-async-pattern/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-async. Advanced async patterns expert. Handles Stream processing, backpressure control, select/join operations, cancellation, Future trait implementation, and async runtime optimization. Platforms: claude_code."} +{"id": "e3b5a91bc781a0f341affd8083bc03ef3463fd388ccc2ac56c2e18b22949aad2", "repo_url": "https://github.com/sjungling/claude-plugins", "name": "git-bisect-debugging", "description": "Use when debugging regressions or identifying which commit introduced a bug - provides systematic workflow for git bisect with automated test scripts, manual verification, or hybrid approaches. Can be", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sjungling/claude-plugins/blob/main/plugins/git-tools/skills/git-bisect-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T18:02:16Z"}, "embedding_text": "git-bisect-debugging. Use when debugging regressions or identifying which commit introduced a bug - provides systematic workflow for git bisect with automated test scripts, manual verification, or hybrid approaches. Can be Platforms: claude_code."} +{"id": "55a31f1a7b8a051dd266725b9368ee697575305aba22fd39f02d8f8d240d983f", "repo_url": "https://github.com/plurigrid/asi", "name": "kolmogorov-codex-quest", "description": "Kolmogorov Codex Quest", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/kolmogorov-codex-quest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "kolmogorov-codex-quest. Kolmogorov Codex Quest Platforms: claude_code."} +{"id": "de4c8b6068756c4bffc989e6428d518f11820ed70d659168b4e0772546cb68c6", "repo_url": "https://github.com/scientiacapital/skills", "name": "hubspot-revops-skill", "description": "Use when building revenue analytics on HubSpot \u2014 SQL warehouse queries, API enrichment pipelines, lead scoring models, pipeline forecasting, competitive intelligence. Triggers on \"hubspot analytics\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/hubspot-revops-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "hubspot-revops-skill. Use when building revenue analytics on HubSpot \u2014 SQL warehouse queries, API enrichment pipelines, lead scoring models, pipeline forecasting, competitive intelligence. Triggers on \"hubspot analytics\", Platforms: claude_code."} +{"id": "6eccd9ef077db54a70ca8275bc97866371cc67585932f07d2be60b162fae7d15", "repo_url": "https://github.com/apollographql/skills", "name": "rover", "description": "Guide for using Apollo Rover CLI to manage GraphQL schemas and federation. Use this skill when: (1) publishing or fetching subgraph/graph schemas, (2) composing supergraph schemas locally or via Graph", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/apollographql/skills/blob/main/skills/rover/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 86, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:14:23Z"}, "embedding_text": "rover. Guide for using Apollo Rover CLI to manage GraphQL schemas and federation. Use this skill when: (1) publishing or fetching subgraph/graph schemas, (2) composing supergraph schemas locally or via Graph Platforms: claude_code."} +{"id": "97cd16141522ee81a8ce278b13118196bfd3c32de4d4c5bc354869030645879c", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "cloudflare-d1", "description": "Complete knowledge domain for Cloudflare D1 - serverless SQLite database on Cloudflare's edge network.\n\nUse when: creating D1 databases, writing SQL migrations, configuring D1 bindings, querying D1 from Workers,\nhandling SQLite data, building relational data models, or encountering \"D1_ERROR\", \"statement too long\",\n\"too many requests queued\", migration failures, or query performance issues.\n\nKeywords: d1, d1 database, cloudflare d1, wrangler d1, d1 migrations, d1 bindings, sqlite workers,\nserverless database, edge database, d1 queries, sql cloudflare, prepared statements, batch queries,\nd1 api, wrangler migrations, D1_ERROR, D1_EXEC_ERROR, statement too long, database bindings,\nsqlite cloudflare, sql workers api, d1 indexes, query optimization, d1 schema\n", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/cloudflare-d1/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cloudflare-d1"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "cloudflare-d1. Complete knowledge domain for Cloudflare D1 - serverless SQLite database on Cloudflare's edge network.\n\nUse when: creating D1 databases, writing SQL migrations, configuring D1 bindings, querying D1 from Workers,\nhandling SQLite data, building relational data models, or encountering \"D1_ERROR\", \"statement too long\",\n\"too many requests queued\", migration failures, or query performance issues.\n\nKeywords: d1, d1 database, cloudflare d1, wrangler d1, d1 migrations, d1 bindings, sqlite workers,\nserverless database, edge database, d1 queries, sql cloudflare, prepared statements, batch queries,\nd1 api, wrangler migrations, D1_ERROR, D1_EXEC_ERROR, statement too long, database bindings,\nsqlite cloudflare, sql workers api, d1 indexes, query optimization, d1 schema\n Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "4cc7c2b5b9dc005f20629e4c095027dcc03a313dc5744265ee56506beb271254", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "system-design", "description": "System design patterns and architectural decision frameworks for web applications and iOS native apps. Use when making technology choices, selecting architecture patterns, designing APIs, choosing dat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/system-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "system-design. System design patterns and architectural decision frameworks for web applications and iOS native apps. Use when making technology choices, selecting architecture patterns, designing APIs, choosing dat Platforms: claude_code."} +{"id": "de7de5a54051ed713178b3c9ed33af282f1169b6cf59d2bba80a8a0aa6e98e09", "repo_url": "https://github.com/congdon1207/agents.md", "name": "template-skill", "description": "Replace with description of the skill and when Codex should use it.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.agent/skills/app-builder/templates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Codex should use it. Platforms: claude_code."} +{"id": "d4f147ec9b5305ecb83b62829cf7bb307244e06dc8e2ae6d76d4e8eabd543a28", "repo_url": "https://github.com/johnlindquist/claude-workshop-skills", "name": "diagram", "description": "Maintain and synchronize Unified Impact Diagrams following Diagram Driven Development (DDD) methodology. Create, update, and manage diagrams that connect user value to technical implementation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnlindquist/claude-workshop-skills/blob/main/skills/diagram/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-21T12:42:00Z"}, "embedding_text": "diagram. Maintain and synchronize Unified Impact Diagrams following Diagram Driven Development (DDD) methodology. Create, update, and manage diagrams that connect user value to technical implementation. Platforms: claude_code."} +{"id": "b8b42c86e52b71ded62585ea093384ffaf0e4544eb31c3db1545f52491c9f41a", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-apple-review-preflight", "description": "Guides the agent through an Apple App Store preflight review for Capacitor apps before submission or after rejection. Covers guideline checklist selection, App Store metadata review, Capacitor and iOS", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-deployment/skills/capacitor-apple-review-preflight/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-apple-review-preflight. Guides the agent through an Apple App Store preflight review for Capacitor apps before submission or after rejection. Covers guideline checklist selection, App Store metadata review, Capacitor and iOS Platforms: claude_code."} +{"id": "9b819dbfc725b8734eca0e88c41f027c21a8ed25e2584518ca7f5c6aa28db7f7", "repo_url": "https://github.com/plurigrid/asi", "name": "ordered-locale", "description": "Ordered Locale Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/ordered-locale-fanout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ordered-locale. Ordered Locale Skill Platforms: claude_code."} +{"id": "4a83de57ea4af29f497a7a2b3e2b8fdc8165711ded56269c955d7e702f7bf5de", "repo_url": "https://github.com/inferencesh/skills", "name": "prompt-engineering", "description": "Master prompt engineering for AI models: LLMs, image generators, video models.\nTechniques: chain-of-thought, few-shot, system prompts, negative prompts.\nModels: Claude, GPT-4, Gemini, FLUX, Veo, Stabl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inferencesh/skills/blob/main/guides/prompting/prompt-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 555, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "prompt-engineering. Master prompt engineering for AI models: LLMs, image generators, video models.\nTechniques: chain-of-thought, few-shot, system prompts, negative prompts.\nModels: Claude, GPT-4, Gemini, FLUX, Veo, Stabl Platforms: claude_code."} +{"id": "37bf2fa0942faf8eb098a0fc3badecfdd251071a583dc872b3ac4f8929074c98", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks-extra/nda-playbook-review/environment/skills/xlsx-parsing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "92f7cd8a213340ffade5816155b6a95f55a3c458082727a598cf58d55dff5d88", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "scribe-role-skill", "description": "Professional technical writing and documentation skill for creating and\nmaintaining comprehensive, accurate, and user-friendly documentation for\ncodebases, APIs, deployment processes, and end-user gui", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/.claude/skills/scribe-role-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "scribe-role-skill. Professional technical writing and documentation skill for creating and\nmaintaining comprehensive, accurate, and user-friendly documentation for\ncodebases, APIs, deployment processes, and end-user gui Platforms: claude_code."} +{"id": "6134d98528946a552d9872680a25e4c24008e23b22af42098ae539aa96ca20f7", "repo_url": "https://github.com/plurigrid/asi", "name": "periodic-orbit", "description": "Closed trajectory in phase space", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/periodic-orbit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "periodic-orbit. Closed trajectory in phase space Platforms: claude_code."} +{"id": "60f9fb142b0951ab26592cd1c1326e665818a325448a814ee51dbe641b7f0fa8", "repo_url": "https://github.com/plurigrid/asi", "name": "linearization", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/linearization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "linearization. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1ceb76ca77685055f2533f95580675b2fe6a976db2c4d30058047683f7ac56cd", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "adr", "description": "Document architectural decisions in standardized ADR format. This skill should be used when making significant technical decisions, choosing between approaches, establishing patterns, or when other sk", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/adr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "adr. Document architectural decisions in standardized ADR format. This skill should be used when making significant technical decisions, choosing between approaches, establishing patterns, or when other sk Platforms: claude_code."} +{"id": "46423b7497c5932b524c9ac9da0f3ef11100e1fd283c2f27103aa016738ce86a", "repo_url": "https://github.com/plurigrid/asi", "name": "hoot", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/guile-goblins-hoot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "hoot. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0809ccb638e2aeb8113fd15085e0221921addbc07c29a8bb4348479e9afd4d4e", "repo_url": "https://github.com/winstonkoh87/athena-public", "name": "Deep Research Loop", "description": "Multi-step web research, compilation, and synthesis workflow. Scrapes multiple sources, cross-references claims, and produces a structured research brief.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/winstonkoh87/athena-public/blob/main/examples/skills/research/deep-research-loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:33:39Z"}, "embedding_text": "Deep Research Loop. Multi-step web research, compilation, and synthesis workflow. Scrapes multiple sources, cross-references claims, and produces a structured research brief. Platforms: claude_code."} +{"id": "9a2c7365b306c8691acb0b018369b4cb7551eaf3f932ee179d088f9932dacefb", "repo_url": "https://github.com/plurigrid/asi", "name": "invariant-set", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/invariant-set/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "invariant-set. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "4daa7b1af696ba29d75debba3059dfee1e2552d7cfe4e8bfd3f4e7b312a36e63", "repo_url": "https://github.com/plurigrid/asi", "name": "networked-system", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/network/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "networked-system. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "297a670c94b12a16ad08f3f537f8e02c0daed8882f66e9d02b2167abd7fb57b5", "repo_url": "https://github.com/inferencesh/skills", "name": "llm-models", "description": "Access Claude, Gemini, Kimi, GLM and 100+ LLMs via inference.sh CLI using OpenRouter.\nModels: Claude Opus 4.5, Claude Sonnet 4.5, Claude Haiku 4.5, Gemini 3 Pro, Kimi K2, GLM-4.6, Intellect 3.\nOne API", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inferencesh/skills/blob/main/tools/llm/llm-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 555, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "llm-models. Access Claude, Gemini, Kimi, GLM and 100+ LLMs via inference.sh CLI using OpenRouter.\nModels: Claude Opus 4.5, Claude Sonnet 4.5, Claude Haiku 4.5, Gemini 3 Pro, Kimi K2, GLM-4.6, Intellect 3.\nOne API Platforms: claude_code."} +{"id": "0222a025c01cac85860d0156fa1b2424b11aa0d5ac14b68761fc64bf4e661339", "repo_url": "https://github.com/plurigrid/asi", "name": "pitchfork", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/pitchfork/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "pitchfork. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6a605ff59be49b9dcf4e3459c8c713d0a58ef4a4a14490ca54dc388607683805", "repo_url": "https://github.com/medusajs/medusa-agent-skills", "name": "building-with-medusa", "description": "Load automatically when planning, researching, or implementing ANY Medusa backend features (custom modules, API routes, workflows, data models, module links, business logic). REQUIRED for all Medusa b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/medusajs/medusa-agent-skills/blob/main/plugins/medusa-dev/skills/building-with-medusa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 190, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-08T12:41:06Z"}, "embedding_text": "building-with-medusa. Load automatically when planning, researching, or implementing ANY Medusa backend features (custom modules, API routes, workflows, data models, module links, business logic). REQUIRED for all Medusa b Platforms: claude_code."} +{"id": "0daee13dcd85248276b9b8502eff384e7e45f7c0965807c8af09f22f7a6674e0", "repo_url": "https://github.com/plurigrid/asi", "name": "scum-score", "description": "SCUM Score Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/scum-score/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "scum-score. SCUM Score Skill Platforms: claude_code."} +{"id": "4e465692269f3a7f1dd390e2f9bd045440ffba65b11e1814e70988da147245c7", "repo_url": "https://github.com/kdpa-llc/local-skills-mcp", "name": "local-skills-mcp-usage", "description": "Comprehensive guide for using Local Skills MCP - creating skills in the right locations, understanding skill directories, setup, and configuration. Use when creating new skills, deciding where to save", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kdpa-llc/local-skills-mcp/blob/main/skills/local-skills-mcp-usage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T00:39:17Z"}, "embedding_text": "local-skills-mcp-usage. Comprehensive guide for using Local Skills MCP - creating skills in the right locations, understanding skill directories, setup, and configuration. Use when creating new skills, deciding where to save Platforms: claude_code."} +{"id": "b39605a7121b9f67cf126b8fd945a2197b47ffaaa07e5dbb2aa572f574ff743d", "repo_url": "https://github.com/plurigrid/asi", "name": "joker-lint", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/joker-lint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "joker-lint. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a532539601e99f385c690091dbf038aac0ce720833b13442e1454aa1f170bb78", "repo_url": "https://github.com/gerstep/cybos", "name": "remotion-best-practices", "description": "Best practices for Remotion - Video creation in React", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gerstep/cybos/blob/main/.claude/skills/remotion-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T09:47:18Z"}, "embedding_text": "remotion-best-practices. Best practices for Remotion - Video creation in React Platforms: claude_code."} +{"id": "275ac8e2a5a7eeb3dec1837443dc2b2b89a8c2bd259a1313d8029308eacf2ec6", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "RAG Implementer", "description": "Implement retrieval-augmented generation systems. Use when building knowledge-intensive applications, document search, Q&A systems, or need to ground LLM responses in external data. Covers embedding s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/rag-implementer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "RAG Implementer. Implement retrieval-augmented generation systems. Use when building knowledge-intensive applications, document search, Q&A systems, or need to ground LLM responses in external data. Covers embedding s Platforms: claude_code."} +{"id": "d5e5a0d35acfd758d7113de74a04c4588b452471190c0757d2d8741e9a9af67d", "repo_url": "https://github.com/omer-metin/skills-for-antigravity", "name": "expo", "description": "Expert in Expo for React Native development. Covers Expo Router, EAS Build and Submit, development builds, native module integration, and production deployment. Knows how to build cross-platform mobil", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omer-metin/skills-for-antigravity/blob/main/skills/expo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T14:24:32Z"}, "embedding_text": "expo. Expert in Expo for React Native development. Covers Expo Router, EAS Build and Submit, development builds, native module integration, and production deployment. Knows how to build cross-platform mobil Platforms: claude_code."} +{"id": "578140a2a9d6df859809defbbbfc72066f7db2757a09e1708a483f077ed10264", "repo_url": "https://github.com/scientiacapital/skills", "name": "frontend-ui", "description": "Enterprise SaaS frontend \u2014 Tailwind v4, shadcn/ui, Next.js App Router or Vite SPA, accessibility, responsive design, component patterns. Use when: React component, Next.js page, frontend UI, Tailwind,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/frontend-ui-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "frontend-ui. Enterprise SaaS frontend \u2014 Tailwind v4, shadcn/ui, Next.js App Router or Vite SPA, accessibility, responsive design, component patterns. Use when: React component, Next.js page, frontend UI, Tailwind, Platforms: claude_code."} +{"id": "596aefe5b2bb1f85f934b0e2e32d2f855a7f5fc65067e3532d450e47db873459", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Dark Matter Analyzer", "description": "Analyze repositories to reveal unseen patterns, strategic drift, and organizational health. Use when assessing repository coherence, diagnosing project issues, identifying documentation inflation, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/dark-matter-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Dark Matter Analyzer. Analyze repositories to reveal unseen patterns, strategic drift, and organizational health. Use when assessing repository coherence, diagnosing project issues, identifying documentation inflation, or Platforms: claude_code."} +{"id": "60c3df455e5613dae5d4a62910bf82fc86a457e595669d5236e0eb41254f2d04", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-ref", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-ref/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-ref. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a2f3974526015a3065f3649efe5fcb1033d672abd853991df1950484ac7f9715", "repo_url": "https://github.com/jeremy-allen/claude-skills", "name": "writing-tidyverse-r", "description": "Modern tidyverse patterns, style guide, and migration guidance for R development. Use this skill when writing R code with dplyr, reviewing tidyverse code, updating legacy R code to modern patterns, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeremy-allen/claude-skills/blob/main/writing-tidyverse-r/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T03:59:58Z"}, "embedding_text": "writing-tidyverse-r. Modern tidyverse patterns, style guide, and migration guidance for R development. Use this skill when writing R code with dplyr, reviewing tidyverse code, updating legacy R code to modern patterns, or Platforms: claude_code."} +{"id": "aa7ed588c1b2ef13192f8e358f94977afd12a0bac655171d42bc3f7dbc366092", "repo_url": "https://github.com/plurigrid/asi", "name": "topos-generate", "description": "Topos Generation Skill (PLUS +1)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/topos-generate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "topos-generate. Topos Generation Skill (PLUS +1) Platforms: claude_code."} +{"id": "7dbfc264f798b09dc2d5d43bb108d1288999bf6c2e81698efa377d0b7d3923d7", "repo_url": "https://github.com/defendend/claude-ast-index-search", "name": "ast-index", "description": "This skill should be used when the user asks to \"find a class\", \"search for symbol\", \"find usages\", \"find implementations\", \"search codebase\", \"find file\", \"class hierarchy\", \"find callers\", \"module d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/defendend/claude-ast-index-search/blob/main/plugin/skills/ast-index/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 451, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:18:10Z"}, "embedding_text": "ast-index. This skill should be used when the user asks to \"find a class\", \"search for symbol\", \"find usages\", \"find implementations\", \"search codebase\", \"find file\", \"class hierarchy\", \"find callers\", \"module d Platforms: claude_code."} +{"id": "26c6097be5aa31d554415da25990d057de289b52e1ea3cc6e22a164bc1f15358", "repo_url": "https://github.com/xdg/xdg-claude", "name": "jq", "description": "Extract specific fields from JSON files efficiently using jq instead of reading entire files, saving 80-95% context.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xdg/xdg-claude/blob/main/context-efficient-tools/skills/jq/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T13:26:18Z"}, "embedding_text": "jq. Extract specific fields from JSON files efficiently using jq instead of reading entire files, saving 80-95% context. Platforms: claude_code."} +{"id": "c9142eb0bdf64111873cdcaf5925746e9367c852c649b310ea1696761f5f24e3", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-themes", "description": "Use and customize Slidev themes. Use this skill to apply themes, configure theme options, and create custom themes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/customization/slidev-themes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-themes. Use and customize Slidev themes. Use this skill to apply themes, configure theme options, and create custom themes. Platforms: claude_code."} +{"id": "a377fdd5cf1fd6957349ba2f801d8c5b856d18da66405cc9ad9c3dbc18465474", "repo_url": "https://github.com/github/gh-aw-firewall", "name": "debugging-workflows", "description": "Debug GitHub Actions workflows by downloading logs, analyzing summaries, and understanding how agentic workflows and the AWF firewall work together.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/gh-aw-firewall/blob/main/.github/skills/debugging-workflows/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:27:40Z"}, "embedding_text": "debugging-workflows. Debug GitHub Actions workflows by downloading logs, analyzing summaries, and understanding how agentic workflows and the AWF firewall work together. Platforms: claude_code."} +{"id": "667c3f335bb9175e0a5feb51802ee87edfa0606276dec9c78b459cebee3a8ce5", "repo_url": "https://github.com/promptfoo/promptfoo", "name": "providers", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptfoo/promptfoo/blob/main/plugins/promptfoo/skills/promptfoo-provider-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22449, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:12:21Z"}, "embedding_text": "providers. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "77525eb666ddfa7a1d93ca88b0f6e2e0c7782d491bdc93e31792ff0469765a3d", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-pkg-deeptools", "description": "NGS analysis toolkit. BAM to bigWig conversion, QC (correlation, PCA, fingerprints), heatmaps/profiles (TSS, peaks), for ChIP-seq, RNA-seq, ATAC-seq visualization.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-pkg-deeptools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-pkg-deeptools"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-pkg-deeptools. NGS analysis toolkit. BAM to bigWig conversion, QC (correlation, PCA, fingerprints), heatmaps/profiles (TSS, peaks), for ChIP-seq, RNA-seq, ATAC-seq visualization. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "453cb96a8bdcb60a79040a69765e14e5f859975fc3618635b7fc405b225e158e", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "terraform-patterns", "description": "Terraform infrastructure-as-code agent skill and plugin for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. Covers module design patterns, state management strategies, provider configuration, securi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/terraform-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "terraform-patterns. Terraform infrastructure-as-code agent skill and plugin for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. Covers module design patterns, state management strategies, provider configuration, securi Platforms: claude_code."} +{"id": "550e88991bb9992c1d3226243bde69336f19b5af7b48fb4a088e92a9fbe4ac20", "repo_url": "https://github.com/laguagu/claude-code-nextjs-skills", "name": "postgres-semantic-search", "description": "PostgreSQL-based semantic and hybrid search with pgvector and ParadeDB.\nUse when implementing vector search, semantic search, hybrid search,\nor full-text search in PostgreSQL. Covers pgvector setup, i", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/laguagu/claude-code-nextjs-skills/blob/main/skills/postgres-semantic-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T11:40:42Z"}, "embedding_text": "postgres-semantic-search. PostgreSQL-based semantic and hybrid search with pgvector and ParadeDB.\nUse when implementing vector search, semantic search, hybrid search,\nor full-text search in PostgreSQL. Covers pgvector setup, i Platforms: claude_code."} +{"id": "210ceccd5193463cb5707716e1d391c84017267a2ffa88edb89da57db46aa2eb", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "livestream-engineer", "description": "Expert in live streaming, WebRTC, and real-time video/audio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/livestream-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "livestream-engineer. Expert in live streaming, WebRTC, and real-time video/audio Platforms: claude_code."} +{"id": "ff4cfb539639940d03504e97149784c0f152edc1077b6c85402c5974cdd4eeef", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "threejs-tresjs", "description": "3D HUD rendering with Three.js and TresJS for JARVIS AI Assistant", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/threejs-tresjs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "threejs-tresjs. 3D HUD rendering with Three.js and TresJS for JARVIS AI Assistant Platforms: claude_code."} +{"id": "589859f77c1b51f82b6847a7699b08e5df3bf21e8d07189fde7892907fe2dda0", "repo_url": "https://github.com/amanidawn/dgame", "name": "dgame-dev", "description": "\u5f00\u53d1\u548c\u7ef4\u62a4 DGame \u7684 Unity \u6846\u67b6\u4e0e\u6e38\u620f\u4ee3\u7801\u3002\u5728\u672c\u4ed3\u5e93\u4e2d\u5904\u7406 DGame \u67b6\u6784\u3001Unity \u8fd0\u884c\u65f6\u6216\u7f16\u8f91\u5668\u4ee3\u7801\u3001HotFix/GameLogic \u529f\u80fd\u3001\u6a21\u5757\u96c6\u6210\u3001UI \u7cfb\u7edf\u3001Luban \u914d\u7f6e\u6d41\u7a0b\u3001\u53d1\u5e03\u5de5\u5177\u94fe\u3001\u9879\u76ee\u5185\u8c03\u8bd5\u4e0e\u91cd\u6784\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/amanidawn/dgame/blob/main/.claude/skills/dgame-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 128, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:25:53Z"}, "embedding_text": "dgame-dev. \u5f00\u53d1\u548c\u7ef4\u62a4 DGame \u7684 Unity \u6846\u67b6\u4e0e\u6e38\u620f\u4ee3\u7801\u3002\u5728\u672c\u4ed3\u5e93\u4e2d\u5904\u7406 DGame \u67b6\u6784\u3001Unity \u8fd0\u884c\u65f6\u6216\u7f16\u8f91\u5668\u4ee3\u7801\u3001HotFix/GameLogic \u529f\u80fd\u3001\u6a21\u5757\u96c6\u6210\u3001UI \u7cfb\u7edf\u3001Luban \u914d\u7f6e\u6d41\u7a0b\u3001\u53d1\u5e03\u5de5\u5177\u94fe\u3001\u9879\u76ee\u5185\u8c03\u8bd5\u4e0e\u91cd\u6784\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "7c98f7212e46428a0b7837a81444b262cca66ba07f647d20c8d95c4a574f63f5", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "tldr-overview", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/tldr-overview/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tldr-overview"}, "quality": {"stars": 3823, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "tldr-overview. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} +{"id": "fb5980ec36df11d25d104b17d91fc5565e3ee6c8e7000c7b1b24f847757020a9", "repo_url": "https://github.com/malob/nix-config", "name": "start", "description": "Enable auto TTS for this session", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/plugins/tts/skills/start/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install start"}, "quality": {"stars": 460, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:26:28Z"}, "embedding_text": "start. Enable auto TTS for this session Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} +{"id": "253f08c0780368b28b03041bcdf755928fdae856f19f6f13391ed4b3ddac45ef", "repo_url": "https://github.com/asyrafhussin/agent-skills", "name": "typescript-react-patterns", "description": "TypeScript best practices for React development. Use when writing typed React components, hooks, events, refs, or generic components. Triggers on tasks involving TypeScript errors, type definitions, p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asyrafhussin/agent-skills/blob/main/skills/typescript-react-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T19:24:02Z"}, "embedding_text": "typescript-react-patterns. TypeScript best practices for React development. Use when writing typed React components, hooks, events, refs, or generic components. Triggers on tasks involving TypeScript errors, type definitions, p Platforms: claude_code."} +{"id": "37b816ce07d63203d0b10696c148a9b54297dd06f8a50ee5477db1dec88013bf", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "ros2-development", "description": "Best practices for Docker-based ROS2 development including multi-stage Dockerfiles, docker-compose for multi-container robotic systems, DDS discovery across containers, GPU passthrough for perception, and dev-vs-deploy container patterns. Use this skill when containerizing ROS2 workspaces, setting up docker-compose for robot software stacks, debugging DDS communication between containers, configuring NVIDIA Container Toolkit for GPU workloads, forwarding X11/Wayland for rviz2 and GUI tools, or managing USB device passthrough for cameras and serial devices. Trigger whenever the user mentions Docker with ROS2, docker-compose for robots, Dockerfile for colcon workspaces, container networking for DDS, GPU containers for perception, devcontainer for ROS2, multi-stage builds for ROS2, or deploying ROS2 in containers. Also trigger for CI/CD with Docker-based ROS2 builds, CycloneDDS or FastDDS configuration in containers, shared memory in Docker, or X11 forwarding for rviz2. Covers Humble, Iron, Jazzy, and Rolling distributions across Ubuntu 22.04 and 24.04 base images.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/docker-ros2-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ros2-development"}, "quality": {"stars": 287, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T23:26:20Z"}, "embedding_text": "ros2-development. Best practices for Docker-based ROS2 development including multi-stage Dockerfiles, docker-compose for multi-container robotic systems, DDS discovery across containers, GPU passthrough for perception, and dev-vs-deploy container patterns. Use this skill when containerizing ROS2 workspaces, setting up docker-compose for robot software stacks, debugging DDS communication between containers, configuring NVIDIA Container Toolkit for GPU workloads, forwarding X11/Wayland for rviz2 and GUI tools, or managing USB device passthrough for cameras and serial devices. Trigger whenever the user mentions Docker with ROS2, docker-compose for robots, Dockerfile for colcon workspaces, container networking for DDS, GPU containers for perception, devcontainer for ROS2, multi-stage builds for ROS2, or deploying ROS2 in containers. Also trigger for CI/CD with Docker-based ROS2 builds, CycloneDDS or FastDDS configuration in containers, shared memory in Docker, or X11 forwarding for rviz2. Covers Humble, Iron, Jazzy, and Rolling distributions across Ubuntu 22.04 and 24.04 base images. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} +{"id": "3325d306f16080903c86f0c3f2b58da1c9a88f2a939893ea1cc9ca0a2ac5d086", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "shadcn-ui", "description": "Build beautiful, accessible UIs with shadcn/ui components. Use this skill when creating forms, dialogs, tables, sidebars, or any UI components in Next.js. Covers installation, component patterns, reac", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/shadcn-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "shadcn-ui. Build beautiful, accessible UIs with shadcn/ui components. Use this skill when creating forms, dialogs, tables, sidebars, or any UI components in Next.js. Covers installation, component patterns, reac Platforms: claude_code."} +{"id": "e4346493abbcfd4a2e432041d6697994a2a8ee800ebd6bcba5b06f7e50bc13da", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "dokploy-2025-12-26", "description": "Comprehensive assistance with dokploy", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/dokploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "dokploy-2025-12-26. Comprehensive assistance with dokploy Platforms: claude_code."} +{"id": "002ba77b3a20a9ed701bf82b61842d84d731ce3343a95ec54d46743731769fb5", "repo_url": "https://github.com/13eholder/modern-cpp-skills", "name": "m09-domain", "description": "Mastering C++ Domain Modeling (DDD). Triggers: Entity, Value Object, Aggregate, Repository, Pimpl, Class Design, Invariant.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/13eholder/modern-cpp-skills/blob/master/m09-domain/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-14T10:16:54Z"}, "embedding_text": "m09-domain. Mastering C++ Domain Modeling (DDD). Triggers: Entity, Value Object, Aggregate, Repository, Pimpl, Class Design, Invariant. Platforms: claude_code."} +{"id": "7f0e35d58227d25ff5aa587acf926a4457a501ddeeca79af33dc3caac73a57d9", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robotics-security", "description": "Security hardening and best practices for robotic systems, covering SROS2 DDS security, network segmentation, secrets management, secure boot, and the physical-cyber safety intersection. Use this skill when securing ROS2 communications, configuring DDS encryption and access control, hardening robot onboard computers, managing certificates and credentials, setting up network segmentation for robot fleets, or addressing the unique security challenges where cyber vulnerabilities become physical safety risks. Trigger whenever the user mentions SROS2, DDS security, robot security, robot hardening, ROS2 encryption, ROS2 access control, robot network security, secure robot deployment, robot certificates, keystore generation, robot firewall, e-stop security, safety controller isolation, or IEC 62443 for robotics.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robotics-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robotics-security"}, "quality": {"stars": 287, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T23:26:20Z"}, "embedding_text": "robotics-security. Security hardening and best practices for robotic systems, covering SROS2 DDS security, network segmentation, secrets management, secure boot, and the physical-cyber safety intersection. Use this skill when securing ROS2 communications, configuring DDS encryption and access control, hardening robot onboard computers, managing certificates and credentials, setting up network segmentation for robot fleets, or addressing the unique security challenges where cyber vulnerabilities become physical safety risks. Trigger whenever the user mentions SROS2, DDS security, robot security, robot hardening, ROS2 encryption, ROS2 access control, robot network security, secure robot deployment, robot certificates, keystore generation, robot firewall, e-stop security, safety controller isolation, or IEC 62443 for robotics. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} +{"id": "8efbadd655a589420f95b3880a25335b2bfbb1f3cc9082b96cb9a389ce5b10bd", "repo_url": "https://github.com/foreveryh/claude-skills-tutorial", "name": "fumadocs-i18n", "description": "Set up complete internationalization (i18n) for a Fumadocs project following official best practices. Configures multi-language routing, language switcher, sidebar filtering, and proper content organi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/foreveryh/claude-skills-tutorial/blob/main/.claude/skills/fumadocs-i18n/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-24T14:34:10Z"}, "embedding_text": "fumadocs-i18n. Set up complete internationalization (i18n) for a Fumadocs project following official best practices. Configures multi-language routing, language switcher, sidebar filtering, and proper content organi Platforms: claude_code."} +{"id": "066310ff0a547e7c2f866f24ebf5390696d80ac57395a6be7ea015251d441f0d", "repo_url": "https://github.com/onsails/cc", "name": "rust-dev", "description": "This skill should be used when working with Rust code, reviewing Rust code, managing Rust dependencies, creating Rust projects, or fixing Rust compilation errors. It provides strict coding standards (especially FAIL FAST error handling), workspace architecture guidance, dependency management automation, and common Rust patterns.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onsails/cc/blob/master/rust-dev/skills/rust-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rust-dev"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T00:24:50Z"}, "embedding_text": "rust-dev. This skill should be used when working with Rust code, reviewing Rust code, managing Rust dependencies, creating Rust projects, or fixing Rust compilation errors. It provides strict coding standards (especially FAIL FAST error handling), workspace architecture guidance, dependency management automation, and common Rust patterns. Platforms: claude_code."} +{"id": "a333b7e6fbf0e20955f90e55cd68205a2b13d4964d6925e17018db152db35dd1", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "frontend-design", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "frontend-design. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0b1e3a788c0bc161763c1fb93bbd2547ac0a1f43653e7325d3822043206f9d5d", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "image-summarization", "description": "Describe images and screenshots by viewing content with multimodal Read tool and documenting only visible elements. Activates on what's in this image, describe this screenshot, summarize this diagram,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/summarizer/skills/image-summarization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "image-summarization. Describe images and screenshots by viewing content with multimodal Read tool and documenting only visible elements. Activates on what's in this image, describe this screenshot, summarize this diagram, Platforms: claude_code."} +{"id": "94b176b493890084d0f63b1110f3ccabcc8d8841219accf7be833d321d30964c", "repo_url": "https://github.com/xdg/xdg-claude", "name": "ast-grep", "description": "Use ast-grep for structural code search and refactoring when editing code structure with ambiguity in text matching, handling \"old_string not unique\" problems, or performing formatting-independent pat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xdg/xdg-claude/blob/main/context-efficient-tools/skills/ast-grep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T13:26:18Z"}, "embedding_text": "ast-grep. Use ast-grep for structural code search and refactoring when editing code structure with ambiguity in text matching, handling \"old_string not unique\" problems, or performing formatting-independent pat Platforms: claude_code."} +{"id": "960d11a393df7449c02083244000c846ef8dacb531a066e71bfa6a105b6ab062", "repo_url": "https://github.com/plurigrid/asi", "name": "holes", "description": "Narya interactive proof development with typed holes", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/holes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "holes. Narya interactive proof development with typed holes Platforms: claude_code."} +{"id": "75d50a4684cb2865c9a86d38073d376c66908a056d98bd45ba15f47d254ba2de", "repo_url": "https://github.com/claude-skills/sveltekit-svelte5-tailwind-skill", "name": "sveltekit-svelte5-tailwind-skill", "description": "Comprehensive integration skill for building sites with SvelteKit 2, Svelte 5, and Tailwind CSS v4", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-skills/sveltekit-svelte5-tailwind-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-28T08:44:01Z"}, "embedding_text": "sveltekit-svelte5-tailwind-skill. Comprehensive integration skill for building sites with SvelteKit 2, Svelte 5, and Tailwind CSS v4 Platforms: claude_code."} +{"id": "1db9efc0b33899307eb2bde1b9cf88750c881ba3903fc62ca11a4524c4c9a1f7", "repo_url": "https://github.com/antfu/skills-npm", "name": "Another Skill B", "description": "Another test skill in pkg-b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antfu/skills-npm/blob/main/test/fixtures/monorepo/packages/pkg-b/node_modules/@test-scope/test-pkg-b/skills/another-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 472, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T06:16:21Z"}, "embedding_text": "Another Skill B. Another test skill in pkg-b Platforms: claude_code."} +{"id": "c327e93c2f25c2488cc34b75bb30686305549e96403f332342da256e9bd71afa", "repo_url": "https://github.com/plurigrid/asi", "name": "repeller", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/repeller/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "repeller. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e6f37d9d883cc0f2fc7650d40d56984190c8f4c887ccc73a07772d918509760a", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "dbus", "description": "Expert in D-Bus IPC (Inter-Process Communication) on Linux systems. Specializes in secure service communication, method calls, signal handling, and system integration. HIGH-RISK skill due to system se", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/dbus/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "dbus. Expert in D-Bus IPC (Inter-Process Communication) on Linux systems. Specializes in secure service communication, method calls, signal handling, and system integration. HIGH-RISK skill due to system se Platforms: claude_code."} +{"id": "52cb9d2937815188a0489083f5214e4fefb4612f73aaf0bbdbb4fc15c203246b", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "conventional-commits", "description": "When writing a git commit message. When task completes and changes need committing. When project uses semantic-release, commitizen, git-cliff. When choosing between feat/fix/chore/docs types. When ind", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/conventional-commits/skills/conventional-commits/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "conventional-commits. When writing a git commit message. When task completes and changes need committing. When project uses semantic-release, commitizen, git-cliff. When choosing between feat/fix/chore/docs types. When ind Platforms: claude_code."} +{"id": "b25286639488cc7063517583c3e4543efb7cbe6ed98f28f08ad5a7c3ca46e6e0", "repo_url": "https://github.com/apollographql/skills", "name": "graphql-operations", "description": "Guide for writing GraphQL operations (queries, mutations, fragments) following best practices. Use this skill when: (1) writing GraphQL queries or mutations, (2) organizing operations with fragments,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/apollographql/skills/blob/main/skills/graphql-operations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 86, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:14:23Z"}, "embedding_text": "graphql-operations. Guide for writing GraphQL operations (queries, mutations, fragments) following best practices. Use this skill when: (1) writing GraphQL queries or mutations, (2) organizing operations with fragments, Platforms: claude_code."} +{"id": "5d0050369bffe6a515e54601281daa10744ef9bb09cf209e71bd5573711cb439", "repo_url": "https://github.com/plurigrid/asi", "name": "kan-extensions", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/kan-extensions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "kan-extensions. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d159d6e6b9553de18be5ae044f8714d1b0b1b454cb173f7cb9c171468a4b28a4", "repo_url": "https://github.com/tddworks/claude-skills", "name": "app-localization", "description": "iOS/macOS app localization management for Tuist-based projects with .strings files.\nUse when: (1) Adding new translation keys to modules, (2) Validating .strings files for missing/duplicate keys,\n(3)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tddworks/claude-skills/blob/main/skills/tuist-app-localization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 35, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T08:00:41Z"}, "embedding_text": "app-localization. iOS/macOS app localization management for Tuist-based projects with .strings files.\nUse when: (1) Adding new translation keys to modules, (2) Validating .strings files for missing/duplicate keys,\n(3) Platforms: claude_code."} +{"id": "8c7bbaa9bee5bbf367a21d4b4d93bb42cf7cfeeb63611724fa8f542c11e6323b", "repo_url": "https://github.com/plurigrid/asi", "name": "worldmat-tidar", "description": "worldmat-tidar", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/worldmat-tidar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "worldmat-tidar. worldmat-tidar Platforms: claude_code."} +{"id": "22e4636d5fd52431ce5327b80cadf793db23cdaaccaa94651de19b9a0f4e1809", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "3ab63a68c995ee844b3981989e9753905016c7bc95353ec3531c9f4123ec9878", "repo_url": "https://github.com/yoanbernabeu/supabase-pentest-skills", "name": "supabase-audit-authenticated", "description": "Create a test user (with explicit permission) to audit what authenticated users can access vs anonymous users. Detects IDOR, cross-user access, and privilege escalation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/supabase-pentest-skills/blob/main/skills/audit-auth/supabase-audit-authenticated/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T13:27:36Z"}, "embedding_text": "supabase-audit-authenticated. Create a test user (with explicit permission) to audit what authenticated users can access vs anonymous users. Detects IDOR, cross-user access, and privilege escalation. Platforms: claude_code."} +{"id": "e2dc9ba0ef050ec91fff4af454510950b368e4992d008200391fdc2f60f634ae", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "internal-comms", "description": "\u4e00\u5957\u8d44\u6e90\uff0c\u5e2e\u52a9\u6211\u4f7f\u7528\u516c\u53f8\u559c\u6b22\u7684\u683c\u5f0f\u7f16\u5199\u5404\u79cd\u5185\u90e8\u901a\u4fe1\u3002\u6bcf\u5f53\u8981\u6c42\u7f16\u5199\u67d0\u79cd\u5185\u90e8\u901a\u4fe1\uff08\u72b6\u6001\u62a5\u544a\u3001\u9886\u5bfc\u66f4\u65b0\u30013P \u66f4\u65b0\u3001\u516c\u53f8\u901a\u8baf\u3001\u5e38\u89c1\u95ee\u9898\u3001\u4e8b\u4ef6\u62a5\u544a\u3001\u9879\u76ee\u66f4\u65b0\u7b49\uff09\u65f6\uff0cClaude \u5e94\u4f7f\u7528\u6b64\u6280\u80fd\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "internal-comms. \u4e00\u5957\u8d44\u6e90\uff0c\u5e2e\u52a9\u6211\u4f7f\u7528\u516c\u53f8\u559c\u6b22\u7684\u683c\u5f0f\u7f16\u5199\u5404\u79cd\u5185\u90e8\u901a\u4fe1\u3002\u6bcf\u5f53\u8981\u6c42\u7f16\u5199\u67d0\u79cd\u5185\u90e8\u901a\u4fe1\uff08\u72b6\u6001\u62a5\u544a\u3001\u9886\u5bfc\u66f4\u65b0\u30013P \u66f4\u65b0\u3001\u516c\u53f8\u901a\u8baf\u3001\u5e38\u89c1\u95ee\u9898\u3001\u4e8b\u4ef6\u62a5\u544a\u3001\u9879\u76ee\u66f4\u65b0\u7b49\uff09\u65f6\uff0cClaude \u5e94\u4f7f\u7528\u6b64\u6280\u80fd\u3002 Platforms: claude_code."} +{"id": "e72af4b894fcda31494cdd1bba3e5aa0846b9250d8973fcdcba92818cc4e7d4b", "repo_url": "https://github.com/proxiblue/claude-skills", "name": "hyva-tailwind-integration", "description": "Comprehensive guidance on integrating Tailwind CSS and JavaScript in Hyv\u00e4 Themes, including configuration merging, module registration, and build processes for Magento 2.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/proxiblue/claude-skills/blob/main/hyva-tailwind-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T02:03:02Z"}, "embedding_text": "hyva-tailwind-integration. Comprehensive guidance on integrating Tailwind CSS and JavaScript in Hyv\u00e4 Themes, including configuration merging, module registration, and build processes for Magento 2. Platforms: claude_code."} +{"id": "2759071d9b463f281c8c50dc1387b8736e704f4f1d283b124bd16a8f2a2a632f", "repo_url": "https://github.com/plurigrid/asi", "name": "operad-compose", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/operad-compose/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "operad-compose. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9ab4bf079a0be5071257371c93935e2193bd5ea527cef7ba9a6f8b50d1f14c04", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-software-engineering", "description": "Use when facing complex engineering challenges that require systematic methodology - horrible bugs, safe refactoring, code review, production incidents, technical debt decisions, or building confidenc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-engineering-foundations/skills/using-software-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-software-engineering. Use when facing complex engineering challenges that require systematic methodology - horrible bugs, safe refactoring, code review, production incidents, technical debt decisions, or building confidenc Platforms: claude_code."} +{"id": "3008500694859093b311d5d62e47ab575d7720c5d82f2914ca772718b8ce13cc", "repo_url": "https://github.com/plurigrid/asi", "name": "gay-monte-carlo", "description": "Gay Monte Carlo Measurements", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/gay-monte-carlo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "gay-monte-carlo. Gay Monte Carlo Measurements Platforms: claude_code."} +{"id": "b7d385a592726ab8838a6bee1e76950d351a65574628302c1a15576dae57b5b6", "repo_url": "https://github.com/basher83/lunar-claude", "name": "ansible-playbook-design", "description": "This skill should be used when creating new Ansible playbooks, designing playbook structure, implementing state-based playbooks with present/absent patterns, organizing plays and tasks, or structuring", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/infrastructure/ansible-workflows/skills/ansible-playbook-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "ansible-playbook-design. This skill should be used when creating new Ansible playbooks, designing playbook structure, implementing state-based playbooks with present/absent patterns, organizing plays and tasks, or structuring Platforms: claude_code."} +{"id": "fd03dcf6ecd4f8fa0704ddab5c606ea89c12ccc208c94a3480a36a87b3e3f012", "repo_url": "https://github.com/prisma/skills", "name": "prisma-upgrade-v7", "description": "Complete migration guide from Prisma ORM v6 to v7 covering all breaking changes. Use when upgrading Prisma versions, encountering v7 errors, or migrating existing projects. Triggers on \"upgrade to pri", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prisma/skills/blob/main/prisma-upgrade-v7/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T13:20:16Z"}, "embedding_text": "prisma-upgrade-v7. Complete migration guide from Prisma ORM v6 to v7 covering all breaking changes. Use when upgrading Prisma versions, encountering v7 errors, or migrating existing projects. Triggers on \"upgrade to pri Platforms: claude_code."} +{"id": "dae61c8dfc485677afc6bbe2856beab84ee3eed6b90c324019c2c37e11e2e532", "repo_url": "https://github.com/feiskyer/codex-settings", "name": "claude-skill", "description": "Use when user asks to leverage claude or claude code to do something (e.g. implement a feature design or review codes, etc). Provides non-interactive automation mode for hands-off task execution witho", "source": ["skillhub", "marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "litellm", "openai", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/codex-settings/blob/main/skills/claude-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-skill"}, "quality": {"stars": 211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-09T01:37:32Z"}, "embedding_text": "claude-skill. Use when user asks to leverage claude or claude code to do something (e.g. implement a feature design or review codes, etc). Provides non-interactive automation mode for hands-off task execution witho Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, litellm, openai, spec-driven-development, vibe-coding. Platforms: claude_code."} +{"id": "877b1df2c7b110fc892b1643a2d820b4ca06568ef4f144d65cf6139fbef9a82d", "repo_url": "https://github.com/nahisaho/musubi", "name": "performance-optimizer", "description": "Copilot agent that assists with performance analysis, bottleneck detection, optimization strategies, and benchmarking\n\nTrigger terms: performance optimization, performance tuning, profiling, benchmark", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nahisaho/musubi/blob/main/.claude/skills/performance-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T21:47:46Z"}, "embedding_text": "performance-optimizer. Copilot agent that assists with performance analysis, bottleneck detection, optimization strategies, and benchmarking\n\nTrigger terms: performance optimization, performance tuning, profiling, benchmark Platforms: claude_code."} +{"id": "9c68c10bd1c45da521d0f29899372269e2c3727dbda861a0e1f5c559e2ed1823", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "background-service-manager", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/ai/prompting/prompt-engineering/background/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "background-service-manager. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "56aba9ad6c4b47ac49ea471431e7b83e040e18e0438dd96d05bec4178d1b3ea2", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-chunking", "description": "Configure code chunking in GrepAI. Use this skill to optimize how code is split for embedding.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/indexing/grepai-chunking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-chunking. Configure code chunking in GrepAI. Use this skill to optimize how code is split for embedding. Platforms: claude_code."} +{"id": "3a7ba1d15bf574a3773d1adcdb283d7f49b9afdef00a7ac802981874b7e25d2b", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "github-swarm-issue", "description": "GitHub issue-based swarm coordination for intelligent task decomposition and progress tracking. Use for transforming issues into multi-agent tasks, automated triage, task breakdown, and issue lifecycl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/github/swarm-issue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "github-swarm-issue. GitHub issue-based swarm coordination for intelligent task decomposition and progress tracking. Use for transforming issues into multi-agent tasks, automated triage, task breakdown, and issue lifecycl Platforms: claude_code."} +{"id": "d6b3ba4fa621d3d9be4ce8cce0ec27bc101ee3a91f878a6d6f53007a57302ddf", "repo_url": "https://github.com/thienanblog/awesome-ai-agent-skills", "name": "docker-local-dev", "description": "Generate Docker Compose and Dockerfile configurations for local development through interactive Q&A. Supports PHP/Laravel, WordPress, Drupal, Joomla, Node.js, and Python stacks with Nginx, Supervisor/", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thienanblog/awesome-ai-agent-skills/blob/main/plugins/devops-skills/skills/docker-local-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T13:05:54Z"}, "embedding_text": "docker-local-dev. Generate Docker Compose and Dockerfile configurations for local development through interactive Q&A. Supports PHP/Laravel, WordPress, Drupal, Joomla, Node.js, and Python stacks with Nginx, Supervisor/ Platforms: claude_code."} +{"id": "198b21e21d7a20bb8da47d8abb0476938ced77ccbc34d2c6393224edb2e98491", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "developer-email-sequences", "description": "When the user wants to create email sequences for developers including onboarding, product updates, re-engagement, or changelog communications. Trigger phrases include \"developer emails,\" \"onboarding", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/developer-email-sequences/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "developer-email-sequences. When the user wants to create email sequences for developers including onboarding, product updates, re-engagement, or changelog communications. Trigger phrases include \"developer emails,\" \"onboarding Platforms: claude_code."} +{"id": "1eecc81f4e3f9c5ffb9f7d5991db27cbc54b7dbdd3461aa58619697ee4736ecd", "repo_url": "https://github.com/bayramannakov/activitywatch-analysis-skill", "name": "activitywatch-analysis-skill", "description": "Weekly Focus Engineering analysis using ActivityWatch data. Use when analyzing app usage patterns, detecting context switching problems, identifying \"death loops\" (repetitive app switching), calculati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bayramannakov/activitywatch-analysis-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-05T08:51:58Z"}, "embedding_text": "activitywatch-analysis-skill. Weekly Focus Engineering analysis using ActivityWatch data. Use when analyzing app usage patterns, detecting context switching problems, identifying \"death loops\" (repetitive app switching), calculati Platforms: claude_code."} +{"id": "74e4f4b47cf9a21e51e5f576033f157e6d18fbc0cf81cf708a9b9fdb0d510529", "repo_url": "https://github.com/automagik-dev/genie", "name": "learn", "description": "Diagnose and fix agent behavioral surfaces when the user corrects a mistake \u2014 connects to Claude native memory.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/learn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "learn. Diagnose and fix agent behavioral surfaces when the user corrects a mistake \u2014 connects to Claude native memory. Platforms: claude_code."} +{"id": "af0302fda8bb7853076a049f72f897d572ce294c4a8696134eeab18233f32608", "repo_url": "https://github.com/buyoung/skills", "name": "doc-coauthoring", "description": "Guide users through a structured 3-stage workflow for co-authoring documentation \u2014 Context Gathering, Refinement & Structure, and Reader Testing. Use this skill whenever the user wants to write docume", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/doc-coauthoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "doc-coauthoring. Guide users through a structured 3-stage workflow for co-authoring documentation \u2014 Context Gathering, Refinement & Structure, and Reader Testing. Use this skill whenever the user wants to write docume Platforms: claude_code."} +{"id": "5355be174ea72fbf6710a547d2caef97b8177ae3dd9f96cf64a3c8b4efa55ec2", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "planning-with-files", "description": "Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/planning-with-files/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "planning-with-files. Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring > Platforms: claude_code."} +{"id": "5acac944a09a486ab2639448cd0957dd66a76728a4368044010981145d93d993", "repo_url": "https://github.com/medusajs/medusa-claude-plugins", "name": "building-with-medusa", "description": "Load automatically when planning, researching, or implementing ANY Medusa backend features (custom modules, API routes, workflows, data models, module links, business logic). REQUIRED for all Medusa b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/medusajs/medusa-claude-plugins/blob/main/plugins/medusa-dev/skills/building-with-medusa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 190, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-08T12:41:06Z"}, "embedding_text": "building-with-medusa. Load automatically when planning, researching, or implementing ANY Medusa backend features (custom modules, API routes, workflows, data models, module links, business logic). REQUIRED for all Medusa b Platforms: claude_code."} +{"id": "e5e62663f1ca2a3541dae84833a2622617ed1a636b4a3efb0feb84ab1efa1267", "repo_url": "https://github.com/sergiodxa/agent-skills", "name": "frontend-react-router-best-practices", "description": "React Router performance and architecture patterns. Use when writing loaders, actions, forms, routes, or working with React Router data fetching. Triggers on tasks involving React Router routes, data", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sergiodxa/agent-skills/blob/main/skills/frontend-react-router-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T08:26:24Z"}, "embedding_text": "frontend-react-router-best-practices. React Router performance and architecture patterns. Use when writing loaders, actions, forms, routes, or working with React Router data fetching. Triggers on tasks involving React Router routes, data Platforms: claude_code."} +{"id": "b05f9d51a2a562bbf4a3af8e7af87ba5a2702c8d4f40ef9ee905b5d3a971fbd1", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "cordova-to-capacitor", "description": "Complete guide for migrating from Apache Cordova to Capacitor. Use this skill when users need to modernize a Cordova/PhoneGap app to Capacitor, migrate plugins, or understand platform differences.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-migrations/skills/cordova-to-capacitor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "cordova-to-capacitor. Complete guide for migrating from Apache Cordova to Capacitor. Use this skill when users need to modernize a Cordova/PhoneGap app to Capacitor, migrate plugins, or understand platform differences. Platforms: claude_code."} +{"id": "ca6a533a38a12412847dd68a7084a5a371bc54a260357b371201e92163f4ae05", "repo_url": "https://github.com/gerstep/cybos", "name": "design-taste-frontend", "description": "Senior UI/UX Engineer. Architect digital interfaces overriding default LLM biases. Enforces metric-based rules, strict component architecture, CSS hardware acceleration, and balanced design engineerin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gerstep/cybos/blob/main/.claude/skills/design-taste-frontend/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T09:47:18Z"}, "embedding_text": "design-taste-frontend. Senior UI/UX Engineer. Architect digital interfaces overriding default LLM biases. Enforces metric-based rules, strict component architecture, CSS hardware acceleration, and balanced design engineerin Platforms: claude_code."} +{"id": "17ed376e4a9255990b61565405fce5e63df77c8472090e489b56f4074d023b4f", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "webapp-testing", "description": "Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "webapp-testing. Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser l Platforms: claude_code."} +{"id": "b364a96d9a8cca0db34095c17555e595becdb13b98bed5493017fdfddc016ecf", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "auto-loop", "description": "TDD-based autonomous development loop with checkpoint recovery and observability changelog", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/auto-loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install auto-loop"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "auto-loop. TDD-based autonomous development loop with checkpoint recovery and observability changelog Platforms: claude_code."} +{"id": "cc5ae7fe5c3f1ef13f99000cd083b79ad93aa50eda047f85e61d28be4dcd60a4", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "brand-guidelines", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "brand-guidelines. 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 Platforms: claude_code."} +{"id": "3497f04953446658d82ff8ff07ed8ef3ec682c93a6fcb672de4515fe9d7a1dc7", "repo_url": "https://github.com/joeseesun/markdown-proxy", "name": "markdown-proxy", "description": "Fetch any URL as clean Markdown via proxy services (r.jina.ai / defuddle.md) or built-in scripts.\nWorks with login-required pages like X/Twitter, WeChat \u516c\u4f17\u53f7, Feishu/Lark docs, Instagram, etc.\nUse this", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joeseesun/markdown-proxy/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 480, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T00:29:23Z"}, "embedding_text": "markdown-proxy. Fetch any URL as clean Markdown via proxy services (r.jina.ai / defuddle.md) or built-in scripts.\nWorks with login-required pages like X/Twitter, WeChat \u516c\u4f17\u53f7, Feishu/Lark docs, Instagram, etc.\nUse this Platforms: claude_code."} +{"id": "90d8b72610948fd49096874a436820dbf4cd09c8918f6713292ded5df18e0746", "repo_url": "https://github.com/congdon1207/agents.md", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.agent/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "77e6367930dba89ecf1b718df63c55e43c4ce2ce1ad45eaddf883ed05b1fe0f5", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "webgl", "description": "WebGL shaders and effects for JARVIS 3D HUD", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/webgl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "webgl. WebGL shaders and effects for JARVIS 3D HUD Platforms: claude_code."} +{"id": "62a30522935f23842ca510ea88f1fa86d974c50a794c61dd4ce4617edcdd78f6", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "plan-generator", "description": "Creates structured plans from requirements. Generates comprehensive plans with steps, dependencies, risks, and success criteria. Coordinates with specialist agents for planning input and validates pla", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/plan-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "plan-generator. Creates structured plans from requirements. Generates comprehensive plans with steps, dependencies, risks, and success criteria. Coordinates with specialist agents for planning input and validates pla Platforms: claude_code."} +{"id": "b6443d8c543420d116a98eb98a4bf321887fec1de2eae5e0e050dd1efdd1cb7e", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-gradle", "description": "Gradle build tool standards focusing on Kotlin DSL. Covers project configuration, dependency management, and custom plugin/task development with Gradle 9 LTS.", "source": ["skillhub", "topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-gradle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-gradle"}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T09:20:28Z"}, "embedding_text": "standards-gradle. Gradle build tool standards focusing on Kotlin DSL. Covers project configuration, dependency management, and custom plugin/task development with Gradle 9 LTS. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} +{"id": "d1e110c6bc4edc96dc9ded1ea8cc242cce4759d343a7869bca6265117a43cdec", "repo_url": "https://github.com/waynesutton/convexskills", "name": "Convex File Storage", "description": "Complete file handling including upload flows, serving files via URL, storing generated files from actions, deletion, and accessing file metadata from system tables", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "backend", "claude", "claude-skills", "convex", "database", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/convexskills/blob/main/skills/convex-file-storage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Convex File Storage"}, "quality": {"stars": 401, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T01:49:59Z"}, "embedding_text": "Convex File Storage. Complete file handling including upload flows, serving files via URL, storing generated files from actions, deletion, and accessing file metadata from system tables Categories: ai, backend, claude, claude-skills, convex, database, skills. Platforms: claude_code."} +{"id": "9d6e8bde8139bcddb222a988a8aa238529db8eeeec3eae6b943fa2593b9ebf39", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "react-component-generator", "description": "Generate React components following best practices with TypeScript, Tailwind CSS, and Zustand state management. Use this skill when the user requests creating React components, UI elements, or mention", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/react-component-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "react-component-generator. Generate React components following best practices with TypeScript, Tailwind CSS, and Zustand state management. Use this skill when the user requests creating React components, UI elements, or mention Platforms: claude_code."} +{"id": "e791d53f83a7a81b6dc87a5a81890ac6e76524d2c5b1ea52504e91f1e304fa23", "repo_url": "https://github.com/littleben/awesomeagentskills", "name": "Deploying to Production", "description": "Automates GitHub repository creation and Vercel deployment for Next.js websites. Use when deploying new websites, pushing to production, setting up CI/CD pipelines, or when the user mentions deploymen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/littleben/awesomeagentskills/blob/main/deploying-to-production/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-17T18:07:58Z"}, "embedding_text": "Deploying to Production. Automates GitHub repository creation and Vercel deployment for Next.js websites. Use when deploying new websites, pushing to production, setting up CI/CD pipelines, or when the user mentions deploymen Platforms: claude_code."} +{"id": "b4329a4e816f54993770c5f66d11c165eef55af0a9ebe65b2f51359b99ceb76e", "repo_url": "https://github.com/waynesutton/convexskills", "name": "Convex Best Practices", "description": "Guidelines for building production-ready Convex apps covering function organization, query patterns, validation, TypeScript usage, error handling, and the Zen of Convex design philosophy", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "backend", "claude", "claude-skills", "convex", "database", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/convexskills/blob/main/skills/convex-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Convex Best Practices"}, "quality": {"stars": 401, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T01:49:59Z"}, "embedding_text": "Convex Best Practices. Guidelines for building production-ready Convex apps covering function organization, query patterns, validation, TypeScript usage, error handling, and the Zen of Convex design philosophy Categories: ai, backend, claude, claude-skills, convex, database, skills. Platforms: claude_code."} +{"id": "9865eb85c71774bb0682a13c1f7bbbfd8addf02fe34229054e18dcc469f6a51b", "repo_url": "https://github.com/claude-code-best/claude-code", "name": "verify", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-code-best/claude-code/blob/main/src/skills/bundled/verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20239, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:00:59Z"}, "embedding_text": "verify. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "c667e5e53d2b8556c11a1021e000ca5c8c7e92837b5805edcad92bd1083ecd99", "repo_url": "https://github.com/pixelml/agenticflow-skill", "name": "agenticflow-skills", "description": "Comprehensive guide for building AI workflows, agents, and workforce systems with AgenticFlow. Use when designing workflows with various node types, configuring single agents, or orchestrating workfor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pixelml/agenticflow-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-14T15:05:49Z"}, "embedding_text": "agenticflow-skills. Comprehensive guide for building AI workflows, agents, and workforce systems with AgenticFlow. Use when designing workflows with various node types, configuring single agents, or orchestrating workfor Platforms: claude_code."} +{"id": "f8a4bbc2ad6717865ae6ea1948aba6e50fc46b83a9217998efe4f2654bb8b00b", "repo_url": "https://github.com/mksglu/context-mode", "name": "opencode", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mksglu/context-mode/blob/main/.claude/skills/context-mode-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17931, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:15:00Z"}, "embedding_text": "opencode. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2598619869c8db5d498617be37c601f70e1f035614aff23c1c86daad418f0898", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robotics-software-principles", "description": "Foundational software design principles applied specifically to robotics module development. Use this skill when designing robot software modules, structuring codebases, making architecture decisions, reviewing robotics code, or building reusable robotics libraries. Trigger whenever the user mentions SOLID principles for robots, modular robotics software, clean architecture for robots, dependency injection in robotics, interface design for hardware, real-time design constraints, error handling strategies for robots, configuration management, separation of concerns in perception-planning- control, composability of robot behaviors, or any discussion of software craftsmanship in a robotics context. Also trigger for code reviews of robotics code, refactoring robot software, or designing APIs for robotics libraries.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robotics-software-principles/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robotics-software-principles"}, "quality": {"stars": 287, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T23:26:20Z"}, "embedding_text": "robotics-software-principles. Foundational software design principles applied specifically to robotics module development. Use this skill when designing robot software modules, structuring codebases, making architecture decisions, reviewing robotics code, or building reusable robotics libraries. Trigger whenever the user mentions SOLID principles for robots, modular robotics software, clean architecture for robots, dependency injection in robotics, interface design for hardware, real-time design constraints, error handling strategies for robots, configuration management, separation of concerns in perception-planning- control, composability of robot behaviors, or any discussion of software craftsmanship in a robotics context. Also trigger for code reviews of robotics code, refactoring robot software, or designing APIs for robotics libraries. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} +{"id": "0e7bacc4cc7a436e7b6d0c0ef33d9144fdc660c20db6235535309c62eb4ff7a1", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "quality-assurance", "description": "Use when deciding test strategy, struggling with code reviews, shipping without tests, or conflating verification with validation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-sdlc-engineering/skills/quality-assurance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "quality-assurance. Use when deciding test strategy, struggling with code reviews, shipping without tests, or conflating verification with validation Platforms: claude_code."} +{"id": "63444a4edfd3dba34749c26b24a3bd27c052c3bbc33b290d2c73075a6d04660b", "repo_url": "https://github.com/dragosroua/claude-content-skills", "name": "link-analyzer", "description": "Comprehensive link analysis for static sites. Use when the user wants to analyze links, find broken links, identify orphan pages, detect under-linked or over-linked content, find link sinks, or unders", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dragosroua/claude-content-skills/blob/main/skills/link-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-12T02:27:21Z"}, "embedding_text": "link-analyzer. Comprehensive link analysis for static sites. Use when the user wants to analyze links, find broken links, identify orphan pages, detect under-linked or over-linked content, find link sinks, or unders Platforms: claude_code."} +{"id": "e7e74dfbc914ea498c0eea55ead5ecf2f1c4afc2a4b10aaba0bd8a5e7d09228b", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "voice-interface-builder", "description": "Expert in building voice interfaces, speech recognition, and text-to-speech systems", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/voice-interface-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "voice-interface-builder. Expert in building voice interfaces, speech recognition, and text-to-speech systems Platforms: claude_code."} +{"id": "cda6281123d2c7ae1f9bf8de538d3262e46e11718dcc0d14dc3e66241f96abab", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "usage-based-pricing", "description": "Design pricing models that developers understand, accept, and can predict.\nTrigger phrases: usage-based pricing, API pricing, metered billing,\ndeveloper pricing, pricing page, cost calculator, pay as", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/usage-based-pricing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "usage-based-pricing. Design pricing models that developers understand, accept, and can predict.\nTrigger phrases: usage-based pricing, API pricing, metered billing,\ndeveloper pricing, pricing page, cost calculator, pay as Platforms: claude_code."} +{"id": "051db87e5abac01e34b7146d939dae0836aaec3f944e670ed47be5671d7c32e9", "repo_url": "https://github.com/tinyhumansai/openhuman", "name": "ship-and-babysit", "description": "End-to-end PR shipping workflow for tinyhumansai/openhuman: commit local changes, push to the user's fork, open or reuse a PR against main, then babysit CI and CodeRabbit feedback until the PR is gree", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tinyhumansai/openhuman/blob/main/.codex/skills/ship-and-babysit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32788, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T11:59:29Z"}, "embedding_text": "ship-and-babysit. End-to-end PR shipping workflow for tinyhumansai/openhuman: commit local changes, push to the user's fork, open or reuse a PR against main, then babysit CI and CodeRabbit feedback until the PR is gree Platforms: claude_code."} +{"id": "f218d5108bc94805ba43974b7441c8d5b070c892114c08b61c970d09d8de99f0", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "incorporation", "description": "\u6cd5\u4eba\u6210\u308a\uff08\u500b\u4eba\u4e8b\u696d\u4e3b\u304b\u3089\u6cd5\u4eba\u3078\u306e\u79fb\u884c\uff09\u306b\u95a2\u3059\u308b\u76f8\u8ac7\u3002\u7a0e\u984d\u6bd4\u8f03\u30b7\u30df\u30e5\u30ec\u30fc\u30b7\u30e7\u30f3\u3001 \u6cd5\u4eba\u5f62\u614b\u306e\u9078\u629e\u3001\u8a2d\u7acb\u624b\u7d9a\u304d\u3001\u5f79\u54e1\u5831\u916c\u6226\u7565\u3001\u793e\u4f1a\u4fdd\u967a\u306e\u6bd4\u8f03\u3092\u652f\u63f4\u3059\u308b\u3002 Trigger: \"\u6cd5\u4eba\u6210\u308a\", \"\u4f1a\u793e\u8a2d\u7acb\", \"\u6cd5\u4eba\u5316\", \"\u682a\u5f0f\u4f1a\u793e\u306b\u3057\u305f\u3044\", \"\u5408\u540c\u4f1a\u793e\", \"\u6cd5\u4eba\u7a0e\u3068\u6240\u5f97\u7a0e\u306e\u6bd4\u8f03\", \"\u5f79\u54e1\u5831\u916c\", \"\u6cd5\u4eba\u6210\u308a\u306e\u30bf\u30a4\u30df\u30f3\u30b0\", \"\u30de\u30a4\u30af\u30ed\u6cd5\u4eba\", \"1\u4eba\u6cd5\u4eba\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/incorporation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install incorporation"}, "quality": {"stars": 343, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T04:08:44Z"}, "embedding_text": "incorporation. \u6cd5\u4eba\u6210\u308a\uff08\u500b\u4eba\u4e8b\u696d\u4e3b\u304b\u3089\u6cd5\u4eba\u3078\u306e\u79fb\u884c\uff09\u306b\u95a2\u3059\u308b\u76f8\u8ac7\u3002\u7a0e\u984d\u6bd4\u8f03\u30b7\u30df\u30e5\u30ec\u30fc\u30b7\u30e7\u30f3\u3001 \u6cd5\u4eba\u5f62\u614b\u306e\u9078\u629e\u3001\u8a2d\u7acb\u624b\u7d9a\u304d\u3001\u5f79\u54e1\u5831\u916c\u6226\u7565\u3001\u793e\u4f1a\u4fdd\u967a\u306e\u6bd4\u8f03\u3092\u652f\u63f4\u3059\u308b\u3002 Trigger: \"\u6cd5\u4eba\u6210\u308a\", \"\u4f1a\u793e\u8a2d\u7acb\", \"\u6cd5\u4eba\u5316\", \"\u682a\u5f0f\u4f1a\u793e\u306b\u3057\u305f\u3044\", \"\u5408\u540c\u4f1a\u793e\", \"\u6cd5\u4eba\u7a0e\u3068\u6240\u5f97\u7a0e\u306e\u6bd4\u8f03\", \"\u5f79\u54e1\u5831\u916c\", \"\u6cd5\u4eba\u6210\u308a\u306e\u30bf\u30a4\u30df\u30f3\u30b0\", \"\u30de\u30a4\u30af\u30ed\u6cd5\u4eba\", \"1\u4eba\u6cd5\u4eba\" Platforms: claude_code."} +{"id": "acfc0650ad44f2ab573f3d9f96087a2977ea4404f9318659a745f1c42c94ffc4", "repo_url": "https://github.com/xspoonai/spoon-awesome-skill", "name": "web3-identity-auth", "description": "Implement Web3 authentication and identity. Use when integrating Sign-In with Ethereum (SIWE), ENS resolution, session management, or verifiable credentials.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xspoonai/spoon-awesome-skill/blob/master/web3-core-operations/identity-auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T06:26:59Z"}, "embedding_text": "web3-identity-auth. Implement Web3 authentication and identity. Use when integrating Sign-In with Ethereum (SIWE), ENS resolution, session management, or verifiable credentials. Platforms: claude_code."} +{"id": "720eb5b2a0b83b45ab91f56f4dcddf43d61b28fdc826825d6ec8c576e3fbf816", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "brainstorm", "description": "Interactive idea refinement using Socratic questioning methodology. This skill should be used when users want to explore an idea, find gaps in concepts, enhance proposals, or structure thoughts before", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/brainstorm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "brainstorm. Interactive idea refinement using Socratic questioning methodology. This skill should be used when users want to explore an idea, find gaps in concepts, enhance proposals, or structure thoughts before Platforms: claude_code."} +{"id": "f5e7b510fb2e45c34ffec89d2aa3593818dbd501cfa992836d34a89cd90f80ec", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "better-auth-setup", "description": "Guide implementation of OAuth 2.1 / OIDC authentication using Better Auth with the OIDC Provider plugin. Use this skill when setting up centralized authentication for multiple apps, implementing SSO a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/better-auth-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "better-auth-setup. Guide implementation of OAuth 2.1 / OIDC authentication using Better Auth with the OIDC Provider plugin. Use this skill when setting up centralized authentication for multiple apps, implementing SSO a Platforms: claude_code."} +{"id": "53fe72d315cebe4f90442e27b700447c745270d7ff24aa24759313f9664f5a37", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-embedded", "description": "\u5d4c\u5165\u5f0f\u4e0e no_std \u4e13\u5bb6\u3002\u5904\u7406 no_std, embedded-hal, \u88f8\u673a\u5f00\u53d1, \u4e2d\u65ad, DMA, \u8d44\u6e90\u53d7\u9650\u73af\u5883\u7b49\u95ee\u9898\u3002\u89e6\u53d1\u8bcd\uff1ano_std, embedded, embedded-hal, microcontroller, firmware, ISR, DMA, \u5d4c\u5165\u5f0f, \u88f8\u673a---", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-embedded/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-embedded. \u5d4c\u5165\u5f0f\u4e0e no_std \u4e13\u5bb6\u3002\u5904\u7406 no_std, embedded-hal, \u88f8\u673a\u5f00\u53d1, \u4e2d\u65ad, DMA, \u8d44\u6e90\u53d7\u9650\u73af\u5883\u7b49\u95ee\u9898\u3002\u89e6\u53d1\u8bcd\uff1ano_std, embedded, embedded-hal, microcontroller, firmware, ISR, DMA, \u5d4c\u5165\u5f0f, \u88f8\u673a--- Platforms: claude_code."} +{"id": "06a514eb6fcea1b6cca6b5d83e76bdb1baa78828581211dd196dca8c71403672", "repo_url": "https://github.com/rangerchaz/turkey-build", "name": "turkey-build", "description": "Multi-agent app builder with 7 modes - greenfield, iteration, bugfix, refactor, UI polish, migration, and audit. PM orchestrates specialized agents with feature branches. 98%+ quality gate, runtime ve", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rangerchaz/turkey-build/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 75, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T13:10:10Z"}, "embedding_text": "turkey-build. Multi-agent app builder with 7 modes - greenfield, iteration, bugfix, refactor, UI polish, migration, and audit. PM orchestrates specialized agents with feature branches. 98%+ quality gate, runtime ve Platforms: claude_code."} +{"id": "6024c4d46805b6ed2e40710ca7b51721bcb3a33aa55985439d82bb0cdc7d8715", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "writing-claude-directives", "description": "Use when writing instructions that guide Claude behavior - skills, CLAUDE.md files, agent prompts, system prompts. Covers token efficiency, compliance techniques, and discovery optimization.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-extending-claude/skills/writing-claude-directives/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "writing-claude-directives. Use when writing instructions that guide Claude behavior - skills, CLAUDE.md files, agent prompts, system prompts. Covers token efficiency, compliance techniques, and discovery optimization. Platforms: claude_code."} +{"id": "f3b8f714c866ec0c45ef1f579316a8d33fde1fd68f89ef9690789f2618d60c9d", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Design Spec Auditor", "description": "Verify code implementation aligns with design specifications. Use after implementing features, during code reviews, or when refactoring to ensure architectural compliance. Compares design docs with ac", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/design-spec-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Design Spec Auditor. Verify code implementation aligns with design specifications. Use after implementing features, during code reviews, or when refactoring to ensure architectural compliance. Compares design docs with ac Platforms: claude_code."} +{"id": "d4b28beae15f5358aea49a18c0d0210758fdbeefc8ea36d404c8e50ff479155d", "repo_url": "https://github.com/itechmeat/llm-code", "name": "base-ui", "description": "Base UI unstyled React components. Covers forms, menus, overlays, composition. Keywords: @base-ui/react, render props.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/base-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "base-ui. Base UI unstyled React components. Covers forms, menus, overlays, composition. Keywords: @base-ui/react, render props. Platforms: claude_code."} +{"id": "90f2c528e3222e74c17c4607c4cd7337c9f16beff4d24034ff2a8bb7e7e77128", "repo_url": "https://github.com/peterfei/ai-agent-team", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/peterfei/ai-agent-team/blob/main/.claude/skills/backend-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 380, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T08:36:32Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7a779225a43408134807e4cbee411d7d28098b2970aaa6ba4e2ed1b5e74136b8", "repo_url": "https://github.com/appcuarium/synapptic", "name": "synapptic", "description": "synapptic \u2014 The missing feedback loop for agentic development. Builds a living user model from AI coding session transcripts. Extracts user preferences, AI failure patterns, and behavioral guards, the", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/appcuarium/synapptic/blob/develop/src/synapptic/bundle/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T21:38:23Z"}, "embedding_text": "synapptic. synapptic \u2014 The missing feedback loop for agentic development. Builds a living user model from AI coding session transcripts. Extracts user preferences, AI failure patterns, and behavioral guards, the Platforms: claude_code."} +{"id": "3f78e070a803c5d8b6a5956164506e3333f131a2e5f773337d00280d692cae8f", "repo_url": "https://github.com/aspiers/ai-config", "name": "git-staging", "description": "Stage files, hunks, or specific lines in git non-interactively.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/git-staging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "git-staging. Stage files, hunks, or specific lines in git non-interactively. Platforms: claude_code."} +{"id": "050c927380fe77abe27e198b9b14b5e4421ab911c7ff775261429271cfd61e3f", "repo_url": "https://github.com/crainax/war3lib", "name": "zinc-j", "description": "\u672c\u9879\u76ee .j \u6587\u4ef6\u4e2d\u7684 Zinc\uff08//! zinc ... //! endzinc\uff09\u8bed\u6cd5\u4e0e\u7ea6\u5b9a\uff1a\u5e93/\u7ed3\u6784\u4f53\u5199\u6cd5\u3001\u533f\u540d\u51fd\u6570\uff08\u65e0\u95ed\u5305\uff09\u6700\u4f73\u5b9e\u8df5\u3001\u56de\u8c03\u53c2\u6570\u4f20\u9012\u3001\u8d44\u6e90\u91ca\u653e/\u7f6e\u7a7a\u3001\u4ee5\u53ca JASS->Zinc \u8fc1\u79fb\u8981\u70b9\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/crainax/war3lib/blob/master/.codex/skills/zinc-j/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T14:44:02Z"}, "embedding_text": "zinc-j. \u672c\u9879\u76ee .j \u6587\u4ef6\u4e2d\u7684 Zinc\uff08//! zinc ... //! endzinc\uff09\u8bed\u6cd5\u4e0e\u7ea6\u5b9a\uff1a\u5e93/\u7ed3\u6784\u4f53\u5199\u6cd5\u3001\u533f\u540d\u51fd\u6570\uff08\u65e0\u95ed\u5305\uff09\u6700\u4f73\u5b9e\u8df5\u3001\u56de\u8c03\u53c2\u6570\u4f20\u9012\u3001\u8d44\u6e90\u91ca\u653e/\u7f6e\u7a7a\u3001\u4ee5\u53ca JASS->Zinc \u8fc1\u79fb\u8981\u70b9\u3002 Platforms: claude_code."} +{"id": "6bb9822394c8eb156d6410ab0b8ba22e9e01c14fa1b997215b027a02b795b044", "repo_url": "https://github.com/robertguss/claude-skills", "name": "app-creator", "description": "Orchestrate iOS/macOS app scaffolding and optional skill adoption for existing projects. Use when users want a guided wizard that can scaffold with XcodeGen and optionally install xcode-makefiles and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/mobile-app-dev/ios-mac-app-creator/app-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "app-creator. Orchestrate iOS/macOS app scaffolding and optional skill adoption for existing projects. Use when users want a guided wizard that can scaffold with XcodeGen and optionally install xcode-makefiles and Platforms: claude_code."} +{"id": "6fc224e754bdffc008dd198fd7788c2872ec2c24d93e1f5c41c090f43430c2c8", "repo_url": "https://github.com/aspiers/ai-config", "name": "documentation-updates", "description": "Update documentation based on lessons learned. Use after completing work to capture learnings and prevent future issues.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/documentation-updates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "documentation-updates. Update documentation based on lessons learned. Use after completing work to capture learnings and prevent future issues. Platforms: claude_code."} +{"id": "39cf40ae5196e58b03a20fb6bb8045ebd0a10858d11c2fb79fec8015fa9e2234", "repo_url": "https://github.com/plurigrid/asi", "name": "slack-gif-creator", "description": "Toolkit for creating animated GIFs optimized for Slack, with validators", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/slack-gif-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "slack-gif-creator. Toolkit for creating animated GIFs optimized for Slack, with validators Platforms: claude_code."} +{"id": "5e41395de9dc0b1641bb2b5f1abef0586ad050fe4eb316dadc0286004ed1460a", "repo_url": "https://github.com/plurigrid/asi", "name": "phase-locking", "description": "Fixed phase relationship in oscillators", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/phase-locking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "phase-locking. Fixed phase relationship in oscillators Platforms: claude_code."} +{"id": "a2fe6284f7d2fbfac11e7bdff18d9c1529eb2527f6dfd8521001140742431452", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-offline-first", "description": "Guide to building offline-first Capacitor apps with data synchronization, caching strategies, and conflict resolution. Covers Fast SQL, service workers, and network detection. Use this skill when user", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-features/skills/capacitor-offline-first/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-offline-first. Guide to building offline-first Capacitor apps with data synchronization, caching strategies, and conflict resolution. Covers Fast SQL, service workers, and network detection. Use this skill when user Platforms: claude_code."} +{"id": "08d16b4f20ebe396dabdacb69ecea27fb028aa2f49f3507d8916e2267cb16e8d", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-testing", "description": "Complete testing guide for Capacitor apps covering unit tests, integration tests, E2E tests, and native testing. Includes Jest, Vitest, Playwright, Appium, and native testing frameworks. Use this skil", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-quality/skills/capacitor-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-testing. Complete testing guide for Capacitor apps covering unit tests, integration tests, E2E tests, and native testing. Includes Jest, Vitest, Playwright, Appium, and native testing frameworks. Use this skil Platforms: claude_code."} +{"id": "f774020d1791a618974ca838acd67e9bfa4bb3969f8204cd80cc9120695d9d73", "repo_url": "https://github.com/abudhahir/superpowers", "name": "writing-skills", "description": "Use when creating new skills, editing existing skills, or verifying skills work before deployment", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/abudhahir/superpowers/blob/main/core/skills/writing-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-30T15:52:50Z"}, "embedding_text": "writing-skills. Use when creating new skills, editing existing skills, or verifying skills work before deployment Platforms: claude_code."} +{"id": "9499be9debb6df9e670e6f78045cd05fd37fb22833b176a40227163b98f1ede7", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-review", "description": "Review a single file or all files in a folder for data inconsistencies, reference errors, typos, and unclear terminology using parallel sub-agents", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-review. Review a single file or all files in a folder for data inconsistencies, reference errors, typos, and unclear terminology using parallel sub-agents Platforms: claude_code."} +{"id": "5a570dbb200ff4364a60c2d3f7ebc5bd1368f7cc693757597e61c7022bdffff7", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "e2e-testing", "description": "Comprehensive E2E testing skill using Playwright MCP for systematic web application testing. This skill should be used when users need to test web-based systems end-to-end, set up test regimes, run ex", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/e2e-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "e2e-testing. Comprehensive E2E testing skill using Playwright MCP for systematic web application testing. This skill should be used when users need to test web-based systems end-to-end, set up test regimes, run ex Platforms: claude_code."} +{"id": "9df9914b54997b2327f7b2760ffec26be5023c0cab887174c45d61f24da39ea0", "repo_url": "https://github.com/apollographql/skills", "name": "apollo-router-plugin-creator", "description": "Guide for writing Apollo Router native Rust plugins. Use this skill when: (1) users want to create a new router plugin, (2) users want to add service hooks (router_service, supergraph_service, executi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/apollographql/skills/blob/main/skills/apollo-router-plugin-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 86, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:14:23Z"}, "embedding_text": "apollo-router-plugin-creator. Guide for writing Apollo Router native Rust plugins. Use this skill when: (1) users want to create a new router plugin, (2) users want to add service hooks (router_service, supergraph_service, executi Platforms: claude_code."} +{"id": "8900ec03e2be7f2c836e3d405f7ee0614a456d0727ceb7ac4c53d2716fe77eef", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Knowledge Graph Builder", "description": "Design and build knowledge graphs. Use when modeling complex relationships, building semantic search, or creating knowledge bases. Covers schema design, entity relationships, and graph database select", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/knowledge-graph-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Knowledge Graph Builder. Design and build knowledge graphs. Use when modeling complex relationships, building semantic search, or creating knowledge bases. Covers schema design, entity relationships, and graph database select Platforms: claude_code."} +{"id": "5d6bf54a1fc8a08f7149a0853221d26e8a4a0bbe90ccf11013e9d82f9fc5ccc0", "repo_url": "https://github.com/menkesu/awesome-pm-skills", "name": "zero-to-launch", "description": "Guides Claude from idea to working prototype using frameworks from OpenAI, Figma, and Airbnb. Use when starting new product features, planning MVP scope, making build-vs-buy decisions, or guiding user", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/menkesu/awesome-pm-skills/blob/main/zero-to-launch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 363, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T12:25:38Z"}, "embedding_text": "zero-to-launch. Guides Claude from idea to working prototype using frameworks from OpenAI, Figma, and Airbnb. Use when starting new product features, planning MVP scope, making build-vs-buy decisions, or guiding user Platforms: claude_code."} +{"id": "d09ae421c04585f15152b3f6b3ccac497ccd1303004a54f6d155ec57c954bff8", "repo_url": "https://github.com/apollographql/skills", "name": "graphql-schema", "description": "Guide for designing GraphQL schemas following industry best practices. Use this skill when: (1) designing a new GraphQL schema or API, (2) reviewing existing schema for improvements, (3) deciding on t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/apollographql/skills/blob/main/skills/graphql-schema/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 86, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:14:23Z"}, "embedding_text": "graphql-schema. Guide for designing GraphQL schemas following industry best practices. Use this skill when: (1) designing a new GraphQL schema or API, (2) reviewing existing schema for improvements, (3) deciding on t Platforms: claude_code."} +{"id": "7e148e0658262c9cc9d865c4f375dd0c343e4ac9da03b6c9aed994654d0b5046", "repo_url": "https://github.com/aklofas/kicad-happy", "name": "bom", "description": "BOM (Bill of Materials) management for electronics projects \u2014 the primary orchestrator skill that coordinates DigiKey, Mouser, LCSC, element14, JLCPCB, PCBWay, and KiCad skills into a unified workflow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aklofas/kicad-happy/blob/main/skills/bom/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 594, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:04:59Z"}, "embedding_text": "bom. BOM (Bill of Materials) management for electronics projects \u2014 the primary orchestrator skill that coordinates DigiKey, Mouser, LCSC, element14, JLCPCB, PCBWay, and KiCad skills into a unified workflow Platforms: claude_code."} +{"id": "37eda407947faf7a6f1b23b3bdf6d9cb243d742bd29f68744c008445da6a969b", "repo_url": "https://github.com/notedit/happy-skills", "name": "spring-animation", "description": "Remotion spring physics for motion graphics video production. Bouncy entrances, elastic trails, orchestrated sequences, physics presets, and organic motion patterns that interpolate() alone cannot ach", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/notedit/happy-skills/blob/main/skills/video/spring-animation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 336, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T13:30:24Z"}, "embedding_text": "spring-animation. Remotion spring physics for motion graphics video production. Bouncy entrances, elastic trails, orchestrated sequences, physics presets, and organic motion patterns that interpolate() alone cannot ach Platforms: claude_code."} +{"id": "c18ae561848fcf47078819ccc23854411058f224e831b677de29a5b2732e86e2", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "skill-creator", "description": "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.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/7spade/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "skill-creator. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "8ef05faf1bd298de8dc4e7f5ca67bfa54898375b9c7ec42b67bfe1796d26129c", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "cloudflare-workers", "description": "Cloudflare Workers and edge functions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/cloudflare-workers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "cloudflare-workers. Cloudflare Workers and edge functions Platforms: claude_code."} +{"id": "2b9aa6527753a3491bd82f0c4cbf7102ffe2109f5cca6db1712d86de1d2afa1f", "repo_url": "https://github.com/basher83/lunar-claude", "name": "netbox-powerdns-integration", "description": "NetBox IPAM and PowerDNS integration for automated DNS record management.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/homelab/netbox-powerdns-integration/skills/netbox-powerdns-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "netbox-powerdns-integration. NetBox IPAM and PowerDNS integration for automated DNS record management. Platforms: claude_code."} +{"id": "e7976f1be5afbe7ac0516618f24db713e7d3c43bcc710af106e1b755ab14fa54", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "scientific-db-clinpgx-database", "description": "Access ClinPGx pharmacogenomics data (successor to PharmGKB). Query gene-drug interactions, CPIC guidelines, allele functions, for precision medicine and genotype-guided dosing decisions.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/scientific-db-clinpgx-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scientific-db-clinpgx-database"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "scientific-db-clinpgx-database. Access ClinPGx pharmacogenomics data (successor to PharmGKB). Query gene-drug interactions, CPIC guidelines, allele functions, for precision medicine and genotype-guided dosing decisions. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "28ca0b142f8041d6589f94dbb191037157de5c004e701353561c89c4a7595c97", "repo_url": "https://github.com/plurigrid/asi", "name": "paperproof-validator", "description": "Formal Proof Visualization and Verification for Lean 4", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/paperproof-validator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "paperproof-validator. Formal Proof Visualization and Verification for Lean 4 Platforms: claude_code."} +{"id": "d4feeb39e0bd31556844d4e4f8b320c80a1db54a336e57ad17a104752b3962f7", "repo_url": "https://github.com/willywg/prp-manager", "name": "prp-manager", "description": "Create and execute PRPs (Product Requirements Prompts) for feature implementation using Context Engineering principles. Use when planning new features, initializing PRP setup, executing existing PRPs,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/willywg/prp-manager/blob/main/prp-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T22:00:04Z"}, "embedding_text": "prp-manager. Create and execute PRPs (Product Requirements Prompts) for feature implementation using Context Engineering principles. Use when planning new features, initializing PRP setup, executing existing PRPs, Platforms: claude_code."} +{"id": "41576699bf905e503aea734702320ea8b4ab6149fc575308eea7430a30cb7c55", "repo_url": "https://github.com/agent-sh/agentsys", "name": "enhance-claude-memory", "description": "Use when improving CLAUDE.md or AGENTS.md project memory files.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agentsys/blob/main/.kiro/skills/enhance-claude-memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "enhance-claude-memory. Use when improving CLAUDE.md or AGENTS.md project memory files. Platforms: claude_code."} +{"id": "5d993b92a0c5bc0ccf4e8eed0102ab1a7843810c564194da5e15dd4c908f16f0", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "writing-plans", "description": "Create detailed implementation plans with bite-sized tasks", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/writing-plans/skills/writing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "writing-plans. Create detailed implementation plans with bite-sized tasks Platforms: claude_code."} +{"id": "372eb53cf2a0831c3dec17872cd6a1ee2d723509449d45cd9adff870749bbf7e", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "api-design-reviewer", "description": "Expert API design reviewer for REST, GraphQL, and gRPC APIs. Analyzes API designs for security, performance, consistency, scalability, and maintainability. Use when designing new APIs, reviewing API p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/api-design-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "api-design-reviewer. Expert API design reviewer for REST, GraphQL, and gRPC APIs. Analyzes API designs for security, performance, consistency, scalability, and maintainability. Use when designing new APIs, reviewing API p Platforms: claude_code."} +{"id": "a43497c5a18e9b4c15c029217f2981f9eae27520275b3664f6ceb0673abcb8d3", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "swift-patterns", "description": "Swift and SwiftUI development patterns for building native iOS/iPadOS applications. Use when implementing views, view models, data persistence, networking, concurrency, and navigation. Covers Swift 6.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/swift-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "swift-patterns. Swift and SwiftUI development patterns for building native iOS/iPadOS applications. Use when implementing views, view models, data persistence, networking, concurrency, and navigation. Covers Swift 6. Platforms: claude_code."} +{"id": "54aec16d70ec92310a1c943633e5be568538cbaf6e20f1c3644ae7073721da7c", "repo_url": "https://github.com/brianlovin/claude-config", "name": "reclaude", "description": "Refactor CLAUDE.md files to follow progressive disclosure principles. Use when CLAUDE.md is too long or disorganized.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianlovin/claude-config/blob/main/skills/reclaude/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 353, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T17:52:51Z"}, "embedding_text": "reclaude. Refactor CLAUDE.md files to follow progressive disclosure principles. Use when CLAUDE.md is too long or disorganized. Platforms: claude_code."} +{"id": "667c4c6acf1036f6ba423f0cca0c9799b9c85bad2d671b62474b6c8f59372577", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-unsafe", "description": "Unsafe code and FFI expert covering raw pointers (*mut, *const), FFI patterns, transmute, union,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-unsafe/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-unsafe. Unsafe code and FFI expert covering raw pointers (*mut, *const), FFI patterns, transmute, union, Platforms: claude_code."} +{"id": "c3981cc47f710e162bfa0e4337dcab3982908bca8f84728f496531fdefb0bf6f", "repo_url": "https://github.com/wildcard/caro", "name": "quality-engineer-manager", "description": "Quality Engineer Manager skill for orchestrating release validation, beta testing coordination, feedback analysis, and release sign-off decisions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wildcard/caro/blob/main/.claude/skills/quality-engineer-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 35, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:18:30Z"}, "embedding_text": "quality-engineer-manager. Quality Engineer Manager skill for orchestrating release validation, beta testing coordination, feedback analysis, and release sign-off decisions Platforms: claude_code."} +{"id": "c0a5a5443fcb02b028233145ae8d0525daee9b2f877cf4ee6bc37010d85d52c4", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "pdf", "description": "\u5168\u9762\u7684 PDF \u64cd\u4f5c\u5de5\u5177\u5305\uff0c\u7528\u4e8e\u63d0\u53d6\u6587\u672c\u548c\u8868\u683c\u3001\u521b\u5efa\u65b0 PDF\u3001\u5408\u5e76/\u62c6\u5206\u6587\u6863\u548c\u5904\u7406\u8868\u5355\u3002\u5f53 Claude \u9700\u8981\u586b\u5199 PDF \u8868\u5355\u6216\u4ee5\u7f16\u7a0b\u65b9\u5f0f\u5927\u89c4\u6a21\u5904\u7406\u3001\u751f\u6210\u6216\u5206\u6790 PDF \u6587\u6863\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/document-skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "pdf. \u5168\u9762\u7684 PDF \u64cd\u4f5c\u5de5\u5177\u5305\uff0c\u7528\u4e8e\u63d0\u53d6\u6587\u672c\u548c\u8868\u683c\u3001\u521b\u5efa\u65b0 PDF\u3001\u5408\u5e76/\u62c6\u5206\u6587\u6863\u548c\u5904\u7406\u8868\u5355\u3002\u5f53 Claude \u9700\u8981\u586b\u5199 PDF \u8868\u5355\u6216\u4ee5\u7f16\u7a0b\u65b9\u5f0f\u5927\u89c4\u6a21\u5904\u7406\u3001\u751f\u6210\u6216\u5206\u6790 PDF \u6587\u6863\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "f9fbbd87deefb13f59985b097dac97bf3b0db35a4d01ec522f9c6adebfc468a8", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "linux-at-spi2", "description": "Expert in AT-SPI2 (Assistive Technology Service Provider Interface) for Linux desktop automation. Specializes in accessible automation of GTK/Qt applications via D-Bus accessibility interface. HIGH-RI", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/linux-at-spi2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "linux-at-spi2. Expert in AT-SPI2 (Assistive Technology Service Provider Interface) for Linux desktop automation. Specializes in accessible automation of GTK/Qt applications via D-Bus accessibility interface. HIGH-RI Platforms: claude_code."} +{"id": "1d11172b0df7861f11867aa6129d45ad499da1719a6f15b3629b9e501ef88ee0", "repo_url": "https://github.com/nanorepublica/django-prodserver", "name": "global-conventions", "description": "A minimal skill that merely references external documentation without providing actual implementation or concrete guidance, offering little practical value.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nanorepublica/django-prodserver/blob/main/.claude/skills/global-conventions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 58, "skillhub_rank": "D", "skillhub_score": 2.9, "last_updated": "2026-05-21T05:56:15Z"}, "embedding_text": "global-conventions. A minimal skill that merely references external documentation without providing actual implementation or concrete guidance, offering little practical value. Platforms: claude_code."} +{"id": "6f82adbba9b4013eb1cc425fd6daef40e5fd1aadc6d26ebd100650fd792ef217", "repo_url": "https://github.com/jawwadfirdousi/agent-skills", "name": "supabase", "description": "CRITICAL: Primary database layer for ALL persistent data operations. Invoke for any CRUD (Create, Read, Update, Delete) operation, data persistence, SQL queries, schema changes, vector/embedding searc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jawwadfirdousi/agent-skills/blob/main/supabase/skills/supabase/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T22:31:50Z"}, "embedding_text": "supabase. CRITICAL: Primary database layer for ALL persistent data operations. Invoke for any CRUD (Create, Read, Update, Delete) operation, data persistence, SQL queries, schema changes, vector/embedding searc Platforms: claude_code."} +{"id": "07922f1d851765646b321d681cd9f084f600d1adf2f0fe12a565fec2852c4673", "repo_url": "https://github.com/nyldn/claude-octopus", "name": "workflows", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nyldn/claude-octopus/blob/main/.claude/skills/extract-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3663, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T12:41:23Z"}, "embedding_text": "workflows. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b89fee35186b3746320372a80ac0a284e14463553c877d3a2bf1466f1188cbde", "repo_url": "https://github.com/larksuite/cli", "name": "lark-slides", "description": "\u98de\u4e66\u5e7b\u706f\u7247\uff1a\u521b\u5efa\u548c\u7f16\u8f91\u5e7b\u706f\u7247\uff0c\u63a5\u53e3\u901a\u8fc7 XML \u534f\u8bae\u901a\u4fe1\u3002\u521b\u5efa\u6f14\u793a\u6587\u7a3f\u3001\u8bfb\u53d6\u5e7b\u706f\u7247\u5185\u5bb9\u3001\u7ba1\u7406\u5e7b\u706f\u7247\u9875\u9762\uff08\u521b\u5efa\u3001\u5220\u9664\u3001\u8bfb\u53d6\u3001\u5c40\u90e8\u66ff\u6362\uff09\u3002\u5f53\u7528\u6237\u9700\u8981\u521b\u5efa\u6216\u7f16\u8f91\u5e7b\u706f\u7247\u3001\u8bfb\u53d6\u6216\u4fee\u6539\u5355\u4e2a\u9875\u9762\u65f6\u4f7f\u7528\u3002\u5f53\u7528\u6237\u7ed9\u51fa doubao.com \u7684 /slides/ URL/token \u65f6\uff0c\u4e5f\u5e94\u76f4\u63a5\u4f7f\u7528\u672c skill\uff0c\u4e0d\u8981\u56e0\u4e3a\u57df\u540d\u4e0d\u662f\u98de\u4e66\u800c\u56de\u9000\u5230 WebFetch\uff1b\u8def\u7531\u4f9d\u636e\u662f URL \u8def\u5f84\u6a21\u5f0f\u548c token\uff0c\u800c\u4e0d\u662f\u57df\u540d\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/larksuite/cli/blob/main/skills/lark-slides/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14494, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:12:49Z"}, "embedding_text": "lark-slides. \u98de\u4e66\u5e7b\u706f\u7247\uff1a\u521b\u5efa\u548c\u7f16\u8f91\u5e7b\u706f\u7247\uff0c\u63a5\u53e3\u901a\u8fc7 XML \u534f\u8bae\u901a\u4fe1\u3002\u521b\u5efa\u6f14\u793a\u6587\u7a3f\u3001\u8bfb\u53d6\u5e7b\u706f\u7247\u5185\u5bb9\u3001\u7ba1\u7406\u5e7b\u706f\u7247\u9875\u9762\uff08\u521b\u5efa\u3001\u5220\u9664\u3001\u8bfb\u53d6\u3001\u5c40\u90e8\u66ff\u6362\uff09\u3002\u5f53\u7528\u6237\u9700\u8981\u521b\u5efa\u6216\u7f16\u8f91\u5e7b\u706f\u7247\u3001\u8bfb\u53d6\u6216\u4fee\u6539\u5355\u4e2a\u9875\u9762\u65f6\u4f7f\u7528\u3002\u5f53\u7528\u6237\u7ed9\u51fa doubao.com \u7684 /slides/ URL/token \u65f6\uff0c\u4e5f\u5e94\u76f4\u63a5\u4f7f\u7528\u672c skill\uff0c\u4e0d\u8981\u56e0\u4e3a\u57df\u540d\u4e0d\u662f\u98de\u4e66\u800c\u56de\u9000\u5230 WebFetch\uff1b\u8def\u7531\u4f9d\u636e\u662f URL \u8def\u5f84\u6a21\u5f0f\u548c token\uff0c\u800c\u4e0d\u662f\u57df\u540d\u3002 Platforms: claude_code."} +{"id": "6dbf56c83f9874e5198cb2a57187272ca28a111e65369a6bf902b6f2a0b63bb6", "repo_url": "https://github.com/bytedance/deer-flow", "name": "backend", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bytedance/deer-flow/blob/main/.agent/skills/blocking-io-guard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 72708, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:24:44Z"}, "embedding_text": "backend. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c541c6e4002bed62f8d6dbce2dafbc06836a5b6df1fff1c3aa40332b7dc57346", "repo_url": "https://github.com/0xdarkmatter/claude-mods", "name": "migrate-ops", "description": "Framework and language migration patterns - version upgrades, breaking changes, dependency audit, safe rollback. Use for: migrate, migration, upgrade, version bump, breaking changes, deprecation, depe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/0xdarkmatter/claude-mods/blob/main/skills/migrate-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:30:48Z"}, "embedding_text": "migrate-ops. Framework and language migration patterns - version upgrades, breaking changes, dependency audit, safe rollback. Use for: migrate, migration, upgrade, version bump, breaking changes, deprecation, depe Platforms: claude_code."} +{"id": "8bf16b76164b01183f64b0ba0242bdcbede0da9dbbb7b71751b1404c21c1003b", "repo_url": "https://github.com/jh941213/my-claude-code-asset", "name": "fastapi-templates", "description": "\ud504\ub85c\ub355\uc158 \uc218\uc900\uc758 FastAPI \ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \ubc0f \uc124\uc815 \uac00\uc774\ub4dc. async \ud328\ud134, DI, \uc5d0\ub7ec \ud578\ub4e4\ub9c1 \ud3ec\ud568. \ud2b8\ub9ac\uac70: \"FastAPI\", \"Python API \ud504\ub85c\uc81d\ud2b8\", \"FastAPI \ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131\", \"FastAPI \ud15c\ud50c\ub9bf\", \"FastAPI \uc124\uc815\" \uc548\ud2f0-\ud2b8\ub9ac\uac70: \"Django\", \"Flask\", \"Node.js API\", \"Express\", \"\uae30\uc874 F", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jh941213/my-claude-code-asset/blob/main/skills/fastapi-templates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-11T00:25:29Z"}, "embedding_text": "fastapi-templates. \ud504\ub85c\ub355\uc158 \uc218\uc900\uc758 FastAPI \ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131 \ubc0f \uc124\uc815 \uac00\uc774\ub4dc. async \ud328\ud134, DI, \uc5d0\ub7ec \ud578\ub4e4\ub9c1 \ud3ec\ud568. \ud2b8\ub9ac\uac70: \"FastAPI\", \"Python API \ud504\ub85c\uc81d\ud2b8\", \"FastAPI \ud504\ub85c\uc81d\ud2b8 \uc0dd\uc131\", \"FastAPI \ud15c\ud50c\ub9bf\", \"FastAPI \uc124\uc815\" \uc548\ud2f0-\ud2b8\ub9ac\uac70: \"Django\", \"Flask\", \"Node.js API\", \"Express\", \"\uae30\uc874 F Platforms: claude_code."} +{"id": "a3f78ce48442f8ad6a8ec34c29227ab601ae96d22f8f726ab4a63965c5fe2e47", "repo_url": "https://github.com/buyoung/skills", "name": "code-security-audit", "description": "Performs OWASP-based code security audits on any codebase. Analyzes source code against ASVS 5.0.0 verification requirements, API Security Top 10 2023 risk patterns, OWASP CheatSheet secure coding pra", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/code-security-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "code-security-audit. Performs OWASP-based code security audits on any codebase. Analyzes source code against ASVS 5.0.0 verification requirements, API Security Top 10 2023 risk patterns, OWASP CheatSheet secure coding pra Platforms: claude_code."} +{"id": "244f88afc5bedf22355d57019a0c17afe7e1234d95cf2163f17d62588b766557", "repo_url": "https://github.com/openai/skills", "name": "create-plan", "description": "Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/aspnet-core/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-plan"}, "quality": {"stars": 22704, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T19:15:40Z"}, "embedding_text": "create-plan. Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades. Platforms: claude_code."} +{"id": "b42f941f74ad9a016e33d73fcdbf8a3788c97d830656a519cde867042d0085c2", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "inno-paper-reviewer", "description": "Structured manuscript/grant review with checklist-based evaluation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/inno-paper-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "inno-paper-reviewer. Structured manuscript/grant review with checklist-based evaluation. Platforms: claude_code."} +{"id": "3630d05f59c2d3edce48db064e294ea11a3677ddef9a2e9d57f1f1e75601efb7", "repo_url": "https://github.com/memodb-io/acontext", "name": "Acontext", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/memodb-io/acontext/blob/main/landingpage/public/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3548, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T18:24:36Z"}, "embedding_text": "Acontext. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "267fe5aec14eda8d42704b12b8afce2f0e67e9d095684e415c73f413325e5c98", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-businesslogic", "description": "Detect business logic vulnerabilities in a codebase using a three-phase approach: threat modeling (domain analysis and attack scenarios), batched verify (check exploitable gaps in parallel subagents,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-businesslogic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-businesslogic. Detect business logic vulnerabilities in a codebase using a three-phase approach: threat modeling (domain analysis and attack scenarios), batched verify (check exploitable gaps in parallel subagents, Platforms: claude_code."} +{"id": "8a86529d7b26b2e4d46054a696d472d6b7642db6891269ae8823a81b2080b0c6", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "nanogpt", "description": "Educational GPT implementation in ~300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture from scratch. Train on Shakespeare (CPU) or OpenWebText (multi-GPU).", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/01-model-architecture/nanogpt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nanogpt"}, "quality": {"stars": 9933, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "nanogpt. Educational GPT implementation in ~300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture from scratch. Train on Shakespeare (CPU) or OpenWebText (multi-GPU). Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} +{"id": "419376220c2c4f64879b21ecef6e98a0ed6d7316eccc796cc737d19d07894b6f", "repo_url": "https://github.com/larksuite/cli", "name": "lark-okr", "description": "\u98de\u4e66 OKR\uff1a\u7ba1\u7406\u76ee\u6807\u4e0e\u5173\u952e\u7ed3\u679c\u3002\u67e5\u770b\u548c\u7f16\u8f91 OKR \u5468\u671f\u3001\u76ee\u6807\uff08Objective\uff09\u3001\u5173\u952e\u7ed3\u679c\uff08Key Result\uff09\u3001\u5bf9\u9f50\u5173\u7cfb\u3001\u91cf\u5316\u6307\u6807\u548c\u8fdb\u5c55\u8bb0\u5f55\u3002\u5f53\u7528\u6237\u9700\u8981\u67e5\u770b\u6216\u521b\u5efa OKR\u3001\u7ba1\u7406\u76ee\u6807\u548c\u5173\u952e\u7ed3\u679c\u3001\u67e5\u770b\u5bf9\u9f50\u5173\u7cfb\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/larksuite/cli/blob/main/skills/lark-okr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14494, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:12:49Z"}, "embedding_text": "lark-okr. \u98de\u4e66 OKR\uff1a\u7ba1\u7406\u76ee\u6807\u4e0e\u5173\u952e\u7ed3\u679c\u3002\u67e5\u770b\u548c\u7f16\u8f91 OKR \u5468\u671f\u3001\u76ee\u6807\uff08Objective\uff09\u3001\u5173\u952e\u7ed3\u679c\uff08Key Result\uff09\u3001\u5bf9\u9f50\u5173\u7cfb\u3001\u91cf\u5316\u6307\u6807\u548c\u8fdb\u5c55\u8bb0\u5f55\u3002\u5f53\u7528\u6237\u9700\u8981\u67e5\u770b\u6216\u521b\u5efa OKR\u3001\u7ba1\u7406\u76ee\u6807\u548c\u5173\u952e\u7ed3\u679c\u3001\u67e5\u770b\u5bf9\u9f50\u5173\u7cfb\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "4d13e128cf95fcf225bf1971a1aa111513f021f41752467fb7e6b3388c178f03", "repo_url": "https://github.com/pulumi/agent-skills", "name": "pulumi-cdk-to-pulumi", "description": "Convert an AWS CDK application to Pulumi. This skill MUST be loaded whenever a user requests migration or conversion of a CDK application to Pulumi.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pulumi/agent-skills/blob/main/migration/skills/pulumi-cdk-to-pulumi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T16:30:16Z"}, "embedding_text": "pulumi-cdk-to-pulumi. Convert an AWS CDK application to Pulumi. This skill MUST be loaded whenever a user requests migration or conversion of a CDK application to Pulumi. Platforms: claude_code."} +{"id": "a39043217070ae7d52d3b54f9057ba9310b901b5ffc50c91d2ef61767d64d2af", "repo_url": "https://github.com/mattpocock/skills", "name": "to-issues", "description": "Break a plan, spec, or PRD into independently-grabbable issues on the project issue tracker using tracer-bullet vertical slices. Use when user wants to convert a plan into issues, create implementatio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mattpocock/skills/blob/main/skills/engineering/to-issues/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 140812, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T08:41:52Z"}, "embedding_text": "to-issues. Break a plan, spec, or PRD into independently-grabbable issues on the project issue tracker using tracer-bullet vertical slices. Use when user wants to convert a plan into issues, create implementatio Platforms: claude_code."} +{"id": "7a7cad57bf26679986ae6172f6927588793ca98e04d2f7f32c503310715b85b4", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "glsl", "description": "GLSL shader programming for JARVIS holographic effects", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/glsl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "glsl. GLSL shader programming for JARVIS holographic effects Platforms: claude_code."} +{"id": "4c29e2410b8374e691966e6f3b7ca2e348554679581ed9f663e33f6d8dab2c43", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "huggingface-tokenizers", "description": "Fast tokenizers optimized for research and production. Rust-based implementation tokenizes 1GB in <20 seconds. Supports BPE, WordPiece, and Unigram algorithms. Train custom vocabularies, track alignments, handle padding/truncation. Integrates seamlessly with transformers. Use when you need high-performance tokenization or custom tokenizer training.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/02-tokenization/huggingface-tokenizers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install huggingface-tokenizers"}, "quality": {"stars": 9933, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "huggingface-tokenizers. Fast tokenizers optimized for research and production. Rust-based implementation tokenizes 1GB in <20 seconds. Supports BPE, WordPiece, and Unigram algorithms. Train custom vocabularies, track alignments, handle padding/truncation. Integrates seamlessly with transformers. Use when you need high-performance tokenization or custom tokenizer training. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} +{"id": "c322078d4e32fbc6aafb377634dc295e45e0e4b70980becf9a4a502fae8aa71d", "repo_url": "https://github.com/thedaviddias/skill-check", "name": "tdd-methodoly-expert", "description": "Use when implementing features or fixing bugs with strict Test-Driven Development (TDD). Activate for coding tasks that require new functionality, refactoring, or comprehensive test coverage, especial", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedaviddias/skill-check/blob/main/.agents/skills/tdd-methodoly-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T16:29:28Z"}, "embedding_text": "tdd-methodoly-expert. Use when implementing features or fixing bugs with strict Test-Driven Development (TDD). Activate for coding tasks that require new functionality, refactoring, or comprehensive test coverage, especial Platforms: claude_code."} +{"id": "77c8644194133822ced73fe6637c2cb0045b44ee7385c3863b6420f716ef9f83", "repo_url": "https://github.com/larksuite/cli", "name": "lark-attendance", "description": "\u98de\u4e66\u8003\u52e4\u6253\u5361\uff1a\u67e5\u8be2\u81ea\u5df1\u7684\u8003\u52e4\u6253\u5361\u8bb0\u5f55", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/larksuite/cli/blob/main/skills/lark-attendance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14494, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:12:49Z"}, "embedding_text": "lark-attendance. \u98de\u4e66\u8003\u52e4\u6253\u5361\uff1a\u67e5\u8be2\u81ea\u5df1\u7684\u8003\u52e4\u6253\u5361\u8bb0\u5f55 Platforms: claude_code."} +{"id": "5a16917738aa4792eb28bf3da9f301d081d8dab258755d26754614a3164266c5", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "pdf", "description": "Comprehensive PDF manipulation toolkit with OpenAI Codex integration for intelligent PDF-to-Markdown conversion. IMPORTANT - Always convert PDFs to markdown first using Codex, then process the markdow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/data/documents/pdf-text-extractor/encrypted-pdfs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "pdf. Comprehensive PDF manipulation toolkit with OpenAI Codex integration for intelligent PDF-to-Markdown conversion. IMPORTANT - Always convert PDFs to markdown first using Codex, then process the markdow Platforms: claude_code."} +{"id": "3f637f40ea7f7c63758e6f5b26d95e8ff2023ee4ba336f8b663d0365ca992f76", "repo_url": "https://github.com/zendevve/opentweak", "name": "mcaf-testing", "description": "Add or update automated tests for a change (bugfix, feature, refactor) using the repository\u2019s testing rules in `AGENTS.md`. Use TDD where applicable; derive scenarios from docs/Features/* and ADR inva", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zendevve/opentweak/blob/main/.codex/skills/mcaf-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-14T10:22:13Z"}, "embedding_text": "mcaf-testing. Add or update automated tests for a change (bugfix, feature, refactor) using the repository\u2019s testing rules in `AGENTS.md`. Use TDD where applicable; derive scenarios from docs/Features/* and ADR inva Platforms: claude_code."} +{"id": "042e65fee1e7119df274ff0cf2c0048e06fc7ef19a1f7448e9c1a9afa2e822b1", "repo_url": "https://github.com/zendevve/opentweak", "name": "mcaf-formatting", "description": "Format code and keep style consistent using the repository\u2019s canonical formatting/lint commands from `AGENTS.md`. Use after implementing changes or when formatting drift causes noisy diffs; keep forma", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zendevve/opentweak/blob/main/.codex/skills/mcaf-formatting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-14T10:22:13Z"}, "embedding_text": "mcaf-formatting. Format code and keep style consistent using the repository\u2019s canonical formatting/lint commands from `AGENTS.md`. Use after implementing changes or when formatting drift causes noisy diffs; keep forma Platforms: claude_code."} +{"id": "983704cd7c795d23fb02653f206d05a1ba820ff001c601b299dafb9e12f9fd45", "repo_url": "https://github.com/miyatti777/aipo", "name": "aipo", "description": "AI Product Owner - GOAL\u3060\u3051\u4f1d\u3048\u308c\u3070AI\u304c\u52dd\u624b\u306b\u4ed5\u4e8b\u3092\u9032\u3081\u308b\u6c4e\u7528\u554f\u984c\u89e3\u6c7a\u30b7\u30b9\u30c6\u30e0", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/miyatti777/aipo/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T04:39:49Z"}, "embedding_text": "aipo. AI Product Owner - GOAL\u3060\u3051\u4f1d\u3048\u308c\u3070AI\u304c\u52dd\u624b\u306b\u4ed5\u4e8b\u3092\u9032\u3081\u308b\u6c4e\u7528\u554f\u984c\u89e3\u6c7a\u30b7\u30b9\u30c6\u30e0 Platforms: claude_code."} +{"id": "965a19fdac40fd17bb67a23140e01a5818819215d25ba9831521a0a518316951", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "kafka", "description": "Apache Kafka on Kubernetes with Strimzi (KRaft mode, no ZooKeeper).\nThis skill should be used when users ask to deploy Kafka clusters, build\nproducers/consumers, implement event-driven patterns, or de", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/kafka/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "kafka. Apache Kafka on Kubernetes with Strimzi (KRaft mode, no ZooKeeper).\nThis skill should be used when users ask to deploy Kafka clusters, build\nproducers/consumers, implement event-driven patterns, or de Platforms: claude_code."} +{"id": "7da680a46dddfba90027864add2e8e963f64ac6ec3ba6cd37763ede0101bc2ae", "repo_url": "https://github.com/sailscastshq/pellicule", "name": "pellicule", "description": "Create videos with Vue using Pellicule - a Vue-native video rendering library", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sailscastshq/pellicule/blob/main/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 68, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T16:06:50Z"}, "embedding_text": "pellicule. Create videos with Vue using Pellicule - a Vue-native video rendering library Platforms: claude_code."} +{"id": "ef7f7a293c1abc3f8ef1461dcff9bb94e01279c7f7046d284f2c475c71042148", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "message-bus", "description": "File-based message queue for inter-agent coordination. Used by workers AND board directors to communicate. Provides: progress updates, task completion signals, file locking, board deliberation. Core i", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/message-bus/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "message-bus. File-based message queue for inter-agent coordination. Used by workers AND board directors to communicate. Provides: progress updates, task completion signals, file locking, board deliberation. Core i Platforms: claude_code."} +{"id": "f25ab3b6408252b22f62b00af58239a5e70abe1829d9854ef9ac310e2d51c10a", "repo_url": "https://github.com/zendevve/opentweak", "name": "mcaf-feature-spec", "description": "Create or update a feature spec under `docs/Features/` using `docs/templates/Feature-Template.md`: business rules, user flows, system behaviour, Mermaid diagram(s), verification plan, and Definition o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zendevve/opentweak/blob/main/.codex/skills/mcaf-feature-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-14T10:22:13Z"}, "embedding_text": "mcaf-feature-spec. Create or update a feature spec under `docs/Features/` using `docs/templates/Feature-Template.md`: business rules, user flows, system behaviour, Mermaid diagram(s), verification plan, and Definition o Platforms: claude_code."} +{"id": "232c07240678a918b8ac24b9db945133bf5d37cc02549909f1c833224b590053", "repo_url": "https://github.com/scientiacapital/skills", "name": "groq-inference", "description": "Fast LLM inference with Groq API - chat, vision, audio STT/TTS, tool use. Use when: groq, fast inference, low latency, whisper, PlayAI TTS, Llama, vision API, tool calling, voice agents, real-time AI.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/groq-inference-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "groq-inference. Fast LLM inference with Groq API - chat, vision, audio STT/TTS, tool use. Use when: groq, fast inference, low latency, whisper, PlayAI TTS, Llama, vision API, tool calling, voice agents, real-time AI. Platforms: claude_code."} +{"id": "df0de08984ec7901cad0af70f94eea4a4286bb9ebfaa605cfe5f3c8ee693a88d", "repo_url": "https://github.com/eferro/augmentedcode-skills", "name": "mutation-testing-python", "description": "Mutation testing patterns for Python using mutmut. Use when analyzing Python code to find weak or missing tests, verifying pytest effectiveness, strengthening Python test suites, or validating TDD wor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eferro/augmentedcode-skills/blob/main/mutation-testing-python/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T09:25:57Z"}, "embedding_text": "mutation-testing-python. Mutation testing patterns for Python using mutmut. Use when analyzing Python code to find weak or missing tests, verifying pytest effectiveness, strengthening Python test suites, or validating TDD wor Platforms: claude_code."} +{"id": "24f17144bb30a7efb7dd9978a6283567b2e3a1a72df0c190617e2d3707bf1cbf", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "tauri", "description": "Cross-platform desktop application framework combining Rust backend with web frontend, emphasizing security and performance", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/tauri/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "tauri. Cross-platform desktop application framework combining Rust backend with web frontend, emphasizing security and performance Platforms: claude_code."} +{"id": "0f550b9a62c7999dacd3b25c7a3c275305c0441b04bdd15df295c5a1fca6b987", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-quotas", "description": "Check/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection. WHEN: \"check quotas\", \"service limits\", \"current usage\", \"request quota increase\", \"quota exceeded\", \"validate capacity\", \"regional availability\", \"provisioning limits\", \"vCPU limit\", \"how many vCPUs available in my subscription\".", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-quotas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-quotas"}, "quality": {"stars": 225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:17:52Z"}, "embedding_text": "azure-quotas. Check/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection. WHEN: \"check quotas\", \"service limits\", \"current usage\", \"request quota increase\", \"quota exceeded\", \"validate capacity\", \"regional availability\", \"provisioning limits\", \"vCPU limit\", \"how many vCPUs available in my subscription\". Platforms: claude_code."} +{"id": "3316b0098f8d3c9626010b553b39218e0b567a26f1425dbfa4e0a3200ee34088", "repo_url": "https://github.com/basher83/lunar-claude", "name": "ansible-proxmox", "description": "This skill should be used when automating Proxmox VE with Ansible, creating VMs or templates, managing Proxmox clusters, using community.proxmox collection, or deciding between native modules and CLI", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/infrastructure/ansible-workflows/skills/ansible-proxmox/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "ansible-proxmox. This skill should be used when automating Proxmox VE with Ansible, creating VMs or templates, managing Proxmox clusters, using community.proxmox collection, or deciding between native modules and CLI Platforms: claude_code."} +{"id": "6a9383655b22d2ec7dba5418eb5fbf9e8b55cf201d3e8184ada068d5f2a415c5", "repo_url": "https://github.com/polyuiislab/infiagent", "name": "internal-comms", "description": "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 com", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/polyuiislab/infiagent/blob/main/skills/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T12:34:54Z"}, "embedding_text": "internal-comms. 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 com Platforms: claude_code."} +{"id": "3460c619a5b378e99b607e77141a7213023ac28c3cc922e7240f714541a6b838", "repo_url": "https://github.com/bobchao/pm-skills-rfp-to-stories", "name": "RFP Analyzer", "description": "Performs structured analysis of RFP (Request for Proposal) or requirement documents, identifying stakeholders, functional modules, system constraints, and generating key clarification questions. This", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bobchao/pm-skills-rfp-to-stories/blob/main/rfp-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-02T00:56:11Z"}, "embedding_text": "RFP Analyzer. Performs structured analysis of RFP (Request for Proposal) or requirement documents, identifying stakeholders, functional modules, system constraints, and generating key clarification questions. This Platforms: claude_code."} +{"id": "f51535effa93d9f49eb1ea3761c44e0712b9656ade5a514deb098d445deac16f", "repo_url": "https://github.com/shanselman/nightscout-cgm-skill", "name": "nightscout-cgm", "description": "Analyze CGM blood glucose data from Nightscout. Use this skill when asked about current glucose levels, blood sugar trends, A1C estimates, time-in-range statistics, glucose variability, or diabetes ma", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shanselman/nightscout-cgm-skill/blob/master/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T01:53:01Z"}, "embedding_text": "nightscout-cgm. Analyze CGM blood glucose data from Nightscout. Use this skill when asked about current glucose levels, blood sugar trends, A1C estimates, time-in-range statistics, glucose variability, or diabetes ma Platforms: claude_code."} +{"id": "d752a391bb1e514b845b040e0e0735c79b1b7e7dbba2f899212ec1c74bfd76e8", "repo_url": "https://github.com/plurigrid/asi", "name": "scum-resource", "description": "SCUM Resource Skill", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/scum-resource/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "scum-resource. SCUM Resource Skill Platforms: claude_code."} +{"id": "228ae12922db84ce6b747c55bdaeb4c847fecff7ba9108c5de8540ba5515cfe5", "repo_url": "https://github.com/biocontext-ai/skill-to-mcp", "name": "single-cell-rna-qc", "description": "Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations. Use when users request QC analysis, fi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/biocontext-ai/skill-to-mcp/blob/main/skills/single-cell-rna-qc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-27T17:36:58Z"}, "embedding_text": "single-cell-rna-qc. Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations. Use when users request QC analysis, fi Platforms: claude_code."} +{"id": "4aa325f1267fefe5cae82915659c4d2acd7f26b3fc5335d79f387e60e11e8590", "repo_url": "https://github.com/frmoretto/stream-coding", "name": "stream-coding", "description": "Documentation-first development methodology. The goal is AI-ready documentation - when docs are clear enough, code generation becomes automatic. Triggers on \"Build\", \"Create\", \"Implement\", \"Document\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/frmoretto/stream-coding/blob/main/.claude/skills/stream-coding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 94, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-26T13:10:04Z"}, "embedding_text": "stream-coding. Documentation-first development methodology. The goal is AI-ready documentation - when docs are clear enough, code generation becomes automatic. Triggers on \"Build\", \"Create\", \"Implement\", \"Document\", Platforms: claude_code."} +{"id": "de01dced8c798f2a70b49e74850e993e772a82291efc0a62dbfa2af39d6c3a7d", "repo_url": "https://github.com/pulumi/agent-skills", "name": "pulumi-arm-to-pulumi", "description": "Convert or migrate Azure ARM (Azure Resource Manager) templates, Bicep templates, or code to Pulumi, including importing existing Azure resources. This skill MUST be loaded whenever a user requests mi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pulumi/agent-skills/blob/main/migration/skills/pulumi-arm-to-pulumi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T16:30:16Z"}, "embedding_text": "pulumi-arm-to-pulumi. Convert or migrate Azure ARM (Azure Resource Manager) templates, Bicep templates, or code to Pulumi, including importing existing Azure resources. This skill MUST be loaded whenever a user requests mi Platforms: claude_code."} +{"id": "814cdc9170bb8a303a9ab28c45ef0557e421da2b2155b286de3d3bcad245e941", "repo_url": "https://github.com/cipherstash/cipherpowers", "name": "tdd-enforcement-algorithm", "description": "Algorithmic decision tree enforcing test-first development via boolean conditions instead of imperatives", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cipherstash/cipherpowers/blob/main/plugin/skills/tdd-enforcement-algorithm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T23:43:27Z"}, "embedding_text": "tdd-enforcement-algorithm. Algorithmic decision tree enforcing test-first development via boolean conditions instead of imperatives Platforms: claude_code."} +{"id": "8aadd553cca796331d3624e1d6dc2a7b2707cec74bb5faf3e3ad1cf6edbf7aa5", "repo_url": "https://github.com/nex-agi/nexau", "name": "nexau-agent", "description": "Guide for building NexAU agents from scratch. This skill should be used when implementing a new NexAU agent \u2014 including YAML configuration, system prompt, tool definitions, tool bindings, entry point", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nex-agi/nexau/blob/main/examples/nexau_building_team/skills/nexau-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 148, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:44:11Z"}, "embedding_text": "nexau-agent. Guide for building NexAU agents from scratch. This skill should be used when implementing a new NexAU agent \u2014 including YAML configuration, system prompt, tool definitions, tool bindings, entry point Platforms: claude_code."} +{"id": "d8b5f4b4ae075931e5c085f25e91ec15c180193b44d4109d930171f743834a59", "repo_url": "https://github.com/policyengine/policyengine-claude", "name": "policyengine-design-skill", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/policyengine/policyengine-claude/blob/main/skills/documentation/policyengine-design-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:31:50Z"}, "embedding_text": "policyengine-design-skill. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b043b6dc512a514300fab53c1d18a8729e89ef4142a741e5917ed4332cf13f88", "repo_url": "https://github.com/zanwei/design-dna", "name": "design-dna", "description": "Extract, define, and apply design DNA across three dimensions: design system (tokens), design style (qualitative feel), and visual effects (Canvas, WebGL, 3D, particles, shaders, scroll effects, etc.)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zanwei/design-dna/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 764, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-13T01:30:34Z"}, "embedding_text": "design-dna. Extract, define, and apply design DNA across three dimensions: design system (tokens), design style (qualitative feel), and visual effects (Canvas, WebGL, 3D, particles, shaders, scroll effects, etc.) Platforms: claude_code."} +{"id": "cfc9dfdca5935f3efc2c41bd2da46dc628102ed3a717d1cdacf941ae0c702525", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capacitor-ci-cd", "description": "Complete CI/CD guide for Capacitor apps covering GitHub Actions, GitLab CI, build automation, app signing, and deployment pipelines. Use this skill when users need to automate their build and release", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-deployment/skills/capacitor-ci-cd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capacitor-ci-cd. Complete CI/CD guide for Capacitor apps covering GitHub Actions, GitLab CI, build automation, app signing, and deployment pipelines. Use this skill when users need to automate their build and release Platforms: claude_code."} +{"id": "0eb7cddaca227c7f699c9690e709f01bb3bdc21c7e786a1e39750a6f6c2059e9", "repo_url": "https://github.com/scientiacapital/skills", "name": "openrouter-skill", "description": "Orchestrate Chinese LLMs (DeepSeek, Qwen, Yi, Moonshot) through OpenRouter API with LangChain. Use when: openrouter, chinese llm, deepseek, qwen, moonshot, yi model, model routing, auto router, llm or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/openrouter-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "openrouter-skill. Orchestrate Chinese LLMs (DeepSeek, Qwen, Yi, Moonshot) through OpenRouter API with LangChain. Use when: openrouter, chinese llm, deepseek, qwen, moonshot, yi model, model routing, auto router, llm or Platforms: claude_code."} +{"id": "8216c1acbcc73359a3a67ada8e2510269e6b3f8c4a42a6b6a61acd2cc220ff71", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "skills-index-snippets", "description": "Create and maintain AGENTS.md / CLAUDE.md snippet indexes that route tasks to the correct dotnet-skills skills and agents (including compressed Vercel-style indexes).", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/skills-index-snippets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skills-index-snippets"}, "quality": {"stars": 1024, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T01:02:32Z"}, "embedding_text": "skills-index-snippets. Create and maintain AGENTS.md / CLAUDE.md snippet indexes that route tasks to the correct dotnet-skills skills and agents (including compressed Vercel-style indexes). Platforms: claude_code."} +{"id": "38a1dcb8f1c9c3aea835a57d608cd11bc0dd7db58c4b6bf2fbc65ea3f198f95b", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "verification-before-completion", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/verification-before-completion/skills/verification-before-completion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "verification-before-completion. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5a402c72b27ab99aa02af5b0e7e320d6cf9da215dd65342aaa0d4acdc4a189c8", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "subagent-driven-development", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/subagent-driven-development/skills/subagent-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "subagent-driven-development. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "955478cf34cba2edda94791a04b3dbfaae9a35231188d1b373a517ce490c0d7d", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "capgo-live-updates", "description": "Complete guide to implementing live updates in Capacitor apps using Capgo. Covers account creation, plugin installation, configuration, update strategies, and CI/CD integration. Use this skill when us", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capgo-cloud/skills/capgo-live-updates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "capgo-live-updates. Complete guide to implementing live updates in Capacitor apps using Capgo. Covers account creation, plugin installation, configuration, update strategies, and CI/CD integration. Use this skill when us Platforms: claude_code."} +{"id": "fb72ff819f4f1ce8e7b31fe1d3a18e338509c975d89ca38a5f88b8668a1ef196", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "language-framework-specialist", "description": "\u63d0\u4f9b\u7279\u5b9a\u7f16\u7a0b\u8bed\u8a00\u548c\u6846\u67b6\u7684\u6df1\u5ea6\u4e13\u4e1a\u77e5\u8bc6\u3002\u5f53\u9700\u8981\u5904\u7406\u7279\u5b9a\u6280\u672f\u6808\u7684\u590d\u6742\u95ee\u9898\u65f6\u4f7f\u7528", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/language-framework-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "language-framework-specialist. \u63d0\u4f9b\u7279\u5b9a\u7f16\u7a0b\u8bed\u8a00\u548c\u6846\u67b6\u7684\u6df1\u5ea6\u4e13\u4e1a\u77e5\u8bc6\u3002\u5f53\u9700\u8981\u5904\u7406\u7279\u5b9a\u6280\u672f\u6808\u7684\u590d\u6742\u95ee\u9898\u65f6\u4f7f\u7528 Platforms: claude_code."} +{"id": "b6d1ba324ff5458fd41379c331d9f7ae6f6901c8f0709f82a651baa2abf61c55", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-styling", "description": "Style Slidev slides with UnoCSS and custom CSS. Use this skill for custom colors, typography, animations, and responsive designs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/customization/slidev-styling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-styling. Style Slidev slides with UnoCSS and custom CSS. Use this skill for custom colors, typography, animations, and responsive designs. Platforms: claude_code."} +{"id": "7d40dc7d0bd9a0980af1acf35713a9008131091ffb6ae4feebe21f83f49ab7b5", "repo_url": "https://github.com/isjiamu/jiamu-skills", "name": "peers-advisory-group", "description": "\u79c1\u8463\u4f1a\u4e13\u5bb6\u52a9\u624b\uff0c\u5f15\u5bfc\u7528\u6237\u5b8c\u6210\u5b8c\u6574\u7684\u79c1\u8463\u4f1a\u6d41\u7a0b\u3002\u901a\u8fc7\u56db\u4f4d\u9876\u7ea7\u5e55\u50da\uff08\u5df4\u83f2\u7279\u3001\u6bd4\u5c14\u00b7\u76d6\u8328\u3001\u9a6c\u65af\u514b\u3001\u4e54\u5e03\u65af\uff09\u7684\u591a\u8f6e\u63d0\u95ee\u548c\u53cd\u9988\uff0c\u5e2e\u52a9\u7528\u6237\u6df1\u5165\u5256\u6790\u95ee\u9898\u672c\u8d28\u5e76\u83b7\u5f97\u53ef\u6267\u884c\u7684\u89e3\u51b3\u65b9\u6848\u3002\u89e6\u53d1\u573a\u666f\uff1a(1) \u7528\u6237\u8bf4\"\u5f00\u59cb\u79c1\u8463\u4f1a\"\u3001\"\u79c1\u8463\u4f1a\"\u3001\"peers advisory\"\uff0c(2) \u7528\u6237\u9700\u8981\u591a\u89d2\u5ea6\u5206\u6790\u590d\u6742\u51b3\u7b56\u95ee\u9898\uff0c(3) \u7528\u6237\u5e0c\u671b\u83b7\u5f97\u4e0d\u540c\u5546\u4e1a\u9886\u8896\u89c6\u89d2\u7684\u5efa\u8bae\uff0c(4) \u7528\u6237\u9762\u4e34\u804c\u4e1a\u3001\u521b\u4e1a\u3001\u6295\u8d44\u7b49\u91cd\u5927\u51b3\u7b56\u9700\u8981\u6df1\u5ea6\u54a8\u8be2\u3002\u652f\u6301\u81ea\u5b9a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/isjiamu/jiamu-skills/blob/main/peers-advisory-group/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 92, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T14:23:16Z"}, "embedding_text": "peers-advisory-group. \u79c1\u8463\u4f1a\u4e13\u5bb6\u52a9\u624b\uff0c\u5f15\u5bfc\u7528\u6237\u5b8c\u6210\u5b8c\u6574\u7684\u79c1\u8463\u4f1a\u6d41\u7a0b\u3002\u901a\u8fc7\u56db\u4f4d\u9876\u7ea7\u5e55\u50da\uff08\u5df4\u83f2\u7279\u3001\u6bd4\u5c14\u00b7\u76d6\u8328\u3001\u9a6c\u65af\u514b\u3001\u4e54\u5e03\u65af\uff09\u7684\u591a\u8f6e\u63d0\u95ee\u548c\u53cd\u9988\uff0c\u5e2e\u52a9\u7528\u6237\u6df1\u5165\u5256\u6790\u95ee\u9898\u672c\u8d28\u5e76\u83b7\u5f97\u53ef\u6267\u884c\u7684\u89e3\u51b3\u65b9\u6848\u3002\u89e6\u53d1\u573a\u666f\uff1a(1) \u7528\u6237\u8bf4\"\u5f00\u59cb\u79c1\u8463\u4f1a\"\u3001\"\u79c1\u8463\u4f1a\"\u3001\"peers advisory\"\uff0c(2) \u7528\u6237\u9700\u8981\u591a\u89d2\u5ea6\u5206\u6790\u590d\u6742\u51b3\u7b56\u95ee\u9898\uff0c(3) \u7528\u6237\u5e0c\u671b\u83b7\u5f97\u4e0d\u540c\u5546\u4e1a\u9886\u8896\u89c6\u89d2\u7684\u5efa\u8bae\uff0c(4) \u7528\u6237\u9762\u4e34\u804c\u4e1a\u3001\u521b\u4e1a\u3001\u6295\u8d44\u7b49\u91cd\u5927\u51b3\u7b56\u9700\u8981\u6df1\u5ea6\u54a8\u8be2\u3002\u652f\u6301\u81ea\u5b9a Platforms: claude_code."} +{"id": "28d95da2bc027f2db2d482d180047b574cf282d30d30bc86e48199bee8c6a2ed", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "docker", "description": "Production-grade Docker containerization for Python and Node.js applications.\nThis skill should be used when users ask to containerize applications, create Dockerfiles,\ndockerize projects, or set up D", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/docker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "docker. Production-grade Docker containerization for Python and Node.js applications.\nThis skill should be used when users ask to containerize applications, create Dockerfiles,\ndockerize projects, or set up D Platforms: claude_code."} +{"id": "8bcb60b23c3fc955026db65f33b6376b14a13f3ea6af44c7bd86f4e209357e1e", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "fastapi-backend", "description": "Build production-grade FastAPI backends with SQLModel, Pydantic, and JWT authentication. Use this skill when building REST APIs, integrating with Neon PostgreSQL, implementing Better Auth JWT verifica", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/fastapi-backend/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "fastapi-backend. Build production-grade FastAPI backends with SQLModel, Pydantic, and JWT authentication. Use this skill when building REST APIs, integrating with Neon PostgreSQL, implementing Better Auth JWT verifica Platforms: claude_code."} +{"id": "2a473baa39280d6957fdc06419e3011e1b5445d5ea1d33ace615296e628fb71a", "repo_url": "https://github.com/sendaifun/skills", "name": "metaplex", "description": "Complete Metaplex Protocol guide for Solana NFTs and digital assets. Covers Core (next-gen NFTs), Token Metadata, Bubblegum (compressed NFTs), Candy Machine, Genesis (token launches), MPL-Hybrid, Inscriptions, DAS API, and the Umi framework. The single source of truth for all Metaplex integrations.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/metaplex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install metaplex"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "metaplex. Complete Metaplex Protocol guide for Solana NFTs and digital assets. Covers Core (next-gen NFTs), Token Metadata, Bubblegum (compressed NFTs), Candy Machine, Genesis (token launches), MPL-Hybrid, Inscriptions, DAS API, and the Umi framework. The single source of truth for all Metaplex integrations. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "d172c58feb20b93d1a0ae029ec98abf21cf65dba2693e0fbbb454f1c85198fc5", "repo_url": "https://github.com/voxel51/fiftyone-skills", "name": "fiftyone-dataset-import", "description": "Imports datasets into FiftyOne with automatic format detection. Supports all media types (images, videos, point clouds), label formats (COCO, YOLO, VOC, KITTI), multimodal grouped datasets, and Huggin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/voxel51/fiftyone-skills/blob/main/skills/fiftyone-dataset-import/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 35, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-03T12:12:30Z"}, "embedding_text": "fiftyone-dataset-import. Imports datasets into FiftyOne with automatic format detection. Supports all media types (images, videos, point clouds), label formats (COCO, YOLO, VOC, KITTI), multimodal grouped datasets, and Huggin Platforms: claude_code."} +{"id": "7e70cbe5e6c081bebe8e8d6d6e64a4f31efbd8465994e6ebf4757db19f7d0acd", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "hooks-reference", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/hooks-reference/skills/hooks-reference/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "hooks-reference. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6ebb3f96a08cb25c78742d6a5048fb6e55c93212d6e6607e6a177a4a382839b6", "repo_url": "https://github.com/sendaifun/skills", "name": "squads", "description": "Complete guide for Squads Protocol - Solana's leading smart account and multisig infrastructure. Covers Squads V4 Multisig for team treasury management, Smart Account Program for account abstraction and programmable wallets, and Grid for stablecoin rails and fintech infrastructure.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/squads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install squads"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "squads. Complete guide for Squads Protocol - Solana's leading smart account and multisig infrastructure. Covers Squads V4 Multisig for team treasury management, Smart Account Program for account abstraction and programmable wallets, and Grid for stablecoin rails and fintech infrastructure. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "bae7921dff67f1717920fa236152e0b2ad973abf50630f9ec36c9223415dd0ac", "repo_url": "https://github.com/backnotprop/rg_history", "name": "rg_history", "description": "Search your conversation history using ripgrep. Use when you need to find previous messages, file edits, tool calls, or decisions from earlier in the session.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/backnotprop/rg_history/blob/main/skill/rg_history/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-20T23:42:57Z"}, "embedding_text": "rg_history. Search your conversation history using ripgrep. Use when you need to find previous messages, file edits, tool calls, or decisions from earlier in the session. Platforms: claude_code."} +{"id": "6593fc3dca5e6ab142011c346645dba3753351b22cbf4dbdca42230bec50617c", "repo_url": "https://github.com/plurigrid/asi", "name": "mlx-apple-silicon", "description": "Run LLMs on Apple Silicon with MLX/mlx_lm - unified memory, 4-bit quantization, streaming generation, prompt caching. Optimal for M-series chips.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/mlx-apple-silicon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "mlx-apple-silicon. Run LLMs on Apple Silicon with MLX/mlx_lm - unified memory, 4-bit quantization, streaming generation, prompt caching. Optimal for M-series chips. Platforms: claude_code."} +{"id": "1e06829b54dfc251b7326c0097f1d84d1110515a47d0f925d83d044d1e28ce52", "repo_url": "https://github.com/sheeki03/few-word", "name": "fewword", "description": "Use this skill when tool outputs exceed 2000 tokens, tasks span multiple conversation turns, sub-agents need to share state, context window is bloating, plans need to persist across summarization, terminal/log output needs selective querying, or when user mentions \"offload context\", \"dynamic context discovery\", \"filesystem memory\", \"scratch pad\", \"reduce context bloat\", or \"just-in-time context loading\".", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agents", "claude-code", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "context-engineering", "token-optimization"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sheeki03/few-word/blob/main/plugins/fewword/skills/fewword/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install fewword"}, "quality": {"stars": 38, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-23T12:30:19Z"}, "embedding_text": "fewword. Use this skill when tool outputs exceed 2000 tokens, tasks span multiple conversation turns, sub-agents need to share state, context window is bloating, plans need to persist across summarization, terminal/log output needs selective querying, or when user mentions \"offload context\", \"dynamic context discovery\", \"filesystem memory\", \"scratch pad\", \"reduce context bloat\", or \"just-in-time context loading\". Categories: ai-agents, claude-code, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, context-engineering, token-optimization. Platforms: claude_code."} +{"id": "5b3a69493fe3d0adafda92c328aceaaac573f59b0095ece475ea4d272d355fc7", "repo_url": "https://github.com/black-forest-labs/skills", "name": "bfl-api", "description": "BFL FLUX API integration guide covering endpoints, async polling patterns, rate limiting, error handling, webhooks, and regional endpoints with Python and TypeScript code examples.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/black-forest-labs/skills/blob/master/skills/bfl-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-03T14:49:56Z"}, "embedding_text": "bfl-api. BFL FLUX API integration guide covering endpoints, async polling patterns, rate limiting, error handling, webhooks, and regional endpoints with Python and TypeScript code examples. Platforms: claude_code."} +{"id": "c90da86fec570d5bafe9590e8c6dcb06e933b5e44a899aee16169a937ca846ec", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "design-and-build", "description": "Use when making architecture decisions, setting up CI/CD, managing technical debt, or choosing branching strategies - enforces ADR requirements and prevents resume-driven design", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-sdlc-engineering/skills/design-and-build/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "design-and-build. Use when making architecture decisions, setting up CI/CD, managing technical debt, or choosing branching strategies - enforces ADR requirements and prevents resume-driven design Platforms: claude_code."} +{"id": "9ee7b5a0a34a6e9407ff2a0e5da69ad38da4a6eb52269c150fd10485c70218bd", "repo_url": "https://github.com/i2y/castella", "name": "castella-core", "description": "Build desktop, web, or terminal UIs with Castella. Create widgets, components, layouts, manage reactive state, handle events, and use the theme system.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/i2y/castella/blob/main/skills/castella-core/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T04:00:38Z"}, "embedding_text": "castella-core. Build desktop, web, or terminal UIs with Castella. Create widgets, components, layouts, manage reactive state, handle events, and use the theme system. Platforms: claude_code."} +{"id": "f10a6102c9add09f4b5b1edb9c2cf3b78ef8ccab8a8d1357ce3f2558303ed1f4", "repo_url": "https://github.com/collaborator-ai/collab-public", "name": "collab-public", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/collaborator-ai/collab-public/blob/main/collab-electron/packages/collab-canvas-skill/skills/collab-canvas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2546, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T12:37:59Z"}, "embedding_text": "collab-public. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7ff2eb33c0ae0d166bb178565c6989356083d66f9bfe4b3909f5d7f9e88a865c", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-storage-qdrant", "description": "Configure Qdrant vector database for GrepAI. Use this skill for high-performance vector search.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/storage/grepai-storage-qdrant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-storage-qdrant. Configure Qdrant vector database for GrepAI. Use this skill for high-performance vector search. Platforms: claude_code."} +{"id": "d7c30766b442fdb35bb4980af23cdb21e4ac6246466d64444ab1bd573985596f", "repo_url": "https://github.com/aden-hive/hive", "name": "triage-issue", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aden-hive/hive/blob/main/.claude/skills/triage-issue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install triage-issue"}, "quality": {"stars": 10579, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T21:55:22Z"}, "embedding_text": "triage-issue. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "9cfb057514b180c258354860d3d8dfe54d4f102ef97ccafce2636b9ec15911bd", "repo_url": "https://github.com/nexu-io/open-design", "name": "algorithmic-art", "description": "Create generative art using p5.js with seeded randomness so every render is reproducible. Useful for procedural posters, motion-style stills, and artistic frame studies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nexu-io/open-design/blob/main/skills/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 68931, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T11:40:55Z"}, "embedding_text": "algorithmic-art. Create generative art using p5.js with seeded randomness so every render is reproducible. Useful for procedural posters, motion-style stills, and artistic frame studies. Platforms: claude_code."} +{"id": "e1d711792bd8637901759e828182110ea492fc870f9d4eb868f6633dbc657f05", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-embeddings-lmstudio", "description": "Configure LM Studio as embedding provider for GrepAI. Use this skill for local embeddings with a GUI interface.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/embeddings/grepai-embeddings-lmstudio/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-embeddings-lmstudio. Configure LM Studio as embedding provider for GrepAI. Use this skill for local embeddings with a GUI interface. Platforms: claude_code."} +{"id": "c193fff49f754c5cecceaf0ede7218951c61328cb4afc2303a3c5ba30b3ccdac", "repo_url": "https://github.com/k-dense-ai/scientific-agent-skills", "name": "astropy", "description": "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 cal", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/k-dense-ai/scientific-agent-skills/blob/main/skills/astropy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29025, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T23:48:13Z"}, "embedding_text": "astropy. 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 cal Platforms: claude_code."} +{"id": "9da64cd854062753ea1f1aec214aa8fa89f897c8728de2a4c36400957733e574", "repo_url": "https://github.com/sendaifun/skills", "name": "pumpfun", "description": "Complete PumpFun Protocol guide for building token launches, bonding curves, and AMM integrations on Solana. Covers Pump Program (token creation, buy/sell on bonding curves), PumpSwap AMM (liquidity pools, swaps), fee structures, creator fees, and SDK integration.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/pumpfun/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pumpfun"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "pumpfun. Complete PumpFun Protocol guide for building token launches, bonding curves, and AMM integrations on Solana. Covers Pump Program (token creation, buy/sell on bonding curves), PumpSwap AMM (liquidity pools, swaps), fee structures, creator fees, and SDK integration. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "90acd46597db2af5512d1950bb863eea2720ea4e3142da73cdf9a3f914e72391", "repo_url": "https://github.com/webmaxru/agent-skills", "name": "prompt-api", "description": "Implements and debugs browser Prompt API integrations in JavaScript or TypeScript web apps. Use when adding LanguageModel availability checks, session creation, prompt or promptStreaming flows, struct", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/webmaxru/agent-skills/blob/main/skills/prompt-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T20:29:15Z"}, "embedding_text": "prompt-api. Implements and debugs browser Prompt API integrations in JavaScript or TypeScript web apps. Use when adding LanguageModel availability checks, session creation, prompt or promptStreaming flows, struct Platforms: claude_code."} +{"id": "f0edf2cc3724c3062c54466cdbc4624e29b82b37198984997b2d4df7ae996661", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "executing-plans", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/executing-plans/skills/executing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "executing-plans. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d8b4e8e4989ce98bd0691ae39f8ee8411947518e6bc5f6c1b73947aa0ebdc5aa", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-embeddings-ollama", "description": "Configure Ollama as embedding provider for GrepAI. Use this skill for local, private embedding generation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/embeddings/grepai-embeddings-ollama/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-embeddings-ollama. Configure Ollama as embedding provider for GrepAI. Use this skill for local, private embedding generation. Platforms: claude_code."} +{"id": "db844c3b168a92c83ffc7d5a1b3cd17292e0018237136e21fefbe5a74053ef97", "repo_url": "https://github.com/mauromedda/agent-toolkit", "name": "bash", "description": "Guide for writing production-quality bash scripts following modern idiomatic practices. Enforces set -euo pipefail, [[ ]] conditionals, ${var} syntax, ShellCheck compliance. Triggers on \"bash script\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mauromedda/agent-toolkit/blob/main/skills/bash/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T16:29:42Z"}, "embedding_text": "bash. Guide for writing production-quality bash scripts following modern idiomatic practices. Enforces set -euo pipefail, [[ ]] conditionals, ${var} syntax, ShellCheck compliance. Triggers on \"bash script\", Platforms: claude_code."} +{"id": "fa4188356229e79999d4d16c2528cd896fa8fdd380f58789a181d12ad04798c0", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-troubleshooting", "description": "Troubleshooting guide for GrepAI. Use this skill to diagnose and fix common issues.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/advanced/grepai-troubleshooting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-troubleshooting. Troubleshooting guide for GrepAI. Use this skill to diagnose and fix common issues. Platforms: claude_code."} +{"id": "860f9f83f60740917b56b07dce41c076b888a1cdaf61592f24e939d70ad0aab1", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-mcp-tools", "description": "Reference for all GrepAI MCP tools. Use this skill to understand available MCP tools and their parameters.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/integration/grepai-mcp-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-mcp-tools. Reference for all GrepAI MCP tools. Use this skill to understand available MCP tools and their parameters. Platforms: claude_code."} +{"id": "b34b8818b0113e948a92a3a93e75055595d164b54c24a41e738789649555eaa0", "repo_url": "https://github.com/anvie/qras", "name": "qras", "description": "Semantic memory search via QRAS (Qdrant RAG System). Use as PRIMARY method for recalling workspace files, notes, decisions, people, preferences, and prior work. Triggers on any memory recall task befo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anvie/qras/blob/main/openclaw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T06:00:27Z"}, "embedding_text": "qras. Semantic memory search via QRAS (Qdrant RAG System). Use as PRIMARY method for recalling workspace files, notes, decisions, people, preferences, and prior work. Triggers on any memory recall task befo Platforms: claude_code."} +{"id": "ce6cf5e111d7bccf4be82e08146b3d75ac080373c1e22fc5d387587aa958eb07", "repo_url": "https://github.com/plurigrid/asi", "name": "world-hopping", "description": "Badiou-inspired possible world navigation using triangle inequality constraints,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/world-hopping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "world-hopping. Badiou-inspired possible world navigation using triangle inequality constraints, Platforms: claude_code."} +{"id": "d91f33f754a9ed4f54a618bddcf611eed4c7f71cf3a99382ad12c2662a344ed7", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "summarizer", "description": "Route summarization requests to the correct methodology and enforce fidelity rules. Activates on summarize, tl;dr, give me the highlights, what's important in this, break down this, what does this cod", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/summarizer/skills/summarizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "summarizer. Route summarization requests to the correct methodology and enforce fidelity rules. Activates on summarize, tl;dr, give me the highlights, what's important in this, break down this, what does this cod Platforms: claude_code."} +{"id": "6cf3bc7e90fbd3c7e18ce9131db103bf5fc973d1258778fa933ee0bdade99d5d", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "inno-idea-eval", "description": "Multi-persona idea evaluation with quality gate.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/inno-idea-eval/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "inno-idea-eval. Multi-persona idea evaluation with quality gate. Platforms: claude_code."} +{"id": "7bccd46856383fa4b06ba2aba31560e4e44afb5f76d159768d424d0a44ac4cfe", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "database-patterns", "description": "Database design and implementation patterns for modern applications. Use when designing schemas, writing migrations, optimizing queries, and configuring ORMs. Covers PostgreSQL, MongoDB, Prisma, Drizz", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/database-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "database-patterns. Database design and implementation patterns for modern applications. Use when designing schemas, writing migrations, optimizing queries, and configuring ORMs. Covers PostgreSQL, MongoDB, Prisma, Drizz Platforms: claude_code."} +{"id": "213bfed61ff57da61d4af1c2ece9677186d50e77baa1e6cdd14a39ae38f158b4", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "comfyui-workflow-helper", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/comfyui-workflow-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install comfyui-workflow-helper"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "comfyui-workflow-helper. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "fac5f4a4ff3a92b2cdf54ac9156c2c8ac85ef6e1c910ba7f291e0b536dfa10c4", "repo_url": "https://github.com/congdon1207/agents.md", "name": "databases", "description": "Work with MongoDB (document database, BSON documents, aggregation pipelines, Atlas cloud) and PostgreSQL (relational database, SQL queries, psql CLI, pgAdmin). Use when designing database schemas, wri", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/databases/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "databases. Work with MongoDB (document database, BSON documents, aggregation pipelines, Atlas cloud) and PostgreSQL (relational database, SQL queries, psql CLI, pgAdmin). Use when designing database schemas, wri Platforms: claude_code."} +{"id": "747f16bec5f89e632aa0b191f37f652b96eb5d815c6dab5114335ac557a90af8", "repo_url": "https://github.com/gocallum/nextjs16-agent-skills", "name": "ai-sdk-6-skills", "description": "AI SDK 6 Beta overview, agents, tool approval, Groq (Llama), and Vercel AI Gateway. Key breaking changes from v5 and new patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gocallum/nextjs16-agent-skills/blob/main/skills/ai-sdk-6-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T13:27:54Z"}, "embedding_text": "ai-sdk-6-skills. AI SDK 6 Beta overview, agents, tool approval, Groq (Llama), and Vercel AI Gateway. Key breaking changes from v5 and new patterns. Platforms: claude_code."} +{"id": "ad4f425e6e3f617f90987964be67b6fd19f7b54438acfa358715517ae13973ac", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/document-skills/document-skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "da75977073134cf26e51b70323fbc3590521991d2319783e5bb5cee57333dba5", "repo_url": "https://github.com/majiayu000/litellm-rs", "name": "a2a-protocol", "description": "LiteLLM-RS A2A Protocol Architecture. Covers Agent-to-Agent communication, JSON-RPC 2.0 messaging, multi-provider orchestration, agent registry, and task state management.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/litellm-rs/blob/main/.claude/skills/a2a-protocol/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:46:28Z"}, "embedding_text": "a2a-protocol. LiteLLM-RS A2A Protocol Architecture. Covers Agent-to-Agent communication, JSON-RPC 2.0 messaging, multi-provider orchestration, agent registry, and task state management. Platforms: claude_code."} +{"id": "f79ab3c99aa2d7f78e1cdbba9104c07576a654f7e716540b56ac06631f8d641a", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-ears", "description": "Create EARS (Easy Approach to Requirements Syntax) formal requirements - Layer 3 artifact using WHEN-THE-SHALL-WITHIN format", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-ears-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-ears. Create EARS (Easy Approach to Requirements Syntax) formal requirements - Layer 3 artifact using WHEN-THE-SHALL-WITHIN format Platforms: claude_code."} +{"id": "ad2cd6282df1339a891847f92c06bca009efe3fb77b966262a007fcf166b4c03", "repo_url": "https://github.com/medusajs/medusa-agent-skills", "name": "new-user", "description": "Create an admin user in Medusa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/medusajs/medusa-agent-skills/blob/main/plugins/medusa-dev/skills/new-user/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 190, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-08T12:41:06Z"}, "embedding_text": "new-user. Create an admin user in Medusa Platforms: claude_code."} +{"id": "aa75e2e5aafa50c02dbe23624c9f66aa8e636594d70d5c933d158a35ff4e3bec", "repo_url": "https://github.com/sendaifun/skills", "name": "dflow", "description": "Complete DFlow trading protocol SDK - the single source of truth for integrating DFlow on Solana. Covers spot trading, prediction markets, Swap API, Metadata API, WebSocket streaming, and all DFlow tools.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/dflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dflow"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "dflow. Complete DFlow trading protocol SDK - the single source of truth for integrating DFlow on Solana. Covers spot trading, prediction markets, Swap API, Metadata API, WebSocket streaming, and all DFlow tools. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "2a628a18c3947c58920f78048ef3d6e2cd889e8fa62b2cbb5ea0907a6417c4bd", "repo_url": "https://github.com/anshumanbh/securevibes", "name": "agentic-security-threat-modeling", "description": "Identify agentic AI security threats based on OWASP Top 10 for Agentic Applications 2026. Use when analyzing AI agents, LLM-powered applications, chatbots, auto-reply systems, tool-using AI, browser a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anshumanbh/securevibes/blob/main/packages/core/securevibes/skills/threat-modeling/agentic-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 274, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-27T04:52:18Z"}, "embedding_text": "agentic-security-threat-modeling. Identify agentic AI security threats based on OWASP Top 10 for Agentic Applications 2026. Use when analyzing AI agents, LLM-powered applications, chatbots, auto-reply systems, tool-using AI, browser a Platforms: claude_code."} +{"id": "ea7ac0716f3a1508a0e7b198408d1700fb76e8428039839de329e058f9a52dab", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "memory-sync", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/memory-sync/skills/memory-sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "memory-sync. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "324201e3b0c81c00c36f5fada0afa9515852a4d48cff9a02946672d6bb4794da", "repo_url": "https://github.com/sendaifun/skills", "name": "light-protocol", "description": "Complete guide for Light Protocol on Solana - includes ZK Compression for rent-free compressed tokens and PDAs using zero-knowledge proofs, and the Light Token Program for high-performance token standard (200x cheaper than SPL). Covers TypeScript SDK, JSON RPC methods, and complete integration patterns.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/light-protocol/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install light-protocol"}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T20:20:02Z"}, "embedding_text": "light-protocol. Complete guide for Light Protocol on Solana - includes ZK Compression for rent-free compressed tokens and PDAs using zero-knowledge proofs, and the Light Token Program for high-performance token standard (200x cheaper than SPL). Covers TypeScript SDK, JSON RPC methods, and complete integration patterns. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} +{"id": "09844f7362403c78ea6c926ae89c760f076d1006ee0a2ab04667453e4c60c0fd", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "prompt-engineering", "description": "Expert skill for prompt engineering and task routing/orchestration. Covers secure prompt construction, injection prevention, multi-step task orchestration, and LLM output validation for JARVIS AI assi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/prompt-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "prompt-engineering. Expert skill for prompt engineering and task routing/orchestration. Covers secure prompt construction, injection prevention, multi-step task orchestration, and LLM output validation for JARVIS AI assi Platforms: claude_code."} +{"id": "4a8ea10cc54df2f5ab4d2e25288eaef05c02ac47e722f4ae6b6a3e61ee69028c", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "rust", "description": "Systems programming expertise for Tauri desktop application backend development with memory safety and performance optimization", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/rust/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "rust. Systems programming expertise for Tauri desktop application backend development with memory safety and performance optimization Platforms: claude_code."} +{"id": "aa058ab89fbd09539ad90f25ecd7b3b2a57c239fd2444228d9a4a6bbef24cfa9", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "python", "description": "Backend services development with Python emphasizing security, performance, and maintainability for JARVIS AI Assistant", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/python/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "python. Backend services development with Python emphasizing security, performance, and maintainability for JARVIS AI Assistant Platforms: claude_code."} +{"id": "94e79c46d8b16beb6d771b6bb8f04e3858511068a603c07173c27566a592826b", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "web-artifacts-builder", "description": "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 manag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/web-artifacts-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "web-artifacts-builder. 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 manag Platforms: claude_code."} +{"id": "ff16e8d06a5141466599791a3ccd2363256765f77753164ca80af36185cd2110", "repo_url": "https://github.com/zimoliao/scholaraio", "name": "explore", "description": "Explore literature by fetching papers from OpenAlex with multi-dimensional filters (ISSN, concept, author, institution, keyword, etc.), building local embeddings, running BERTopic clustering, and mult", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zimoliao/scholaraio/blob/main/.claude/skills/explore/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T07:54:24Z"}, "embedding_text": "explore. Explore literature by fetching papers from OpenAlex with multi-dimensional filters (ISSN, concept, author, institution, keyword, etc.), building local embeddings, running BERTopic clustering, and mult Platforms: claude_code."} +{"id": "68e6d8944bcfbc33e23d668654cf89b35c3f877b4a026b2e8a50b6053c0d5d23", "repo_url": "https://github.com/medusajs/medusa-agent-skills", "name": "db-migrate", "description": "Run database migrations in Medusa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/medusajs/medusa-agent-skills/blob/main/plugins/medusa-dev/skills/db-migrate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 190, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-08T12:41:06Z"}, "embedding_text": "db-migrate. Run database migrations in Medusa Platforms: claude_code."} +{"id": "e2f15124b1c838dbba85413d9cb87dacf1ed497829b6b1fa51128d544df48f85", "repo_url": "https://github.com/wednesday-solutions/ai-agent-skills", "name": "wednesday-design", "description": "Design and UX guidelines for Wednesday Solutions projects. Covers visual design tokens, animation patterns, component standards, accessibility, and user experience best practices for React/Next.js app", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wednesday-solutions/ai-agent-skills/blob/main/skills/agents/module-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 157, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-26T07:49:30Z"}, "embedding_text": "wednesday-design. Design and UX guidelines for Wednesday Solutions projects. Covers visual design tokens, animation patterns, component standards, accessibility, and user experience best practices for React/Next.js app Platforms: claude_code."} +{"id": "3856d465c09f142d0ea7ed7c49c24cfbcec356ff19bac38a9c66bb8773d075d5", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "react-patterns", "description": "React and Next.js development patterns for building modern web applications. Use when implementing components, pages, hooks, state management, data fetching, forms, and client-side authentication. Cov", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/react-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "react-patterns. React and Next.js development patterns for building modern web applications. Use when implementing components, pages, hooks, state management, data fetching, forms, and client-side authentication. Cov Platforms: claude_code."} +{"id": "d66878e8f07476381a5c67b23dac0a14952a4ab7c766d6cc5f52fe6cfa19ef45", "repo_url": "https://github.com/harishwarrior/flutter-claude-skills", "name": "flutter-tester", "description": "A comprehensive Flutter testing skill for creating, writing, and analyzing tests in any Flutter project. Provides guidance on test structure, mocking patterns, Riverpod testing, widget testing, and in", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/harishwarrior/flutter-claude-skills/blob/main/flutter-tester/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T16:57:24Z"}, "embedding_text": "flutter-tester. A comprehensive Flutter testing skill for creating, writing, and analyzing tests in any Flutter project. Provides guidance on test structure, mocking patterns, Riverpod testing, widget testing, and in Platforms: claude_code."} +{"id": "7477894d6401c24cd362a3e8230303f175517d234be7dbef458ce463b2d81179", "repo_url": "https://github.com/harishwarrior/flutter-claude-skills", "name": "owasp-mobile-security-checker", "description": "Analyze Flutter and mobile applications for OWASP Mobile Top 10 (2024) security compliance. Use this skill when performing security audits, vulnerability assessments, or compliance checks on mobile ap", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/harishwarrior/flutter-claude-skills/blob/main/owasp-mobile-security-checker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T16:57:24Z"}, "embedding_text": "owasp-mobile-security-checker. Analyze Flutter and mobile applications for OWASP Mobile Top 10 (2024) security compliance. Use this skill when performing security audits, vulnerability assessments, or compliance checks on mobile ap Platforms: claude_code."} +{"id": "ab0ac35a81b00216ca167e40739cd09ed791af46e80d73b3e5e58a17730c4059", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "creating-an-agent", "description": "Use when creating specialized subagents for Claude Code plugins or the Task tool - covers description writing for auto-delegation, tool selection, prompt structure, and testing agents", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-extending-claude/skills/creating-an-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "creating-an-agent. Use when creating specialized subagents for Claude Code plugins or the Task tool - covers description writing for auto-delegation, tool selection, prompt structure, and testing agents Platforms: claude_code."} +{"id": "42332ec8f3c0d7d1efd83b817dc6c90f1e49a614841b96f3f886970a7d3d7b9b", "repo_url": "https://github.com/williamsaysx/skill-forge", "name": "skill-forge", "description": "Automated skill creation workshop with intelligent source detection, smart path management, and end-to-end workflow automation. This skill should be used when users want to create a new skill or conve", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/williamsaysx/skill-forge/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-14T17:49:40Z"}, "embedding_text": "skill-forge. Automated skill creation workshop with intelligent source detection, smart path management, and end-to-end workflow automation. This skill should be used when users want to create a new skill or conve Platforms: claude_code."} +{"id": "366e02cdc788c18c654d4a3f7015ff111eddd083ce6f6d7f8285d120c3a8eca5", "repo_url": "https://github.com/staruhub/claudeskills", "name": "pdf", "description": "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 p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/staruhub/claudeskills/blob/main/skills/Geek-skills-mineru-pdf-parser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 456, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T11:10:53Z"}, "embedding_text": "pdf. 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 p Platforms: claude_code."} +{"id": "4c42902cbebb66eb4dacbb6455ea1846355b55193121dd64059dd3302a058498", "repo_url": "https://github.com/chongdashu/threejs-capacitor-ios-game", "name": "threejs-builder", "description": "Create simple, performant Three.js web apps/scenes (JS/TS, ES modules): scene/camera/renderer setup, lighting, geometries, materials, animation loop, resizing, OrbitControls, GLTF/GLB loading, and pra", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/chongdashu/threejs-capacitor-ios-game/blob/main/.claude/skills/threejs-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 54, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-14T13:24:44Z"}, "embedding_text": "threejs-builder. Create simple, performant Three.js web apps/scenes (JS/TS, ES modules): scene/camera/renderer setup, lighting, geometries, materials, animation loop, resizing, OrbitControls, GLTF/GLB loading, and pra Platforms: claude_code."} +{"id": "da5c029ea23ba88ba57e122c8a59644bc6767e4a8a4bbbcf2af1c580d7550c0e", "repo_url": "https://github.com/zechenzhangagi/ai-research-skills", "name": "huggingface-tokenizers", "description": "Fast tokenizers optimized for research and production. Rust-based implementation tokenizes 1GB in <20 seconds. Supports BPE, WordPiece, and Unigram algorithms. Train custom vocabularies, track alignme", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zechenzhangagi/ai-research-skills/blob/main/02-tokenization/huggingface-tokenizers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 9939, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "huggingface-tokenizers. Fast tokenizers optimized for research and production. Rust-based implementation tokenizes 1GB in <20 seconds. Supports BPE, WordPiece, and Unigram algorithms. Train custom vocabularies, track alignme Platforms: claude_code."} +{"id": "03047de342d6e6da233e6d663a22aee36f90339e8d119709bd736288918b9005", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "ai-collaboration-standards", "description": "Prevent AI hallucination and ensure evidence-based responses when analyzing code or making suggestions.\nUse when: analyzing code, making recommendations, providing options, or when user asks about con", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/ai-collaboration-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "ai-collaboration-standards. Prevent AI hallucination and ensure evidence-based responses when analyzing code or making suggestions.\nUse when: analyzing code, making recommendations, providing options, or when user asks about con Platforms: claude_code."} +{"id": "880f0db22b3f053cdfe98d735d333bf9c3f14f7f53d3d07a6efa3f947e3c3b05", "repo_url": "https://github.com/openai/skills", "name": "notion-meeting-intelligence", "description": "Prepare meeting materials with Notion context and Codex research; use when gathering context, drafting agendas/pre-reads, and tailoring materials to attendees.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/notion-meeting-intelligence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-meeting-intelligence"}, "quality": {"stars": 22704, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T19:15:40Z"}, "embedding_text": "notion-meeting-intelligence. Prepare meeting materials with Notion context and Codex research; use when gathering context, drafting agendas/pre-reads, and tailoring materials to attendees. Platforms: claude_code."} +{"id": "7de2809daaed242c4a3a44451c3f920635e30ca33852d2379c4155438a670c2f", "repo_url": "https://github.com/epicenterhq/epicenter", "name": "typescript", "description": "TypeScript code style, type co-location, constant naming conventions, and arktype patterns. Use when writing TypeScript code, defining types, creating constants, or working with arktype schemas.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/epicenterhq/epicenter/blob/main/.agents/skills/typescript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 4641, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:20:00Z"}, "embedding_text": "typescript. TypeScript code style, type co-location, constant naming conventions, and arktype patterns. Use when writing TypeScript code, defining types, creating constants, or working with arktype schemas. Platforms: claude_code."} +{"id": "f67bb5ad0f4c6a97331adc0547a41d93d864d9f005ca3829e462b20e56cf6168", "repo_url": "https://github.com/zechenzhangagi/ai-research-skills", "name": "nanogpt", "description": "Educational GPT implementation in ~300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture fro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zechenzhangagi/ai-research-skills/blob/main/01-model-architecture/nanogpt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 9939, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "nanogpt. Educational GPT implementation in ~300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture fro Platforms: claude_code."} +{"id": "e5ab3cd3e7ef0ccffaf078a405dae44adc290439106c941e0d31164f2b02f2a7", "repo_url": "https://github.com/snakeying/textum", "name": "textum", "description": "Textum PRD\u2192Scaffold\u2192Story workflow for Codex with low-noise outputs and gate checks.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skill", "codex", "codex-skill", "skills", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/snakeying/textum/blob/main/.claude/skills/textum/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install textum"}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T16:42:20Z"}, "embedding_text": "textum. Textum PRD\u2192Scaffold\u2192Story workflow for Codex with low-noise outputs and gate checks. Categories: claude-code, claude-skill, codex, codex-skill, skills, vibe-coding. Platforms: claude_code."} +{"id": "847a2d1ea292649ad6b97a48a41baf93ef92a288fed6e8d9302483593631cb78", "repo_url": "https://github.com/dcramer/ash", "name": "github", "description": "Manage GitHub repositories, branches, PRs, and issues", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dcramer/ash/blob/main/src/ash/skills/bundled/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-06T22:36:22Z"}, "embedding_text": "github. Manage GitHub repositories, branches, PRs, and issues Platforms: claude_code."} +{"id": "40486055fb6d12e43a38b844f5e9862a86b84e15edcbad55276125ce9426d137", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "daily-releases", "description": "Create GitHub Releases with AI-analyzed changelogs for every calendar day with commits on origin/main. Uses the same analyze \u2192 AI-categorize \u2192 format pipeline as /create-merge-request-changelog for ri", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/daily-releases/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "daily-releases. Create GitHub Releases with AI-analyzed changelogs for every calendar day with commits on origin/main. Uses the same analyze \u2192 AI-categorize \u2192 format pipeline as /create-merge-request-changelog for ri Platforms: claude_code."} +{"id": "ae313bc9cdd4ba407f889db22d2741958e3b6750a47d869be8edfc08ecd4f474", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "verification-gate", "description": "Enforce mandatory pre-action verification checkpoints to prevent pattern-matching from overriding explicit reasoning. Use this skill when about to execute implementation actions (Bash, Write, Edit) to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/verification-gate/skills/verification-gate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "verification-gate. Enforce mandatory pre-action verification checkpoints to prevent pattern-matching from overriding explicit reasoning. Use this skill when about to execute implementation actions (Bash, Write, Edit) to Platforms: claude_code."} +{"id": "c4efc69acdc393549599911a63b3dd8424cd2711b42ce82ddbf950c2830b9274", "repo_url": "https://github.com/civitai/civitai", "name": "clickup", "description": "Interact with ClickUp tasks and documents - get task details, view comments, create and manage tasks, create and edit docs. Use when working with ClickUp task/doc URLs or IDs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/civitai/civitai/blob/main/.claude/skills/clickup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 7157, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:14:44Z"}, "embedding_text": "clickup. Interact with ClickUp tasks and documents - get task details, view comments, create and manage tasks, create and edit docs. Use when working with ClickUp task/doc URLs or IDs. Platforms: claude_code."} +{"id": "8b989a8358337eae2d181c4f48bd12280ac961aa29f489844820ffd8eee029a8", "repo_url": "https://github.com/antvis/g2", "name": "G2 Translation Guidelines", "description": "Guidelines for translating G2 documentation, including terminology consistency, hyperlink adjustments, and file naming conventions for multilingual documentation. Use when need to translate documents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antvis/g2/blob/v5/.claude/skills/g2-translation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12561, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T03:52:03Z"}, "embedding_text": "G2 Translation Guidelines. Guidelines for translating G2 documentation, including terminology consistency, hyperlink adjustments, and file naming conventions for multilingual documentation. Use when need to translate documents. Platforms: claude_code."} +{"id": "f1b944b05ddad3fbea0a016474c49197c43959d05fde6a7d9e993d97e6b1ff53", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "perl-development", "description": "This skill should be used when the user asks to \"write a Perl script\", \"create Perl code\", \"modern Perl best practices\", \"Perl 5.30+\", \"use strict warnings autodie\", or mentions Perl pragmas, subrouti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/perl-development/skills/perl-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "perl-development. This skill should be used when the user asks to \"write a Perl script\", \"create Perl code\", \"modern Perl best practices\", \"Perl 5.30+\", \"use strict warnings autodie\", or mentions Perl pragmas, subrouti Platforms: claude_code."} +{"id": "f3c0b335b18182b4d32972e9df354f5bd18b1703190bb8bfb38748b65f195cd3", "repo_url": "https://github.com/affaan-m/everything-claude-code", "name": "jpa-patterns", "description": "JPA/Hibernate patterns for entity design, relationships, query optimization, transactions, auditing, indexing, pagination, and pooling in Spring Boot.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/affaan-m/everything-claude-code/blob/main/.kiro/skills/jpa-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 219443, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:55:54Z"}, "embedding_text": "jpa-patterns. JPA/Hibernate patterns for entity design, relationships, query optimization, transactions, auditing, indexing, pagination, and pooling in Spring Boot. Platforms: claude_code."} +{"id": "06a752a09b8c9eddd48e41b01158486435f31a34686a6e6bd888a48f233afaf5", "repo_url": "https://github.com/scientiacapital/skills", "name": "api-design", "description": "REST/GraphQL API design patterns - resource naming, HTTP methods, error handling, pagination, versioning. Use when: design API, REST endpoints, GraphQL schema, error responses, pagination, rate limiti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/api-design-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "api-design. REST/GraphQL API design patterns - resource naming, HTTP methods, error handling, pagination, versioning. Use when: design API, REST endpoints, GraphQL schema, error responses, pagination, rate limiti Platforms: claude_code."} +{"id": "433ea7ba558cbc674629a2936559994627e6d93a6108ac456b163b24fea89dfb", "repo_url": "https://github.com/ojowwalker77/claude-matrix", "name": "Matrix Warnings", "description": "This skill should be used when the user asks to \"add warning\", \"remove warning\", \"list warnings\", \"check file warning\", \"check package warning\", \"manage grudges\", or needs to manage file and package w", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ojowwalker77/claude-matrix/blob/main/skills/warn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 110, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-10T15:19:48Z"}, "embedding_text": "Matrix Warnings. This skill should be used when the user asks to \"add warning\", \"remove warning\", \"list warnings\", \"check file warning\", \"check package warning\", \"manage grudges\", or needs to manage file and package w Platforms: claude_code."} +{"id": "e600ca8458875d4df3b8ff8f63969bb87f62285967f1e92dc06dc198933e45e2", "repo_url": "https://github.com/jawwadfirdousi/agent-skills", "name": "prompt-template-wizard", "description": "Rigorously collects and validates all fields needed to produce a complete, unambiguous prompt template for features and bug fixes. The skill asks targeted questions until the template is fully filled,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jawwadfirdousi/agent-skills/blob/main/prompt-template-wizard/skills/prompt-template-wizard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T22:31:50Z"}, "embedding_text": "prompt-template-wizard. Rigorously collects and validates all fields needed to produce a complete, unambiguous prompt template for features and bug fixes. The skill asks targeted questions until the template is fully filled, Platforms: claude_code."} +{"id": "2ead03bc6dd21e3ca43c7d7ac38d21d3724a01b527690f29e1a42039b0321dc4", "repo_url": "https://github.com/browserbase/skills", "name": "functions", "description": "Guide Claude through deploying serverless browser automation using the official bb CLI", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/browserbase/skills/blob/main/skills/functions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3592, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:24:28Z"}, "embedding_text": "functions. Guide Claude through deploying serverless browser automation using the official bb CLI Platforms: claude_code."} +{"id": "1e92379ed674681c04a482340025cd720df3538c1f9c0a5b1f8834ac6442f654", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-macro", "description": "Macro and procedural metaprogramming expert covering macro_rules!, derive macros, proc-macros, compile-time computation, and code generation patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-macro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-macro. Macro and procedural metaprogramming expert covering macro_rules!, derive macros, proc-macros, compile-time computation, and code generation patterns. Platforms: claude_code."} +{"id": "5069ffbbc34ce696e05bd735fec7727ac1b33f0b467d1c4573dffed1b740797a", "repo_url": "https://github.com/jonathimer/devmarketing-skills", "name": "changelog-updates", "description": "Create release notes and product updates that developers actually read and care about. This skill covers changelog formatting, versioning communication, breaking change announcements, deprecation noti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathimer/devmarketing-skills/blob/main/skills/changelog-updates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T20:52:49Z"}, "embedding_text": "changelog-updates. Create release notes and product updates that developers actually read and care about. This skill covers changelog formatting, versioning communication, breaking change announcements, deprecation noti Platforms: claude_code."} +{"id": "a257d66f597bf74d62ca9fea4da91850649e4f3706315a4c185a82c2dd3adaec", "repo_url": "https://github.com/itechmeat/llm-code", "name": "telegram", "description": "Telegram Bot development playbook: bot fundamentals, aiogram 3 patterns (handlers/middlewares/FSM), webhooks, keyboard UX, inline mode, Mini Apps, payments (Stars/subscriptions), authentication. Keywo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/telegram/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "telegram. Telegram Bot development playbook: bot fundamentals, aiogram 3 patterns (handlers/middlewares/FSM), webhooks, keyboard UX, inline mode, Mini Apps, payments (Stars/subscriptions), authentication. Keywo Platforms: claude_code."} +{"id": "b51c5c9972099fbfe1a0f23db8943d2db8b46b87be8e615926410f6a2d0f497d", "repo_url": "https://github.com/plurigrid/asi", "name": "invariant-measure", "description": "Measure preserved by the flow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/invariant-measure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "D", "skillhub_score": 2.9, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "invariant-measure. Measure preserved by the flow Platforms: claude_code."} +{"id": "1b3ddae371aca280de80521a07cf4ca7768b8794ab10e5f2be6b87ebbdec80ed", "repo_url": "https://github.com/itechmeat/llm-code", "name": "changelog", "description": "Keep a Changelog format. Covers structure, change types, versioning. Keywords: CHANGELOG.md, semver.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/changelog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "changelog. Keep a Changelog format. Covers structure, change types, versioning. Keywords: CHANGELOG.md, semver. Platforms: claude_code."} +{"id": "f69c4c266ade69e3799989f69187da76dbe0eba4d51cefd00253a1e50a89c142", "repo_url": "https://github.com/proxiblue/claude-skills", "name": "wiki-docs", "description": "Document custom Magento 2 site functionality in the project wiki. Systematically captures custom features, modules, configurations, and business logic for client handover and developer onboarding.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/proxiblue/claude-skills/blob/main/wiki-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T02:03:02Z"}, "embedding_text": "wiki-docs. Document custom Magento 2 site functionality in the project wiki. Systematically captures custom features, modules, configurations, and business logic for client handover and developer onboarding. Platforms: claude_code."} +{"id": "2afc3ea8d275cb5293bed1638dd819ce1f486dfc010184bfe3af479262a75b52", "repo_url": "https://github.com/potatodog1669/skills-hub", "name": "skills-hub", "description": "Use this skill when the user wants to discover, inspect, install, or apply Skills Hub presets, kits, AGENTS.md policies, or skill packages for a project. It guides the agent to use the Skills Hub CLI", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/potatodog1669/skills-hub/blob/main/.codex/skills/skills-hub/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-27T03:12:27Z"}, "embedding_text": "skills-hub. Use this skill when the user wants to discover, inspect, install, or apply Skills Hub presets, kits, AGENTS.md policies, or skill packages for a project. It guides the agent to use the Skills Hub CLI Platforms: claude_code."} +{"id": "68afc855541f879644fc337b9b896acb87ae37546e9d17fe61ec288bce85989b", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-ffi", "description": "FFI cross-language interop expert covering C/C++ bindings, bindgen, cbindgen, PyO3, JNI, memory layout, data conversion, and safe FFI patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-ffi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-ffi. FFI cross-language interop expert covering C/C++ bindings, bindgen, cbindgen, PyO3, JNI, memory layout, data conversion, and safe FFI patterns. Platforms: claude_code."} +{"id": "99c82d2f7cba303099471759572a67ee877c7c3035cf107e5009c2420bb7d0d0", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "command-creator", "description": "This skill should be used when creating a Claude Code slash command. Use when users ask to \"create a command\", \"make a slash command\", \"add a command\", or want to document a workflow as a reusable command. Essential for creating optimized, agent-executable slash commands with proper structure and best practices.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/command-creator/skills/command-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install command-creator"}, "quality": {"stars": 2070, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "command-creator. This skill should be used when creating a Claude Code slash command. Use when users ask to \"create a command\", \"make a slash command\", \"add a command\", or want to document a workflow as a reusable command. Essential for creating optimized, agent-executable slash commands with proper structure and best practices. Platforms: claude_code."} +{"id": "1ca9d19bda43b43699d8d119c2df452606f90965ad62091f8a4782482e423905", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "plan", "description": "Creates detailed implementation plan from validated research. Produces task breakdown with dependencies.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/agent-ops-plan-preview/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "plan. Creates detailed implementation plan from validated research. Produces task breakdown with dependencies. Platforms: claude_code."} +{"id": "08b84bae78cf163d29361db49a69016a1ab290b874cae55736a64fec2e88d35b", "repo_url": "https://github.com/plurigrid/asi", "name": "cider-embedding", "description": "Semantic embeddings for Clojure code navigation via CIDER", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/cider-embedding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "cider-embedding. Semantic embeddings for Clojure code navigation via CIDER Platforms: claude_code."} +{"id": "48cafd36b3cbd286c443bbf58d64123b3da4de711138db4f7bdb3ebf76e9f1e1", "repo_url": "https://github.com/i2y/castella", "name": "castella-mcp", "description": "Enable AI agents to introspect and control Castella UIs via MCP. Create MCP servers, expose UI resources, handle MCP tools, and use semantic IDs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/i2y/castella/blob/main/skills/castella-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T04:00:38Z"}, "embedding_text": "castella-mcp. Enable AI agents to introspect and control Castella UIs via MCP. Create MCP servers, expose UI resources, handle MCP tools, and use semantic IDs. Platforms: claude_code."} +{"id": "134f67a2a16e13d3c449d628c7061863efe9f7b17f1e60b6eed593711c68d834", "repo_url": "https://github.com/sunholo-data/ailang", "name": "docs-sync", "description": "Sync AILANG documentation website with codebase reality. Use after releases, when features are implemented, or when website accuracy is questioned. Checks design docs vs website, validates examples, u", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/docs-sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "docs-sync. Sync AILANG documentation website with codebase reality. Use after releases, when features are implemented, or when website accuracy is questioned. Checks design docs vs website, validates examples, u Platforms: claude_code."} +{"id": "69d7e26be16ee9843915e52e65b2e755f3246f5de915eea9280055bddb83c458", "repo_url": "https://github.com/ciscoittech/claude-agent-framework", "name": "Documentation Builder", "description": "Generates professional API documentation, user guides, and architectural documentation from code and specifications.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ciscoittech/claude-agent-framework/blob/main/archive/v1-poc-skills/agent-launcher-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-12T22:59:23Z"}, "embedding_text": "Documentation Builder. Generates professional API documentation, user guides, and architectural documentation from code and specifications. Platforms: claude_code."} +{"id": "af5bd8fb3b5074531bb1fe9fbf1e97aace239f5e2a437694906d69caf4feceea", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "framework-to-capacitor", "description": "Guide for integrating modern web frameworks with Capacitor. Covers Next.js static export, React, Vue, Angular, Svelte, and others. Use this skill when converting framework apps to mobile apps with Cap", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-app-migrations/skills/framework-to-capacitor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "framework-to-capacitor. Guide for integrating modern web frameworks with Capacitor. Covers Next.js static export, React, Vue, Angular, Svelte, and others. Use this skill when converting framework apps to mobile apps with Cap Platforms: claude_code."} +{"id": "6fa6e59cd4fc44c47a8cf5ee64bbe5861e2885b3361c981a106b60d0bd0410c9", "repo_url": "https://github.com/datadog/lading", "name": "lading-preflight", "description": "Environment validation checklist. Run this FIRST when starting a new Claude session to verify the environment is ready for optimization work. Checks Rust toolchain, ci/ scripts, hyperfine, profilers,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadog/lading/blob/main/.claude/skills/lading-preflight/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T19:30:47Z"}, "embedding_text": "lading-preflight. Environment validation checklist. Run this FIRST when starting a new Claude session to verify the environment is ready for optimization work. Checks Rust toolchain, ci/ scripts, hyperfine, profilers, Platforms: claude_code."} +{"id": "b6d940050621a09334c11948203b497ece37cd9c2f62cab014ba841f08a9065d", "repo_url": "https://github.com/plurigrid/asi", "name": "flox", "description": "Reproducible development environments powered by Nix.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/flox-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "flox. Reproducible development environments powered by Nix. Platforms: claude_code."} +{"id": "7f0b20b786ba2a26978e775ce4a71395df85dfbbac602137a730cce92c37cb6a", "repo_url": "https://github.com/13point5/agent-canvas", "name": "agent-canvas", "description": "Draw shapes, arrows, and diagrams on a TLDraw canvas via the agent-canvas CLI. Use when an agent needs to visually communicate ideas, create diagrams, flowcharts, or annotate a whiteboard. Triggers on", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/13point5/agent-canvas/blob/main/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T19:56:06Z"}, "embedding_text": "agent-canvas. Draw shapes, arrows, and diagrams on a TLDraw canvas via the agent-canvas CLI. Use when an agent needs to visually communicate ideas, create diagrams, flowcharts, or annotate a whiteboard. Triggers on Platforms: claude_code."} +{"id": "b636c314f6cfe2e2f64655b989ca74a541415371ebf7e9bb5d85f8fe00737095", "repo_url": "https://github.com/plurigrid/asi", "name": "duckdb-temporal-versioning", "description": "Temporal versioning and interaction history with time-travel queries,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.ruler/skills/duckdb-temporal-versioning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "duckdb-temporal-versioning. Temporal versioning and interaction history with time-travel queries, Platforms: claude_code."} +{"id": "4b4fd327547f7c58c89fd874999989abb709370866d1656c60a7f71acb47e527", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "eval-harness", "description": "\u4e3a Claude Code \u4f1a\u8bdd\u63d0\u4f9b\u7684\u6b63\u5f0f\u8bc4\u6d4b\u6846\u67b6\uff0c\u5b9e\u73b0\u4e86\u8bc4\u6d4b\u9a71\u52a8\u5f00\u53d1\uff08Eval-Driven Development\uff0cEDD\uff09\u539f\u5219", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/.agents/skills/eval-harness/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "eval-harness. \u4e3a Claude Code \u4f1a\u8bdd\u63d0\u4f9b\u7684\u6b63\u5f0f\u8bc4\u6d4b\u6846\u67b6\uff0c\u5b9e\u73b0\u4e86\u8bc4\u6d4b\u9a71\u52a8\u5f00\u53d1\uff08Eval-Driven Development\uff0cEDD\uff09\u539f\u5219 Platforms: claude_code."} +{"id": "a228a5d9690226116bf74d891210c4da727a62b4f274603c3ccc9b50e59ec285", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "mobile-developer", "description": "Expert in React Native, Expo, and cross-platform mobile development", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/mobile-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "mobile-developer. Expert in React Native, Expo, and cross-platform mobile development Platforms: claude_code."} +{"id": "b7fd4b41a44fe3f68f7f8df816ab1045d07caa094f0645eb5691450d392078c1", "repo_url": "https://github.com/qianjietech/open-claudeskill", "name": "algorithmic-art", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/qianjietech/open-claudeskill/blob/main/examples/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-13T09:42:30Z"}, "embedding_text": "algorithmic-art. 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 Platforms: claude_code."} +{"id": "78d897db8bcdc3f8f5330ba0b2a3c8e5e305fc26b94c15ce8b6f97b36a0845d6", "repo_url": "https://github.com/alps-asd/app-state-diagram", "name": "alps", "description": "Create, validate, and improve ALPS profiles. Generate from natural language descriptions, validate existing profiles, and get improvement suggestions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alps-asd/app-state-diagram/blob/2.x/docs/skills/alps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T01:59:08Z"}, "embedding_text": "alps. Create, validate, and improve ALPS profiles. Generate from natural language descriptions, validate existing profiles, and get improvement suggestions. Platforms: claude_code."} +{"id": "e49ce6cf3b1215859adcded256c222475c1996f12fdd4c492e056ea1118bfcba", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "vue-nuxt", "description": "Vue 3 and Nuxt 3 for JARVIS AI Assistant UI development with security-first patterns", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/vue-nuxt-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "vue-nuxt. Vue 3 and Nuxt 3 for JARVIS AI Assistant UI development with security-first patterns Platforms: claude_code."} +{"id": "31a323af0b2cab3154af1572104f3ac81ddafcb946f0e1f22ec4c768d6cc765b", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Multi-Agent Architect", "description": "Design and orchestrate multi-agent systems. Use when building complex AI systems requiring specialization, parallel processing, or collaborative problem-solving. Covers agent coordination, communicati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/multi-agent-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Multi-Agent Architect. Design and orchestrate multi-agent systems. Use when building complex AI systems requiring specialization, parallel processing, or collaborative problem-solving. Covers agent coordination, communicati Platforms: claude_code."} +{"id": "3795ed8be2add51c05ebcf5c843a91a7d2f72c29d512e1abf594725f5e073c66", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "bioinformatics-init-analysis", "description": "# bioinformatics-init-analysis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/bioinformatics-init-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "bioinformatics-init-analysis. # bioinformatics-init-analysis Platforms: claude_code."} +{"id": "8eb90f23efa1decf1ac37e5209df4471822facd8c34fc3637040a1941a4f48bd", "repo_url": "https://github.com/joannis/claude-skills", "name": "valkey", "description": "Expert guidance on using Valkey and Redis with Swift. Use when developers mention: (1) Valkey or Redis in Swift, (2) valkey-swift library, (3) RESP protocol or RESP3, (4) Redis cluster routing or hash", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/joannis/claude-skills/blob/main/swift-valkey/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 59, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T20:09:23Z"}, "embedding_text": "valkey. Expert guidance on using Valkey and Redis with Swift. Use when developers mention: (1) Valkey or Redis in Swift, (2) valkey-swift library, (3) RESP protocol or RESP3, (4) Redis cluster routing or hash Platforms: claude_code."} +{"id": "5c4f2df96ababfd1fdec03507a691dc2c04c05368dba056a679a1613be094cfd", "repo_url": "https://github.com/yaleh/meta-cc", "name": "API Design", "description": "Systematic API design methodology with 6 validated patterns covering parameter categorization, safe refactoring, audit-first approach, automated validation, quality gates, and example-driven documenta", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yaleh/meta-cc/blob/main/plugin-src/skills/prompt-find/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:01:17Z"}, "embedding_text": "API Design. Systematic API design methodology with 6 validated patterns covering parameter categorization, safe refactoring, audit-first approach, automated validation, quality gates, and example-driven documenta Platforms: claude_code."} +{"id": "9e930f09d46ee6d8348239b56196d9d5a562c83d757be412942186f8fa8ac64e", "repo_url": "https://github.com/re-cinq/wave", "name": "ddd", "description": "Expert Domain-Driven Design (DDD) implementation including bounded contexts, ubiquitous language, aggregates, repositories, domain events, and strategic DDD patterns", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/re-cinq/wave/blob/main/.claude/skills/ddd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-03T20:03:21Z"}, "embedding_text": "ddd. Expert Domain-Driven Design (DDD) implementation including bounded contexts, ubiquitous language, aggregates, repositories, domain events, and strategic DDD patterns Platforms: claude_code."} +{"id": "90e8e7949aec2cda8ccf699c72ffdcb33c212ada23ba8518d2d66ab959e5ceba", "repo_url": "https://github.com/gerstep/cybos", "name": "excalidraw-diagram", "description": "Generate Excalidraw diagrams from text content. Supports three output modes - Obsidian (.md), Standard (.excalidraw), and Animated (.excalidraw with animation order). Triggers on \"Excalidraw\", \"\u753b\u56fe\", \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gerstep/cybos/blob/main/.claude/skills/excalidraw-diagram/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T09:47:18Z"}, "embedding_text": "excalidraw-diagram. Generate Excalidraw diagrams from text content. Supports three output modes - Obsidian (.md), Standard (.excalidraw), and Animated (.excalidraw with animation order). Triggers on \"Excalidraw\", \"\u753b\u56fe\", \" Platforms: claude_code."} +{"id": "5b7d1ffb03d11e8ed301dad8e98daa6222a09f1ab6ee7dbd97a574bda0e32b44", "repo_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop", "name": "smart-fork", "description": "Smart Forking - Find and fork from relevant historical sessions using parallel memory search across claude-mem, memvid, handoffs, and ledgers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop/blob/main/.claude/skills/smart-fork/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T11:32:56Z"}, "embedding_text": "smart-fork. Smart Forking - Find and fork from relevant historical sessions using parallel memory search across claude-mem, memvid, handoffs, and ledgers Platforms: claude_code."} +{"id": "368bbd0dcabe0006554b21e1604d8d30d2ce478b0e6ae92e1aa8e03a251ebeba", "repo_url": "https://github.com/imgoodbai/goodable", "name": "pdf", "description": "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 p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/imgoodbai/goodable/blob/main/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 184, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T09:23:17Z"}, "embedding_text": "pdf. 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 p Platforms: claude_code."} +{"id": "e62b1923a6aceb1a7a11e7755231f41fad4741a765114d6f84057222640364a6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "ai-traffic-tracking", "description": "When the user wants to track AI search traffic in GA4 or GSC. Also use when the user mentions \"AI traffic,\" \"ChatGPT referral,\" \"Perplexity traffic,\" \"AI Overviews,\" \"GA4 AI sources,\" \"AI search analytics,\" \"track AI referrals,\" \"AI search traffic,\" \"Claude traffic,\" or \"how to track AI traffic.\"", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/analytics/sources/ai-traffic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-traffic-tracking"}, "quality": {"stars": 636, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T05:13:07Z"}, "embedding_text": "ai-traffic-tracking. When the user wants to track AI search traffic in GA4 or GSC. Also use when the user mentions \"AI traffic,\" \"ChatGPT referral,\" \"Perplexity traffic,\" \"AI Overviews,\" \"GA4 AI sources,\" \"AI search analytics,\" \"track AI referrals,\" \"AI search traffic,\" \"Claude traffic,\" or \"how to track AI traffic.\" Platforms: claude_code."} +{"id": "9b2807afbcfe9316c7b80ba3d3c8f63d2893106d34ecc316e96f081389db5b90", "repo_url": "https://github.com/olaservo/skilljack-mcp", "name": "reserved-meta", "description": "Skill with reserved metadata keys", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/olaservo/skilljack-mcp/blob/main/evals/skills/code-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-02T13:51:05Z"}, "embedding_text": "reserved-meta. Skill with reserved metadata keys Platforms: claude_code."} +{"id": "8b2e4f1878c9b8ea5dccc71e90ecc5fc39fe16c4677265bfb1fd743456b989dc", "repo_url": "https://github.com/buyoung/skills", "name": "ui-guide", "description": "Generate, update, and maintain UI style guide documents from actual codebase analysis. Scans project files (Tailwind config, CSS/SCSS, design tokens, component code) to extract real color palettes, ty", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/agents-md-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "ui-guide. Generate, update, and maintain UI style guide documents from actual codebase analysis. Scans project files (Tailwind config, CSS/SCSS, design tokens, component code) to extract real color palettes, ty Platforms: claude_code."} +{"id": "64a019f76cfdc0aaa5b7c70626741b731f56067ab6c40ca7920e02e6d908a834", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "applescript", "description": "Expert in AppleScript and JavaScript for Automation (JXA) for macOS system scripting. Specializes in secure script execution, application automation, and system integration. HIGH-RISK skill due to she", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/applescript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "applescript. Expert in AppleScript and JavaScript for Automation (JXA) for macOS system scripting. Specializes in secure script execution, application automation, and system integration. HIGH-RISK skill due to she Platforms: claude_code."} +{"id": "ae0d6b5ec79a71f89f3a0b78935ef7c218f70030cef77295a9688603c1eaa8ab", "repo_url": "https://github.com/imgoodbai/goodable", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/imgoodbai/goodable/blob/main/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 184, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T09:23:17Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "e957c9c84366670d9320f9c10bfb324744144446f7c1d300bd1354e3bea1ab8b", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "macos-accessibility", "description": "Expert in macOS Accessibility APIs (AXUIElement) for desktop automation. Specializes in secure automation of macOS applications with proper TCC permissions, element discovery, and system interaction.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/macos-accessibility/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "macos-accessibility. Expert in macOS Accessibility APIs (AXUIElement) for desktop automation. Specializes in secure automation of macOS applications with proper TCC permissions, element discovery, and system interaction. Platforms: claude_code."} +{"id": "9ad01e7e7981e8b4f0480fc8ffee857ae823339bfb8c1f8653466a1db0618317", "repo_url": "https://github.com/team-attention/stanford-cs146s-kr", "name": "wrap", "description": "\uc138\uc158 \uc885\ub8cc \uc2dc \uc790\ub3d9 \uc815\ub9ac\ub97c \uc218\ud589\ud569\ub2c8\ub2e4.\nCLAUDE.md \uc5c5\ub370\uc774\ud2b8 \uc81c\uc548, \ubc18\ubcf5 \ud328\ud134 \uc790\ub3d9\ud654 \uae30\ud68c \ud0d0\uc9c0,\n\ubc30\uc6b4 \uac83 \uc815\ub9ac, \ubbf8\uc644\uc131 \uc791\uc5c5 \uc815\ub9ac.\n\uc0ac\uc6a9\uc790\uac00 /wrap \ub610\ub294 \uc138\uc158 \ub9c8\ubb34\ub9ac \uc694\uccad \uc2dc \uc0ac\uc6a9.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/stanford-cs146s-kr/blob/main/.claude/skills/wrap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 283, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T13:50:49Z"}, "embedding_text": "wrap. \uc138\uc158 \uc885\ub8cc \uc2dc \uc790\ub3d9 \uc815\ub9ac\ub97c \uc218\ud589\ud569\ub2c8\ub2e4.\nCLAUDE.md \uc5c5\ub370\uc774\ud2b8 \uc81c\uc548, \ubc18\ubcf5 \ud328\ud134 \uc790\ub3d9\ud654 \uae30\ud68c \ud0d0\uc9c0,\n\ubc30\uc6b4 \uac83 \uc815\ub9ac, \ubbf8\uc644\uc131 \uc791\uc5c5 \uc815\ub9ac.\n\uc0ac\uc6a9\uc790\uac00 /wrap \ub610\ub294 \uc138\uc158 \ub9c8\ubb34\ub9ac \uc694\uccad \uc2dc \uc0ac\uc6a9. Platforms: claude_code."} +{"id": "e14205b5abafc60ea375c7e9bb777a1ee840a395a953eb2286097fb1528053d2", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "pdf-text-extractor", "description": "Extract text from PDF files with intelligent chunking and metadata preservation. IMPORTANT - For best results, first convert PDFs to markdown using OpenAI Codex (see pdf skill), then process the markd", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/data/documents/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "pdf-text-extractor. Extract text from PDF files with intelligent chunking and metadata preservation. IMPORTANT - For best results, first convert PDFs to markdown using OpenAI Codex (see pdf skill), then process the markd Platforms: claude_code."} +{"id": "0924a6e34a281afa54bfa19125271fff7b0170e20d65de816a678b9d0b48e357", "repo_url": "https://github.com/buyoung/skills", "name": "code-review", "description": "Performs production-ready code reviews on git changes. Supports commit/range/file-scoped analysis, impact assessment, breaking-change detection, confidence-aware finding classification, and risk-weigh", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "code-review. Performs production-ready code reviews on git changes. Supports commit/range/file-scoped analysis, impact assessment, breaking-change detection, confidence-aware finding classification, and risk-weigh Platforms: claude_code."} +{"id": "0754d0f151ff4d1e77b519520d5edc4277d287064e1550be16e6997068202d3a", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-systems-as-experience", "description": "Router for systems-as-experience - emergence, sandbox, optimization, discovery, narrative, modding", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/bravos-systems-as-experience/skills/using-systems-as-experience/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-systems-as-experience. Router for systems-as-experience - emergence, sandbox, optimization, discovery, narrative, modding Platforms: claude_code."} +{"id": "f225556bc9fdb056e21b2c03a987be1ff456f12512c8710005f11fc44b792c78", "repo_url": "https://github.com/pr-pm/prpm", "name": "multi-package-publish", "description": "This skill appears to be a minimal example for testing multi-package publishing in PRPM. It lacks detailed documentation, clear use cases, and practical functionality beyond demonstrating publishing m", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pr-pm/prpm/blob/main/packages/cli/examples/multi-package-publish/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "C", "skillhub_score": 3.3, "last_updated": "2026-06-01T10:00:50Z"}, "embedding_text": "multi-package-publish. This skill appears to be a minimal example for testing multi-package publishing in PRPM. It lacks detailed documentation, clear use cases, and practical functionality beyond demonstrating publishing m Platforms: claude_code."} +{"id": "a9b7522dc38cc63460e503b6ba2909b4b30508480e39e2280abb145b3a9ba80f", "repo_url": "https://github.com/lixiaolin94/skills", "name": "web-shader-extractor", "description": "\u4ece\u7f51\u9875\u4e2d\u63d0\u53d6 WebGL/Canvas/Shader \u89c6\u89c9\u7279\u6548\u4ee3\u7801\uff0c\u53cd\u6df7\u6dc6\u540e\u79fb\u690d\u4e3a\u72ec\u7acb\u539f\u751f JS \u9879\u76ee\u3002\n\u89e6\u53d1\u6761\u4ef6\uff1a\u7528\u6237\u63d0\u4f9b\u7f51\u5740\u5e76\u8981\u6c42\u63d0\u53d6 shader\u3001\u63d0\u53d6\u7279\u6548\u3001\u63d0\u53d6\u52a8\u753b\u6548\u679c\u3001\u63d0\u53d6 canvas \u6548\u679c\u3001\n\u590d\u523b\u67d0\u7f51\u7ad9\u7684\u89c6\u89c9\u6548\u679c\u3001\"\u628a\u8fd9\u4e2a\u7f51\u7ad9\u7684\u80cc\u666f\u6548\u679c\u6252\u4e0b\u6765\" \u7b49\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lixiaolin94/skills/blob/main/web-shader-extractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 196, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-08T11:20:28Z"}, "embedding_text": "web-shader-extractor. \u4ece\u7f51\u9875\u4e2d\u63d0\u53d6 WebGL/Canvas/Shader \u89c6\u89c9\u7279\u6548\u4ee3\u7801\uff0c\u53cd\u6df7\u6dc6\u540e\u79fb\u690d\u4e3a\u72ec\u7acb\u539f\u751f JS \u9879\u76ee\u3002\n\u89e6\u53d1\u6761\u4ef6\uff1a\u7528\u6237\u63d0\u4f9b\u7f51\u5740\u5e76\u8981\u6c42\u63d0\u53d6 shader\u3001\u63d0\u53d6\u7279\u6548\u3001\u63d0\u53d6\u52a8\u753b\u6548\u679c\u3001\u63d0\u53d6 canvas \u6548\u679c\u3001\n\u590d\u523b\u67d0\u7f51\u7ad9\u7684\u89c6\u89c9\u6548\u679c\u3001\"\u628a\u8fd9\u4e2a\u7f51\u7ad9\u7684\u80cc\u666f\u6548\u679c\u6252\u4e0b\u6765\" \u7b49\u3002 Platforms: claude_code."} +{"id": "0074b7f0dd3416087dc69bca9b30d8aa4846a5dd45d8a26cd75b79fc2fd95be4", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-auth", "description": "Authentication and authorization expert covering JWT, API keys, OAuth, RBAC, password hashing, distributed token storage, and session management patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-auth. Authentication and authorization expert covering JWT, API keys, OAuth, RBAC, password hashing, distributed token storage, and session management patterns. Platforms: claude_code."} +{"id": "f56b69897858c46b685ea1ac3a80a20115c5007d31fe8fe8b82b7911ebc7d404", "repo_url": "https://github.com/automagik-dev/genie", "name": "genie", "description": "Transform any Claude Code session into an Automagik Genie orchestrator \u2014 guide users through brainstorm, wish, team, and PR lifecycle.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/automagik-dev/genie/blob/main/skills/genie-hacks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 323, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T21:43:56Z"}, "embedding_text": "genie. Transform any Claude Code session into an Automagik Genie orchestrator \u2014 guide users through brainstorm, wish, team, and PR lifecycle. Platforms: claude_code."} +{"id": "62be0792aba656b443e253227354360b6a30c4d71fe216b702ab8f3360523d3f", "repo_url": "https://github.com/cap-go/capgo-skills", "name": "tailwind-capacitor", "description": "Guide to using Tailwind CSS in Capacitor mobile apps. Covers mobile-first design, touch targets, safe areas, dark mode, and performance optimization. Use this skill when users want to style Capacitor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cap-go/capgo-skills/blob/main/plugins/capacitor-ui/skills/tailwind-capacitor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:35:53Z"}, "embedding_text": "tailwind-capacitor. Guide to using Tailwind CSS in Capacitor mobile apps. Covers mobile-first design, touch targets, safe areas, dark mode, and performance optimization. Use this skill when users want to style Capacitor Platforms: claude_code."} +{"id": "70a42b82efac7fbeb2179f2ccc0c57daed331007d028a1a5e4f5f3450c8ab2e1", "repo_url": "https://github.com/joewongjc/type4me", "name": "type4me", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1289, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:20:02Z"}, "embedding_text": "type4me. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "954a09b7aa96f86f1616d9904191b0c1caea280e06adeb6b64321daa153e48e3", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "meeting-prep-cc", "description": "Generate a pre-meeting prep brief in Claude Code. Researches participants, pulls vault context, builds agenda, surfaces sharp questions. Use when user says \"prep for this meeting,\" \"I have a call with,\" \"meeting tomorrow with,\" or \"prep brief for [name/company].\"", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/meeting-prep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install meeting-prep-cc"}, "quality": {"stars": 335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T12:37:28Z"}, "embedding_text": "meeting-prep-cc. Generate a pre-meeting prep brief in Claude Code. Researches participants, pulls vault context, builds agenda, surfaces sharp questions. Use when user says \"prep for this meeting,\" \"I have a call with,\" \"meeting tomorrow with,\" or \"prep brief for [name/company].\" Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} +{"id": "a4b0e384de629fb85b30fc8190ef5d7be5923f600a499d0ee9da048bf0bb9e8b", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "root-cause-tracing", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/root-cause-tracing/skills/root-cause-tracing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "root-cause-tracing. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c7d99990ea4dd34147da34715b4464a592fd95f1f948c0cb0509df298140a62c", "repo_url": "https://github.com/datarobot-oss/datarobot-agent-skills", "name": "datarobot-predictions", "description": "Tools and guidance for making predictions with DataRobot models, including real-time predictions, batch scoring, and prediction dataset generation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datarobot-oss/datarobot-agent-skills/blob/main/skills/datarobot-predictions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:59:03Z"}, "embedding_text": "datarobot-predictions. Tools and guidance for making predictions with DataRobot models, including real-time predictions, batch scoring, and prediction dataset generation. Platforms: claude_code."} +{"id": "8e2d83353d39f440651e8a22b4f343111837619351226fbc0de72e9d110cfa62", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-xacml", "description": "\u7b56\u7565\u5f15\u64ce\u3001\u6743\u9650\u51b3\u7b56\u3001RBAC\u3001\u7b56\u7565\u6a21\u5f0f\u3001\u8d23\u4efb\u94fe---", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-xacml/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-xacml. \u7b56\u7565\u5f15\u64ce\u3001\u6743\u9650\u51b3\u7b56\u3001RBAC\u3001\u7b56\u7565\u6a21\u5f0f\u3001\u8d23\u4efb\u94fe--- Platforms: claude_code."} +{"id": "d59a575b9229ab185eee3d63d0f88969d548c8a7ec88ef33142cdf0dfdadef69", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "effect-ts", "description": "This skill should be used when the user asks about Effect-TS patterns, services, layers, error handling, service composition, or writing/refactoring code that imports from 'effect'. Also covers Effect", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/skills/effect-ts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "effect-ts. This skill should be used when the user asks about Effect-TS patterns, services, layers, error handling, service composition, or writing/refactoring code that imports from 'effect'. Also covers Effect Platforms: claude_code."} +{"id": "bcd0702cc6ed0238f31b35ceca8ed0ebb34fef77a5dea9c373f2d22b42d848b4", "repo_url": "https://github.com/itechmeat/llm-code", "name": "mantine-dev", "description": "Mantine UI library for React: 100+ components, hooks, forms, theming, dark mode, CSS modules, and Vite/TypeScript setup.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/mantine-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "mantine-dev. Mantine UI library for React: 100+ components, hooks, forms, theming, dark mode, CSS modules, and Vite/TypeScript setup. Platforms: claude_code."} +{"id": "3f4154c080c35771483361a461ead721a7d8ed9c3dc26975a59e753447f86e92", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-simulation-tactics", "description": "Router skill - analyze requirements and direct to appropriate tactics", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/bravos-simulation-tactics/skills/using-simulation-tactics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-simulation-tactics. Router skill - analyze requirements and direct to appropriate tactics Platforms: claude_code."} +{"id": "e6ef5d9451e6aa9640214fbf05f8115d6f17741fa167f8a30783d1f36ad21676", "repo_url": "https://github.com/itechmeat/llm-code", "name": "commits", "description": "Conventional Commits specification. Covers commit structure, types, breaking changes. Keywords: feat, fix, BREAKING CHANGE.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/commits/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "commits. Conventional Commits specification. Covers commit structure, types, breaking changes. Keywords: feat, fix, BREAKING CHANGE. Platforms: claude_code."} +{"id": "c99b4c96be597b7cbc9705af85964e2bdf4c8abbe4fe53ec413a1361cbbe0d2d", "repo_url": "https://github.com/wwwzhouhui/skills_collection", "name": "siliconflow-api-skills", "description": "\u7845\u57fa\u6d41\u52a8\uff08SiliconFlow\uff09\u4e91\u670d\u52a1\u5e73\u53f0\u6587\u6863\u3002\u7528\u4e8e\u5927\u8bed\u8a00\u6a21\u578b API \u8c03\u7528\u3001\u56fe\u7247\u751f\u6210\u3001\u5411\u91cf\u6a21\u578b\u3001\u5728 Claude Code \u4e2d\u4f7f\u7528\u7845\u57fa\u6d41\u52a8\u3001Chat Completions API\u3001Stream \u6a21\u5f0f\u7b49\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wwwzhouhui/skills_collection/blob/main/siliconflow-api-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 246, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T16:36:29Z"}, "embedding_text": "siliconflow-api-skills. \u7845\u57fa\u6d41\u52a8\uff08SiliconFlow\uff09\u4e91\u670d\u52a1\u5e73\u53f0\u6587\u6863\u3002\u7528\u4e8e\u5927\u8bed\u8a00\u6a21\u578b API \u8c03\u7528\u3001\u56fe\u7247\u751f\u6210\u3001\u5411\u91cf\u6a21\u578b\u3001\u5728 Claude Code \u4e2d\u4f7f\u7528\u7845\u57fa\u6d41\u52a8\u3001Chat Completions API\u3001Stream \u6a21\u5f0f\u7b49\u3002 Platforms: claude_code."} +{"id": "cf46555983c46d6e309da149881fff2f0b7a36aa13cd9061314921acad7f7356", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "defense-in-depth", "description": "Multi-layer validation to catch bugs before they escape", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/defense-in-depth/skills/defense-in-depth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "defense-in-depth. Multi-layer validation to catch bugs before they escape Platforms: claude_code."} +{"id": "21e504689e70eaab2bc8354d7828aed3a36897a95a66b9832ba731cd3d864c44", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "learn", "description": "Teach Claude ANY topic - code libraries, APIs, concepts, tools, methodologies, or domains. Researches via web and docs, then retains knowledge as a permanent skill. Use when user says \"/learn \"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/learn/skills/learn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "learn. Teach Claude ANY topic - code libraries, APIs, concepts, tools, methodologies, or domains. Researches via web and docs, then retains knowledge as a permanent skill. Use when user says \"/learn \" Platforms: claude_code."} +{"id": "a678e9125c5d522c9a0a8773c608a99040df60624a0120df6737ccaf621a7b15", "repo_url": "https://github.com/datarobot-oss/datarobot-agent-skills", "name": "datarobot-model-training", "description": "Comprehensive guidance for training models in DataRobot, including project creation, AutoML configuration, feature engineering, and model selection.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datarobot-oss/datarobot-agent-skills/blob/main/skills/datarobot-model-training/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:59:03Z"}, "embedding_text": "datarobot-model-training. Comprehensive guidance for training models in DataRobot, including project creation, AutoML configuration, feature engineering, and model selection. Platforms: claude_code."} +{"id": "b9e9fb638384b46a764ff5c41183a783235f867b582a7e0e1ded1c7b96f190cf", "repo_url": "https://github.com/larksuite/cli", "name": "lark-approval", "description": "\u98de\u4e66\u5ba1\u6279 API\uff1a\u5ba1\u6279\u5b9e\u4f8b\u3001\u5ba1\u6279\u4efb\u52a1\u7ba1\u7406\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/larksuite/cli/blob/main/skills/lark-approval/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14494, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:12:49Z"}, "embedding_text": "lark-approval. \u98de\u4e66\u5ba1\u6279 API\uff1a\u5ba1\u6279\u5b9e\u4f8b\u3001\u5ba1\u6279\u4efb\u52a1\u7ba1\u7406\u3002 Platforms: claude_code."} +{"id": "ad46999e594048265b71494f6b53bba7d84cd67183a9c92240731db46146e2c3", "repo_url": "https://github.com/github/gh-aw-firewall", "name": "awf-debug-tools", "description": "Practical Python scripts for debugging awf - parse logs, diagnose issues, inspect containers, test domains", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/gh-aw-firewall/blob/main/.claude/skills/awf-debug-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:27:40Z"}, "embedding_text": "awf-debug-tools. Practical Python scripts for debugging awf - parse logs, diagnose issues, inspect containers, test domains Platforms: claude_code."} +{"id": "ac1c7d1a1606efa915cfbe3ed935d0b436217f5f1ff940569303ee497c7d3096", "repo_url": "https://github.com/duckdb/duckdb-skills", "name": "read-memories", "description": "Search past Claude Code session logs to recall prior decisions, patterns, or unresolved work. Use when user says \"do you remember\", \"what did we do\", references past conversations, or you need context", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/duckdb/duckdb-skills/blob/main/skills/read-memories/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 495, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-23T13:56:22Z"}, "embedding_text": "read-memories. Search past Claude Code session logs to recall prior decisions, patterns, or unresolved work. Use when user says \"do you remember\", \"what did we do\", references past conversations, or you need context Platforms: claude_code."} +{"id": "6f5899f66667b4cb9337724d5116b484f1bf0a4d0f4f74f6e30ad06415d6b200", "repo_url": "https://github.com/itechmeat/llm-code", "name": "skill-master", "description": "Agent Skills authoring. Covers SKILL.md format, frontmatter, folders, docs ingestion. Keywords: agentskills.io, SKILL.md.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/skill-master/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "skill-master. Agent Skills authoring. Covers SKILL.md format, frontmatter, folders, docs ingestion. Keywords: agentskills.io, SKILL.md. Platforms: claude_code."} +{"id": "f0846b5a9aa12440490e96430af4fb2f220c80c9f6e9ab4bd8a44fbd847f214d", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "doctor", "description": "Run health checks on Claude Code configuration and sessions. Use when troubleshooting Claude Code issues.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruya-ai/cozempic/blob/main/plugin/skills/cozempic-doctor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 340, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:12:08Z"}, "embedding_text": "doctor. Run health checks on Claude Code configuration and sessions. Use when troubleshooting Claude Code issues. Platforms: claude_code."} +{"id": "69bf16633212bd1563490cfe23b5f32ed13163c3ad30fbec47147791b44c101d", "repo_url": "https://github.com/vipulgupta2048/codex-skills", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use when building or refining web components, pages, or apps (HTML/CSS/JS/React) with bold aesthetics, purposeful lay", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vipulgupta2048/codex-skills/blob/master/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-03T00:20:09Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use when building or refining web components, pages, or apps (HTML/CSS/JS/React) with bold aesthetics, purposeful lay Platforms: claude_code."} +{"id": "feb8925be139d5f8c49b8f4ef3088344fa67e8b97b76e4088bdd5acfbd73b654", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "project-init", "description": "Initialize projects with AI Dev Flow framework using domain-aware setup", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/project-init/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "project-init. Initialize projects with AI Dev Flow framework using domain-aware setup Platforms: claude_code."} +{"id": "a46f5ed66384cc46d64b55d0180425f3d3bf3f57339e72c0f21867b136441e4f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "developer-growth-analysis", "description": "Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a p", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xmsc/develop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install developer-growth-analysis"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "developer-growth-analysis. Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a p Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "dd85f4ed5e14875f5a714e785e0551adab283eed59d615e22aafb5462da0f0a7", "repo_url": "https://github.com/williamzujkowski/standards", "name": "testing", "description": "Comprehensive testing standards including unit, integration, security, and property-based testing with TDD methodology", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/williamzujkowski/standards/blob/master/skills/testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-03T12:40:45Z"}, "embedding_text": "testing. Comprehensive testing standards including unit, integration, security, and property-based testing with TDD methodology Platforms: claude_code."} +{"id": "ee98f5498bdb1a8b5da892d6714982114d3dddf4729e5f5034bf6f24b65b720d", "repo_url": "https://github.com/huifer/skill-security-scan", "name": "Data Optimizer Pro", "description": "\u667a\u80fd\u6570\u636e\u4f18\u5316\u5de5\u5177\uff0c\u81ea\u52a8\u6e05\u7406\u548c\u4f18\u5316\u9879\u76ee\u6587\u4ef6", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/skill-security-scan/blob/main/tests/skills/malicious_skills/data-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 152, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T08:12:19Z"}, "embedding_text": "Data Optimizer Pro. \u667a\u80fd\u6570\u636e\u4f18\u5316\u5de5\u5177\uff0c\u81ea\u52a8\u6e05\u7406\u548c\u4f18\u5316\u9879\u76ee\u6587\u4ef6 Platforms: claude_code."} +{"id": "9a0d22e58b0a1f46cdaae86b7cf8970dd8064e4870891ecc44e77ae61fa9f57c", "repo_url": "https://github.com/kuneosu/make-slide", "name": "make-slide", "description": "Generate single-file HTML presentations with 10 professional themes and speaker notes. Use this skill whenever the user mentions presentations, slides, deck, talk, keynote, pitch, slideshow, or wants", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kuneosu/make-slide/blob/main/.claude/skills/make-slide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 91, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-10T04:07:36Z"}, "embedding_text": "make-slide. Generate single-file HTML presentations with 10 professional themes and speaker notes. Use this skill whenever the user mentions presentations, slides, deck, talk, keynote, pitch, slideshow, or wants Platforms: claude_code."} +{"id": "9b35721453096d1f1242c2158126aa5ae866dcfd8bba4ca20342df19009baff3", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "skill-share", "description": "A skill that creates new Claude skills and automatically shares them on Slack using Rube for seamless team collaboration and skill discovery.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/skill-share/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-share"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "skill-share. A skill that creates new Claude skills and automatically shares them on Slack using Rube for seamless team collaboration and skill discovery. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "51208d6549dba7b57938db8cb0143053c5c109f509a1d8589fc88f15ed1c2b77", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "biomni", "description": "Autonomous biomedical AI agent framework for executing complex research tasks across genomics, drug discovery, molecular biology, and clinical analysis. Use this skill when conducting multi-step biome", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/individual-skills/claude-scientific-skills/scientific-skills/biomni/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "biomni. Autonomous biomedical AI agent framework for executing complex research tasks across genomics, drug discovery, molecular biology, and clinical analysis. Use this skill when conducting multi-step biome Platforms: claude_code."} +{"id": "7f2a17dc82bec878f0c150b75cfa2b14138f1999646a3f1764c65d75891fa473", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-report", "description": "Consolidate all SAST vulnerability results from the sast/ folder into a single final report ranked by severity and confidentiality impact. Reads all *-results.md files and produces sast/final-report.m", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-report. Consolidate all SAST vulnerability results from the sast/ folder into a single final report ranked by severity and confidentiality impact. Reads all *-results.md files and produces sast/final-report.m Platforms: claude_code."} +{"id": "d0fe0164c74bd0f9093595cb1af241db59b5066b1b77b3a9ecd4390f2669006f", "repo_url": "https://github.com/nanorepublica/django-prodserver", "name": "global-coding-style", "description": "A minimal skill that merely references an external coding style document without providing any actual implementation, examples, or concrete guidance for Claude to follow.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nanorepublica/django-prodserver/blob/main/.claude/skills/global-coding-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 58, "skillhub_rank": "D", "skillhub_score": 2.5, "last_updated": "2026-05-21T05:56:15Z"}, "embedding_text": "global-coding-style. A minimal skill that merely references an external coding style document without providing any actual implementation, examples, or concrete guidance for Claude to follow. Platforms: claude_code."} +{"id": "e558e9a439bb907465a12c10e8df8273539dc86c3e508f8db2aafb5ae420a6f4", "repo_url": "https://github.com/openclaw/openclaw", "name": "discord", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openclaw/openclaw/blob/main/.agents/skills/discord-clawd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 379846, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:08:25Z"}, "embedding_text": "discord. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "219ae59ebcf21309a9f94dbc35c933b7ca11ed5b844d978bccf51215e9b91d31", "repo_url": "https://github.com/aklofas/kicad-happy", "name": "element14", "description": "Search Newark, Farnell, and element14 for electronic components \u2014 find parts by MPN or distributor part number, check pricing/stock, download datasheets, analyze specifications. One unified API covers", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aklofas/kicad-happy/blob/main/skills/element14/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 594, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:04:59Z"}, "embedding_text": "element14. Search Newark, Farnell, and element14 for electronic components \u2014 find parts by MPN or distributor part number, check pricing/stock, download datasheets, analyze specifications. One unified API covers Platforms: claude_code."} +{"id": "7655a7fc080ab91376b8d8c48a90c0477c8263b9362661ffc4c187dd004bc539", "repo_url": "https://github.com/aklofas/kicad-happy", "name": "mouser", "description": "Search Mouser Electronics for electronic components \u2014 secondary source for prototype orders. Find parts, check pricing/stock, download datasheets, analyze specifications. Use with KiCad for BOM creati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aklofas/kicad-happy/blob/main/skills/mouser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 594, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:04:59Z"}, "embedding_text": "mouser. Search Mouser Electronics for electronic components \u2014 secondary source for prototype orders. Find parts, check pricing/stock, download datasheets, analyze specifications. Use with KiCad for BOM creati Platforms: claude_code."} +{"id": "41b8452c0a06038e3101f5faf5b2aed48d393a4557ed0f2dc6ea10f7e2e87138", "repo_url": "https://github.com/zircote/git-adr", "name": "git-adr", "description": "Manage Architecture Decision Records (ADRs) using git-adr, a CLI tool that stores ADRs in git notes instead of files. Execute commands (init, new, edit, list, show, search, sync, supersede, link, atta", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zircote/git-adr/blob/main/skills/git-adr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T10:54:18Z"}, "embedding_text": "git-adr. Manage Architecture Decision Records (ADRs) using git-adr, a CLI tool that stores ADRs in git notes instead of files. Execute commands (init, new, edit, list, show, search, sync, supersede, link, atta Platforms: claude_code."} +{"id": "04a2fc88735f90f08fe33f0394f399d43d5d7d7dea6259f20807f84729f271fa", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "brand-guidelines", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "brand-guidelines. 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 Platforms: claude_code."} +{"id": "241c55a78b3f54ded1d6e39fe2f8eb024481390063b2c01720071d722ba21b9f", "repo_url": "https://github.com/team-attention/hoyeon", "name": "ralph", "description": "Iterative task completion loop with Definition of Done verification.\nCombines the Ralph Wiggum technique (prompt re-injection via Stop hook) with\nDoD-based independent verification. Claude proposes Do", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/ralph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "ralph. Iterative task completion loop with Definition of Done verification.\nCombines the Ralph Wiggum technique (prompt re-injection via Stop hook) with\nDoD-based independent verification. Claude proposes Do Platforms: claude_code."} +{"id": "ba1db191f07267657cbdfb58b45dd9ed67aff4c8b5cb38b92ed3ae2e478f419a", "repo_url": "https://github.com/synqing/k1.hardware", "name": "ESP-IDF", "description": "ESP32 Integrated Development Framework documentation. Covers I2S, GPIO, FreeRTOS, peripherals, and ESP32S3-specific APIs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/synqing/k1.hardware/blob/feat/mcp-rag-bootstrap/.claude/skills/ESP-IDF/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-11T02:58:37Z"}, "embedding_text": "ESP-IDF. ESP32 Integrated Development Framework documentation. Covers I2S, GPIO, FreeRTOS, peripherals, and ESP32S3-specific APIs. Platforms: claude_code."} +{"id": "9e954c66ecec923e575c693d3d5356ddb004b8739003ec6ae35207a9ed2204e4", "repo_url": "https://github.com/triggerdotdev/skills", "name": "trigger-agents", "description": "AI agent patterns with Trigger.dev - orchestration, parallelization, routing, evaluator-optimizer, and human-in-the-loop. Use when building LLM-powered tasks that need parallel workers, approval gates", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/triggerdotdev/skills/blob/main/trigger-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T11:16:43Z"}, "embedding_text": "trigger-agents. AI agent patterns with Trigger.dev - orchestration, parallelization, routing, evaluator-optimizer, and human-in-the-loop. Use when building LLM-powered tasks that need parallel workers, approval gates Platforms: claude_code."} +{"id": "8fea2954b5e31c1d1e57a00c98be9a6fe1eae8d0d8eb7312da798c9bb8a66c54", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "brand-guidelines", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "brand-guidelines. 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 Platforms: claude_code."} +{"id": "65d6da1cbcdf2f7744d96830af83ed4326a184702050c945b93749b1da4350ec", "repo_url": "https://github.com/untitled-data-company/data-skills", "name": "uv", "description": "Uses the uv Python package and project manager correctly for dependencies, venvs, and scripts. Use when creating or modifying Python projects, adding dependencies, running scripts with inline deps, ma", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/untitled-data-company/data-skills/blob/main/skills/uv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-04T16:15:11Z"}, "embedding_text": "uv. Uses the uv Python package and project manager correctly for dependencies, venvs, and scripts. Use when creating or modifying Python projects, adding dependencies, running scripts with inline deps, ma Platforms: claude_code."} +{"id": "94aa2eff65206f448fc37fd2361e3c359916d1d7126bc39eb9ac86a5c2086d61", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "internal-comms", "description": "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 com", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "internal-comms. 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 com Platforms: claude_code."} +{"id": "15dae9cd652e0605fbe86fc322af43724bd023cc0d82ddb29dcbf0135db02627", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "fastmcp", "description": "Build, test, inspect, install, and deploy MCP servers with FastMCP in Python. Use when creating a new MCP server, wrapping an API or database as MCP tools, exposing resources or prompts, or preparing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mcp/fastmcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "fastmcp. Build, test, inspect, install, and deploy MCP servers with FastMCP in Python. Use when creating a new MCP server, wrapping an API or database as MCP tools, exposing resources or prompts, or preparing Platforms: linux, macos, windows."} +{"id": "5079f1a27da6a916d8b809f4fb6d7b1274a6f8faf806b41080cf330fe2eece8a", "repo_url": "https://github.com/tpmjs/tpmjs", "name": "remotion-best-practices", "description": "Best practices for Remotion - Video creation in React", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tpmjs/tpmjs/blob/main/.claude/skills/remotion-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:47:23Z"}, "embedding_text": "remotion-best-practices. Best practices for Remotion - Video creation in React Platforms: claude_code."} +{"id": "5f04da7f44c36b7b193983063d3869e632ce4e64f2000385807fa9f9dfbe490c", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "sparc-architecture", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/_archive/business/marketing/seo-optimizer/architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "sparc-architecture. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7f4cee484d6e2fa29d6d181091b3897ebae2702df625f6cf6cdd4106de018dfe", "repo_url": "https://github.com/technicalpickles/pickled-claude-plugins", "name": "writing-pull-requests", "description": "Use when creating, updating, or commenting on GitHub pull requests - focuses on material impact, safety, and human reviewability", "source": ["skillhub", "topic"], "categories": ["buildkite", "claude-code", "claude-skills", "monorepo", "workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/technicalpickles/pickled-claude-plugins/blob/main/plugins/git/skills/pull-request/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-pull-requests"}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T20:55:10Z"}, "embedding_text": "writing-pull-requests. Use when creating, updating, or commenting on GitHub pull requests - focuses on material impact, safety, and human reviewability Categories: buildkite, claude-code, claude-skills, monorepo, workflow. Platforms: claude_code."} +{"id": "d941931ca223c22616519009b87e9f13a5e97129bdb91d86c204a91b7c654d3d", "repo_url": "https://github.com/proskillsmd/proskills", "name": "devboxes", "description": "Manage development environment containers (devboxes) with web-accessible VSCode, VNC, and app routing via Traefik or Cloudflare Tunnels. Use when the user asks to create, start, stop, list, or manage", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/proskillsmd/proskills/blob/main/skills/developer-tools/adshrc-openclaw-devboxes-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-23T10:34:50Z"}, "embedding_text": "devboxes. Manage development environment containers (devboxes) with web-accessible VSCode, VNC, and app routing via Traefik or Cloudflare Tunnels. Use when the user asks to create, start, stop, list, or manage Platforms: claude_code."} +{"id": "49263241f753d8615ef75b3030a8e616493cd13619c7ac0c629d9b00470056f5", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "fact-check", "description": "Verify claims in backlog items, skill documentation, or plugin content against primary sources using web lookups. Spawns parallel verification agents that MUST use WebFetch/WebSearch/gh \u2014 training dat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/fact-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "fact-check. Verify claims in backlog items, skill documentation, or plugin content against primary sources using web lookups. Spawns parallel verification agents that MUST use WebFetch/WebSearch/gh \u2014 training dat Platforms: claude_code."} +{"id": "83c880df20df84e292bf2d50302c595c1c45b1e8e6dbceedd7e846d6b6f7b2e1", "repo_url": "https://github.com/happycapy-ai/happycapy-skills", "name": "oss-contributor-swarm", "description": "Autonomous 9-agent swarm that continuously contributes to open source projects on GitHub. Finds good-first-issues, analyzes requirements, writes code/tests/docs, creates PRs, and responds to reviews -", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/happycapy-ai/happycapy-skills/blob/main/skills/oss-contributor-swarm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 126, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T12:02:01Z"}, "embedding_text": "oss-contributor-swarm. Autonomous 9-agent swarm that continuously contributes to open source projects on GitHub. Finds good-first-issues, analyzes requirements, writes code/tests/docs, creates PRs, and responds to reviews - Platforms: claude_code."} +{"id": "df92ffbe316e989f41993a861c5fd307136f24ab0ef771eaa5030039012d8cc9", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-simulation-foundations", "description": "Router for simulation math - ODEs, state-space, stability, control, numerics, chaos, stochastic", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/yzmir-simulation-foundations/skills/using-simulation-foundations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-simulation-foundations. Router for simulation math - ODEs, state-space, stability, control, numerics, chaos, stochastic Platforms: claude_code."} +{"id": "4c5123d6f4e91191abcc2ed87734259db38973ba666d3b84d3b22d1fde244469", "repo_url": "https://github.com/ojowwalker77/claude-matrix", "name": "Matrix Doctor", "description": "This skill should be used when the user asks to \"run matrix diagnostics\", \"check matrix health\", \"fix matrix issues\", \"troubleshoot matrix\", or mentions matrix not working. Runs comprehensive diagnost", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ojowwalker77/claude-matrix/blob/main/skills/doctor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 110, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-10T15:19:48Z"}, "embedding_text": "Matrix Doctor. This skill should be used when the user asks to \"run matrix diagnostics\", \"check matrix health\", \"fix matrix issues\", \"troubleshoot matrix\", or mentions matrix not working. Runs comprehensive diagnost Platforms: claude_code."} +{"id": "64acf9f9fb1f1c0c7060b72357c6af40c181b51c27b0accde890076b7ccde800", "repo_url": "https://github.com/pjuniszewski/cook", "name": "feature-development", "description": "Run a full, policy-compliant feature development flow with structured review phases", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pjuniszewski/cook/blob/main/skills/feature-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-07T08:41:12Z"}, "embedding_text": "feature-development. Run a full, policy-compliant feature development flow with structured review phases Platforms: claude_code."} +{"id": "65d5409c7847632e522b4f7c4abdea0b3a982ffb7d6cb46a2ae935cb827af5bd", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "cm", "description": "CASS Memory System - procedural memory for AI coding agents. Three-layer cognitive architecture with confidence decay, anti-pattern learning, cross-agent knowledge transfer, trauma guard safety system", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/cm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "cm. CASS Memory System - procedural memory for AI coding agents. Three-layer cognitive architecture with confidence decay, anti-pattern learning, cross-agent knowledge transfer, trauma guard safety system Platforms: claude_code."} +{"id": "3a2640692ff43fbaecdbce21e58a19f9e6b2676c5cd9b3979933afc87f3b5877", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "prd", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/.gemini/skills/cmd-code-to-prd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18740, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T05:17:58Z"}, "embedding_text": "prd. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "08724d6edc38d72a992944e1608afca9e3db46786f4ef0d96de11391b89161a6", "repo_url": "https://github.com/happycapy-ai/happycapy-skills", "name": "resume-assistant", "description": "\u667a\u80fd\u7b80\u5386\u52a9\u624b,\u901a\u8fc7\u4e94\u4e2aAI\u4ee3\u7406\u63d0\u4f9b\u5168\u6d41\u7a0b\u6c42\u804c\u652f\u6301:(1)\u6545\u4e8b\u6316\u6398-\u53d1\u73b0\u7ecf\u5386\u4eae\u70b9;(2)\u804c\u4f4d\u63a8\u8350-\u5339\u914d\u5408\u9002\u5c97\u4f4d;(3)\u7b80\u5386\u4f18\u5316-\u9488\u5bf9JD\u5b9a\u5236\u5185\u5bb9;(4)\u6a21\u62df\u9762\u8bd5-\u5b9e\u6218\u6f14\u7ec3\u4e0e\u53cd\u9988;(5)\u80fd\u529b\u63d0\u5347-\u5dee\u8ddd\u5206\u6790\u4e0e\u8ba1\u5212\u3002\u9002\u7528\u4e8e\u7b80\u5386\u521b\u5efa\u3001\u4f18\u5316\u3001\u9762\u8bd5\u51c6\u5907\u3001\u804c\u4e1a\u89c4\u5212\u7b49\u6c42\u804c\u76f8\u5173\u4efb\u52a1\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/happycapy-ai/happycapy-skills/blob/main/skills/resume-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 126, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T12:02:01Z"}, "embedding_text": "resume-assistant. \u667a\u80fd\u7b80\u5386\u52a9\u624b,\u901a\u8fc7\u4e94\u4e2aAI\u4ee3\u7406\u63d0\u4f9b\u5168\u6d41\u7a0b\u6c42\u804c\u652f\u6301:(1)\u6545\u4e8b\u6316\u6398-\u53d1\u73b0\u7ecf\u5386\u4eae\u70b9;(2)\u804c\u4f4d\u63a8\u8350-\u5339\u914d\u5408\u9002\u5c97\u4f4d;(3)\u7b80\u5386\u4f18\u5316-\u9488\u5bf9JD\u5b9a\u5236\u5185\u5bb9;(4)\u6a21\u62df\u9762\u8bd5-\u5b9e\u6218\u6f14\u7ec3\u4e0e\u53cd\u9988;(5)\u80fd\u529b\u63d0\u5347-\u5dee\u8ddd\u5206\u6790\u4e0e\u8ba1\u5212\u3002\u9002\u7528\u4e8e\u7b80\u5386\u521b\u5efa\u3001\u4f18\u5316\u3001\u9762\u8bd5\u51c6\u5907\u3001\u804c\u4e1a\u89c4\u5212\u7b49\u6c42\u804c\u76f8\u5173\u4efb\u52a1\u3002 Platforms: claude_code."} +{"id": "cf93f25e0e8f8622500fff3237f666d3a6b471f43ba1ad851c292e02786410fe", "repo_url": "https://github.com/kevinho/clawfeed", "name": "clawfeed", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kevinho/clawfeed/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2256, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-09T09:31:46Z"}, "embedding_text": "clawfeed. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "fc1a52ab54c11648d059881f30075a6b037d32b873d74d2492e265eb40928b82", "repo_url": "https://github.com/k-dense-ai/scientific-agent-skills", "name": "anndata", "description": "Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill\u2014for analysis workflows use sca", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/k-dense-ai/scientific-agent-skills/blob/main/skills/anndata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29025, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T23:48:13Z"}, "embedding_text": "anndata. Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill\u2014for analysis workflows use sca Platforms: claude_code."} +{"id": "80c30e3cafa861f22504ad17e6f204c1574e244a48a667cc74b86afef0ad9c8c", "repo_url": "https://github.com/infatoshi/opensquirrel", "name": "OpenSquirrel", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1364, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-24T08:46:05Z"}, "embedding_text": "OpenSquirrel. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "efdcfb4476876635fbc3adf4b72eaf47cbe2d46b997be04e1fd6184df4fa5a6d", "repo_url": "https://github.com/yusufkaraaslan/skill_seekers", "name": "integrations", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yusufkaraaslan/skill_seekers/blob/development/distribution/claude-plugin/skills/skill-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14227, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T18:23:03Z"}, "embedding_text": "integrations. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5dcf394054d28f89ef5aa890d128cde4bdc73d95ebd08113d625b34f86b39b66", "repo_url": "https://github.com/k-dense-ai/scientific-agent-skills", "name": "adaptyv", "description": "How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user mentions Adaptyv, Foundry API, protein binding", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/k-dense-ai/scientific-agent-skills/blob/main/skills/adaptyv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29025, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T23:48:13Z"}, "embedding_text": "adaptyv. How to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user mentions Adaptyv, Foundry API, protein binding Platforms: claude_code."} +{"id": "4b05e5e1db9dbcfa1ac61571d00a25dcb585bd63bbc3b7e2b4004efca387f349", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Parser Developer", "description": "Guides AILANG parser development with conventions and patterns. Use when user wants to modify parser, understand parser architecture, or debug parser issues. Saves 30% of development time by preventin", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/parser-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Parser Developer. Guides AILANG parser development with conventions and patterns. Use when user wants to modify parser, understand parser architecture, or debug parser issues. Saves 30% of development time by preventin Platforms: claude_code."} +{"id": "f8b50017c22b3cdcdebdd2bb015650ed431ca1799ea75e5d028c893fe9798139", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "biorxiv-database", "description": "Efficient database search tool for bioRxiv preprint server.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/biorxiv-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "biorxiv-database. Efficient database search tool for bioRxiv preprint server. Platforms: claude_code."} +{"id": "c1111eb6f337200a5e6abe159d4ecae4f8d9a5260594c82a03183420c782c320", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-technical-writer", "description": "Router for documentation tasks - routes to ADRs, APIs, runbooks, security docs, or governance docs", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/muna-technical-writer/skills/using-technical-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-technical-writer. Router for documentation tasks - routes to ADRs, APIs, runbooks, security docs, or governance docs Platforms: claude_code."} +{"id": "4852d10f03f1c115567e95790d830560f0710442af9d1da68c0f269c7709a1a9", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-kotlin", "description": "Kotlin coding standards for modern applications. Includes naming conventions, coroutines, flows, modern Kotlin 2.3.0 features, and recommended tooling.", "source": ["skillhub", "topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-kotlin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-kotlin"}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T09:20:28Z"}, "embedding_text": "standards-kotlin. Kotlin coding standards for modern applications. Includes naming conventions, coroutines, flows, modern Kotlin 2.3.0 features, and recommended tooling. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} +{"id": "7c455b5873a79fc6b00e9ab298d15750a3c76de1ab51ead94bec80db7d144b2c", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-web", "description": "Rust web development expert covering HTTP frameworks (axum, actix), REST API design, handler patterns, state management, middleware, database integration, and domain-driven architecture.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-web/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-web. Rust web development expert covering HTTP frameworks (axum, actix), REST API design, handler patterns, state management, middleware, database integration, and domain-driven architecture. Platforms: claude_code."} +{"id": "0479c4996008afa32b6ede2831f1d02d4ac83a6e6349bf8d18e259e05220f88a", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-flow", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-flow. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c1c7604f7c3b4da140e6e8218689dcc8e17e6f7b40e36c8e19bebd9dce743d6d", "repo_url": "https://github.com/greensheep01201/claw-empire", "name": "claw-empire", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T17:17:28Z"}, "embedding_text": "claw-empire. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5d578337518fb27f4578a6ca8a3ea6bd34132627acd96e83c8b493cf8015092d", "repo_url": "https://github.com/shin-sibainu/cc-secretary", "name": "secretary", "description": "\u30d1\u30fc\u30bd\u30ca\u30eb\u79d8\u66f8 & \u30e9\u30a4\u30d5\u30fb\u30ef\u30fc\u30af\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0\u3002 \u5bfe\u8a71\u7684\u306a\u30aa\u30f3\u30dc\u30fc\u30c7\u30a3\u30f3\u30b0\u3067\u3042\u306a\u305f\u306e\u5f79\u5272\u30fb\u65e5\u5e38\u30fb\u30cb\u30fc\u30ba\u3092\u30d2\u30a2\u30ea\u30f3\u30b0\u3057\u3001 \u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305fMarkdown\u30d5\u30a9\u30eb\u30c0\u968e\u5c64\u3092\u81ea\u52d5\u751f\u6210\u3059\u308b\u3002 \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u6e08\u307f\u306e\u5834\u5408\u306f\u7ba1\u7406\u30e2\u30fc\u30c9\u306b\u5207\u308a\u66ff\u308f\u308a\u3001\u30bf\u30b9\u30af\u8ffd\u52a0\u3084\u30a2\u30a4\u30c7\u30a2\u8a18\u9332\u306a\u3069\u3092\u884c\u3046\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shin-sibainu/cc-secretary/blob/master/plugins/secretary/skills/secretary/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T14:35:59Z"}, "embedding_text": "secretary. \u30d1\u30fc\u30bd\u30ca\u30eb\u79d8\u66f8 & \u30e9\u30a4\u30d5\u30fb\u30ef\u30fc\u30af\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0\u3002 \u5bfe\u8a71\u7684\u306a\u30aa\u30f3\u30dc\u30fc\u30c7\u30a3\u30f3\u30b0\u3067\u3042\u306a\u305f\u306e\u5f79\u5272\u30fb\u65e5\u5e38\u30fb\u30cb\u30fc\u30ba\u3092\u30d2\u30a2\u30ea\u30f3\u30b0\u3057\u3001 \u30d1\u30fc\u30bd\u30ca\u30e9\u30a4\u30ba\u3055\u308c\u305fMarkdown\u30d5\u30a9\u30eb\u30c0\u968e\u5c64\u3092\u81ea\u52d5\u751f\u6210\u3059\u308b\u3002 \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u6e08\u307f\u306e\u5834\u5408\u306f\u7ba1\u7406\u30e2\u30fc\u30c9\u306b\u5207\u308a\u66ff\u308f\u308a\u3001\u30bf\u30b9\u30af\u8ffd\u52a0\u3084\u30a2\u30a4\u30c7\u30a2\u8a18\u9332\u306a\u3069\u3092\u884c\u3046\u3002 Platforms: claude_code."} +{"id": "2a6d99454311ffad9d3119e5fc809ae43c357f157615dcfee479f1d87031ca22", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "dataset-discovery", "description": "Multi-source ML dataset discovery.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/dataset-discovery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "dataset-discovery. Multi-source ML dataset discovery. Platforms: claude_code."} +{"id": "e05eda3f380055a51ad881cdfcc1696681ca44e9cd0b22d9958fc193cd81b6f0", "repo_url": "https://github.com/i2y/castella", "name": "castella-a2ui", "description": "Render A2UI JSON as native Castella widgets. Parse A2UI messages, handle actions, progressive rendering, data binding, and connect to A2UI-enabled agents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/i2y/castella/blob/main/skills/castella-a2ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T04:00:38Z"}, "embedding_text": "castella-a2ui. Render A2UI JSON as native Castella widgets. Parse A2UI messages, handle actions, progressive rendering, data binding, and connect to A2UI-enabled agents. Platforms: claude_code."} +{"id": "9e575f0fec3d43e398071d690a2ce0609b5dc110ac824803a918396ff139af86", "repo_url": "https://github.com/jellydn/my-ai-tools", "name": "pickup", "description": "Resumes work from a previous handoff session which are stored in `.claude/handoffs/`", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jellydn/my-ai-tools/blob/main/skills/pickup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 84, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:26:12Z"}, "embedding_text": "pickup. Resumes work from a previous handoff session which are stored in `.claude/handoffs/` Platforms: claude_code."} +{"id": "ea1fdf79d7b012ff38d807ca212a87a1ffd9ae52f030260f35f2f69f830daa98", "repo_url": "https://github.com/wgpsec/redc", "name": "Redc-useage", "description": "Multi-cloud red team infrastructure automation. Deploy and manage cloud resources across AWS, Aliyun, Tencent Cloud with Terraform. Includes commands for init, deploy, manage, execute, and cleanup of", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wgpsec/redc/blob/master/.claude/skills/useage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-04T06:52:11Z"}, "embedding_text": "Redc-useage. Multi-cloud red team infrastructure automation. Deploy and manage cloud resources across AWS, Aliyun, Tencent Cloud with Terraform. Includes commands for init, deploy, manage, execute, and cleanup of Platforms: claude_code."} +{"id": "622e8db7e12587b4e076a78c3fc6651bbeaaed3c48a45e6c3b816eadc75bdab1", "repo_url": "https://github.com/gocallum/nextjs16-agent-skills", "name": "shadcn-skills", "description": "Installation, components, blocks, forms, theming, and MCP guidance for shadcn/ui in modern Next.js projects using pnpm", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gocallum/nextjs16-agent-skills/blob/main/skills/shadcn-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T13:27:54Z"}, "embedding_text": "shadcn-skills. Installation, components, blocks, forms, theming, and MCP guidance for shadcn/ui in modern Next.js projects using pnpm Platforms: claude_code."} +{"id": "6b1022f5e41d64c10fdb612f0df2a2260c546a2852c2bd59c9df9ea174335353", "repo_url": "https://github.com/medusajs/medusa-agent-skills", "name": "building-admin-dashboard-customizations", "description": "Load automatically when planning, researching, or implementing Medusa Admin dashboard UI (widgets, custom pages, forms, tables, data loading, navigation). REQUIRED for all admin UI work in ALL modes (", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/medusajs/medusa-agent-skills/blob/main/plugins/medusa-dev/skills/building-admin-dashboard-customizations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 190, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-08T12:41:06Z"}, "embedding_text": "building-admin-dashboard-customizations. Load automatically when planning, researching, or implementing Medusa Admin dashboard UI (widgets, custom pages, forms, tables, data loading, navigation). REQUIRED for all admin UI work in ALL modes ( Platforms: claude_code."} +{"id": "f80a4506e7cf69f4bf36ccc9bb5b81d1a432a80054c243910664541397ccf5d9", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-bdd", "description": "Layer 4 artifact for Behavior-Driven Development test scenarios using Gherkin Given-When-Then format", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-bdd-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-bdd. Layer 4 artifact for Behavior-Driven Development test scenarios using Gherkin Given-When-Then format Platforms: claude_code."} +{"id": "bbbff8fb9c247108e47f4d06771a14208f72e374b80b4fefb0ca0f61b84e0972", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "parallel-file-processor", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/parallel-file-processor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "parallel-file-processor. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8f6f92d3d0dcbbb8af10477f55c85b0ee0cc55a8f22ccc3c6a6fe0939c470639", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "inno-code-survey", "description": "Acquires missing code repositories for the selected idea (Phase A) and conducts comprehensive code survey mapping academic concepts to implementations (Phase B).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/inno-code-survey/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "inno-code-survey. Acquires missing code repositories for the selected idea (Phase A) and conducts comprehensive code survey mapping academic concepts to implementations (Phase B). Platforms: claude_code."} +{"id": "e394ff970139ee6999ea093b1714502f505ad6637b1f26ecd9c680d953e09b35", "repo_url": "https://github.com/teamsparkai/mcpgraph", "name": "mcpgraph", "description": "Build no-code MCP servers with tools that compose and orchestrate other MCP tools, with data transformation and conditional logic.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/teamsparkai/mcpgraph/blob/main/skills/mcpgraph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-05T18:44:04Z"}, "embedding_text": "mcpgraph. Build no-code MCP servers with tools that compose and orchestrate other MCP tools, with data transformation and conditional logic. Platforms: claude_code."} +{"id": "d2a6328bcd679276ec0a14020d7eb65bc7d886eb849a44b0104d3148b89f9517", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "skill-designer", "description": "Design new Claude skills from structured idea specifications. Use when the skill auto-generation pipeline needs to produce a Claude CLI prompt that creates a complete skill directory (SKILL.md, refere", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/skill-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "skill-designer. Design new Claude skills from structured idea specifications. Use when the skill auto-generation pipeline needs to produce a Claude CLI prompt that creates a complete skill directory (SKILL.md, refere Platforms: claude_code."} +{"id": "366cf7ccaaf8dd2acf8301709b47ed78657a6ce561d1f846b0196e5ac9c04884", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "bash-development", "description": "This skill should be used when the user asks to \"write a bash script\", \"create a shell script\", \"implement bash function\", \"parse arguments in bash\", \"handle errors in bash\", or mentions bash developm", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/bash-development/skills/bash-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "bash-development. This skill should be used when the user asks to \"write a bash script\", \"create a shell script\", \"implement bash function\", \"parse arguments in bash\", \"handle errors in bash\", or mentions bash developm Platforms: claude_code."} +{"id": "4103d30581c8e4096fe0c178be6db40b9427c6c396194f2f313a153c3a3c40a4", "repo_url": "https://github.com/theonlyhennygod/zeroclaw", "name": "zeroclaw", "description": "Help users operate and interact with their ZeroClaw agent instance \u2014 through both the CLI (`zeroclaw` commands) and the REST/WebSocket gateway API. Use this skill whenever the user wants to: send mess", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/theonlyhennygod/zeroclaw/blob/master/.claude/skills/zeroclaw/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 96, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-26T15:38:09Z"}, "embedding_text": "zeroclaw. Help users operate and interact with their ZeroClaw agent instance \u2014 through both the CLI (`zeroclaw` commands) and the REST/WebSocket gateway API. Use this skill whenever the user wants to: send mess Platforms: claude_code."} +{"id": "e73bd9531b6075d5226263c3d8ef4d9f95de002258a26de9b5fb604e8574b2b1", "repo_url": "https://github.com/plurigrid/asi", "name": "dynamic-sufficiency", "description": "Causal state gating via \u03b5-machine. Coworld observer that prevents action", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/dynamic-sufficiency-goblin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "dynamic-sufficiency. Causal state gating via \u03b5-machine. Coworld observer that prevents action Platforms: claude_code."} +{"id": "21ebd6a70e21115f853c31f8c4fec2988c3b1f1a577f948866eb3721fde1dbfb", "repo_url": "https://github.com/openrouterteam/agent-skills", "name": "openrouter-typescript-sdk", "description": "Complete reference for integrating with 300+ AI models through the OpenRouter TypeScript SDK using the callModel pattern", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openrouterteam/agent-skills/blob/main/skills/typescript-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-31T21:19:01Z"}, "embedding_text": "openrouter-typescript-sdk. Complete reference for integrating with 300+ AI models through the OpenRouter TypeScript SDK using the callModel pattern Platforms: claude_code."} +{"id": "23bf1bb7333d7cb4c5825965eaa273ef34f3c5dcd5f453d40a3fff9d6f30a8ed", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "cli-just", "description": "This skill should be used when the user asks to \"create a justfile\", \"write just recipes\", \"configure just settings\", \"add just modules\", \"use just attributes\", \"set up task automation\", mentions just", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/skills/cli-just/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "cli-just. This skill should be used when the user asks to \"create a justfile\", \"write just recipes\", \"configure just settings\", \"add just modules\", \"use just attributes\", \"set up task automation\", mentions just Platforms: claude_code."} +{"id": "46d1639cca636cf6deb363045f7487e0bb77c16302ab3d3544a1bb826e243a68", "repo_url": "https://github.com/paulrobello/claude-office", "name": "office-sprite", "description": "Generate game-ready sprites for the Claude Office Visualizer using Nano Banana MCP and ImageMagick. Uses 45-degree front/top-down perspective (NOT isometric) with retro 16-bit pixel art style. Include", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrobello/claude-office/blob/main/.claude/skills/office-sprite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 433, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T21:44:14Z"}, "embedding_text": "office-sprite. Generate game-ready sprites for the Claude Office Visualizer using Nano Banana MCP and ImageMagick. Uses 45-degree front/top-down perspective (NOT isometric) with retro 16-bit pixel art style. Include Platforms: claude_code."} +{"id": "4457554b7aed62c69c0728c5dce776fbf819875ea8ba76c853be92fb7c4e7015", "repo_url": "https://github.com/majiayu000/litellm-rs", "name": "mcp-gateway", "description": "LiteLLM-RS MCP Gateway Architecture. Covers Model Context Protocol, JSON-RPC 2.0 implementation, multi-transport support (HTTP, SSE, WebSocket, Stdio), and permission system.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/litellm-rs/blob/main/.claude/skills/mcp-gateway/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T21:46:28Z"}, "embedding_text": "mcp-gateway. LiteLLM-RS MCP Gateway Architecture. Covers Model Context Protocol, JSON-RPC 2.0 implementation, multi-transport support (HTTP, SSE, WebSocket, Stdio), and permission system. Platforms: claude_code."} +{"id": "416ebb2cc30c4b5631ff9c6d096f3174f3e20cb1189acd5a3c6f1428ec69aa13", "repo_url": "https://github.com/echovic/spec-flow", "name": "spec-flow", "description": "Spec-driven development workflow. Interactive phase-by-phase confirmation from proposal to implementation. Trigger: 'spec-flow', 'spec mode', 'need a plan', 'structured development', 'write a spec', 'feature spec', 'technical spec', '\u9700\u6c42\u6587\u6863', '\u6280\u672f\u65b9\u6848', '\u4efb\u52a1\u62c6\u89e3', '\u89c4\u683c\u9a71\u52a8', '\u5199\u4e2a\u65b9\u6848', '\u505a\u4e2a\u89c4\u5212', '\u7ed3\u6784\u5316\u5f00\u53d1', 'plan this feature', 'break this down', 'design doc'. Creates .spec-flow/ directory with proposal, requirements, design, and tasks.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skill", "claude", "claude-code", "claude-code-skills", "claude-skill", "development-workflow", "documentation", "project-planning", "requirements-engineering", "spec-driven-development", "workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/echovic/spec-flow/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install spec-flow"}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T07:29:22Z"}, "embedding_text": "spec-flow. Spec-driven development workflow. Interactive phase-by-phase confirmation from proposal to implementation. Trigger: 'spec-flow', 'spec mode', 'need a plan', 'structured development', 'write a spec', 'feature spec', 'technical spec', '\u9700\u6c42\u6587\u6863', '\u6280\u672f\u65b9\u6848', '\u4efb\u52a1\u62c6\u89e3', '\u89c4\u683c\u9a71\u52a8', '\u5199\u4e2a\u65b9\u6848', '\u505a\u4e2a\u89c4\u5212', '\u7ed3\u6784\u5316\u5f00\u53d1', 'plan this feature', 'break this down', 'design doc'. Creates .spec-flow/ directory with proposal, requirements, design, and tasks. Categories: ai-skill, claude, claude-code, claude-code-skills, claude-skill, development-workflow, documentation, project-planning, requirements-engineering, spec-driven-development, workflow. Platforms: claude_code."} +{"id": "f819b7170ad2d93ec44c4a38705398a226f52180ba43d6b959e0028baf16391e", "repo_url": "https://github.com/charlesjones-dev/claude-code-plugins-dev", "name": "performance-auditing", "description": "Guide for analyzing and improving application performance including identifying bottlenecks, implementing caching, and optimizing queries. This skill should be used when reviewing performance issues o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charlesjones-dev/claude-code-plugins-dev/blob/main/plugins/ai-performance/skills/performance-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T17:05:55Z"}, "embedding_text": "performance-auditing. Guide for analyzing and improving application performance including identifying bottlenecks, implementing caching, and optimizing queries. This skill should be used when reviewing performance issues o Platforms: claude_code."} +{"id": "d5feae7151ae38ebd81225b5cec73947099c21e31046b8c92cf66f942c2fd32f", "repo_url": "https://github.com/aojdevstudio/finance-guru", "name": ".dev", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aojdevstudio/finance-guru/blob/main/.agents/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 309, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T14:29:45Z"}, "embedding_text": ".dev. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "cc7d441a2c5db8e7a108f37fffc50793fc5ce696a4e5adaa37fe0c56b04388e1", "repo_url": "https://github.com/basher83/lunar-claude", "name": "ansible-role-design", "description": "This skill should be used when creating Ansible roles, designing role directory structure, organizing role variables in defaults vs vars, writing role handlers, or structuring role tasks. Based on ana", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/infrastructure/ansible-workflows/skills/ansible-role-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "ansible-role-design. This skill should be used when creating Ansible roles, designing role directory structure, organizing role variables in defaults vs vars, writing role handlers, or structuring role tasks. Based on ana Platforms: claude_code."} +{"id": "a9202da462d7ea62d94ba010110b244f60e6a7c732c0f568937c2f087d0d9f9b", "repo_url": "https://github.com/jeffh/claude-plugins", "name": "CORE", "description": "PAI (Personal AI Infrastructure) - Your AI system core. AUTO-LOADS at session start. USE WHEN any session begins OR user asks about PAI identity, response format, stack preferences, security protocols", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffh/claude-plugins/blob/main/pai/skills/CORE/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:05:55Z"}, "embedding_text": "CORE. PAI (Personal AI Infrastructure) - Your AI system core. AUTO-LOADS at session start. USE WHEN any session begins OR user asks about PAI identity, response format, stack preferences, security protocols Platforms: claude_code."} +{"id": "b65690997cb2ebd7e70e1afac761f97322383bcdcfac4a6471cb54ef0dbfd622", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "sbir-grants", "description": "\u5354\u52a9\u53f0\u7063\u4e2d\u5c0f\u4f01\u696d\u64b0\u5beb\u7d93\u6fdf\u90e8 SBIR\uff08\u5c0f\u578b\u4f01\u696d\u5275\u65b0\u7814\u767c\u8a08\u756b\uff09\u8a08\u756b\u66f8\u3002\u63d0\u4f9b Phase 1/2/2+ \u5404\u968e\u6bb5\u64b0\u5beb\u7b56\u7565\u3001\u5275\u65b0\u8ad6\u8ff0\u3001\u5e02\u5834\u5206\u6790\u3001\u7d93\u8cbb\u7de8\u5217\u3001\u7522\u696d\u5225\u5dee\u7570\u5316\u6307\u5f15\u3001\u5be9\u67e5\u6a19\u6e96\u89e3\u8b80\u53ca\u5e38\u898b\u932f\u8aa4\u907f\u514d\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/tools/sbir-grants/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "sbir-grants. \u5354\u52a9\u53f0\u7063\u4e2d\u5c0f\u4f01\u696d\u64b0\u5beb\u7d93\u6fdf\u90e8 SBIR\uff08\u5c0f\u578b\u4f01\u696d\u5275\u65b0\u7814\u767c\u8a08\u756b\uff09\u8a08\u756b\u66f8\u3002\u63d0\u4f9b Phase 1/2/2+ \u5404\u968e\u6bb5\u64b0\u5beb\u7b56\u7565\u3001\u5275\u65b0\u8ad6\u8ff0\u3001\u5e02\u5834\u5206\u6790\u3001\u7d93\u8cbb\u7de8\u5217\u3001\u7522\u696d\u5225\u5dee\u7570\u5316\u6307\u5f15\u3001\u5be9\u67e5\u6a19\u6e96\u89e3\u8b80\u53ca\u5e38\u898b\u932f\u8aa4\u907f\u514d\u3002 Platforms: claude_code."} +{"id": "b7a06ef5e187cbcc6a72220d2c7e460940e724b7b67fdbadfde887018398477d", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "developer-growth-analysis", "description": "Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/developer-growth-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "developer-growth-analysis. Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a p Platforms: claude_code."} +{"id": "2afca9cf31bd41cb2ad2e77b6beef20c5e18c7d3b9918ce94569c04794f3125a", "repo_url": "https://github.com/openai/skills", "name": "notion-spec-to-implementation", "description": "Turn Notion specs into implementation plans, tasks, and progress tracking; use when implementing PRDs/feature specs and creating Notion plans + tasks from them.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/notion-spec-to-implementation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-spec-to-implementation"}, "quality": {"stars": 22704, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T19:15:40Z"}, "embedding_text": "notion-spec-to-implementation. Turn Notion specs into implementation plans, tasks, and progress tracking; use when implementing PRDs/feature specs and creating Notion plans + tasks from them. Platforms: claude_code."} +{"id": "cb855caf4f149de8e027dbc24fbba43b160706711b8d8b3219d027fd86d3e393", "repo_url": "https://github.com/nousresearch/hermes-agent", "name": "huggingface-tokenizers", "description": "Fast tokenizers optimized for research and production. Rust-based implementation tokenizes 1GB in <20 seconds. Supports BPE, WordPiece, and Unigram algorithms. Train custom vocabularies, track alignme", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["linux", "macos", "windows"], "skill_md_url": "https://github.com/nousresearch/hermes-agent/blob/main/optional-skills/mlops/huggingface-tokenizers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 199155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:43:58Z"}, "embedding_text": "huggingface-tokenizers. Fast tokenizers optimized for research and production. Rust-based implementation tokenizes 1GB in <20 seconds. Supports BPE, WordPiece, and Unigram algorithms. Train custom vocabularies, track alignme Platforms: linux, macos, windows."} +{"id": "3fe1bfab07db9f593582ecdd1f045257f67d74de41997fa09271ac5dfe272da3", "repo_url": "https://github.com/heeyo-life/skillboss-skills", "name": "skillboss", "description": "Multi-AI gateway for fullstack apps. Build/deploy websites, React apps, SaaS, ecommerce to Cloudflare Workers. DB (D1/KV/R2), Stripe payments/subscriptions/checkout, auth (login, OAuth, OTP), AI image", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heeyo-life/skillboss-skills/blob/main/skillboss/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T22:17:30Z"}, "embedding_text": "skillboss. Multi-AI gateway for fullstack apps. Build/deploy websites, React apps, SaaS, ecommerce to Cloudflare Workers. DB (D1/KV/R2), Stripe payments/subscriptions/checkout, auth (login, OAuth, OTP), AI image Platforms: claude_code."} +{"id": "5ce48351e66be5223da3016159333f2aa2914d3105cad7f78f131534ce02e880", "repo_url": "https://github.com/openai/skills", "name": "gh-address-comments", "description": "Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/gh-address-comments/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-address-comments"}, "quality": {"stars": 22704, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T19:15:40Z"}, "embedding_text": "gh-address-comments. Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in. Platforms: claude_code."} +{"id": "121ec3b39937cfcf56bed8edfc911063fa54798f8cfd1f3f1e5c1c61b5fc70b3", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "internal-comms", "description": "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 com", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "internal-comms. 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 com Platforms: claude_code."} +{"id": "0293721d1e10dcc8089b08d78401caa9e823942468b9a8c97e3e944acf8b85e3", "repo_url": "https://github.com/openai/skills", "name": "notion-knowledge-capture", "description": "Capture conversations and decisions into structured Notion pages; use when turning chats/notes into wiki entries, how-tos, decisions, or FAQs with proper linking.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/notion-knowledge-capture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-knowledge-capture"}, "quality": {"stars": 22704, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T19:15:40Z"}, "embedding_text": "notion-knowledge-capture. Capture conversations and decisions into structured Notion pages; use when turning chats/notes into wiki entries, how-tos, decisions, or FAQs with proper linking. Platforms: claude_code."} +{"id": "390a2b07b29a8d9a8087c58a3de47709554d8e9dfe31a8f3cec877bd781ada50", "repo_url": "https://github.com/mikeyobrien/ralph-orchestrator", "name": "evaluate-presets", "description": "Use when testing Ralph's hat collection presets, validating preset configurations, or auditing the preset library for bugs and UX issues.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mikeyobrien/ralph-orchestrator/blob/main/.claude/skills/evaluate-presets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2952, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:01:48Z"}, "embedding_text": "evaluate-presets. Use when testing Ralph's hat collection presets, validating preset configurations, or auditing the preset library for bugs and UX issues. Platforms: claude_code."} +{"id": "d14e56b6c74e511da089b006556be61247bd2e4e015592aa803724adfe66509c", "repo_url": "https://github.com/oven-sh/bun", "name": "implementing-jsc-classes-cpp", "description": "Implements JavaScript classes in C++ using JavaScriptCore. Use when creating new JS classes with C++ bindings, prototypes, or constructors.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oven-sh/bun/blob/main/.claude/skills/implementing-jsc-classes-cpp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 93364, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:53:44Z"}, "embedding_text": "implementing-jsc-classes-cpp. Implements JavaScript classes in C++ using JavaScriptCore. Use when creating new JS classes with C++ bindings, prototypes, or constructors. Platforms: claude_code."} +{"id": "060551f197da71dabbebbb1684fc59cdd0a9b85b015207e7228cf5eb3827515c", "repo_url": "https://github.com/zechenzhangagi/ai-research-skills", "name": "transformer-lens-interpretability", "description": "Provides guidance for mechanistic interpretability research using TransformerLens to inspect and manipulate transformer internals via HookPoints and activation caching. Use when reverse-engineering mo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zechenzhangagi/ai-research-skills/blob/main/04-mechanistic-interpretability/transformer-lens/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 9939, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "transformer-lens-interpretability. Provides guidance for mechanistic interpretability research using TransformerLens to inspect and manipulate transformer internals via HookPoints and activation caching. Use when reverse-engineering mo Platforms: claude_code."} +{"id": "9523986ee2361ce07a2fb843a5166ec365db32a38aa3699f44d8d5f749d8d51e", "repo_url": "https://github.com/affaan-m/everything-claude-code", "name": "golang-testing", "description": "Go testing patterns including table-driven tests, subtests, benchmarks, fuzzing, and test coverage. Follows TDD methodology with idiomatic Go practices.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/affaan-m/everything-claude-code/blob/main/.kiro/skills/golang-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 219443, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:55:54Z"}, "embedding_text": "golang-testing. Go testing patterns including table-driven tests, subtests, benchmarks, fuzzing, and test coverage. Follows TDD methodology with idiomatic Go practices. Platforms: claude_code."} +{"id": "c5601fd7bde641f543168e079ac4a86da6488ade4b191ac2af9ce002061d3f8b", "repo_url": "https://github.com/expo/skills", "name": "building-ui", "description": "Complete guide for building beautiful apps with Expo Router. Covers fundamentals, styling, components, navigation, animations, patterns, and native tabs.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/expo/skills/blob/main/plugins/expo/skills/add-app-clip/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2097, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T16:41:30Z"}, "embedding_text": "building-ui. Complete guide for building beautiful apps with Expo Router. Covers fundamentals, styling, components, navigation, animations, patterns, and native tabs. Platforms: claude_code."} +{"id": "751a49c45717fce3194e3335444a153a6dff0d5c9743134b8c23a04fcccdb75f", "repo_url": "https://github.com/tanweai/pua", "name": "yes", "description": "SB Leader \u5938\u5938\u6a21\u5f0f \u2014 ENFP \u578b\u9886\u5bfc\uff0c\u61c2\u60c5\u7eea\u6709\u8282\u594f\u3002\u5e95\u5c42\u884c\u4e3a\u4e0d\u53d8\uff08\u4e09\u6761\u7ea2\u7ebf\u3001\u65b9\u6cd5\u8bba\uff09\uff0c\u65c1\u767d\u4ece\u65bd\u538b\u53d8\u6210\u5171\u60c5+\u9f13\u52b1+\u5076\u5c14\u620f\u8c11\u5410\u69fd\u3002Triggers on: '/pua yes', '/pua:yes', '\u5938\u5938\u6a21\u5f0f', '\u5520\u55d1\u6a21\u5f0f', '\u60c5\u7eea\u4ef7\u503c', 'yes', '\u5938\u6211', '\u9f13\u52b1\u6a21\u5f0f'.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tanweai/pua/blob/main/codex/pua-yes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18373, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T15:15:16Z"}, "embedding_text": "yes. SB Leader \u5938\u5938\u6a21\u5f0f \u2014 ENFP \u578b\u9886\u5bfc\uff0c\u61c2\u60c5\u7eea\u6709\u8282\u594f\u3002\u5e95\u5c42\u884c\u4e3a\u4e0d\u53d8\uff08\u4e09\u6761\u7ea2\u7ebf\u3001\u65b9\u6cd5\u8bba\uff09\uff0c\u65c1\u767d\u4ece\u65bd\u538b\u53d8\u6210\u5171\u60c5+\u9f13\u52b1+\u5076\u5c14\u620f\u8c11\u5410\u69fd\u3002Triggers on: '/pua yes', '/pua:yes', '\u5938\u5938\u6a21\u5f0f', '\u5520\u55d1\u6a21\u5f0f', '\u60c5\u7eea\u4ef7\u503c', 'yes', '\u5938\u6211', '\u9f13\u52b1\u6a21\u5f0f'. Platforms: claude_code."} +{"id": "24a4cbceb8b32766fb8fea6a6c016fd8c9ecb6709457cda0e8e431b204fab25b", "repo_url": "https://github.com/black-forest-labs/skills", "name": "flux-best-practices", "description": "Comprehensive guide for BFL FLUX image generation models. Covers prompting, T2I, I2I, structured JSON, hex colors, typography, multi-reference editing, and model-specific best practices for FLUX.2 and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/black-forest-labs/skills/blob/master/skills/flux-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-03T14:49:56Z"}, "embedding_text": "flux-best-practices. Comprehensive guide for BFL FLUX image generation models. Covers prompting, T2I, I2I, structured JSON, hex colors, typography, multi-reference editing, and model-specific best practices for FLUX.2 and Platforms: claude_code."} +{"id": "04318f25b88268edf26cbc24f32b14ce267ce910b19056e88567ca88425dd8e9", "repo_url": "https://github.com/qwibitai/nanoclaw", "name": "main", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/qwibitai/nanoclaw/blob/main/.claude/skills/add-atomic-chat-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29945, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:09:15Z"}, "embedding_text": "main. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "bab19cc43359c41425429ddca00fc0d45c625f32333e6ac9fb0364b5b1d636bb", "repo_url": "https://github.com/openai/skills", "name": "notion-research-documentation", "description": "Research across Notion and synthesize into structured documentation; use when gathering info from multiple Notion sources to produce briefs, comparisons, or reports with citations.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/notion-research-documentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-research-documentation"}, "quality": {"stars": 22704, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T19:15:40Z"}, "embedding_text": "notion-research-documentation. Research across Notion and synthesize into structured documentation; use when gathering info from multiple Notion sources to produce briefs, comparisons, or reports with citations. Platforms: claude_code."} +{"id": "3ec29de4869440fc2186edeba58f0113cbfc8a9366634b8f3aab41e058ab0d52", "repo_url": "https://github.com/qdhenry/claude-command-suite", "name": "Cloudflare Manager", "description": "Comprehensive Cloudflare account management for deploying Workers, KV Storage, R2, Pages, DNS, and Routes. Use when deploying cloudflare services, managing worker containers, configuring KV/R2 storage", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/qdhenry/claude-command-suite/blob/main/.claude/skills/cloudflare-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1298, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-01T16:57:57Z"}, "embedding_text": "Cloudflare Manager. Comprehensive Cloudflare account management for deploying Workers, KV Storage, R2, Pages, DNS, and Routes. Use when deploying cloudflare services, managing worker containers, configuring KV/R2 storage Platforms: claude_code."} +{"id": "390ff91ad20495ec1f704e29e862b23cc3f49913b161d69cc2e9b792a001232b", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "prompt-engineering", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/prompt-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "prompt-engineering. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7edc6bf41979ae218a646923b401c06c7b14045baa6f8d37165e9eff67b81c33", "repo_url": "https://github.com/congdon1207/agents.md", "name": "skill-creator", "description": "Guide for creating effective skills, adding skill references, skill scripts or optimizing existing skills. This skill should be used when users want to create a new skill (or update an existing skill)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.claude/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "skill-creator. Guide for creating effective skills, adding skill references, skill scripts or optimizing existing skills. This skill should be used when users want to create a new skill (or update an existing skill) Platforms: claude_code."} +{"id": "0e0ac4d102ecf45c20e6abc49dd0ba93a979ac927235c00522e01bf7f3fe621d", "repo_url": "https://github.com/synqing/k1.hardware", "name": "PlatformIO", "description": "PlatformIO embedded development ecosystem. Covers CLI, build system, debugging, and board configurations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/synqing/k1.hardware/blob/feat/mcp-rag-bootstrap/.claude/skills/PlatformIO/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-11T02:58:37Z"}, "embedding_text": "PlatformIO. PlatformIO embedded development ecosystem. Covers CLI, build system, debugging, and board configurations. Platforms: claude_code."} +{"id": "199a24b587e266d084fb44ff7bf844aa55f46abcaa9aacf5258097733a59318a", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "stdlib-scripting", "description": "LAST RESORT for stdlib-only Python 3.11+ scripts in CONFIRMED restricted environments (airgapped systems, no uv, no internet access). Creates portable dependency-free scripts using argparse, logging,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python3-development/skills/stdlib-scripting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "stdlib-scripting. LAST RESORT for stdlib-only Python 3.11+ scripts in CONFIRMED restricted environments (airgapped systems, no uv, no internet access). Creates portable dependency-free scripts using argparse, logging, Platforms: claude_code."} +{"id": "3b4cbf0554d335d28789caa001f2068d21637eb67f1af0e0772ff85c1393f964", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "f243d1a121356d51f76cda94c24f46b843c5da62b5653f395544c59ee244064a", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "mess-mcp", "description": "MCP server tools for creating and managing MESS physical-world task requests. Provides mess, mess_status, mess_capabilities, mess_request, mess_answer, mess_cancel, and mess_fetch tools.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/development/mess/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "mess-mcp. MCP server tools for creating and managing MESS physical-world task requests. Provides mess, mess_status, mess_capabilities, mess_request, mess_answer, mess_cancel, and mess_fetch tools. Platforms: claude_code."} +{"id": "d48915edb16d1c86c1629d99460d0f524588d0f56e1a305c1ab1d6e5685a6775", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "elevenlabs-webhooks", "description": "Receive and verify ElevenLabs webhooks. Use when setting up ElevenLabs webhook handlers, debugging signature verification, or handling call transcription events.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/elevenlabs-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "elevenlabs-webhooks. Receive and verify ElevenLabs webhooks. Use when setting up ElevenLabs webhook handlers, debugging signature verification, or handling call transcription events. Platforms: claude_code."} +{"id": "d3a8c28a79c56181d1ca65796398e8aef79ffa15cadd5521be3e2fd751890eee", "repo_url": "https://github.com/dicklesworthstone/cass_memory_system", "name": "claude_version", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/cass_memory_system/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 386, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:46:41Z"}, "embedding_text": "claude_version. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "60cd3d62e5ab1fc004cfac40cfd931769f1e88815ad44fde3fb839239acd52e2", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "implement-plan", "description": "Orchestrate the execution of complete implementation plans, delegating each phase to implement-phase skill. This skill manages the full plan lifecycle including phase sequencing, user confirmation bet", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/implement-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "implement-plan. Orchestrate the execution of complete implementation plans, delegating each phase to implement-phase skill. This skill manages the full plan lifecycle including phase sequencing, user confirmation bet Platforms: claude_code."} +{"id": "9d97fed3407caf7c94bd80b54fdad980e1dbc8357706dfff0e78989bd8dd4dbc", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "orchestrating-swarms", "description": "Master multi-agent orchestration using Claude Code's swarm system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/orchestrating-swarms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "orchestrating-swarms. Master multi-agent orchestration using Claude Code's swarm system. Use when coordinating multiple agents, running parallel code reviews, creating pipeline workflows with dependencies, building self-or Platforms: claude_code."} +{"id": "7f3984a544eee37a0d061abeb4550a1936c8e568d65cfdc72639b2aa51829327", "repo_url": "https://github.com/jnmetacode/superpowers-zh", "name": "workflow-runner", "description": "\u5728 Claude Code / OpenClaw / Cursor \u4e2d\u76f4\u63a5\u8fd0\u884c agency-orchestrator YAML \u5de5\u4f5c\u6d41\u2014\u2014\u65e0\u9700 API key\uff0c\u4f7f\u7528\u5f53\u524d\u4f1a\u8bdd\u7684 LLM \u4f5c\u4e3a\u6267\u884c\u5f15\u64ce\u3002\u5f53\u7528\u6237\u63d0\u4f9b .yaml \u5de5\u4f5c\u6d41\u6587\u4ef6\u6216\u8981\u6c42\u591a\u89d2\u8272\u534f\u4f5c\u5b8c\u6210\u4efb\u52a1\u65f6\u89e6\u53d1\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jnmetacode/superpowers-zh/blob/main/skills/workflow-runner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5712, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:39:42Z"}, "embedding_text": "workflow-runner. \u5728 Claude Code / OpenClaw / Cursor \u4e2d\u76f4\u63a5\u8fd0\u884c agency-orchestrator YAML \u5de5\u4f5c\u6d41\u2014\u2014\u65e0\u9700 API key\uff0c\u4f7f\u7528\u5f53\u524d\u4f1a\u8bdd\u7684 LLM \u4f5c\u4e3a\u6267\u884c\u5f15\u64ce\u3002\u5f53\u7528\u6237\u63d0\u4f9b .yaml \u5de5\u4f5c\u6d41\u6587\u4ef6\u6216\u8981\u6c42\u591a\u89d2\u8272\u534f\u4f5c\u5b8c\u6210\u4efb\u52a1\u65f6\u89e6\u53d1\u3002 Platforms: claude_code."} +{"id": "9c7314df0d46c398911f93bf25d7ccb4f1693800582078edb14d56fd97ad7b0d", "repo_url": "https://github.com/rysweet/microsofthackathon2025-agenticcoding", "name": "azure-admin", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rysweet/microsofthackathon2025-agenticcoding/blob/main/.claude/skills/azure-admin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:49:54Z"}, "embedding_text": "azure-admin. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7ee70ba175d8b160cfca702cb92c93332fde5608123759b654ee6be350080e0c", "repo_url": "https://github.com/blitterstudio/amiberry", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blitterstudio/amiberry/blob/master/.agents/skills/amiberry-arm64-jit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 899, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:12:10Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "305f7cb7ad99a50a674d59b82b6a8bb924263ca3822e75237971fc0d1cc9a374", "repo_url": "https://github.com/clerk/skills", "name": "clerk-backend-api", "description": "Clerk backend REST API", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/clerk/skills/blob/main/skills/core/clerk-backend-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:23:54Z"}, "embedding_text": "clerk-backend-api. Clerk backend REST API Platforms: claude_code."} +{"id": "94ed6ea9bdd3b5de2532e747fcc6b006a44c036dc9ee4046ca961cdd3f65e8ad", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-error", "description": "Error handling expert covering Result, Option, panic strategies, custom error types with thiserror/anyhow, error propagation patterns, and context-rich error chains.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-error-advanced/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-error. Error handling expert covering Result, Option, panic strategies, custom error types with thiserror/anyhow, error propagation patterns, and context-rich error chains. Platforms: claude_code."} +{"id": "a617b88f6a00bbcd77764a05bd48a4f9d25e5da6cae93c6c275e15a6a686c00c", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "when-stuck", "description": "Dispatch to right technique when you hit a wall", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/when-stuck/skills/when-stuck/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "when-stuck. Dispatch to right technique when you hit a wall Platforms: claude_code."} +{"id": "665f66d8c4265571497c1101d004339d276f10542dc4fc528d0215a37f5099ee", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-systems-thinking", "description": "Router for systems thinking methodology - patterns, leverage points, archetypes, stocks-flows, causal loops, BOT graphs", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/yzmir-systems-thinking/skills/using-systems-thinking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-systems-thinking. Router for systems thinking methodology - patterns, leverage points, archetypes, stocks-flows, causal loops, BOT graphs Platforms: claude_code."} +{"id": "cef7fd320b19bc0d8a7fc227bd7c33ae3c712e60867f917c2ef4517eba793471", "repo_url": "https://github.com/0xdarkmatter/claude-mods", "name": "code-stats", "description": "Analyze codebase with tokei (fast line counts by language) and difft (semantic AST-aware diffs). Get quick project overview without manual counting. Triggers on: how big is codebase, count lines of co", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/0xdarkmatter/claude-mods/blob/main/skills/code-stats/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:30:48Z"}, "embedding_text": "code-stats. Analyze codebase with tokei (fast line counts by language) and difft (semantic AST-aware diffs). Get quick project overview without manual counting. Triggers on: how big is codebase, count lines of co Platforms: claude_code."} +{"id": "a573cff711e8a6cb68988abf98817dde94b0cbbe85fd55a5a06f2bc527323aa7", "repo_url": "https://github.com/gocallum/nextjs16-agent-skills", "name": "authjs-skills", "description": "Auth.js v5 setup for Next.js authentication including Google OAuth, credentials provider, environment configuration, and core API integration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gocallum/nextjs16-agent-skills/blob/main/skills/authjs-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T13:27:54Z"}, "embedding_text": "authjs-skills. Auth.js v5 setup for Next.js authentication including Google OAuth, credentials provider, environment configuration, and core API integration Platforms: claude_code."} +{"id": "7bcdbaeadc765ccf0020c23f10c973099e420344887b4140c3a2f1ed73c4d052", "repo_url": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock", "name": "tool-use-structured-output", "description": "Use Bedrock tool_use to guarantee structured JSON outputs from Claude models. Eliminates JSON parsing failures by forcing responses through typed tool schemas.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/blob/main/assets/claude-code-plugins/plugins/bedrock/skills/tool-use-structured-output/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 345, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:06:17Z"}, "embedding_text": "tool-use-structured-output. Use Bedrock tool_use to guarantee structured JSON outputs from Claude models. Eliminates JSON parsing failures by forcing responses through typed tool schemas. Platforms: claude_code."} +{"id": "39632a506fdefd9f5c6387a93613ab5bb757f28b319382eae34a33ffef92096c", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "mcp-builder", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "mcp-builder. 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 externa Platforms: claude_code."} +{"id": "d94519359f018d842555f3166dc25ecc1ff5147bdf0b7540cb58152417b47e0f", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "governance-and-risk", "description": "Use when making architectural decisions without documentation, skipping risk analysis, accepting risks without mitigation, or treating governance as optional bureaucracy - enforces mandatory DAR/RSKM", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-sdlc-engineering/skills/governance-and-risk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "governance-and-risk. Use when making architectural decisions without documentation, skipping risk analysis, accepting risks without mitigation, or treating governance as optional bureaucracy - enforces mandatory DAR/RSKM Platforms: claude_code."} +{"id": "1baa84056bbbbe1d22395445af651d4ecc1f30c088b82b8c21d00e2987cf04fd", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "chatkit-integration", "description": "Foundation skill for integrating OpenAI ChatKit framework with custom backends. This skill should be used for initial ChatKit setup including server implementation, React component integration, authen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/chatkit-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "chatkit-integration. Foundation skill for integrating OpenAI ChatKit framework with custom backends. This skill should be used for initial ChatKit setup including server implementation, React component integration, authen Platforms: claude_code."} +{"id": "9fd0a3aa91bb938ebdea7347f914760750f4de16c26f3ca86e967ee264ac7a74", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "chatkit-actions", "description": "Implements interactive widget actions and bidirectional communication patterns for ChatKit. This skill should be used when building AI-driven interactive UIs with buttons, forms, entity tagging (@ment", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/taskflow-vault/skills/engineering/chatkit-actions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "chatkit-actions. Implements interactive widget actions and bidirectional communication patterns for ChatKit. This skill should be used when building AI-driven interactive UIs with buttons, forms, entity tagging (@ment Platforms: claude_code."} +{"id": "c3ccefb52384b8058464c6b16b0da8067e713be147f14945aa15bb08cf44bb4a", "repo_url": "https://github.com/snowflake-labs/sfguide-create-a-route-optimisation-and-vehicle-route-plan-simulator", "name": "deploy-snowflake-intelligence-routing-agent", "description": "Create Snowflake Intelligence agent for OpenRouteService routing functions. Use when: setting up ORS demo, creating route planning agent, integrating directions/isochrones/optimization with Cortex. Tr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/snowflake-labs/sfguide-create-a-route-optimisation-and-vehicle-route-plan-simulator/blob/main/.cortex/skills/routing-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T14:01:34Z"}, "embedding_text": "deploy-snowflake-intelligence-routing-agent. Create Snowflake Intelligence agent for OpenRouteService routing functions. Use when: setting up ORS demo, creating route planning agent, integrating directions/isochrones/optimization with Cortex. Tr Platforms: claude_code."} +{"id": "f5e4b0ec546e4524b894b2e3fcb548daebc80a54c0bf02df140a22d6b18a9ad5", "repo_url": "https://github.com/rohitg00/pro-workflow", "name": "pro-workflow", "description": "Complete AI coding workflow system. Orchestration patterns, 18 hook events, 5 agents, cross-agent support, reference guides, and searchable learnings. Works with Claude Code, Cursor, and 32+ agents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohitg00/pro-workflow/blob/main/skills/pro-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2327, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T20:26:07Z"}, "embedding_text": "pro-workflow. Complete AI coding workflow system. Orchestration patterns, 18 hook events, 5 agents, cross-agent support, reference guides, and searchable learnings. Works with Claude Code, Cursor, and 32+ agents. Platforms: claude_code."} +{"id": "9762ac68dcdf2b4ff5dc0b4db7582c63d0ff3d30919d173c4dbb1dd8f697a861", "repo_url": "https://github.com/yoanbernabeu/slidev-skills", "name": "slidev-layouts", "description": "Use built-in and custom Slidev layouts effectively. Use this skill to structure slides with cover, two-cols, image layouts and more.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/slidev-skills/blob/main/skills/content/slidev-layouts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-30T09:14:18Z"}, "embedding_text": "slidev-layouts. Use built-in and custom Slidev layouts effectively. Use this skill to structure slides with cover, two-cols, image layouts and more. Platforms: claude_code."} +{"id": "ce91baa59cc4c9692666f05661b0cef9f54d1aea7c7650fe71bc8240a803b61c", "repo_url": "https://github.com/aresbit/matebot", "name": "write-skill", "description": "\u53bb\u9664\u6587\u672c\u4e2d\u7684 AI \u751f\u6210\u75d5\u8ff9\u3002\u9002\u7528\u4e8e\u7f16\u8f91\u6216\u5ba1\u9605\u6587\u672c\uff0c\u4f7f\u5176\u542c\u8d77\u6765\u66f4\u81ea\u7136\u3001\u66f4\u50cf\u4eba\u7c7b\u4e66\u5199\u3002\n\u57fa\u4e8e\u7ef4\u57fa\u767e\u79d1\u7684\"AI \u5199\u4f5c\u7279\u5f81\"\u7efc\u5408\u6307\u5357\u3002\u68c0\u6d4b\u5e76\u4fee\u590d\u4ee5\u4e0b\u6a21\u5f0f\uff1a\u5938\u5927\u7684\u8c61\u5f81\u610f\u4e49\u3001\n\u5ba3\u4f20\u6027\u8bed\u8a00\u3001\u4ee5 -ing \u7ed3\u5c3e\u7684\u80a4\u6d45\u5206\u6790\u3001\u6a21\u7cca\u7684\u5f52\u56e0\u3001\u7834\u6298\u53f7\u8fc7\u5ea6\u4f7f\u7528\u3001\u4e09\u6bb5\u5f0f\u6cd5\u5219\u3001\nAI \u8bcd\u6c47\u3001\u5426\u5b9a\u5f0f\u6392\u6bd4\u3001\u8fc7\u591a\u7684\u8fde\u63a5\u6027\u77ed\u8bed\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aresbit/matebot/blob/master/skills/fetch-skill-and-then-write-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T08:15:03Z"}, "embedding_text": "write-skill. \u53bb\u9664\u6587\u672c\u4e2d\u7684 AI \u751f\u6210\u75d5\u8ff9\u3002\u9002\u7528\u4e8e\u7f16\u8f91\u6216\u5ba1\u9605\u6587\u672c\uff0c\u4f7f\u5176\u542c\u8d77\u6765\u66f4\u81ea\u7136\u3001\u66f4\u50cf\u4eba\u7c7b\u4e66\u5199\u3002\n\u57fa\u4e8e\u7ef4\u57fa\u767e\u79d1\u7684\"AI \u5199\u4f5c\u7279\u5f81\"\u7efc\u5408\u6307\u5357\u3002\u68c0\u6d4b\u5e76\u4fee\u590d\u4ee5\u4e0b\u6a21\u5f0f\uff1a\u5938\u5927\u7684\u8c61\u5f81\u610f\u4e49\u3001\n\u5ba3\u4f20\u6027\u8bed\u8a00\u3001\u4ee5 -ing \u7ed3\u5c3e\u7684\u80a4\u6d45\u5206\u6790\u3001\u6a21\u7cca\u7684\u5f52\u56e0\u3001\u7834\u6298\u53f7\u8fc7\u5ea6\u4f7f\u7528\u3001\u4e09\u6bb5\u5f0f\u6cd5\u5219\u3001\nAI \u8bcd\u6c47\u3001\u5426\u5b9a\u5f0f\u6392\u6bd4\u3001\u8fc7\u591a\u7684\u8fde\u63a5\u6027\u77ed\u8bed\u3002 Platforms: claude_code."} +{"id": "fb5af83eb81b487028c8f4eba5b54771d0440d0bc96ea66c7d21086ed725fae8", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "Remote Experiment Execution", "description": "\u901a\u8fc7 compute-helper CLI \u5728\u8fdc\u7a0b\u670d\u52a1\u5668\u4e0a\u81ea\u4e3b\u6267\u884c\u3001\u8c03\u8bd5\u3001\u8fed\u4ee3", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/remote-experiment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "Remote Experiment Execution. \u901a\u8fc7 compute-helper CLI \u5728\u8fdc\u7a0b\u670d\u52a1\u5668\u4e0a\u81ea\u4e3b\u6267\u884c\u3001\u8c03\u8bd5\u3001\u8fed\u4ee3 Platforms: claude_code."} +{"id": "541b2fb833e8b1ead9ee8dc4e5ac4c03c8c6594ccd80f9009b4e057d09d63a79", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "scientific-writing", "description": "Core skill for the deep research and writing tool.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/scientific-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "scientific-writing. Core skill for the deep research and writing tool. Platforms: claude_code."} +{"id": "0d51032668b215518fbf609df63af93b8ad14c674e3d91d675750d5d01bb437f", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "tweet-draft-reviewer", "description": "Review tweet drafts in Claude Code against 8 voice rules. Scores 1-10, breaks down every rule, and rewrites anything that scores below 7.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/tweet-draft-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tweet-draft-reviewer"}, "quality": {"stars": 335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T12:37:28Z"}, "embedding_text": "tweet-draft-reviewer. Review tweet drafts in Claude Code against 8 voice rules. Scores 1-10, breaks down every rule, and rewrites anything that scores below 7. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} +{"id": "0bd027c571ab2d2ba866a0a0da46c2271df62b53fa9735f69002160868fe6005", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Eval Gap Finder", "description": "Find AILANG vs Python eval gaps and improve prompts/language. Use when user says 'find eval gaps', 'analyze benchmark failures', 'close Python-AILANG gap', or after running evals.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/eval-gap-finder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Eval Gap Finder. Find AILANG vs Python eval gaps and improve prompts/language. Use when user says 'find eval gaps', 'analyze benchmark failures', 'close Python-AILANG gap', or after running evals. Platforms: claude_code."} +{"id": "6790bad5941b52585aa8eb3f5664a65e711a131b83dae11aded603aac76d6c38", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "maintaining-project-context", "description": "Use when completing development phases or branches to identify and update CLAUDE.md or AGENTS.md files that may have become stale - analyzes what changed, determines affected contracts and documentati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-extending-claude/skills/maintaining-project-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "maintaining-project-context. Use when completing development phases or branches to identify and update CLAUDE.md or AGENTS.md files that may have become stale - analyzes what changed, determines affected contracts and documentati Platforms: claude_code."} +{"id": "d94dc63c131e080249d817c710d49b5dc3b64c9c2d9f99bbe470a8df3c7e42f2", "repo_url": "https://github.com/benchflow-ai/skillsbench", "name": "nanogpt", "description": "Educational GPT implementation in ~300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture fro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/benchflow-ai/skillsbench/blob/main/tasks-extra/mhc-layer-impl/environment/skills/nanogpt-training/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1377, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T11:54:53Z"}, "embedding_text": "nanogpt. Educational GPT implementation in ~300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture fro Platforms: claude_code."} +{"id": "4acc3bef0a1edaf0dcc951faec9b6c7833d8dd1a9824da2a8fe5aa56760c7b3b", "repo_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow", "name": "Audio to SRT Converter", "description": "This skill should be used when the user asks to \"convert audio to srt\", \"generate subtitles from audio\", \"create srt from mp3/wav/m4a/flac\", \"transcribe audio to subtitles\", or needs to generate SRT subtitle files from audio files (MP3, WAV, M4A, FLAC, etc.) with customizable character limits and timeline adjustments.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow/blob/master/.agent/skills/audio-to-srt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Audio to SRT Converter"}, "quality": {"stars": 187, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-28T06:28:55Z"}, "embedding_text": "Audio to SRT Converter. This skill should be used when the user asks to \"convert audio to srt\", \"generate subtitles from audio\", \"create srt from mp3/wav/m4a/flac\", \"transcribe audio to subtitles\", or needs to generate SRT subtitle files from audio files (MP3, WAV, M4A, FLAC, etc.) with customizable character limits and timeline adjustments. Platforms: claude_code."} +{"id": "b1e7a79012dbaf96e3b7e425134cbd903afb7360e2b43463d614042a4665b09c", "repo_url": "https://github.com/re-cinq/wave", "name": "cli", "description": "Expert command-line interface development including argument parsing, subcommands, interactive prompts, and CLI best practices", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/re-cinq/wave/blob/main/.claude/skills/cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-03T20:03:21Z"}, "embedding_text": "cli. Expert command-line interface development including argument parsing, subcommands, interactive prompts, and CLI best practices Platforms: claude_code."} +{"id": "51aa831c90d761c3c900d56a1e58e348e23009db6cbc03438ab4f9da2709fe8f", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "daily-briefing-builder", "description": "Generate a clean morning brief in Claude Code \u2014 pulls today's priorities, unposted content, and weather from your vault.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/daily-briefing-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install daily-briefing-builder"}, "quality": {"stars": 335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T12:37:28Z"}, "embedding_text": "daily-briefing-builder. Generate a clean morning brief in Claude Code \u2014 pulls today's priorities, unposted content, and weather from your vault. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} +{"id": "bad95715904a5c6a0da1cce1891a754ab60f4235beaf5020d3593b871dac294f", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "code-review", "description": "Systematic code review for implementation phases verifying architectural principles, framework standards, ADR compliance, and code quality. This skill is invoked by implement-phase as part of its qual", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "code-review. Systematic code review for implementation phases verifying architectural principles, framework standards, ADR compliance, and code quality. This skill is invoked by implement-phase as part of its qual Platforms: claude_code."} +{"id": "58fa04a509eba4af60152478e65b301d686afcf9eca7e3c7fc82ca1e4181ec3c", "repo_url": "https://github.com/johnriceml/clawport-ui", "name": "clawport-ui", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 883, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-24T15:57:14Z"}, "embedding_text": "clawport-ui. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "06a19794fcbaf1ace3c9ed6757662e808d3e8e047dbfab070b766bd38c81e148", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "rule-auditor", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/rule-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "rule-auditor. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "dde98ddfe7335f24b5cb0ac20d2b15ec20d0de10a11c0ea870b6e48349c3605c", "repo_url": "https://github.com/brifl/coding-agent-orchestration", "name": "vibe-run", "description": "Continuous Vibe loop runner for Codex.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brifl/coding-agent-orchestration/blob/main/.codex/skills/vibe-run/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T21:32:51Z"}, "embedding_text": "vibe-run. Continuous Vibe loop runner for Codex. Platforms: claude_code."} +{"id": "7bd7483b5e004b7d6a07ed6f7895d1a355e326872a4359f59b07f0a7e8efbea0", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Knowledge Base Manager", "description": "Design, build, and maintain comprehensive knowledge bases. Bridges document-based (RAG) and entity-based (graph) knowledge systems. Use when building knowledge-intensive applications, managing organiz", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/knowledge-base-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Knowledge Base Manager. Design, build, and maintain comprehensive knowledge bases. Bridges document-based (RAG) and entity-based (graph) knowledge systems. Use when building knowledge-intensive applications, managing organiz Platforms: claude_code."} +{"id": "7ff7448a75a34f75cd54817baa1c96dce0d8de5f47de94b207f6ec4ef52cc9b5", "repo_url": "https://github.com/foreveryh/claude-skills-tutorial", "name": "fumadocs-article-importer", "description": "Import external articles into a Fumadocs project with automatic multi-language translation (en, zh, fr), AI-powered classification into 8 categories, image processing, and MDX conversion. Use this ski", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/foreveryh/claude-skills-tutorial/blob/main/.claude/skills/fumadocs-article-importer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-24T14:34:10Z"}, "embedding_text": "fumadocs-article-importer. Import external articles into a Fumadocs project with automatic multi-language translation (en, zh, fr), AI-powered classification into 8 categories, image processing, and MDX conversion. Use this ski Platforms: claude_code."} +{"id": "a9e59b9f080dc11ca251e9e2a0fa961e8d7495341150cfa054db818288d0d2c3", "repo_url": "https://github.com/sunholo-data/ailang", "name": "AILANG Code Writing", "description": "Write and run AILANG code with correct syntax. Use when user asks to write AILANG programs, fix AILANG syntax errors, run AILANG code, or needs help with AILANG syntax. Includes version checking, synt", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/agent-inbox/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "AILANG Code Writing. Write and run AILANG code with correct syntax. Use when user asks to write AILANG programs, fix AILANG syntax errors, run AILANG code, or needs help with AILANG syntax. Includes version checking, synt Platforms: claude_code."} +{"id": "c402dc7b3f46fccf9c8d597401fd7446d2614b060faf694bf471fd8b563552d2", "repo_url": "https://github.com/jotego/jtcores", "name": "Questions about the CPS3 hardware and CPS3 documentation update", "description": "Read the current cps3/doc/gfx.md and the MAME implementation to answer questions about the CPS3 hardware. Update the file $JTROOT/cores/cps3/doc/gfx.md if inconsistencies or more information is needed", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 307, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T16:42:02Z"}, "embedding_text": "Questions about the CPS3 hardware and CPS3 documentation update. Read the current cps3/doc/gfx.md and the MAME implementation to answer questions about the CPS3 hardware. Update the file $JTROOT/cores/cps3/doc/gfx.md if inconsistencies or more information is needed Platforms: claude_code."} +{"id": "2eea6bef89fa2c432502fe62eae8951e9669e2480c46261b978586c794ce8dd3", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-spec", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-spec-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-spec. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "357dad5e9e942d5b002aab22ef7ed8dca488cb7ca620914716cb45183972c918", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "trace-check", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/trace-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "trace-check. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "dbd57b5a33bbca917f4d76d96de54c1e6fd4e5602267f1db7ddcf4b6b4f219b4", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "prompt-architect", "description": "Transformiert Anforderungen in Best-Practice Prompts nach Claude 4.x Standards (Dezember 2025).\n\nBasiert auf:\n- Nate B. Jones 4 Beginner Moves: Shape, Context, Silent Plan, Self-Check\n- Anthropic Clau", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/prompt-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "prompt-architect. Transformiert Anforderungen in Best-Practice Prompts nach Claude 4.x Standards (Dezember 2025).\n\nBasiert auf:\n- Nate B. Jones 4 Beginner Moves: Shape, Context, Silent Plan, Self-Check\n- Anthropic Clau Platforms: claude_code."} +{"id": "4303c25b4d02000073e49d44ad14b76c5440c566af24bce4dba052eec2c8fb0c", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-middleware", "description": "Web middleware expert covering request tracking, CORS configuration, rate limiting, authentication guards, compression, and middleware composition patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-middleware/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-middleware. Web middleware expert covering request tracking, CORS configuration, rate limiting, authentication guards, compression, and middleware composition patterns. Platforms: claude_code."} +{"id": "ac980d69e4ed1cb9e406ef131e670c4860dbdec7e7e72d4b658bd78dea63670d", "repo_url": "https://github.com/aannoo/hcom", "name": "hcom", "description": "Let AI agents message, watch, and spawn each other across terminals. Claude Code, Gemini CLI, Codex, OpenCode. Use this skill when the human user needs help, status, or reference about hcom - when user asks questions like \"how to setup hcom\", \"hcom not working\", \"explain hcom\", or any hcom troubleshooting.\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aannoo/hcom/blob/main/skills/hcom-agent-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hcom"}, "quality": {"stars": 349, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:42:39Z"}, "embedding_text": "hcom. Let AI agents message, watch, and spawn each other across terminals. Claude Code, Gemini CLI, Codex, OpenCode. Use this skill when the human user needs help, status, or reference about hcom - when user asks questions like \"how to setup hcom\", \"hcom not working\", \"explain hcom\", or any hcom troubleshooting.\n Platforms: claude_code."} +{"id": "17380ef612038680ffaf1c5074e17595779f7a5f4f990d5482d4811f47585f29", "repo_url": "https://github.com/basher83/lunar-claude", "name": "ansible-testing", "description": "This skill should be used when running ansible-lint, configuring linting rules, testing Ansible playbooks, validating playbook syntax, or setting up integration tests. Covers ansible-lint configuratio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/infrastructure/ansible-workflows/skills/ansible-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "ansible-testing. This skill should be used when running ansible-lint, configuring linting rules, testing Ansible playbooks, validating playbook syntax, or setting up integration tests. Covers ansible-lint configuratio Platforms: claude_code."} +{"id": "ebeb0da4ac4cd05d8a18f90f679e22d053f86384bc7470f71dc09c767903c87b", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "aviz-skills-installer", "description": "Install skills from the AVIZ Skills Library. Use when user wants to install a skill, browse available skills, set up Claude Code skills, or asks about skill installation. Triggers on \"install skill\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugin/skills/aviz-skills-installer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "aviz-skills-installer. Install skills from the AVIZ Skills Library. Use when user wants to install a skill, browse available skills, set up Claude Code skills, or asks about skill installation. Triggers on \"install skill\", Platforms: claude_code."} +{"id": "85115d2f4796629357d6934512f295e83cedd6eadca19d5f5ec8760ba9a02226", "repo_url": "https://github.com/foreveryh/claude-skills-tutorial", "name": "skill-article-publisher", "description": "Automate article validation, semantic commit generation, and git publishing for MDX documentation. Validates syntax, runs build checks, creates semantic commits, and pushes to remote repositories.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/foreveryh/claude-skills-tutorial/blob/main/.claude/skills/skill-article-publisher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-24T14:34:10Z"}, "embedding_text": "skill-article-publisher. Automate article validation, semantic commit generation, and git publishing for MDX documentation. Validates syntax, runs build checks, creates semantic commits, and pushes to remote repositories. Platforms: claude_code."} +{"id": "58e1ef1209a5451185957dc4755a3fa4df0ae80ee33ca699655de2c59380937c", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-ml-production", "description": "Router skill directing to deployment, optimization, MLOps, and monitoring guides.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/yzmir-ml-production/skills/using-ml-production/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-ml-production. Router skill directing to deployment, optimization, MLOps, and monitoring guides. Platforms: claude_code."} +{"id": "37dc066288c4488108b55200a828431181116c5ec898e228796f96f3127e7efe", "repo_url": "https://github.com/brownfinesecurity/picocom-claude-skill", "name": "IoT UART Console (picocom)", "description": "Use picocom to interact with IoT device UART consoles for pentesting operations including device enumeration, vulnerability discovery, bootloader manipulation, and gaining root shells. Use when the us", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brownfinesecurity/picocom-claude-skill/blob/master/.claude/skills/picocom/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-20T03:49:47Z"}, "embedding_text": "IoT UART Console (picocom). Use picocom to interact with IoT device UART consoles for pentesting operations including device enumeration, vulnerability discovery, bootloader manipulation, and gaining root shells. Use when the us Platforms: claude_code."} +{"id": "d472faf492481aa195c7d69928a85c696cb2f77df8efd85ae25f5ffb414e8d56", "repo_url": "https://github.com/foreveryh/claude-skills-tutorial", "name": "translator", "description": "Professional translation using Claude's native capabilities. Use this skill when the user needs to translate text between languages with high quality, or when content needs to be localized for differe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/foreveryh/claude-skills-tutorial/blob/main/.claude/skills/translator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-24T14:34:10Z"}, "embedding_text": "translator. Professional translation using Claude's native capabilities. Use this skill when the user needs to translate text between languages with high quality, or when content needs to be localized for differe Platforms: claude_code."} +{"id": "6d00d08725ef3ebdda7adfcf9e78a1eceecdcbb154cf96c7c133abd71e4f0e04", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Accessibility Engineer", "description": "Implement accessibility (a11y) best practices to make applications usable by everyone. Use when building UIs, conducting accessibility audits, or ensuring WCAG compliance. Covers screen readers, keybo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/accessibility-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Accessibility Engineer. Implement accessibility (a11y) best practices to make applications usable by everyone. Use when building UIs, conducting accessibility audits, or ensuring WCAG compliance. Covers screen readers, keybo Platforms: claude_code."} +{"id": "81f7db25a5d8d510ad5bb194f1f353e922ced03cdd0485cc19ca427215583943", "repo_url": "https://github.com/cris-achiardi/claude-skills", "name": "ai-component-metadata", "description": "Generate AI-ready metadata for design system components to enable intelligent UI generation. Analyzes component structure and generates structured metadata that helps AI understand when and how to use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cris-achiardi/claude-skills/blob/main/skills/ai-component-metadata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T18:36:11Z"}, "embedding_text": "ai-component-metadata. Generate AI-ready metadata for design system components to enable intelligent UI generation. Analyzes component structure and generates structured metadata that helps AI understand when and how to use Platforms: claude_code."} +{"id": "046ae2b3b1ba4ca3abb081cfb5fe3e8cd179a9e8a72294fa3fb3bf0156ccb0f4", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "conversation-archaeologist", "description": "Mine ALL past Claude conversations to build a living 'User Manual About You'. Extract writing style, business context, goals, preferences, and patterns. Make all other skills smarter with context.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/conversation-archaeologist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "conversation-archaeologist. Mine ALL past Claude conversations to build a living 'User Manual About You'. Extract writing style, business context, goals, preferences, and patterns. Make all other skills smarter with context. Platforms: claude_code."} +{"id": "c7d924a7f8a4fd4f5afa482a1b93900c7026d9a1369d8f8fbe96f9832924371e", "repo_url": "https://github.com/netresearch/skill-repo-skill", "name": "skill-repo", "description": "Use when creating new skill repositories from scratch, standardizing or validating existing skill repo structure, setting up composer/release workflows for skills, configuring split licensing (MIT + C", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/netresearch/skill-repo-skill/blob/main/skills/skill-repo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:34:39Z"}, "embedding_text": "skill-repo. Use when creating new skill repositories from scratch, standardizing or validating existing skill repo structure, setting up composer/release workflows for skills, configuring split licensing (MIT + C Platforms: claude_code."} +{"id": "f59c44566aed09f8701d754b267adc5bf77b4ff65efe892304338c7241c235ad", "repo_url": "https://github.com/littleben/awesomeagentskills", "name": "doc-sync-tool", "description": "\u81ea\u52a8\u540c\u6b65\u9879\u76ee\u4e2d\u7684 Agents.md\u3001claude.md \u548c gemini.md \u6587\u4ef6\uff0c\u4fdd\u6301\u5185\u5bb9\u4e00\u81f4\u6027\u3002\u652f\u6301\u81ea\u52a8\u76d1\u542c\u548c\u624b\u52a8\u89e6\u53d1\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/littleben/awesomeagentskills/blob/main/doc-sync-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-17T18:07:58Z"}, "embedding_text": "doc-sync-tool. \u81ea\u52a8\u540c\u6b65\u9879\u76ee\u4e2d\u7684 Agents.md\u3001claude.md \u548c gemini.md \u6587\u4ef6\uff0c\u4fdd\u6301\u5185\u5bb9\u4e00\u81f4\u6027\u3002\u652f\u6301\u81ea\u52a8\u76d1\u542c\u548c\u624b\u52a8\u89e6\u53d1\u3002 Platforms: claude_code."} +{"id": "22c9f69599ffb3e6768062e101f0df99057d74adc96745902902fcd26e639ac3", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Perf Reviewer", "description": "Review code for performance issues and run benchmarks. Use when user asks to analyze performance, compare AILANG vs Python vs Go, run benchmarks, or review code for optimization opportunities.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/perf-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Perf Reviewer. Review code for performance issues and run benchmarks. Use when user asks to analyze performance, compare AILANG vs Python vs Go, run benchmarks, or review code for optimization opportunities. Platforms: claude_code."} +{"id": "547f89323a40d1f7f60c2e5de42b16da16b220dacdb57b6526d711d461aa24d0", "repo_url": "https://github.com/buyoung/skills", "name": "kysely-converter", "description": "Capable of converting raw SQL queries into type-safe Kysely TypeScript code. Knows how to handle various SQL dialects and complex query structures.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/kysely-converter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "kysely-converter. Capable of converting raw SQL queries into type-safe Kysely TypeScript code. Knows how to handle various SQL dialects and complex query structures. Platforms: claude_code."} +{"id": "525d762178f50df007eacc65e9a9741a72c4306700fa885ff5799661a4259f9e", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "implement-phase", "description": "Execute a single phase from an implementation plan with all quality gates. This skill is the unit of work for implement-plan, handling implementation, verification, code review, ADR compliance, and pl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/implement-phase/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "implement-phase. Execute a single phase from an implementation plan with all quality gates. This skill is the unit of work for implement-plan, handling implementation, verification, code review, ADR compliance, and pl Platforms: claude_code."} +{"id": "2e2fcff877b91efc8c3685b193b6d3a9f5f8b84515b286fe63a78d7576c82f86", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "pdf", "description": "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 p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "pdf. 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 p Platforms: claude_code."} +{"id": "f2a33d7469dc00588e39db41587c6aecd14822d9654afcf5c7223c5a4094e2e6", "repo_url": "https://github.com/mhylle/claude-skills-collection", "name": "agent-creator", "description": "Create composable AI agent systems in NestJS projects following the \"tools all the way down\" architecture. Use this skill when users want to: (1) Create new AI agents with orchestrator/planner/executo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mhylle/claude-skills-collection/blob/master/skills/agent-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T17:54:16Z"}, "embedding_text": "agent-creator. Create composable AI agent systems in NestJS projects following the \"tools all the way down\" architecture. Use this skill when users want to: (1) Create new AI agents with orchestrator/planner/executo Platforms: claude_code."} +{"id": "1e778434a2fe5d035c83f45ec0d22fccf6ef4c8978846fdb1c5e4a2f5908fb06", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "claude-md-check", "description": "Validate CLAUDE.md structure and completeness", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/claude-md-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-md-check"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "claude-md-check. Validate CLAUDE.md structure and completeness Platforms: claude_code."} +{"id": "b8ece8b8187f095bcdb8e63a9db9932b37ecd598d2bd0617d6cf7ab644edf6b9", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "find-my-project", "description": "Helps beginners find their first AGENTIC project through pain point identification. Guides through questioning, analysis, project suggestion, and folder setup. Use when someone asks 'what project shou", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/find-my-project/skills/find-my-project/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "find-my-project. Helps beginners find their first AGENTIC project through pain point identification. Guides through questioning, analysis, project suggestion, and folder setup. Use when someone asks 'what project shou Platforms: claude_code."} +{"id": "4595dee956cff871bc1d63d316b4aee661d54ca9792b01c563b790056c644cd5", "repo_url": "https://github.com/arborist-ai/claude-desktop-skills", "name": "PDF Processing", "description": "Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arborist-ai/claude-desktop-skills/blob/main/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-09-11T17:00:33Z"}, "embedding_text": "PDF Processing. Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. Platforms: claude_code."} +{"id": "13d8fea48a209afad3321992011366c512d4ad1a1fe2503d5936d4d3df022fbd", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Benchmark Manager", "description": "Create and manage AILANG eval benchmarks. Use when user asks to create benchmarks, fix benchmark issues, debug failing benchmarks, or analyze benchmark results.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/benchmark-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Benchmark Manager. Create and manage AILANG eval benchmarks. Use when user asks to create benchmarks, fix benchmark issues, debug failing benchmarks, or analyze benchmark results. Platforms: claude_code."} +{"id": "afdabf57c3eac6fdaa3c93e760f9a83df83a3aec9efeed9d45b01926020a7ed7", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "bilibili-subtitle-fetcher-skill_suyuan2022", "description": "\u4ece\u54d4\u54e9\u54d4\u54e9(B\u7ad9)\u641c\u7d22\u89c6\u9891\u3001\u83b7\u53d6\u5b57\u5e55\u5e76\u8f6c\u6362\u4e3a Markdown \u683c\u5f0f\u3002\u5f53\u7528\u6237\u9700\u8981\u641c\u7d22 B \u7ad9\u89c6\u9891\u3001\u4e0b\u8f7d\u89c6\u9891\u5b57\u5e55\u3001\u6279\u91cf\u83b7\u53d6\u5b57\u5e55\u3001\u5206\u6790\u89c6\u9891\u5185\u5bb9\u65f6\u4f7f\u7528\u3002\u652f\u6301\u5173\u952e\u8bcd\u641c\u7d22\u3001\u5355\u89c6\u9891\u5904\u7406\u3001\u6279\u91cf\u5e76\u53d1\u4e0b\u8f7d\u3002", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/bilibili-subtitle-fetcher-skill_suyuan2022/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bilibili-subtitle-fetcher-skill_suyuan2022"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "bilibili-subtitle-fetcher-skill_suyuan2022. \u4ece\u54d4\u54e9\u54d4\u54e9(B\u7ad9)\u641c\u7d22\u89c6\u9891\u3001\u83b7\u53d6\u5b57\u5e55\u5e76\u8f6c\u6362\u4e3a Markdown \u683c\u5f0f\u3002\u5f53\u7528\u6237\u9700\u8981\u641c\u7d22 B \u7ad9\u89c6\u9891\u3001\u4e0b\u8f7d\u89c6\u9891\u5b57\u5e55\u3001\u6279\u91cf\u83b7\u53d6\u5b57\u5e55\u3001\u5206\u6790\u89c6\u9891\u5185\u5bb9\u65f6\u4f7f\u7528\u3002\u652f\u6301\u5173\u952e\u8bcd\u641c\u7d22\u3001\u5355\u89c6\u9891\u5904\u7406\u3001\u6279\u91cf\u5e76\u53d1\u4e0b\u8f7d\u3002 Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "ac689d0f09cf1d9e3fd4066c72cd207024c395aae9fa81d5f243f4dddd4845b9", "repo_url": "https://github.com/brisyramshere/reddit-skill", "name": "reddit-reader", "description": "\u901a\u8fc7 Reddit OAuth2 API \u641c\u7d22\u548c\u9605\u8bfb Reddit \u5e16\u5b50\u3001\u8bc4\u8bba\u548c\u5b50\u7248\u5757\u5185\u5bb9\u3002\u5f53\u7528\u6237\u8981\u6c42\u641c\u7d22 Reddit \u8ba8\u8bba\u3001\u6d4f\u89c8\u5b50\u7248\u5757\u5e16\u5b50\u3001\u9605\u8bfb Reddit \u5e16\u5b50\u5185\u5bb9\u548c\u8bc4\u8bba\u3001\u4e86\u89e3 Reddit \u793e\u533a\u5bf9\u67d0\u4e2a\u8bdd\u9898\u7684\u770b\u6cd5\u65f6\u4f7f\u7528\u6b64 skill\u3002\u652f\u6301\u6309\u65f6\u95f4\u8303\u56f4\u548c\u6392\u5e8f\u65b9\u5f0f\u7b5b\u9009\uff0c\u652f\u6301\u8bfb\u53d6\u5b8c\u6574\u5e16\u5b50\u6b63\u6587\u548c\u5d4c\u5957\u8bc4\u8bba\u6811\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brisyramshere/reddit-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-06T02:20:17Z"}, "embedding_text": "reddit-reader. \u901a\u8fc7 Reddit OAuth2 API \u641c\u7d22\u548c\u9605\u8bfb Reddit \u5e16\u5b50\u3001\u8bc4\u8bba\u548c\u5b50\u7248\u5757\u5185\u5bb9\u3002\u5f53\u7528\u6237\u8981\u6c42\u641c\u7d22 Reddit \u8ba8\u8bba\u3001\u6d4f\u89c8\u5b50\u7248\u5757\u5e16\u5b50\u3001\u9605\u8bfb Reddit \u5e16\u5b50\u5185\u5bb9\u548c\u8bc4\u8bba\u3001\u4e86\u89e3 Reddit \u793e\u533a\u5bf9\u67d0\u4e2a\u8bdd\u9898\u7684\u770b\u6cd5\u65f6\u4f7f\u7528\u6b64 skill\u3002\u652f\u6301\u6309\u65f6\u95f4\u8303\u56f4\u548c\u6392\u5e8f\u65b9\u5f0f\u7b5b\u9009\uff0c\u652f\u6301\u8bfb\u53d6\u5b8c\u6574\u5e16\u5b50\u6b63\u6587\u548c\u5d4c\u5957\u8bc4\u8bba\u6811\u3002 Platforms: claude_code."} +{"id": "586d9cf7ad94bb56f93cb1242c027196307bd9a7bd65170c95fc63934a0a3915", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-neural-architectures", "description": "The architecture selection router for CNNs, Transformers, RNNs, GANs, GNNs by data modality and constraints", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/yzmir-neural-architectures/skills/using-neural-architectures/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-neural-architectures. The architecture selection router for CNNs, Transformers, RNNs, GANs, GNNs by data modality and constraints Platforms: claude_code."} +{"id": "e3de7af6b0f9bdd962e8cd50e940cedc24c4592f9d28fb7022e48506a0f16e05", "repo_url": "https://github.com/chongdashu/threejs-tactics-game", "name": "threejs-builder", "description": "Create simple, performant Three.js web apps/scenes (JS/TS, ES modules): scene/camera/renderer setup, lighting, geometries, materials, animation loop, resizing, OrbitControls, GLTF/GLB loading, and pra", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/chongdashu/threejs-tactics-game/blob/main/.claude/skills/threejs-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-06T15:27:37Z"}, "embedding_text": "threejs-builder. Create simple, performant Three.js web apps/scenes (JS/TS, ES modules): scene/camera/renderer setup, lighting, geometries, materials, animation loop, resizing, OrbitControls, GLTF/GLB loading, and pra Platforms: claude_code."} +{"id": "497150263b210e60880e6d1794731dba3dd303d810d8c17d3a0a868bfb446841", "repo_url": "https://github.com/itechmeat/llm-code", "name": "qdrant", "description": "Qdrant vector database: collections, points, payload filtering, indexing, quantization, snapshots, and Docker/Kubernetes deployment.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/qdrant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "qdrant. Qdrant vector database: collections, points, payload filtering, indexing, quantization, snapshots, and Docker/Kubernetes deployment. Platforms: claude_code."} +{"id": "f5046201217572bf10968429b5a4a6c91ac602db0cab13b7a7b0576bed9c84c1", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-deep-rl", "description": "Routes to appropriate deep-RL skills based on problem type and algorithm family", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/yzmir-deep-rl/skills/using-deep-rl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-deep-rl. Routes to appropriate deep-RL skills based on problem type and algorithm family Platforms: claude_code."} +{"id": "4516209ba618676b676fabb8e5e65580e2f3f5545de08050e0ec77bd17e75d6e", "repo_url": "https://github.com/e-mon/geminiclaw", "name": "translate-preview", "description": "Translate a web page while preserving its original DOM structure, CSS, and images. Generates a self-contained bilingual preview HTML with toggle controls. Use this skill whenever the user shares a URL", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/e-mon/geminiclaw/blob/main/templates/.gemini/skills/translate-preview/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T11:48:38Z"}, "embedding_text": "translate-preview. Translate a web page while preserving its original DOM structure, CSS, and images. Generates a self-contained bilingual preview HTML with toggle controls. Use this skill whenever the user shares a URL Platforms: claude_code."} +{"id": "3d6af3eec49b4f59d72ddb5c8e8ba076eb13e39f65245a1c9d7c81d1e243c1fa", "repo_url": "https://github.com/0xdarkmatter/claude-mods", "name": "tailwind-ops", "description": "Tailwind CSS utility patterns, responsive design, component patterns, v4 migration, and configuration. Use for: tailwind, tailwindcss, utility classes, responsive design, dark mode, tailwind v4, tailw", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/0xdarkmatter/claude-mods/blob/main/skills/tailwind-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:30:48Z"}, "embedding_text": "tailwind-ops. Tailwind CSS utility patterns, responsive design, component patterns, v4 migration, and configuration. Use for: tailwind, tailwindcss, utility classes, responsive design, dark mode, tailwind v4, tailw Platforms: claude_code."} +{"id": "7e9739b0653c86a8d30bce10f7460fcd81b86f398046b6322dcf5325e8f54a34", "repo_url": "https://github.com/alekseiul/openclaw-superagent", "name": "agent-doctor", "description": "\u0421\u0430\u043c\u043e\u0434\u0438\u0430\u0433\u043d\u043e\u0441\u0442\u0438\u043a\u0430 \u0438 \u0430\u0432\u0442\u043e\u043b\u0435\u0447\u0435\u043d\u0438\u0435 OpenClaw. \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 gateway, WAL, \u043f\u0430\u043c\u044f\u0442\u0438, \u043a\u0440\u043e\u043d\u043e\u0432, \u0442\u043e\u043a\u0435\u043d\u043e\u0432. \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u0438\u0447\u043d\u044b\u0445 \u043f\u0440\u043e\u0431\u043b\u0435\u043c.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alekseiul/openclaw-superagent/blob/main/skills/agent-doctor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T17:44:54Z"}, "embedding_text": "agent-doctor. \u0421\u0430\u043c\u043e\u0434\u0438\u0430\u0433\u043d\u043e\u0441\u0442\u0438\u043a\u0430 \u0438 \u0430\u0432\u0442\u043e\u043b\u0435\u0447\u0435\u043d\u0438\u0435 OpenClaw. \u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 gateway, WAL, \u043f\u0430\u043c\u044f\u0442\u0438, \u043a\u0440\u043e\u043d\u043e\u0432, \u0442\u043e\u043a\u0435\u043d\u043e\u0432. \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0438\u0441\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0438\u043f\u0438\u0447\u043d\u044b\u0445 \u043f\u0440\u043e\u0431\u043b\u0435\u043c. Platforms: claude_code."} +{"id": "800d765e0f800326678978fae4227604ce2a87470eec211e5a515f1b963be7b3", "repo_url": "https://github.com/bauhinia-ai/aivilization-claw", "name": "aivilization", "description": "AI civilization sandbox where you, as a digital agent, live and develop from survival to prosperity. Features agent registration, character creation, credit system, and social interactions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bauhinia-ai/aivilization-claw/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-04T09:49:59Z"}, "embedding_text": "aivilization. AI civilization sandbox where you, as a digital agent, live and develop from survival to prosperity. Features agent registration, character creation, credit system, and social interactions. Platforms: claude_code."} +{"id": "6b46ab3ebb2ce9fbee4c6d8e76f15441c257ad10d0806bcbf0a68df9fb540e99", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-pytorch-engineering", "description": "Routes to appropriate PyTorch specialist skill based on symptoms and problem type", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/yzmir-pytorch-engineering/skills/using-pytorch-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-pytorch-engineering. Routes to appropriate PyTorch specialist skill based on symptoms and problem type Platforms: claude_code."} +{"id": "e900947d0748d3f5b48eb8b858275609eb0d318efc857991ac1eae27e14a8f99", "repo_url": "https://github.com/prorise-cool/prorise-claude-skills", "name": "gh-bootstrap", "description": "\u4e00\u7ad9\u5f0f GitHub \u4ed3\u5e93\u914d\u7f6e\u521d\u59cb\u5316\u5de5\u5177\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/prorise-claude-skills/blob/master/.claude/skills/devops-specialist/references/domains/github-platform/bootstrap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T14:13:57Z"}, "embedding_text": "gh-bootstrap. \u4e00\u7ad9\u5f0f GitHub \u4ed3\u5e93\u914d\u7f6e\u521d\u59cb\u5316\u5de5\u5177\u3002 Platforms: claude_code."} +{"id": "dfce804861f0e8f754b35312309ed7b19dfdda14ec9b71c73903ded9609feed8", "repo_url": "https://github.com/interstellar-code/claud-skills", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/interstellar-code/claud-skills/blob/main/.claude/skills/document-skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T10:24:44Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "c1bd64225c8b9afd51f61a8a808fc0c20f39f77133dfd77add02e1bddeeeb8e9", "repo_url": "https://github.com/interstellar-code/claud-skills", "name": "pdf", "description": "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 p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/interstellar-code/claud-skills/blob/main/.claude/skills/document-skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T10:24:44Z"}, "embedding_text": "pdf. 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 p Platforms: claude_code."} +{"id": "d03bc48d9a14d2081d0852a92f2389402411c20acfcc0369405ac03789edcf9e", "repo_url": "https://github.com/sanyuan0704/sanyuan-skills", "name": "skill-forge", "description": "Create high-quality, production-grade skills for Claude Code. Expert guidance on skill architecture, workflow design, prompt engineering, and packaging. Use when user wants to create a new skill, buil", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanyuan0704/sanyuan-skills/blob/main/skills/skill-forge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3672, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T07:21:45Z"}, "embedding_text": "skill-forge. Create high-quality, production-grade skills for Claude Code. Expert guidance on skill architecture, workflow design, prompt engineering, and packaging. Use when user wants to create a new skill, buil Platforms: claude_code."} +{"id": "57c604797bb8b085eb3e9849b8fae826c1a6dfe59d80747e79674a80c85b5668", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "artifacts-builder", "description": "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 manag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/artifacts-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "artifacts-builder. 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 manag Platforms: claude_code."} +{"id": "e533b4b2bdf7c38d30442484b484b7ad66cda575ca3c914d3b29815408bca0fb", "repo_url": "https://github.com/inference-sh/skills", "name": "inference-sh", "description": "Run 150+ AI apps via inference.sh CLI - image generation, video creation, LLMs, search, 3D, Twitter automation.\nModels: FLUX, Veo, Gemini, Grok, Claude, Seedance, OmniHuman, Tavily, Exa, OpenRouter, a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inference-sh/skills/blob/main/guides/content/ai-automation-workflows/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 557, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T06:25:47Z"}, "embedding_text": "inference-sh. Run 150+ AI apps via inference.sh CLI - image generation, video creation, LLMs, search, 3D, Twitter automation.\nModels: FLUX, Veo, Gemini, Grok, Claude, Seedance, OmniHuman, Tavily, Exa, OpenRouter, a Platforms: claude_code."} +{"id": "87d592e4b10c9b3ce165d076c8bb3a78387ecce5d16469fd7f69233b7c60d8c3", "repo_url": "https://github.com/xenitv1/antigravity-workflows", "name": "parallel-agents", "description": "Native multi-agent orchestration using Claude Code's Agent Tool. Use when multiple independent tasks can run with different domain expertise or when comprehensive analysis requires multiple perspectiv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xenitv1/antigravity-workflows/blob/main/skills/parallel-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 131, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T19:01:50Z"}, "embedding_text": "parallel-agents. Native multi-agent orchestration using Claude Code's Agent Tool. Use when multiple independent tasks can run with different domain expertise or when comprehensive analysis requires multiple perspectiv Platforms: claude_code."} +{"id": "e86ec45a2d1214d232de08d73ed9eadd04ee0cd778e9b28113c4c4d070f81b16", "repo_url": "https://github.com/itechmeat/llm-code", "name": "refine-dev", "description": "Refine.dev headless React framework for CRUD apps: data providers, resources, routing, authentication, hooks, and forms.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/refine-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "refine-dev. Refine.dev headless React framework for CRUD apps: data providers, resources, routing, authentication, hooks, and forms. Platforms: claude_code."} +{"id": "b1eae40bd9e9c5ce6323b52dcd9a3d77a691945074324be4de17cfb21f2834b5", "repo_url": "https://github.com/onmax/nuxt-convex", "name": "nuxt", "description": "Always-on Nuxt disambiguation layer for this project. Use it to choose the right Nuxt pack first, then switch to Vue or module guidance only when Nuxt no longer owns the abstraction.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onmax/nuxt-convex/blob/main/.codex/skills/nuxt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-11T14:55:58Z"}, "embedding_text": "nuxt. Always-on Nuxt disambiguation layer for this project. Use it to choose the right Nuxt pack first, then switch to Vue or module guidance only when Nuxt no longer owns the abstraction. Platforms: claude_code."} +{"id": "fbd7e06e338898348ce37b2fa5043e2d74fbe2cde0dd32bdea8515c9f9b7bc73", "repo_url": "https://github.com/liqiongyu/lenny_skills_plus", "name": "building-with-llms", "description": "Produce an LLM Build Pack (prompt+tool contract, data/eval plan, architecture+safety, launch checklist). Use for building with LLMs, GPT/Claude apps, prompt engineering, RAG, and tool-using agents.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/liqiongyu/lenny_skills_plus/blob/main/skills/building-with-llms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T14:06:30Z"}, "embedding_text": "building-with-llms. Produce an LLM Build Pack (prompt+tool contract, data/eval plan, architecture+safety, launch checklist). Use for building with LLMs, GPT/Claude apps, prompt engineering, RAG, and tool-using agents. Platforms: claude_code."} +{"id": "6b843e86e6499401c9ac99d91ba2d0b10a82ba47be90139857febb387f60f063", "repo_url": "https://github.com/plurigrid/asi", "name": "m\u00f6bius-color-duality", "description": "M\u00f6bius inversion for Gay.jl color duality - closes sparsification spine gap", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/m\u00f6bius-color-duality/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "m\u00f6bius-color-duality. M\u00f6bius inversion for Gay.jl color duality - closes sparsification spine gap Platforms: claude_code."} +{"id": "2201b0b999b3090a883f1a6705766e88ca2f6ff151eafb25b859936f200186a9", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "handoff-gemini", "description": "Delegate tasks to Gemini CLI to save Claude context", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/handoff-gemini/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install handoff-gemini"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "handoff-gemini. Delegate tasks to Gemini CLI to save Claude context Platforms: claude_code."} +{"id": "c2a3785dbbbea09b023636a316a81060319733d70c329f32aeffdbcbb9693b61", "repo_url": "https://github.com/laguagu/claude-code-nextjs-skills", "name": "cache-components", "description": "Expert guidance for Next.js Cache Components and Partial Prerendering (PPR).\n\n**PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true`", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/laguagu/claude-code-nextjs-skills/blob/main/skills/cache-components/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T11:40:42Z"}, "embedding_text": "cache-components. Expert guidance for Next.js Cache Components and Partial Prerendering (PPR).\n\n**PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` Platforms: claude_code."} +{"id": "181bff5678c33190f3f6d7a98b748be3ecdc3f079e390067dccfcc8f376ca664", "repo_url": "https://github.com/alekseiul/openclaw-superagent", "name": "agent-forge", "description": "\u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435, \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435 \u0438 \u0430\u0443\u0434\u0438\u0442 \u0441\u043a\u0438\u043b\u043b\u043e\u0432 \u0438 \u0430\u0433\u0435\u043d\u0442\u043e\u0432 OpenClaw. \u0422\u0440\u0438 \u0440\u0435\u0436\u0438\u043c\u0430: \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0441\u043a\u0438\u043b\u043b\u0430 (11 \u0448\u0430\u0433\u043e\u0432), \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0430\u0433\u0435\u043d\u0442\u0430 (9 \u0448\u0430\u0433\u043e\u0432, \u0441 \u043f\u0430\u043c\u044f\u0442\u044c\u044e \u0438 \u0430\u0432\u0442\u043e\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435\u043c), \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0433\u043e (5 \u0448\u0430\u0433\u043e\u0432). Triggers: '\u0441\u043e\u0437", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alekseiul/openclaw-superagent/blob/main/skills/agent-forge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-06T17:44:54Z"}, "embedding_text": "agent-forge. \u0421\u043e\u0437\u0434\u0430\u043d\u0438\u0435, \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435 \u0438 \u0430\u0443\u0434\u0438\u0442 \u0441\u043a\u0438\u043b\u043b\u043e\u0432 \u0438 \u0430\u0433\u0435\u043d\u0442\u043e\u0432 OpenClaw. \u0422\u0440\u0438 \u0440\u0435\u0436\u0438\u043c\u0430: \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0441\u043a\u0438\u043b\u043b\u0430 (11 \u0448\u0430\u0433\u043e\u0432), \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u0435 \u0430\u0433\u0435\u043d\u0442\u0430 (9 \u0448\u0430\u0433\u043e\u0432, \u0441 \u043f\u0430\u043c\u044f\u0442\u044c\u044e \u0438 \u0430\u0432\u0442\u043e\u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435\u043c), \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u0438\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0433\u043e (5 \u0448\u0430\u0433\u043e\u0432). Triggers: '\u0441\u043e\u0437 Platforms: claude_code."} +{"id": "1bc8f66fb206a158152fa61f7b599eed21b2fc401d01af96f1cd83b6a672b8a4", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "testing-guide", "description": "Testing pyramid and test writing standards for UT/IT/ST/E2E.\nSupports ISTQB and Industry Pyramid frameworks.\nUse when: writing tests, discussing test coverage, test strategy, or test naming.\nKeywords:", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/testing-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "testing-guide. Testing pyramid and test writing standards for UT/IT/ST/E2E.\nSupports ISTQB and Industry Pyramid frameworks.\nUse when: writing tests, discussing test coverage, test strategy, or test naming.\nKeywords: Platforms: claude_code."} +{"id": "8d457d6c2ea286d7517f1668d2ac9b50250480979b93d8b01fc69a442bbb4980", "repo_url": "https://github.com/gocallum/nextjs16-agent-skills", "name": "clerk-nextjs-skills", "description": "Clerk authentication for Next.js 16 (App Router only) with proxy.ts setup, migration from middleware.ts, environment configuration, and MCP server integration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gocallum/nextjs16-agent-skills/blob/main/skills/clerk-nextjs-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T13:27:54Z"}, "embedding_text": "clerk-nextjs-skills. Clerk authentication for Next.js 16 (App Router only) with proxy.ts setup, migration from middleware.ts, environment configuration, and MCP server integration. Platforms: claude_code."} +{"id": "00e794c89bfe7d7fe9bbf6ce5ee986f3d9b6b915a80dd6ab8e235d0fb6591234", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Frontend Builder", "description": "Build modern React/Next.js frontends. Use when creating web applications, choosing frontend stack, structuring components, or implementing UI/UX designs. Covers React, Next.js, Tailwind CSS, and compo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/frontend-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Frontend Builder. Build modern React/Next.js frontends. Use when creating web applications, choosing frontend stack, structuring components, or implementing UI/UX designs. Covers React, Next.js, Tailwind CSS, and compo Platforms: claude_code."} +{"id": "f3e97c8ddff1a635ded289389519f1f971cd3020180dbf0c0c6429808b483831", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-llm-specialist", "description": "LLM specialist router to prompt engineering, fine-tuning, RAG, evaluation, and safety skills.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/yzmir-llm-specialist/skills/using-llm-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-llm-specialist. LLM specialist router to prompt engineering, fine-tuning, RAG, evaluation, and safety skills. Platforms: claude_code."} +{"id": "e45e5a10a3afbe61ab2f48a324c31bbe968a9760b34c55e16aaad18837065bf4", "repo_url": "https://github.com/vinzenz/prd-breakdown-execute", "name": "crd", "description": "Orchestrates Change Request Document workflow. Manages context, captures changes, analyzes impact, and generates CRD files.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vinzenz/prd-breakdown-execute/blob/main/.claude/skills/crd-context-update/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-12T09:29:47Z"}, "embedding_text": "crd. Orchestrates Change Request Document workflow. Manages context, captures changes, analyzes impact, and generates CRD files. Platforms: claude_code."} +{"id": "5e8f6653e5980d3c1d5d79fde57ba0e87672947d294280e4ffc75bc59cfa6092", "repo_url": "https://github.com/ed3dai/ed3d-plugins", "name": "prompt-security-hardening", "description": "Use when writing skills, CLAUDE.md files, agent prompts, or any directives that involve shell commands, environment variables, API credentials, file creation, or git operations - prevents secrets leak", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ed3dai/ed3d-plugins/blob/main/plugins/ed3d-extending-claude/skills/prompt-security-hardening/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 232, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T19:04:41Z"}, "embedding_text": "prompt-security-hardening. Use when writing skills, CLAUDE.md files, agent prompts, or any directives that involve shell commands, environment variables, API credentials, file creation, or git operations - prevents secrets leak Platforms: claude_code."} +{"id": "9b520a983a89b02ec2ad1de01d243631b8e9c4fd7d94acf069e821fc1ca984ee", "repo_url": "https://github.com/pspdfkit-labs/nutrient-agent-skill", "name": "nutrient-document-processing", "description": "Process documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pspdfkit-labs/nutrient-agent-skill/blob/main/nutrient-document-processing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T17:30:33Z"}, "embedding_text": "nutrient-document-processing. Process documents with Nutrient DWS. Use when the user wants to generate PDFs from HTML or URLs, convert Office/images/PDFs, assemble or split packets, OCR scans, extract text/tables/key-value pairs, Platforms: claude_code."} +{"id": "b00f8a87ac00f2de99e621b65c03c3e8aec084ae204708872cdd0af1bfc9a861", "repo_url": "https://github.com/datarobot-oss/datarobot-agent-skills", "name": "datarobot-app-framework-cicd", "description": "Guidance for setting up CI/CD pipelines for DataRobot application templates using GitLab, GitHub Actions, and Pulumi for infrastructure as code.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datarobot-oss/datarobot-agent-skills/blob/main/skills/datarobot-app-framework-cicd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:59:03Z"}, "embedding_text": "datarobot-app-framework-cicd. Guidance for setting up CI/CD pipelines for DataRobot application templates using GitLab, GitHub Actions, and Pulumi for infrastructure as code. Platforms: claude_code."} +{"id": "be9137d26ffcf88d274e6f658fc00abb4936d115237c3881d02b2fba7e70d83a", "repo_url": "https://github.com/cris-achiardi/claude-skills", "name": "ai-ds-composer", "description": "Strategic guide for consuming design system metadata to compose components intelligently. Use when generating or modifying UI components and layouts to ensure component reuse, proper variant selection", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cris-achiardi/claude-skills/blob/main/skills/ai-ds-composer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 51, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-18T18:36:11Z"}, "embedding_text": "ai-ds-composer. Strategic guide for consuming design system metadata to compose components intelligently. Use when generating or modifying UI components and layouts to ensure component reuse, proper variant selection Platforms: claude_code."} +{"id": "a0fe138a27f21e2fb8bdb34ad19bb797b0e82943749cb501eeb4d5f3edec01bf", "repo_url": "https://github.com/anton-abyzov/specweave", "name": "umbrella-repo-detector", "description": "This skill detects when users describe multi-repository architectures and automatically guides them through proper setup, ensuring user stories are properly scoped to specific repos (FE/BE/SHARED) and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anton-abyzov/specweave/blob/develop/plugins/specweave/skills/umbrella/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 148, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:28:45Z"}, "embedding_text": "umbrella-repo-detector. This skill detects when users describe multi-repository architectures and automatically guides them through proper setup, ensuring user stories are properly scoped to specific repos (FE/BE/SHARED) and Platforms: claude_code."} +{"id": "53d4ee97ad89d3925232072170474ca4a4c9b599c0c70cd3456d7c8cffdd0488", "repo_url": "https://github.com/robertguss/claude-skills", "name": "app-review-analyzer", "description": "Systematically analyze app reviews for competitor research or own-app reputation management. Categorize reviews by sentiment and themes (bugs, missing features, UX complaints, pricing objections, prai", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/mobile-app-dev/app-review-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "app-review-analyzer. Systematically analyze app reviews for competitor research or own-app reputation management. Categorize reviews by sentiment and themes (bugs, missing features, UX complaints, pricing objections, prai Platforms: claude_code."} +{"id": "0f18524854563bb0919ad9e51dbd8ef11d06bb658c2f3c96c538d86eb52d5494", "repo_url": "https://github.com/itechmeat/llm-code", "name": "project-creator", "description": "Project documentation scaffolding. Covers about.md, specs.md, architecture.md, project-context.md, and user stories. Keywords: project setup, documentation, specs, architecture, stories.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/project-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "project-creator. Project documentation scaffolding. Covers about.md, specs.md, architecture.md, project-context.md, and user stories. Keywords: project setup, documentation, specs, architecture, stories. Platforms: claude_code."} +{"id": "02bed3e030b984dc4fb2a207901064b01fd97881809ad5daeb682866a3a26dd0", "repo_url": "https://github.com/asiaostrich/universal-dev-standards", "name": "git-workflow-guide", "description": "Guide Git branching strategies, branch naming, and merge operations.\nUse when: creating branches, merging, pull requests, Git workflow questions.\nKeywords: branch, merge, PR, pull request, GitFlow, Gi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-standards/blob/main/.claude/skills/git-workflow-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T12:50:59Z"}, "embedding_text": "git-workflow-guide. Guide Git branching strategies, branch naming, and merge operations.\nUse when: creating branches, merging, pull requests, Git workflow questions.\nKeywords: branch, merge, PR, pull request, GitFlow, Gi Platforms: claude_code."} +{"id": "ab5473bbd7094bc6d5968bba28314fc5d1339dcc5adf4e15b7581a241552922d", "repo_url": "https://github.com/indianoldturtledove/claude-skill-authoring", "name": "skill-authoring", "description": "Create and validate Claude Code Skills. Use when building new skills, improving existing skills, or discussing skill architecture, frontmatter, progressive disclosure, or best practices.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/indianoldturtledove/claude-skill-authoring/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 45, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T07:06:20Z"}, "embedding_text": "skill-authoring. Create and validate Claude Code Skills. Use when building new skills, improving existing skills, or discussing skill architecture, frontmatter, progressive disclosure, or best practices. Platforms: claude_code."} +{"id": "b05ed442d2e42c3885f8e1ff0296d874cc7199b580dd53adccc6335bf80e07f0", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Prompt Manager", "description": "Optimize and manage AILANG teaching prompts for maximum conciseness and accuracy. Use when user asks to create/update prompts, optimize prompt length, or verify prompt accuracy.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/prompt-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Prompt Manager. Optimize and manage AILANG teaching prompts for maximum conciseness and accuracy. Use when user asks to create/update prompts, optimize prompt length, or verify prompt accuracy. Platforms: claude_code."} +{"id": "1c7f7a7c5a1d364da3e6782c00337468fcad628e4f7923323b5f499d8d707224", "repo_url": "https://github.com/rusq/slackdump", "name": "viewer", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rusq/slackdump/blob/master/.agents/skills/pre-release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2650, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T08:41:14Z"}, "embedding_text": "viewer. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "6b2d6b500d70c9ed53a316c6b81e2048b3934878eb481bf6253fde16773d79a0", "repo_url": "https://github.com/viperrcrypto/siftly", "name": "Siftly", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2544, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T05:57:56Z"}, "embedding_text": "Siftly. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c44427dfacafc54f7ec593820143cfd702ca57e479acd8051c534c361c97bc97", "repo_url": "https://github.com/web-infra-dev/rsbuild", "name": "template-common", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/web-infra-dev/rsbuild/blob/main/.agents/skills/add-doc-anchor-ids/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3334, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:53:14Z"}, "embedding_text": "template-common. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "cfe74d8db5209948af3954b1365919a95d7d5a4dc01ff3cc2cc527db64c3db36", "repo_url": "https://github.com/huiali/rust-skills", "name": "rust-actor", "description": "Actor model expert covering message passing, state isolation, supervision trees, deadlock prevention, fault tolerance, Actix framework, and Erlang-style concurrency patterns.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huiali/rust-skills/blob/main/.codex/skills/rust-actor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-09T07:36:52Z"}, "embedding_text": "rust-actor. Actor model expert covering message passing, state isolation, supervision trees, deadlock prevention, fault tolerance, Actix framework, and Erlang-style concurrency patterns. Platforms: claude_code."} +{"id": "30e410df54143026473eb041bdf0bf11ae8c7323d1c47722650ccf92e1c0d94d", "repo_url": "https://github.com/mikeyobrien/ralph-orchestrator", "name": "codebase-summary", "description": "This sop analyzes a codebase and generates comprehensive documentation including structured metadata files that describe the system architecture, components, interfaces, and workflows. It can create t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mikeyobrien/ralph-orchestrator/blob/main/.claude/skills/code-assist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2952, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:01:48Z"}, "embedding_text": "codebase-summary. This sop analyzes a codebase and generates comprehensive documentation including structured metadata files that describe the system architecture, components, interfaces, and workflows. It can create t Platforms: claude_code."} +{"id": "592f7ff810264be83228db7e62d12416191822c8da271303b601815751e94dd1", "repo_url": "https://github.com/mikeyobrien/ralph-orchestrator", "name": "tui-validate", "description": "Validates Terminal User Interface (TUI) output using freeze for screenshot capture and LLM-as-judge for semantic validation. Supports both visual (PNG/SVG) and text-based validation modes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mikeyobrien/ralph-orchestrator/blob/main/.claude/skills/tui-validate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2952, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:01:48Z"}, "embedding_text": "tui-validate. Validates Terminal User Interface (TUI) output using freeze for screenshot capture and LLM-as-judge for semantic validation. Supports both visual (PNG/SVG) and text-based validation modes. Platforms: claude_code."} +{"id": "85417d97ff6aec45984132c803ee79e8421a4874cf65826752fef8ab771c0afa", "repo_url": "https://github.com/mblode/marx", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1707, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T06:30:42Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "bc2e834a613037b0b2e069abda319870ac005517b5a0c139499fa4f6ac381395", "repo_url": "https://github.com/frankbria/ralph-claude-code", "name": "ralph-claude-code", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 9442, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T02:33:03Z"}, "embedding_text": "ralph-claude-code. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b6c41ad014c4c53a037e1efc7d263e365447b33c9213c74521e41c93f48482c8", "repo_url": "https://github.com/yuxiaopeng/github-ranking-ai", "name": "Top100", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 437, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:20:25Z"}, "embedding_text": "Top100. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "41694191d9608b516b8f1d1e58a9a1a930d3f3e57987fbbf1ee928b71f6f074f", "repo_url": "https://github.com/stripe/stripe-node", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 4450, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T19:47:48Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "d27777cd841c6129b62fcd2a7ff2aa9656d348c1541f21f87fdc90d10a8e8be6", "repo_url": "https://github.com/mikeyobrien/ralph-orchestrator", "name": "code-task-generator", "description": "This sop generates structured code task files from rough descriptions, ideas, or PDD implementation plans. It automatically detects the input type and creates properly formatted code task files follow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mikeyobrien/ralph-orchestrator/blob/main/.claude/skills/code-task-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2952, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:01:48Z"}, "embedding_text": "code-task-generator. This sop generates structured code task files from rough descriptions, ideas, or PDD implementation plans. It automatically detects the input type and creates properly formatted code task files follow Platforms: claude_code."} +{"id": "6fbf42bb444e4cae288ed13260998c46fb2190f9ed42ebcf129b6b8126aec8dc", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Eval Analyzer", "description": "Identify AILANG language gaps from agent struggles, analyze eval baselines, and generate actionable insights. PRIMARY PURPOSE is finding what stdlib/prompt improvements would help agents succeed. Use", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/eval-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Eval Analyzer. Identify AILANG language gaps from agent struggles, analyze eval baselines, and generate actionable insights. PRIMARY PURPOSE is finding what stdlib/prompt improvements would help agents succeed. Use Platforms: claude_code."} +{"id": "ac76d689f7ffc4a774adfcdf35d8c9aa158b9e2bd6b47bf7fdacdbb2ccb4dff6", "repo_url": "https://github.com/pymc-labs/pymc-marketing", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pymc-labs/pymc-marketing/blob/main/.claude/skills/code-best-practice/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1174, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T19:57:36Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3b4dc2441a7846cb75a064bc3224fd03bbcc8340d0d29be3107b60579943e45b", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-python-engineering", "description": "Routes to appropriate Python specialist skill based on symptoms and problem type", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/axiom-python-engineering/skills/using-python-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-python-engineering. Routes to appropriate Python specialist skill based on symptoms and problem type Platforms: claude_code."} +{"id": "9e53b3e2e4a7ec9ed49eb33678537c577073b3f3d5de7cd49d6f4275d7a1c168", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-security-architect", "description": "Routes to security architecture skills - threat modeling, controls, compliance, authorization", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/ordis-security-architect/skills/using-security-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-security-architect. Routes to security architecture skills - threat modeling, controls, compliance, authorization Platforms: claude_code."} +{"id": "4052339ff70001a22c6f3a01243a29af1dbe4728cb9eefa80d7ea1136b16da9f", "repo_url": "https://github.com/itechmeat/llm-code", "name": "react-testing-library", "description": "React Testing Library: user-centric component testing with queries, user-event simulation, async utilities, and accessibility-first API.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/react-testing-library/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "react-testing-library. React Testing Library: user-centric component testing with queries, user-event simulation, async utilities, and accessibility-first API. Platforms: claude_code."} +{"id": "3b65dcd79ec589dd236524af5a0f5a8174b22017ed8f9583dca765e0ae506434", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-ux-designer", "description": "Route to the right UX skill based on your task and platform context", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/lyra-ux-designer/skills/using-ux-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-ux-designer. Route to the right UX skill based on your task and platform context Platforms: claude_code."} +{"id": "345de251909470049b25f41bf72b3ce5892543217587fe55c0d51b5cb63218d8", "repo_url": "https://github.com/torantulino/auto-gpt", "name": "Auto-GPT", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/torantulino/auto-gpt/blob/master/.claude/skills/open-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 185083, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T18:05:51Z"}, "embedding_text": "Auto-GPT. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f1219ee8eb9194495abcb2ae52a1608f23fb38b38c2643a98a4029335105b7f2", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "claude-md-template", "description": "Generate CLAUDE.md template for current project", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/claude-md-template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-md-template"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "claude-md-template. Generate CLAUDE.md template for current project Platforms: claude_code."} +{"id": "e2026669a02b20f7673e82f368427dd3bbe5d126607e7fb4f1a083084a907c29", "repo_url": "https://github.com/jjmartres/opencode", "name": "MCP Builder Skill", "description": "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 externa", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jjmartres/opencode/blob/main/opencode/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-20T10:48:45Z"}, "embedding_text": "MCP Builder Skill. 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 externa Platforms: claude_code."} +{"id": "8e9c08df914bceb4a1b0b4f1466973266302535125e0611c168a0febcd03eba9", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/panaversity-ri-vault/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "83a87490861a22ad0fc51eb9fc8f78e8956c90b508a8e91abdfa8a4e5ae864da", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "handoff-codex", "description": "Delegate tasks to Codex CLI to save Claude context", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/handoff-codex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install handoff-codex"}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T05:52:42Z"}, "embedding_text": "handoff-codex. Delegate tasks to Codex CLI to save Claude context Platforms: claude_code."} +{"id": "febb4ff7dd4493a748a8ee049698600131df746afd0d4fdeb04b8ed20287025f", "repo_url": "https://github.com/buyoung/skills", "name": "react-vite-guide", "description": "React 19 + Vite SPA development guidelines. Use PROACTIVELY when writing, reviewing, or refactoring any React component \u2014 even if the user doesn't explicitly ask for best practices. Covers composition", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/react-vite-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "react-vite-guide. React 19 + Vite SPA development guidelines. Use PROACTIVELY when writing, reviewing, or refactoring any React component \u2014 even if the user doesn't explicitly ask for best practices. Covers composition Platforms: claude_code."} +{"id": "e6759772cb249ebcc02849567984513b9f87a49e873fc0e45c1855f67f95dbf0", "repo_url": "https://github.com/anombyte93/claude-session-init", "name": "start", "description": "Session initialization and lifecycle management: bootstraps session context, organizes files, generates CLAUDE.md, manages soul purpose lifecycle with completion protocol and active context harvesting", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anombyte93/claude-session-init/blob/main/skills/start/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 88, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-26T05:51:54Z"}, "embedding_text": "start. Session initialization and lifecycle management: bootstraps session context, organizes files, generates CLAUDE.md, manages soul purpose lifecycle with completion protocol and active context harvesting Platforms: claude_code."} +{"id": "12d52a78819b1cccd82a2d877a34dff2f2f41954c6deb92fc48f30e134a04dc3", "repo_url": "https://github.com/matrixorigin/memoria", "name": "setup", "description": "Install Memoria and configure MCP for AI tools (Kiro, Cursor, Claude Code, Codex, Gemini CLI). Decision tree for Cloud vs self-hosted mode, database, embedding provider. Use when helping users set up", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matrixorigin/memoria/blob/main/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 288, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T04:00:20Z"}, "embedding_text": "setup. Install Memoria and configure MCP for AI tools (Kiro, Cursor, Claude Code, Codex, Gemini CLI). Decision tree for Cloud vs self-hosted mode, database, embedding provider. Use when helping users set up Platforms: claude_code."} +{"id": "e8a5be7d6f774db744c0e5c6ae3c53d370c9578d9d90d0237f24637863985486", "repo_url": "https://github.com/itechmeat/llm-code", "name": "fastapi", "description": "FastAPI Python framework. Covers REST APIs, validation, dependencies, security. Keywords: Pydantic, async, OAuth2, JWT.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/fastapi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "fastapi. FastAPI Python framework. Covers REST APIs, validation, dependencies, security. Keywords: Pydantic, async, OAuth2, JWT. Platforms: claude_code."} +{"id": "60245be5c241034bb328a55747e4670022c061e9170ec9c2ae433a2b63d3e07d", "repo_url": "https://github.com/laurb9/stepperdriver", "name": "StepperDriver", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 617, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-03T06:32:09Z"}, "embedding_text": "StepperDriver. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "63c45f92f009df882e73ec70489fcdf8ee9734af23066789b51393a64409917f", "repo_url": "https://github.com/anton-abyzov/specweave", "name": "multi-project-spec-mapper", "description": "This skill intelligently analyzes user stories and automatically maps them to appropriate projects (FE, BE, MOBILE, INFRA) based on content and tech stack. It organizes specifications into project-spe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anton-abyzov/specweave/blob/develop/plugins/specweave/skills/multi-project/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 148, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:28:45Z"}, "embedding_text": "multi-project-spec-mapper. This skill intelligently analyzes user stories and automatically maps them to appropriate projects (FE, BE, MOBILE, INFRA) based on content and tech stack. It organizes specifications into project-spe Platforms: claude_code."} +{"id": "fef421daebcce603d6b3a15a3945f3ca7268b93882baa15990e9bd9274de3deb", "repo_url": "https://github.com/itechmeat/llm-code", "name": "postgresql", "description": "PostgreSQL best practices: multi-tenancy with RLS, schema design, Alembic migrations, async SQLAlchemy, and query optimization.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/postgresql/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "postgresql. PostgreSQL best practices: multi-tenancy with RLS, schema design, Alembic migrations, async SQLAlchemy, and query optimization. Platforms: claude_code."} +{"id": "28b2a34d16efff04983bcfe8bc984f88353316c280129a93cff57ee0f1c54f24", "repo_url": "https://github.com/itechmeat/llm-code", "name": "makefile", "description": "GNU Make automation and build system guidance", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/makefile/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "makefile. GNU Make automation and build system guidance Platforms: claude_code."} +{"id": "3bd9826dbec80a5be333066b86afd0bead3abb19fd13211c65913111fbccc9c6", "repo_url": "https://github.com/arborist-ai/claude-desktop-skills", "name": "Word Document Handler", "description": "Comprehensive Microsoft Word (.docx) document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arborist-ai/claude-desktop-skills/blob/main/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-09-11T17:00:33Z"}, "embedding_text": "Word Document Handler. Comprehensive Microsoft Word (.docx) document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction Platforms: claude_code."} +{"id": "ba909790e506f88e1bd3f7a0c5341c304551f54334187cdee0b997c2150056ae", "repo_url": "https://github.com/aaaaqwq/agi-super-team", "name": "wemp-operator", "description": "\u5fae\u4fe1\u516c\u4f17\u53f7\u81ea\u52a8\u5316\u8fd0\u8425\u3002\u89e6\u53d1\u8bcd\uff1a\u91c7\u96c6\u70ed\u70b9\u3001\u516c\u4f17\u53f7\u65e5\u62a5\u3001\u5468\u62a5\u3001\u68c0\u67e5\u8bc4\u8bba\u3001\u56de\u590d\u8bc4\u8bba\u3001\u751f\u6210\u6587\u7ae0\u3002\u4f9d\u8d56 wemp skill\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaaaqwq/agi-super-team/blob/master/skills/wemp-operator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 72, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T05:27:35Z"}, "embedding_text": "wemp-operator. \u5fae\u4fe1\u516c\u4f17\u53f7\u81ea\u52a8\u5316\u8fd0\u8425\u3002\u89e6\u53d1\u8bcd\uff1a\u91c7\u96c6\u70ed\u70b9\u3001\u516c\u4f17\u53f7\u65e5\u62a5\u3001\u5468\u62a5\u3001\u68c0\u67e5\u8bc4\u8bba\u3001\u56de\u590d\u8bc4\u8bba\u3001\u751f\u6210\u6587\u7ae0\u3002\u4f9d\u8d56 wemp skill\u3002 Platforms: claude_code."} +{"id": "623c7d5c5eb9ebe5e66342ed189a10633c7d1bf25a925b22eca5f13dde3bb8d2", "repo_url": "https://github.com/itechmeat/llm-code", "name": "openapi", "description": "OpenAPI Specification (OAS 3.x): document structure, paths, operations, schemas, parameters, security schemes, and validation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/openapi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "openapi. OpenAPI Specification (OAS 3.x): document structure, paths, operations, schemas, parameters, security schemes, and validation. Platforms: claude_code."} +{"id": "fa505c05b6f451c6d670a7798c4f60b33168b2dd7810cf4e2d423f63d82cdadb", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "hooks-io-api", "description": "Hook JSON input/output API reference \u2014 what data hooks receive via stdin and what JSON they can return to control Claude Code behavior. Use when writing hook scripts, checking exit code behavior, buil", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/hooks-io-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "hooks-io-api. Hook JSON input/output API reference \u2014 what data hooks receive via stdin and what JSON they can return to control Claude Code behavior. Use when writing hook scripts, checking exit code behavior, buil Platforms: claude_code."} +{"id": "42f8d88e81459b5ec765e21ac9cfa246e5b07a3c5e0eb90cf7ee04a212faef79", "repo_url": "https://github.com/itechmeat/llm-code", "name": "open-meteo", "description": "Integrate Open-Meteo Weather Forecast, Air Quality, and Geocoding APIs: query design, variable selection, timezone/timeformat/units, multi-location batching, and robust error handling. Keywords: Open-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/itechmeat/llm-code/blob/master/skills/open-meteo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T15:09:40Z"}, "embedding_text": "open-meteo. Integrate Open-Meteo Weather Forecast, Air Quality, and Geocoding APIs: query design, variable selection, timezone/timeformat/units, multi-location batching, and robust error handling. Keywords: Open- Platforms: claude_code."} +{"id": "ba0bccf01f4770d0401d3b05b90529d42775e0a8010ec74055f6783440ae9b80", "repo_url": "https://github.com/marcuspat/turbo-flow-claude", "name": "context", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 162, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T16:04:32Z"}, "embedding_text": "context. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "97ae6555112409094d995575d155caaf0be5b5b3f049d90880121941a9c48f46", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "installing-skill-tracker", "description": "Installs Claude Code hooks for automatic skill usage measurement.\nUse when setting up skill tracking infrastructure in a new project.\nNOT when hooks are already installed (run verify.py to check).", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/installing-skill-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "installing-skill-tracker. Installs Claude Code hooks for automatic skill usage measurement.\nUse when setting up skill tracking infrastructure in a new project.\nNOT when hooks are already installed (run verify.py to check). Platforms: claude_code."} +{"id": "1174babfd32278c86ca88e2387661691cf18b6712c6e633526d83bc026e6dda8", "repo_url": "https://github.com/systeminit/swamp", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/systeminit/swamp/blob/main/.agents/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 448, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:28:07Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "c3d8b767d3507fe70c1450e7ac8db1137ebd89378a2ae43f99cfec5eae8c7cce", "repo_url": "https://github.com/openharmony/arkui_ace_engine", "name": "tdd", "description": "This skill should be used when writing unit tests, TDD test cases, test coverage analysis, or test-driven development for NG component Pattern methods (e.g., OnModifyDone, OnDirtyLayoutWrapperSwap). C", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:02:12Z"}, "embedding_text": "tdd. This skill should be used when writing unit tests, TDD test cases, test coverage analysis, or test-driven development for NG component Pattern methods (e.g., OnModifyDone, OnDirtyLayoutWrapperSwap). C Platforms: claude_code."} +{"id": "dfcb36ed8931f873bb86a3f4c76e1ce0e0d4346d95208b49c08c43d107e4ff0a", "repo_url": "https://github.com/plurigrid/asi", "name": "artifacts-builder", "description": "Suite of tools for creating elaborate, multi-component claude.ai HTML", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/artifacts-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "artifacts-builder. Suite of tools for creating elaborate, multi-component claude.ai HTML Platforms: claude_code."} +{"id": "aa1b14ce18bac708643bf8ad6a3cb57768f7680b9ab1f3a4c83c253196cd0179", "repo_url": "https://github.com/oasaistudio/symphony-ts", "name": "symphony-ts", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 493, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T03:28:34Z"}, "embedding_text": "symphony-ts. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "d3d2bbbdd5d5a0fda812d0ec7074532075a46e7dee4401ec647f0b470b1bf462", "repo_url": "https://github.com/cerul-ai/cerul", "name": "cerul-api", "description": "Use Cerul's video search API from Codex or Claude-style agents. Trigger when a user wants to search videos with Cerul, inspect Cerul usage, or integrate Cerul search into scripts or agent workflows. R", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cerul-ai/cerul/blob/main/skills/cerul/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 143, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:57:02Z"}, "embedding_text": "cerul-api. Use Cerul's video search API from Codex or Claude-style agents. Trigger when a user wants to search videos with Cerul, inspect Cerul usage, or integrate Cerul search into scripts or agent workflows. R Platforms: claude_code."} +{"id": "8770d31e79fdbef5ef4a90a82a97c0ad0e67e09419e9c5428a26ac8b264e3d55", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "pdf", "description": "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 p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/panaversity-ri-vault/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "pdf. 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 p Platforms: claude_code."} +{"id": "894225fb36206cbaa9bb262b18999c4380d26cca656614bda55578f53135b907", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "template-skill", "description": "Replace with description of the skill and when Claude should use it.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/template-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Claude should use it. Platforms: claude_code."} +{"id": "038df90e27f96ad7e51d27b56de628f6bc9ffc9865f146fe6e7124416f180c4f", "repo_url": "https://github.com/kdoronin/claude_code_skills", "name": "skill-template", "description": "Template for creating Claude Code skills. Replace this description with a clear explanation of what this skill does and when it should be used. Be specific about triggers and use cases.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kdoronin/claude_code_skills/blob/main/plugin-creator/assets/templates/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-20T15:25:32Z"}, "embedding_text": "skill-template. Template for creating Claude Code skills. Replace this description with a clear explanation of what this skill does and when it should be used. Be specific about triggers and use cases. Platforms: claude_code."} +{"id": "39d2643528b6323c05543ac62a1dd4f86463d0f1b93634daa6a3cf1e7597f03e", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "internal-comms", "description": "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 com", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "internal-comms. 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 com Platforms: claude_code."} +{"id": "091804fbea7dfa5cbbcfecfcef6d895c16f9dac17cd18e81dfc8a75621cdd4b7", "repo_url": "https://github.com/jezweb/claude-skills", "name": "mcp-builder", "description": "Build MCP servers in Python with FastMCP. Workflow: define tools and resources, build server, test locally, deploy to FastMCP Cloud or Docker. Use when creating MCP servers, exposing tools/resources/prompts to LLMs, building Claude integrations, or troubleshooting FastMCP module-level server, storage, lifespan, middleware, OAuth, or deployment errors.\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/integrations/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-builder"}, "quality": {"stars": 866, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T13:18:31Z"}, "embedding_text": "mcp-builder. Build MCP servers in Python with FastMCP. Workflow: define tools and resources, build server, test locally, deploy to FastMCP Cloud or Docker. Use when creating MCP servers, exposing tools/resources/prompts to LLMs, building Claude integrations, or troubleshooting FastMCP module-level server, storage, lifespan, middleware, OAuth, or deployment errors.\n Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} +{"id": "f006c6692a3da8114bc237d9c063b321c3d6a6b5aba5c17624586e95bf7006d6", "repo_url": "https://github.com/basher83/lunar-claude", "name": "official_docs", "description": "Skills for accessing official documentation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/meta/claude-dev-sandbox/skills/official_docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "official_docs. Skills for accessing official documentation Platforms: claude_code."} +{"id": "636d4a844c5e8656af275574c631d8755b891677ee5fee508a13bc8e03fdafcb", "repo_url": "https://github.com/duplojs/utils", "name": "writeJsDoc", "description": "Write or update duplojs-utils JSDoc documentation files under jsDoc/{namespace}/{function}/, including index.md structure, @example includes, and example.ts usage patterns (classic, curried, and predi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/duplojs/utils/blob/main/.codex/skills/writeJsDoc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T16:14:22Z"}, "embedding_text": "writeJsDoc. Write or update duplojs-utils JSDoc documentation files under jsDoc/{namespace}/{function}/, including index.md structure, @example includes, and example.ts usage patterns (classic, curried, and predi Platforms: claude_code."} +{"id": "e1086f19db3b5f5bc9cee507e3fc8abd7400ab62be8d0df2152713c890af9ed1", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "agent-builder", "description": "Create custom agents for Claude Code including YAML frontmatter, system prompts, tool restrictions, and discovery optimization. Use when creating, building, or designing agents, or when asked about ag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/agent-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "agent-builder. Create custom agents for Claude Code including YAML frontmatter, system prompts, tool restrictions, and discovery optimization. Use when creating, building, or designing agents, or when asked about ag Platforms: claude_code."} +{"id": "44932ff27e5ee19e1d6b6559a09dc92f6f70d97bbfb7a5adbf7f93687b799809", "repo_url": "https://github.com/reggiechan74/jobops", "name": "kill-claude-mem", "description": "Kill stale claude-mem worker and MCP server processes that leak memory across sessions. Use when Codespace feels slow or memory is low.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/reggiechan74/jobops/blob/main/.claude/skills/kill-claude-mem/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-04T16:20:27Z"}, "embedding_text": "kill-claude-mem. Kill stale claude-mem worker and MCP server processes that leak memory across sessions. Use when Codespace feels slow or memory is low. Platforms: claude_code."} +{"id": "4ef786099de81543688b7a4149bd777a2a2b949bcd8f63aa340f5a6c39debafa", "repo_url": "https://github.com/heyvhuang/ship-faster", "name": "002-uniteconomics-console", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heyvhuang/ship-faster/blob/main/legacy/skills/_archive/review-clean-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 336, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-10T19:55:04Z"}, "embedding_text": "002-uniteconomics-console. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "758459be6f6b46e9fc837d6ec8fd98faa35b6bbeb17aefecc7548b0dacd2dc0e", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/document-skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "86ad1613dd986ce99b242e7d69b9711333446784ded6094710e7d9fa2e8878d6", "repo_url": "https://github.com/congdon1207/agents.md", "name": "Debugging", "description": "Systematic debugging framework ensuring root cause investigation before fixes. Includes four-phase debugging process, backward call stack tracing, multi-layer validation, and verification protocols. U", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/congdon1207/agents.md/blob/main/.agent/skills/systematic-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-30T01:56:51Z"}, "embedding_text": "Debugging. Systematic debugging framework ensuring root cause investigation before fixes. Includes four-phase debugging process, backward call stack tracing, multi-layer validation, and verification protocols. U Platforms: claude_code."} +{"id": "72450f13637bcec0a42b5da00e87d78a5866a70e6a7affb2550271154bb2b360", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "cc-dev-agent", "description": "Claude Code \uac1c\ubc1c \uc6cc\ud06c\ud50c\ub85c\uc6b0 \ucd5c\uc801\ud654. Context Engineering, Sub-agents, TDD, \uac1c\ubc1c \ud6c4 \uac80\uc99d \uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc81c\uacf5. \ud2b8\ub9ac\uac70: CC \ud504\ub85c\uc81d\ud2b8 \uc2dc\uc791, CLAUDE.md/spec.md \uc791\uc131, /handoff /verify /commit-push-pr, sub-agent/Explore, Agent Teams \ubcd1\ub82c \uac1c\ubc1c \uc694\uccad \uc2dc.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/cc-dev-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cc-dev-agent"}, "quality": {"stars": 752, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:57:09Z"}, "embedding_text": "cc-dev-agent. Claude Code \uac1c\ubc1c \uc6cc\ud06c\ud50c\ub85c\uc6b0 \ucd5c\uc801\ud654. Context Engineering, Sub-agents, TDD, \uac1c\ubc1c \ud6c4 \uac80\uc99d \uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc81c\uacf5. \ud2b8\ub9ac\uac70: CC \ud504\ub85c\uc81d\ud2b8 \uc2dc\uc791, CLAUDE.md/spec.md \uc791\uc131, /handoff /verify /commit-push-pr, sub-agent/Explore, Agent Teams \ubcd1\ub82c \uac1c\ubc1c \uc694\uccad \uc2dc. Platforms: claude_code."} +{"id": "8e1049b47f1ea33c1f84495b21e5a79580face25a7e79d2970937b983bec2d58", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-ai-core", "description": "Guides development with SAP AI Core and SAP AI Launchpad for enterprise AI/ML workloads on SAP BTP. Use when: deploying generative AI models (GPT, Claude, Gemini, Llama), building orchestration workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-ai-core/skills/sap-ai-core/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-ai-core. Guides development with SAP AI Core and SAP AI Launchpad for enterprise AI/ML workloads on SAP BTP. Use when: deploying generative AI models (GPT, Claude, Gemini, Llama), building orchestration workfl Platforms: claude_code."} +{"id": "5915dff22b2d3392818d662cb4169f26cc9d53dc734bc71a2f72a8919b229971", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Security Engineer", "description": "Implement security best practices across the application stack. Use when securing APIs, implementing authentication, preventing vulnerabilities, or conducting security reviews. Covers OWASP Top 10, au", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/security-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Security Engineer. Implement security best practices across the application stack. Use when securing APIs, implementing authentication, preventing vulnerabilities, or conducting security reviews. Covers OWASP Top 10, au Platforms: claude_code."} +{"id": "a4887e1c867b12ba384c87d7df71086f2daf4c50e120c1e2b8ec3ba39ba2f772", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Testing Strategist", "description": "Design and implement comprehensive testing strategies. Use when setting up tests, choosing test types, implementing TDD, or improving code quality. Covers unit tests, integration tests, E2E tests, tes", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/testing-strategist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Testing Strategist. Design and implement comprehensive testing strategies. Use when setting up tests, choosing test types, implementing TDD, or improving code quality. Covers unit tests, integration tests, E2E tests, tes Platforms: claude_code."} +{"id": "51f9c74ccda318240677ea0923a61f5eee1c5c6b88762f9aa929b309a6f7e760", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "gsap", "description": "Professional animation implementation using GSAP (GreenSock Animation Platform). Use this skill when users request animations, motion design, scroll effects, timeline sequences, interactive animations", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/development/gsap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "gsap. Professional animation implementation using GSAP (GreenSock Animation Platform). Use this skill when users request animations, motion design, scroll effects, timeline sequences, interactive animations Platforms: claude_code."} +{"id": "ad6933b7b6d4f75e615ffac0b9d8fd665278d20f82a2e50b744a9b0f9fb38897", "repo_url": "https://github.com/zw008/vmware-aiops", "name": "vmware-aiops", "description": "Use this skill whenever the user needs to manage VMs in VMware/vSphere/ESXi \u2014 it's the entry point for all VM operations. Directly handles: power on/off, clone, snapshot, migrate, deploy from OVA or t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zw008/vmware-aiops/blob/main/skills/vmware-aiops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 52, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:14:47Z"}, "embedding_text": "vmware-aiops. Use this skill whenever the user needs to manage VMs in VMware/vSphere/ESXi \u2014 it's the entry point for all VM operations. Directly handles: power on/off, clone, snapshot, migrate, deploy from OVA or t Platforms: claude_code."} +{"id": "794c2396a59cb9e3525decc29ee8a98c7c10cb5e1da6b3de89fd654e1c1036e1", "repo_url": "https://github.com/aaaaaaaj/slides", "name": "slides", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 538, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T14:30:45Z"}, "embedding_text": "slides. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "8d2ef38f7f3a0597efde79abd6610a8921222bdc21a13e99f887c09996adf8c2", "repo_url": "https://github.com/proxiblue/claude-skills", "name": "magento2-widget-creation", "description": "Comprehensive guide for creating custom widget modules in Magento 2 that can be inserted into CMS pages and blocks. Covers module structure, widget configuration, templates, JavaScript, CSS, and form", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/proxiblue/claude-skills/blob/main/magento2-widget-creation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T02:03:02Z"}, "embedding_text": "magento2-widget-creation. Comprehensive guide for creating custom widget modules in Magento 2 that can be inserted into CMS pages and blocks. Covers module structure, widget configuration, templates, JavaScript, CSS, and form Platforms: claude_code."} +{"id": "8926db10c666554069b21bb057eca6b16b4ce4b6e26c1bf3f181ab56e7506ddf", "repo_url": "https://github.com/styly-dev/styly-netsync", "name": "code-review-netsync", "description": "Code review skill for the STYLY-NetSync repository (Unity multiplayer framework for LBE XR). Reviews git diff changes against project-specific rules covering Unity C#, Python server, ZeroMQ networking", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/styly-dev/styly-netsync/blob/develop/.claude/skills/review-netsync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 38, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T13:01:04Z"}, "embedding_text": "code-review-netsync. Code review skill for the STYLY-NetSync repository (Unity multiplayer framework for LBE XR). Reviews git diff changes against project-specific rules covering Unity C#, Python server, ZeroMQ networking Platforms: claude_code."} +{"id": "65b9c076952bfd160848b7901ac3c920fd7343e33c0a2fc09b57956d6764d667", "repo_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations", "name": "dcg", "description": "Destructive Command Guard - High-performance Rust hook for Claude Code that blocks dangerous commands before execution. SIMD-accelerated, modular pack system, whitelist-first architecture. Essential s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/blob/main/skills/dcg/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T00:21:32Z"}, "embedding_text": "dcg. Destructive Command Guard - High-performance Rust hook for Claude Code that blocks dangerous commands before execution. SIMD-accelerated, modular pack system, whitelist-first architecture. Essential s Platforms: claude_code."} +{"id": "db8c38ab643dbdbf97de8537753e8c2b61af8501791c39871dc9d4e7b0c2d664", "repo_url": "https://github.com/plurigrid/asi", "name": "skill-maker", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.cursor/skills/skill-maker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "skill-maker. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1c3e7fefbb2c0fe20e807e232f1f5b42fd4b637c54c593b209d0c1631a8037e4", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "review-response-writer", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/app-store/review-response-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "review-response-writer. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e02561dee74a80f3642a0d1a03d09407e55462e690bcc2b290e7c461fed76a6e", "repo_url": "https://github.com/pr-pm/prpm", "name": "creating-claude-commands", "description": "Expert guidance for creating Claude Code slash commands with correct frontmatter, structure, and best practices", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pr-pm/prpm/blob/main/.claude/skills/creating-claude-commands/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T10:00:50Z"}, "embedding_text": "creating-claude-commands. Expert guidance for creating Claude Code slash commands with correct frontmatter, structure, and best practices Platforms: claude_code."} +{"id": "7aab56fbb92d3b1d25f7515769762ec156b88cdbcc81aa7f175b53363c3fbcad", "repo_url": "https://github.com/wsimmonds/claude-nextjs-skills", "name": "nextjs-server-client-components", "description": "Guide for choosing between Server Components and Client Components in Next.js App Router. CRITICAL for useSearchParams (requires Suspense + 'use client'), navigation (Link, redirect, useRouter), cooki", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wsimmonds/claude-nextjs-skills/blob/main/nextjs-server-client-components/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 102, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-24T11:05:39Z"}, "embedding_text": "nextjs-server-client-components. Guide for choosing between Server Components and Client Components in Next.js App Router. CRITICAL for useSearchParams (requires Suspense + 'use client'), navigation (Link, redirect, useRouter), cooki Platforms: claude_code."} +{"id": "06acc5b49a39364733aec6594d1f08cfe474e5347b3e9349124b1aa7a398e874", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "travel-health-analyzer", "description": "\u5206\u6790\u65c5\u884c\u5065\u5eb7\u6570\u636e\u3001\u8bc4\u4f30\u76ee\u7684\u5730\u5065\u5eb7\u98ce\u9669\u3001\u63d0\u4f9b\u75ab\u82d7\u63a5\u79cd\u5efa\u8bae\u3001\u751f\u6210\u591a\u8bed\u8a00\u7d27\u6025\u533b\u7597\u4fe1\u606f\u5361\u7247\u3002\u652f\u6301WHO/CDC\u6570\u636e\u96c6\u6210\u7684\u4e13\u4e1a\u7ea7\u65c5\u884c\u5065\u5eb7\u98ce\u9669\u8bc4\u4f30\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/travel-health-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "travel-health-analyzer. \u5206\u6790\u65c5\u884c\u5065\u5eb7\u6570\u636e\u3001\u8bc4\u4f30\u76ee\u7684\u5730\u5065\u5eb7\u98ce\u9669\u3001\u63d0\u4f9b\u75ab\u82d7\u63a5\u79cd\u5efa\u8bae\u3001\u751f\u6210\u591a\u8bed\u8a00\u7d27\u6025\u533b\u7597\u4fe1\u606f\u5361\u7247\u3002\u652f\u6301WHO/CDC\u6570\u636e\u96c6\u6210\u7684\u4e13\u4e1a\u7ea7\u65c5\u884c\u5065\u5eb7\u98ce\u9669\u8bc4\u4f30\u3002 Platforms: claude_code."} +{"id": "06187a8821b2c4f6c2e5ac9e58f8f32fe360f5f9bf89d4f64cb85859bf0b5d2c", "repo_url": "https://github.com/agentic-community/mcp-gateway-registry", "name": "mcp-gateway-registry", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentic-community/mcp-gateway-registry/blob/main/.claude/skills/agentcore-register/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 724, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T19:50:04Z"}, "embedding_text": "mcp-gateway-registry. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "67b7d769002da73f016fd9a4b20821a92a0639fdb3d3e5cb729ac30b305ab700", "repo_url": "https://github.com/team-attention/hoyeon", "name": "rulph", "description": "Iterative rubric-based evaluation and self-improvement loop. Builds a scoring rubric interactively,\nevaluates an artifact with multiple models in parallel (Codex, Gemini, Claude), then autonomously\nim", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/rulph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "rulph. Iterative rubric-based evaluation and self-improvement loop. Builds a scoring rubric interactively,\nevaluates an artifact with multiple models in parallel (Codex, Gemini, Claude), then autonomously\nim Platforms: claude_code."} +{"id": "fe7c09b227b7abdd3dbcf036a0bf8b6a0dabf8198e1a7ca262a69371e3f07da2", "repo_url": "https://github.com/bear2u/my-skills", "name": "design-prompt-generator-v2", "description": "Advanced 7-step hierarchical design prompt generator for AI web development tools (Lovable, Cursor, Bolt). Generates domain-aware, user-journey-based design prompts with emotional design consideration", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bear2u/my-skills/blob/master/skills/design-prompt-generator-v2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:43:13Z"}, "embedding_text": "design-prompt-generator-v2. Advanced 7-step hierarchical design prompt generator for AI web development tools (Lovable, Cursor, Bolt). Generates domain-aware, user-journey-based design prompts with emotional design consideration Platforms: claude_code."} +{"id": "2c608e5c5cffdc00fcbf7e8ebd5c62b8ec7ea8bb336a96be230fd0f8e3a2a54d", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "weightloss-analyzer", "description": "\u5206\u6790\u51cf\u80a5\u6570\u636e\u3001\u8ba1\u7b97\u4ee3\u8c22\u7387\u3001\u8ffd\u8e2a\u80fd\u91cf\u7f3a\u53e3\u3001\u7ba1\u7406\u51cf\u80a5\u9636\u6bb5", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/weightloss-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "weightloss-analyzer. \u5206\u6790\u51cf\u80a5\u6570\u636e\u3001\u8ba1\u7b97\u4ee3\u8c22\u7387\u3001\u8ffd\u8e2a\u80fd\u91cf\u7f3a\u53e3\u3001\u7ba1\u7406\u51cf\u80a5\u9636\u6bb5 Platforms: claude_code."} +{"id": "7c9e8e80f7e2a520786efff4d8f41c5c15155b13cae719789efdeae0bb557cb2", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "sleep-analyzer", "description": "\u5206\u6790\u7761\u7720\u6570\u636e\u3001\u8bc6\u522b\u7761\u7720\u6a21\u5f0f\u3001\u8bc4\u4f30\u7761\u7720\u8d28\u91cf\uff0c\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u7761\u7720\u6539\u5584\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/sleep-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "sleep-analyzer. \u5206\u6790\u7761\u7720\u6570\u636e\u3001\u8bc6\u522b\u7761\u7720\u6a21\u5f0f\u3001\u8bc4\u4f30\u7761\u7720\u8d28\u91cf\uff0c\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u7761\u7720\u6539\u5584\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002 Platforms: claude_code."} +{"id": "b040dcd322c2c06992adf2397788e9762c1cf28682c4433a161ad68325b2cf5e", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "rehabilitation-analyzer", "description": "\u5206\u6790\u5eb7\u590d\u8bad\u7ec3\u6570\u636e\u3001\u8bc6\u522b\u5eb7\u590d\u6a21\u5f0f\u3001\u8bc4\u4f30\u5eb7\u590d\u8fdb\u5c55\uff0c\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u5eb7\u590d\u5efa\u8bae", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/rehabilitation-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "rehabilitation-analyzer. \u5206\u6790\u5eb7\u590d\u8bad\u7ec3\u6570\u636e\u3001\u8bc6\u522b\u5eb7\u590d\u6a21\u5f0f\u3001\u8bc4\u4f30\u5eb7\u590d\u8fdb\u5c55\uff0c\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u5eb7\u590d\u5efa\u8bae Platforms: claude_code."} +{"id": "4b5531896ca03f9838aeb2db2f8198ab7f2ee8918884be360b50fbf9a8e64081", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "skill-share", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/skill-share/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "skill-share. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c2a06b5e199046aabf47e9a57898b74d2cce4b07c3f746e13f1615612539637d", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "mental-health-analyzer", "description": "\u5206\u6790\u5fc3\u7406\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u5fc3\u7406\u6a21\u5f0f\u3001\u8bc4\u4f30\u5fc3\u7406\u5065\u5eb7\u72b6\u51b5\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u5fc3\u7406\u5065\u5eb7\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u7761\u7720\u3001\u8fd0\u52a8\u3001\u8425\u517b\u7b49\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/mental-health-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "mental-health-analyzer. \u5206\u6790\u5fc3\u7406\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u5fc3\u7406\u6a21\u5f0f\u3001\u8bc4\u4f30\u5fc3\u7406\u5065\u5eb7\u72b6\u51b5\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u5fc3\u7406\u5065\u5eb7\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u7761\u7720\u3001\u8fd0\u52a8\u3001\u8425\u517b\u7b49\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002 Platforms: claude_code."} +{"id": "04b2fba247224d815e52cae7f0bada6c2d729ce5d7ec709cc37166ab87ec7208", "repo_url": "https://github.com/ehmo/autoresearch-skill", "name": "autoresearch", "description": "Autonomous multi-team codebase improvement", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ehmo/autoresearch-skill/blob/main/skills/autoresearch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-20T20:54:42Z"}, "embedding_text": "autoresearch. Autonomous multi-team codebase improvement Platforms: claude_code."} +{"id": "f3c8aa9646e73ac88d703736379594d66d6a746015585ced5ce328348475c161", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "emergency-card", "description": "\u751f\u6210\u7d27\u6025\u60c5\u51b5\u4e0b\u5feb\u901f\u8bbf\u95ee\u7684\u533b\u7597\u4fe1\u606f\u6458\u8981\u5361\u7247\u3002\u5f53\u7528\u6237\u9700\u8981\u65c5\u884c\u3001\u5c31\u8bca\u51c6\u5907\u3001\u7d27\u6025\u60c5\u51b5\u6216\u8be2\u95ee\"\u7d27\u6025\u4fe1\u606f\"\u3001\"\u533b\u7597\u5361\u7247\"\u3001\"\u6025\u6551\u4fe1\u606f\"\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002\u63d0\u53d6\u5173\u952e\u4fe1\u606f\uff08\u8fc7\u654f\u3001\u7528\u836f\u3001\u6025\u75c7\u3001\u690d\u5165\u7269\uff09\uff0c\u652f\u6301\u591a\u683c\u5f0f\u8f93\u51fa\uff08JSON\u3001\u6587\u672c\u3001\u4e8c\u7ef4\u7801\uff09\uff0c\u7528\u4e8e\u6025\u6551\u6216\u5feb\u901f\u5c31\u533b\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/emergency-card/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "emergency-card. \u751f\u6210\u7d27\u6025\u60c5\u51b5\u4e0b\u5feb\u901f\u8bbf\u95ee\u7684\u533b\u7597\u4fe1\u606f\u6458\u8981\u5361\u7247\u3002\u5f53\u7528\u6237\u9700\u8981\u65c5\u884c\u3001\u5c31\u8bca\u51c6\u5907\u3001\u7d27\u6025\u60c5\u51b5\u6216\u8be2\u95ee\"\u7d27\u6025\u4fe1\u606f\"\u3001\"\u533b\u7597\u5361\u7247\"\u3001\"\u6025\u6551\u4fe1\u606f\"\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002\u63d0\u53d6\u5173\u952e\u4fe1\u606f\uff08\u8fc7\u654f\u3001\u7528\u836f\u3001\u6025\u75c7\u3001\u690d\u5165\u7269\uff09\uff0c\u652f\u6301\u591a\u683c\u5f0f\u8f93\u51fa\uff08JSON\u3001\u6587\u672c\u3001\u4e8c\u7ef4\u7801\uff09\uff0c\u7528\u4e8e\u6025\u6551\u6216\u5feb\u901f\u5c31\u533b\u3002 Platforms: claude_code."} +{"id": "83324fdec11412c54c702a2fe3f033a389c8d6458120a99304adf9d0263f5b13", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "occupational-health-analyzer", "description": "\u5206\u6790\u804c\u4e1a\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u5de5\u4f5c\u76f8\u5173\u5065\u5eb7\u98ce\u9669\u3001\u8bc4\u4f30\u804c\u4e1a\u5065\u5eb7\u72b6\u51b5\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u804c\u4e1a\u5065\u5eb7\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u7761\u7720\u3001\u8fd0\u52a8\u3001\u5fc3\u7406\u5065\u5eb7\u7b49\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/occupational-health-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "occupational-health-analyzer. \u5206\u6790\u804c\u4e1a\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u5de5\u4f5c\u76f8\u5173\u5065\u5eb7\u98ce\u9669\u3001\u8bc4\u4f30\u804c\u4e1a\u5065\u5eb7\u72b6\u51b5\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u804c\u4e1a\u5065\u5eb7\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u7761\u7720\u3001\u8fd0\u52a8\u3001\u5fc3\u7406\u5065\u5eb7\u7b49\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002 Platforms: claude_code."} +{"id": "213f42ac8f456a4c53a378ba34baf0d31427f96dd9c90fbbca9c25e72a58aff1", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "family-health-analyzer", "description": "\u5206\u6790\u5bb6\u65cf\u75c5\u53f2\u3001\u8bc4\u4f30\u9057\u4f20\u98ce\u9669\u3001\u8bc6\u522b\u5bb6\u5ead\u5065\u5eb7\u6a21\u5f0f\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u9884\u9632\u5efa\u8bae", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/family-health-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "family-health-analyzer. \u5206\u6790\u5bb6\u65cf\u75c5\u53f2\u3001\u8bc4\u4f30\u9057\u4f20\u98ce\u9669\u3001\u8bc6\u522b\u5bb6\u5ead\u5065\u5eb7\u6a21\u5f0f\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u9884\u9632\u5efa\u8bae Platforms: claude_code."} +{"id": "33ff166f8e7ef10061812400117c04058e724161df41dc165da8c846b31658b7", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-orator", "description": "Prompt rhetoric coach \u2014 deterministic scoring and restructuring using Anthropic best practices", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-orator/skills/claude-orator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-orator"}, "quality": {"stars": 146, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-orator. Prompt rhetoric coach \u2014 deterministic scoring and restructuring using Anthropic best practices Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} +{"id": "39a80ebba0c26990216264290b173eeca07510c78d221baf19d7a5bd7e8bef09", "repo_url": "https://github.com/qianjietech/open-claudeskill", "name": "brand-guidelines", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/qianjietech/open-claudeskill/blob/main/examples/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-13T09:42:30Z"}, "embedding_text": "brand-guidelines. 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 Platforms: claude_code."} +{"id": "8a553d7a5603a94ca68dc01c4303fbc3dcbfddd4e408890019a264eea30757c5", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "sexual-health-analyzer", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/sexual-health-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "sexual-health-analyzer. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0dc37ce4bcf12e75ad6a75a45c9a0962c28676926d82b0f617692acbb9e65c76", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "brand-guidelines", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "brand-guidelines. 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 Platforms: claude_code."} +{"id": "220b352e9a73053ac9ec5edff3f3e4a62ee7888d29f48aaa492f6947755823e4", "repo_url": "https://github.com/hookdeck/webhook-skills", "name": "resend-webhooks", "description": "Receive and verify Resend webhooks. Use when setting up Resend webhook handlers, debugging signature verification, handling email events like email.sent, email.delivered, email.bounced, or processing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hookdeck/webhook-skills/blob/main/skills/resend-webhooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T09:02:26Z"}, "embedding_text": "resend-webhooks. Receive and verify Resend webhooks. Use when setting up Resend webhook handlers, debugging signature verification, handling email events like email.sent, email.delivered, email.bounced, or processing Platforms: claude_code."} +{"id": "2402f40a40907479f339385b1966ff40c31e6efc559c702dc3f80c21523090eb", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "goal-analyzer", "description": "\u5206\u6790\u5065\u5eb7\u76ee\u6807\u6570\u636e\u3001\u8bc6\u522b\u76ee\u6807\u6a21\u5f0f\u3001\u8bc4\u4f30\u76ee\u6807\u8fdb\u5ea6,\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u76ee\u6807\u7ba1\u7406\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8425\u517b\u3001\u8fd0\u52a8\u3001\u7761\u7720\u7b49\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/goal-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "goal-analyzer. \u5206\u6790\u5065\u5eb7\u76ee\u6807\u6570\u636e\u3001\u8bc6\u522b\u76ee\u6807\u6a21\u5f0f\u3001\u8bc4\u4f30\u76ee\u6807\u8fdb\u5ea6,\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u76ee\u6807\u7ba1\u7406\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8425\u517b\u3001\u8fd0\u52a8\u3001\u7761\u7720\u7b49\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002 Platforms: claude_code."} +{"id": "b93c4ed3675dffc1cb6a561d76491384e58bb26c31cc93f692cfe0bb3e142cfd", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "oral-health-analyzer", "description": "\u5206\u6790\u53e3\u8154\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u53e3\u8154\u95ee\u9898\u6a21\u5f0f\u3001\u8bc4\u4f30\u53e3\u8154\u5065\u5eb7\u72b6\u51b5\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u53e3\u8154\u5065\u5eb7\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8425\u517b\u3001\u6162\u6027\u75c5\u3001\u7528\u836f\u7b49\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/oral-health-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "oral-health-analyzer. \u5206\u6790\u53e3\u8154\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u53e3\u8154\u95ee\u9898\u6a21\u5f0f\u3001\u8bc4\u4f30\u53e3\u8154\u5065\u5eb7\u72b6\u51b5\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u53e3\u8154\u5065\u5eb7\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8425\u517b\u3001\u6162\u6027\u75c5\u3001\u7528\u836f\u7b49\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002 Platforms: claude_code."} +{"id": "84de05b4ed67cee8835c1834d085270f3b6954da4f27534da9e7672947ebc7a9", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "health-trend-analyzer", "description": "\u5206\u6790\u4e00\u6bb5\u65f6\u95f4\u5185\u5065\u5eb7\u6570\u636e\u7684\u8d8b\u52bf\u548c\u6a21\u5f0f\u3002\u5173\u8054\u836f\u7269\u3001\u75c7\u72b6\u3001\u751f\u547d\u4f53\u5f81\u3001\u5316\u9a8c\u7ed3\u679c\u548c\u5176\u4ed6\u5065\u5eb7\u6307\u6807\u7684\u53d8\u5316\u3002\u8bc6\u522b\u4ee4\u4eba\u62c5\u5fe7\u7684\u8d8b\u52bf\u3001\u6539\u5584\u60c5\u51b5\uff0c\u5e76\u63d0\u4f9b\u6570\u636e\u9a71\u52a8\u7684\u6d1e\u5bdf\u3002\u5f53\u7528\u6237\u8be2\u95ee\u5065\u5eb7\u8d8b\u52bf\u3001\u6a21\u5f0f\u3001\u968f\u65f6\u95f4\u7684\u53d8\u5316\u6216\"\u6211\u7684\u5065\u5eb7\u72b6\u51b5\u6709\u4ec0\u4e48\u53d8\u5316\uff1f\"\u65f6\u4f7f\u7528\u3002\u652f\u6301\u591a\u7ef4\u5ea6\u5206\u6790\uff08\u4f53\u91cd/BMI\u3001\u75c7\u72b6\u3001\u836f\u7269\u4f9d\u4ece\u6027\u3001\u5316\u9a8c\u7ed3\u679c\u3001\u60c5\u7eea\u7761\u7720\uff09\uff0c\u76f8\u5173\u6027\u5206\u6790\uff0c\u53d8\u5316\u68c0\u6d4b\uff0c\u4ee5\u53ca\u4ea4\u4e92\u5f0fHTML\u53ef\u89c6\u5316\u62a5\u544a\uff08ECharts\u56fe\u8868\uff09\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/health-trend-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "health-trend-analyzer. \u5206\u6790\u4e00\u6bb5\u65f6\u95f4\u5185\u5065\u5eb7\u6570\u636e\u7684\u8d8b\u52bf\u548c\u6a21\u5f0f\u3002\u5173\u8054\u836f\u7269\u3001\u75c7\u72b6\u3001\u751f\u547d\u4f53\u5f81\u3001\u5316\u9a8c\u7ed3\u679c\u548c\u5176\u4ed6\u5065\u5eb7\u6307\u6807\u7684\u53d8\u5316\u3002\u8bc6\u522b\u4ee4\u4eba\u62c5\u5fe7\u7684\u8d8b\u52bf\u3001\u6539\u5584\u60c5\u51b5\uff0c\u5e76\u63d0\u4f9b\u6570\u636e\u9a71\u52a8\u7684\u6d1e\u5bdf\u3002\u5f53\u7528\u6237\u8be2\u95ee\u5065\u5eb7\u8d8b\u52bf\u3001\u6a21\u5f0f\u3001\u968f\u65f6\u95f4\u7684\u53d8\u5316\u6216\"\u6211\u7684\u5065\u5eb7\u72b6\u51b5\u6709\u4ec0\u4e48\u53d8\u5316\uff1f\"\u65f6\u4f7f\u7528\u3002\u652f\u6301\u591a\u7ef4\u5ea6\u5206\u6790\uff08\u4f53\u91cd/BMI\u3001\u75c7\u72b6\u3001\u836f\u7269\u4f9d\u4ece\u6027\u3001\u5316\u9a8c\u7ed3\u679c\u3001\u60c5\u7eea\u7761\u7720\uff09\uff0c\u76f8\u5173\u6027\u5206\u6790\uff0c\u53d8\u5316\u68c0\u6d4b\uff0c\u4ee5\u53ca\u4ea4\u4e92\u5f0fHTML\u53ef\u89c6\u5316\u62a5\u544a\uff08ECharts\u56fe\u8868\uff09\u3002 Platforms: claude_code."} +{"id": "e0ff7363fa4daa9c135e481103cc57dc64580b547d8988b90ca4469d20a50f31", "repo_url": "https://github.com/packmindhub/packmind", "name": "ui", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/packmindhub/packmind/blob/main/scripts/michel/michel-ui-demo-recorder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:14:12Z"}, "embedding_text": "ui. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8dbeb8b8dfdc2a93e7c7de54b2cc5302964f6ac9221ef5d7fba32b101d1174b9", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "nutrition-analyzer", "description": "\u5206\u6790\u8425\u517b\u6570\u636e\u3001\u8bc6\u522b\u8425\u517b\u6a21\u5f0f\u3001\u8bc4\u4f30\u8425\u517b\u72b6\u51b5\uff0c\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u8425\u517b\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8fd0\u52a8\u3001\u7761\u7720\u3001\u6162\u6027\u75c5\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/nutrition-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "nutrition-analyzer. \u5206\u6790\u8425\u517b\u6570\u636e\u3001\u8bc6\u522b\u8425\u517b\u6a21\u5f0f\u3001\u8bc4\u4f30\u8425\u517b\u72b6\u51b5\uff0c\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u8425\u517b\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8fd0\u52a8\u3001\u7761\u7720\u3001\u6162\u6027\u75c5\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002 Platforms: claude_code."} +{"id": "b3d5b29fce203446cdecd85315ca956b84be43ffa140fb1ce08abb65d57ddeed", "repo_url": "https://github.com/whamp/pi-rlm", "name": "rlm", "description": "Process files too large to fit in context (>100KB, >2000 lines). Uses Python REPL for structural analysis, LLM queries for semantic reasoning, and subagents for final synthesis. Triggers - large file,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/whamp/pi-rlm/blob/master/skills/rlm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-08T18:22:49Z"}, "embedding_text": "rlm. Process files too large to fit in context (>100KB, >2000 lines). Uses Python REPL for structural analysis, LLM queries for semantic reasoning, and subagents for final synthesis. Triggers - large file, Platforms: claude_code."} +{"id": "7cb66614f21619369dfa5242e3496b969df3d774911fcdda66c2c32221ba5fca", "repo_url": "https://github.com/interstellar-code/claud-skills", "name": "template-skill", "description": "Replace with description of the skill and when Claude should use it.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/interstellar-code/claud-skills/blob/main/.claude/skills/template-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T10:24:44Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Claude should use it. Platforms: claude_code."} +{"id": "cd73b0d186d9cd2f7169094e581560a25b89aa9573a6d41563e953b339528fa1", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "ai-analyzer", "description": "AI\u9a71\u52a8\u7684\u7efc\u5408\u5065\u5eb7\u5206\u6790\u7cfb\u7edf\uff0c\u6574\u5408\u591a\u7ef4\u5ea6\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u5f02\u5e38\u6a21\u5f0f\u3001\u9884\u6d4b\u5065\u5eb7\u98ce\u9669\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u5efa\u8bae\u3002\u652f\u6301\u667a\u80fd\u95ee\u7b54\u548cAI\u5065\u5eb7\u62a5\u544a\u751f\u6210\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/ai-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "ai-analyzer. AI\u9a71\u52a8\u7684\u7efc\u5408\u5065\u5eb7\u5206\u6790\u7cfb\u7edf\uff0c\u6574\u5408\u591a\u7ef4\u5ea6\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u5f02\u5e38\u6a21\u5f0f\u3001\u9884\u6d4b\u5065\u5eb7\u98ce\u9669\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u5efa\u8bae\u3002\u652f\u6301\u667a\u80fd\u95ee\u7b54\u548cAI\u5065\u5eb7\u62a5\u544a\u751f\u6210\u3002 Platforms: claude_code."} +{"id": "174fc81f4c0a5a19fd8f696f6dde19c9d4a1643305f53fe3ad0685fba318ea6e", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "tcm-constitution-analyzer", "description": "\u5206\u6790\u4e2d\u533b\u4f53\u8d28\u6570\u636e\u3001\u8bc6\u522b\u4f53\u8d28\u7c7b\u578b\u3001\u8bc4\u4f30\u4f53\u8d28\u7279\u5f81,\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u517b\u751f\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8425\u517b\u3001\u8fd0\u52a8\u3001\u7761\u7720\u7b49\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/tcm-constitution-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "tcm-constitution-analyzer. \u5206\u6790\u4e2d\u533b\u4f53\u8d28\u6570\u636e\u3001\u8bc6\u522b\u4f53\u8d28\u7c7b\u578b\u3001\u8bc4\u4f30\u4f53\u8d28\u7279\u5f81,\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u517b\u751f\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8425\u517b\u3001\u8fd0\u52a8\u3001\u7761\u7720\u7b49\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002 Platforms: claude_code."} +{"id": "b4520d9e33c07856ed54381b8d196116142cd4bf3f16fac41999b4a06829a390", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "fitness-analyzer", "description": "\u5206\u6790\u8fd0\u52a8\u6570\u636e\u3001\u8bc6\u522b\u8fd0\u52a8\u6a21\u5f0f\u3001\u8bc4\u4f30\u5065\u8eab\u8fdb\u5c55\uff0c\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u8bad\u7ec3\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u6162\u6027\u75c5\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/fitness-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "fitness-analyzer. \u5206\u6790\u8fd0\u52a8\u6570\u636e\u3001\u8bc6\u522b\u8fd0\u52a8\u6a21\u5f0f\u3001\u8bc4\u4f30\u5065\u8eab\u8fdb\u5c55\uff0c\u5e76\u63d0\u4f9b\u4e2a\u6027\u5316\u8bad\u7ec3\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u6162\u6027\u75c5\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002 Platforms: claude_code."} +{"id": "c32eecdd4b407291987894c6f1314729c734d74c8d95f25e731f5af1df2d302b", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "food-database-query", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/food-database-query/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "food-database-query. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1d2b6ce56a96d9406a0cba7a4025e05b75c88f0bfbc75a077d3e9f0480b3bbb8", "repo_url": "https://github.com/huifer/claude-ally-health", "name": "skin-health-analyzer", "description": "\u5206\u6790\u76ae\u80a4\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u76ae\u80a4\u95ee\u9898\u6a21\u5f0f\u3001\u8bc4\u4f30\u76ae\u80a4\u5065\u5eb7\u72b6\u51b5\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u76ae\u80a4\u5065\u5eb7\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8425\u517b\u3001\u6162\u6027\u75c5\u3001\u7528\u836f\u7b49\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huifer/claude-ally-health/blob/main/.claude/skills/skin-health-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 880, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T15:49:20Z"}, "embedding_text": "skin-health-analyzer. \u5206\u6790\u76ae\u80a4\u5065\u5eb7\u6570\u636e\u3001\u8bc6\u522b\u76ae\u80a4\u95ee\u9898\u6a21\u5f0f\u3001\u8bc4\u4f30\u76ae\u80a4\u5065\u5eb7\u72b6\u51b5\u3001\u63d0\u4f9b\u4e2a\u6027\u5316\u76ae\u80a4\u5065\u5eb7\u5efa\u8bae\u3002\u652f\u6301\u4e0e\u8425\u517b\u3001\u6162\u6027\u75c5\u3001\u7528\u836f\u7b49\u5176\u4ed6\u5065\u5eb7\u6570\u636e\u7684\u5173\u8054\u5206\u6790\u3002 Platforms: claude_code."} +{"id": "d63035fd158ca112b50b7ee343d3debd5e5cb7c9b3e91c78de055beba5e30062", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/.claude/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "787e0ae4047c6adacb9760a7baaa9bcc27cbc3402e63d93f4880dd82ebabd800", "repo_url": "https://github.com/waynesutton/convexskills", "name": "Convex Agents", "description": "Building AI agents with the Convex Agent component including thread management, tool integration, streaming responses, RAG patterns, and workflow orchestration", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "backend", "claude", "claude-skills", "convex", "database", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/convexskills/blob/main/skills/convex-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Convex Agents"}, "quality": {"stars": 401, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T01:49:59Z"}, "embedding_text": "Convex Agents. Building AI agents with the Convex Agent component including thread management, tool integration, streaming responses, RAG patterns, and workflow orchestration Categories: ai, backend, claude, claude-skills, convex, database, skills. Platforms: claude_code."} +{"id": "946b09d05bd471d1194df2177f7a5f9ab7922999e9aefe881a85d90f1dccb8fe", "repo_url": "https://github.com/testcontainers/claude-skills", "name": "testcontainers-go", "description": "A comprehensive guide for using Testcontainers for Go to write reliable integration tests with Docker containers in Go projects. Supports 62+ pre-configured modules for databases, message queues, clou", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/testcontainers/claude-skills/blob/main/plugins/testcontainers/skills/testcontainers-go/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-20T22:27:05Z"}, "embedding_text": "testcontainers-go. A comprehensive guide for using Testcontainers for Go to write reliable integration tests with Docker containers in Go projects. Supports 62+ pre-configured modules for databases, message queues, clou Platforms: claude_code."} +{"id": "f90a7ab447b618ebae7bff9056c273cca99aa287ed73dec82a1b2effd79e30e3", "repo_url": "https://github.com/serpro69/kotlin-faker", "name": "kotlin-faker", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 509, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-20T20:00:20Z"}, "embedding_text": "kotlin-faker. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "166312a9c3f4add3d34b5edb4104e175c956ba83067ea96d2d5c44c70533a0de", "repo_url": "https://github.com/brianlovin/claude-config", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianlovin/claude-config/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 353, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T17:52:51Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "010214415c8b92fc0006f7254730cc326ecedf929c18b0629e7697fe7b6d0aa5", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "skill-factory", "description": "Analyze session work and automatically convert reusable patterns into Claude Code skills. Use when: \"\uc138\uc158\uc744 \uc2a4\ud0ac\ub85c\", \"\uc2a4\ud0ac \ub9cc\ub4e4\uc5b4\", \"\uc774\uac70 \uc2a4\ud0ac\ub85c\", \"skill factory\", \"\uc774 \uc791\uc5c5 \uc790\ub3d9\ud654\ud574\", \"\uc2a4\ud0ac \ucd94\ucd9c\", \"make this a skill\", \"extract skill\", \"convert to skill\", \"\uc2a4\ud0ac \ud329\ud1a0\ub9ac\", \"\uc790\ub3d9 \uc2a4\ud0ac \uc0dd\uc131\". Differs from skill-creator (archived) and manage-skills (drift detection): this skill actively analyzes sessions, checks for duplicates, and creates skills via Agent Teams.\n", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/skill-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-factory"}, "quality": {"stars": 752, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T14:57:09Z"}, "embedding_text": "skill-factory. Analyze session work and automatically convert reusable patterns into Claude Code skills. Use when: \"\uc138\uc158\uc744 \uc2a4\ud0ac\ub85c\", \"\uc2a4\ud0ac \ub9cc\ub4e4\uc5b4\", \"\uc774\uac70 \uc2a4\ud0ac\ub85c\", \"skill factory\", \"\uc774 \uc791\uc5c5 \uc790\ub3d9\ud654\ud574\", \"\uc2a4\ud0ac \ucd94\ucd9c\", \"make this a skill\", \"extract skill\", \"convert to skill\", \"\uc2a4\ud0ac \ud329\ud1a0\ub9ac\", \"\uc790\ub3d9 \uc2a4\ud0ac \uc0dd\uc131\". Differs from skill-creator (archived) and manage-skills (drift detection): this skill actively analyzes sessions, checks for duplicates, and creates skills via Agent Teams.\n Platforms: claude_code."} +{"id": "436f4bec9bbb110f5b4bcd02b9858f7cdde3fdfbad782feef41e2d0f1d22fd87", "repo_url": "https://github.com/sunholo-data/ailang", "name": "AILANG Post-Release Tasks", "description": "Run automated post-release workflow (eval baselines, dashboard, docs) for AILANG releases. Executes 46-benchmark suite (medium/hard/stretch) + full standard eval with validation and progress reporting", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/post-release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "AILANG Post-Release Tasks. Run automated post-release workflow (eval baselines, dashboard, docs) for AILANG releases. Executes 46-benchmark suite (medium/hard/stretch) + full standard eval with validation and progress reporting Platforms: claude_code."} +{"id": "a312b7527ea4c9c6c62434c05575e1fe946e57aeeb021afdd0ce5e222f9e7bc6", "repo_url": "https://github.com/yi-john-huang/sdd-mcp", "name": "sdd-implement", "description": "Implementation guidelines for SDD workflow. Use when implementing features, applying TDD, checking security, or ensuring code quality. Invoked via /sdd-implement .", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yi-john-huang/sdd-mcp/blob/master/.claude/skills/sdd-implement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:53:04Z"}, "embedding_text": "sdd-implement. Implementation guidelines for SDD workflow. Use when implementing features, applying TDD, checking security, or ensuring code quality. Invoked via /sdd-implement . Platforms: claude_code."} +{"id": "a38c8c41d5a8530d843e3b20eeb14de2af9b1f1f41189476c00fe7459353a129", "repo_url": "https://github.com/sunholo-data/ailang", "name": "AILANG Sprint Planner", "description": "Analyze design docs, calculate velocity from recent work, and create realistic sprint plans with day-by-day breakdowns. Use when user asks to \"plan sprint\", \"create sprint plan\", or wants to estimate", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/sprint-planner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "AILANG Sprint Planner. Analyze design docs, calculate velocity from recent work, and create realistic sprint plans with day-by-day breakdowns. Use when user asks to \"plan sprint\", \"create sprint plan\", or wants to estimate Platforms: claude_code."} +{"id": "dc69e92283c7a8de077bc532f1bcb5c3a110a48b3ae61aeda3e29abea89b3a66", "repo_url": "https://github.com/yi-john-huang/sdd-mcp", "name": "sdd-tasks", "description": "Generate TDD task breakdown for SDD workflow. Use when breaking down design into implementable tasks with test-first approach. Invoked via /sdd-tasks .", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yi-john-huang/sdd-mcp/blob/master/.claude/skills/sdd-tasks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:53:04Z"}, "embedding_text": "sdd-tasks. Generate TDD task breakdown for SDD workflow. Use when breaking down design into implementable tasks with test-first approach. Invoked via /sdd-tasks . Platforms: claude_code."} +{"id": "d18b260af1dfbdd85e15b6e66620d1eb82f09d6370d564861e98c3a61cd39b22", "repo_url": "https://github.com/paulrobello/claude-office", "name": "character-sprite", "description": "Generate complete character sprite sheets for the Claude Office Visualizer agents. Creates all animation frames (idle, walking, typing, handoff, coffee) with consistent character design across all she", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrobello/claude-office/blob/main/.claude/skills/character-sprite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 433, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T21:44:14Z"}, "embedding_text": "character-sprite. Generate complete character sprite sheets for the Claude Office Visualizer agents. Creates all animation frames (idle, walking, typing, handoff, coffee) with consistent character design across all she Platforms: claude_code."} +{"id": "e790fc79b6ca05b25141043a7f0673b4a048fb3ca232c62a23f9e240fd0f3cd1", "repo_url": "https://github.com/zechenzhangagi/ai-research-skills", "name": "autoresearch", "description": "Orchestrates end-to-end autonomous AI research projects using a two-loop architecture. The inner loop runs rapid experiment iterations with clear optimization targets. The outer loop synthesizes resul", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zechenzhangagi/ai-research-skills/blob/main/0-autoresearch-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 9939, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T01:36:46Z"}, "embedding_text": "autoresearch. Orchestrates end-to-end autonomous AI research projects using a two-loop architecture. The inner loop runs rapid experiment iterations with clear optimization targets. The outer loop synthesizes resul Platforms: claude_code."} +{"id": "87db6fb999e6d5fd00f160533532ec38fc841621fbef94d4cfe36d8ff4daeecd", "repo_url": "https://github.com/mandubian/ccos", "name": "CCOS MCP Tools", "description": "Reference for all MCP tools exposed by the CCOS server for agent interactions", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mandubian/ccos/blob/main/.claude/skills/ccos-mcp-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T23:54:00Z"}, "embedding_text": "CCOS MCP Tools. Reference for all MCP tools exposed by the CCOS server for agent interactions Platforms: claude_code."} +{"id": "8d343fbd9113ba4461e36a3d099310cd71308d29c780009fd973d96dc793cbe6", "repo_url": "https://github.com/anthropics/claude-plugins-official", "name": "build-mcp-server", "description": "This skill should be used when the user asks to \"build an MCP server\", \"create an MCP\", \"make an MCP integration\", \"wrap an API for Claude\", \"expose tools to Claude\", \"make an MCP app\", or discusses b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/claude-plugins-official/blob/main/plugins/mcp-server-dev/skills/build-mcp-server/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 30585, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:04:10Z"}, "embedding_text": "build-mcp-server. This skill should be used when the user asks to \"build an MCP server\", \"create an MCP\", \"make an MCP integration\", \"wrap an API for Claude\", \"expose tools to Claude\", \"make an MCP app\", or discusses b Platforms: claude_code."} +{"id": "890b67c992e8212580adbdc2e0795d4958a5f984ff2ab6a68abde6c60ba71c58", "repo_url": "https://github.com/getaero-io/gtm-eng-skills", "name": "gtm-meta-skill", "description": "Use this skill for GTM prospecting, enrichment, qualification, and outbound workflows, especially when users mention Deepline, CSV processing, lead/account/contact research, waterfall enrichment, emai", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/getaero-io/gtm-eng-skills/blob/main/skills/build-tam/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 28, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T19:26:21Z"}, "embedding_text": "gtm-meta-skill. Use this skill for GTM prospecting, enrichment, qualification, and outbound workflows, especially when users mention Deepline, CSV processing, lead/account/contact research, waterfall enrichment, emai Platforms: claude_code."} +{"id": "2e2a28f5b93262425b30508612e1fd994f8a25617eeaa6b8570004e9a86e9441", "repo_url": "https://github.com/zhanghandong/makepad-skills", "name": "makepad-core", "description": "Entry point for Makepad core concepts including layout, widgets, events, and styling. Start here to learn UI fundamentals.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zhanghandong/makepad-skills/blob/main/skills/makepad-2.0-animation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 741, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-07T15:51:03Z"}, "embedding_text": "makepad-core. Entry point for Makepad core concepts including layout, widgets, events, and styling. Start here to learn UI fundamentals. Platforms: claude_code."} +{"id": "3834bc1c8b21df008fa227d630b79fcec66a308d7c19c95fc6284277093ce2ae", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "skill-creator", "description": "This skill guides users through creating custom skills for claude-code-setup. Use when users want to create a new command or context skill.", "source": ["skillhub", "topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 55, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T09:20:28Z"}, "embedding_text": "skill-creator. This skill guides users through creating custom skills for claude-code-setup. Use when users want to create a new command or context skill. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} +{"id": "ba785760659963e6a468e9d3da0c57728f0d2ca2b1989ae4b6d669600397c694", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "checkpoint", "description": "This skill provides a checkpoint and recovery mechanism for CFN Docker orchestration, enabling crash recovery, orphan container detection, and automated resumption of wave execution to prevent work lo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-sprint-execution/lib/checkpoint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "checkpoint. This skill provides a checkpoint and recovery mechanism for CFN Docker orchestration, enabling crash recovery, orphan container detection, and automated resumption of wave execution to prevent work lo Platforms: claude_code."} +{"id": "0e21e620bdc77d2ea0f1aa537c61dbbda9fca07afa93c109c38da96fdfbd6649", "repo_url": "https://github.com/buyoung/skills", "name": "biz-opportunity-scout", "description": "Identify and validate profitable business opportunities by analyzing market size (TAM/SAM/SOM), unit economics, competitive landscape, and PMF indicators. Generates comprehensive HTML reports with opp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/biz-opportunity-scout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "biz-opportunity-scout. Identify and validate profitable business opportunities by analyzing market size (TAM/SAM/SOM), unit economics, competitive landscape, and PMF indicators. Generates comprehensive HTML reports with opp Platforms: claude_code."} +{"id": "168658be7d3de8d9f3930b79a4d93ffa44109036bccf5f3ae2a72c701b866fef", "repo_url": "https://github.com/buyoung/skills", "name": "jetbrains-vmoptions", "description": "Provides JetBrains IDE VM options knowledge for version-specific GC selection and memory/performance tuning (JDK 17/21, IDE 222+). Use this skill whenever the user mentions JetBrains IDE performance,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/jetbrains-vmoptions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "jetbrains-vmoptions. Provides JetBrains IDE VM options knowledge for version-specific GC selection and memory/performance tuning (JDK 17/21, IDE 222+). Use this skill whenever the user mentions JetBrains IDE performance, Platforms: claude_code."} +{"id": "13af12c667679b7e32a5a1a35a958f0256da56d89ac76da25a39e010b1d6182e", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "claude-authenticity", "description": "Detect whether an API endpoint is backed by genuine Claude (not a wrapper, proxy, or impersonator) using 9 weighted rule-based checks that mirror the claude-verify project. Also extracts injected system prompts from providers that override Claude's identity. Fully self-contained \u2014 copy the code below and run, no extra packages beyond httpx. Use when the user wants to verify a Claude API key or endpoint, check if a third-party Claude service is authentic, audit API providers for Claude authenticity, test multiple models in parallel, or discover what system prompt a provider has injected.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/claude-authenticity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-authenticity"}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T09:40:18Z"}, "embedding_text": "claude-authenticity. Detect whether an API endpoint is backed by genuine Claude (not a wrapper, proxy, or impersonator) using 9 weighted rule-based checks that mirror the claude-verify project. Also extracts injected system prompts from providers that override Claude's identity. Fully self-contained \u2014 copy the code below and run, no extra packages beyond httpx. Use when the user wants to verify a Claude API key or endpoint, check if a third-party Claude service is authentic, audit API providers for Claude authenticity, test multiple models in parallel, or discover what system prompt a provider has injected. Platforms: claude_code."} +{"id": "b81b083ad421a674720c6928e79e1a5ae0b2e0aa5d361092af68ed26b6e87c67", "repo_url": "https://github.com/onurkanbakirci/awesome-skills", "name": "pdf", "description": "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 p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onurkanbakirci/awesome-skills/blob/main/public/skills/5e6f7a8b-9c0d-1e2f-3a4b-5c6d7e8f9a0b/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T14:03:20Z"}, "embedding_text": "pdf. 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 p Platforms: claude_code."} +{"id": "6394cb977ef4fe9a3cc702026e13346b1cf9fc4d1bd4b1b21c861c60934f53c8", "repo_url": "https://github.com/buyoung/skills", "name": "system-prompt-creator", "description": "A skill that analyzes user requirements to generate production-ready system prompts. It determines whether a single or multi-prompt architecture is needed and queries for missing information if requir", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buyoung/skills/blob/main/skills/system-prompt-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T22:54:08Z"}, "embedding_text": "system-prompt-creator. A skill that analyzes user requirements to generate production-ready system prompts. It determines whether a single or multi-prompt architecture is needed and queries for missing information if requir Platforms: claude_code."} +{"id": "783fd5bf5c94e5f61eac9f13f856efa3c54550958f14aa2a00f0f5781ee02c6f", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "loader", "description": "This skill provides high-performance contextual skill loading for AI agents, using LRU caching and SHA256 validation to ensure agents receive only relevant skills based on their type, task, and operat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-skill-management/lib/loader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "loader. This skill provides high-performance contextual skill loading for AI agents, using LRU caching and SHA256 validation to ensure agents receive only relevant skills based on their type, task, and operat Platforms: claude_code."} +{"id": "f4078e7a8ccca2c7b416f506931fc575ea8e6940b00122a049ec16b3c2de8bda", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/document-skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents ( Platforms: claude_code."} +{"id": "afdfa6397ef8f407dee2bb0c4b75ad50eee26e0426ac894cc941a0e3d41252db", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "response-rater", "description": "Run headless AI CLIs (Claude Code `claude`, Google `gemini`, optionally GitHub `copilot`) to rate an assistant response against a rubric and return actionable feedback plus a rewritten improved respon", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/response-rater/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "response-rater. Run headless AI CLIs (Claude Code `claude`, Google `gemini`, optionally GitHub `copilot`) to rate an assistant response against a rubric and return actionable feedback plus a rewritten improved respon Platforms: claude_code."} +{"id": "8693da485e999b2f305ba9fc2bbe197ded992ec535c699afb11d673b6d920304", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "pdf", "description": "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.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/document-skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:28:52Z"}, "embedding_text": "pdf. 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. Platforms: claude_code."} +{"id": "8097feeb97d58728d8a034bfa0c190e6d4bf72c8c43781a96e09e6b64794cc19", "repo_url": "https://github.com/aaaaqwq/agi-super-team", "name": "openclaw-master-skills", "description": "A curated index of 127+ high-quality OpenClaw skills sourced from the community \u2014 including skills for AI tools, productivity, marketing, frontend, mobile, backend, database, auth, DevOps, and web aut", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaaaqwq/agi-super-team/blob/master/skills/last30days-skill/variants/open/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 72, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T05:27:35Z"}, "embedding_text": "openclaw-master-skills. A curated index of 127+ high-quality OpenClaw skills sourced from the community \u2014 including skills for AI tools, productivity, marketing, frontend, mobile, backend, database, auth, DevOps, and web aut Platforms: claude_code."} +{"id": "5de396901cc2f32b059c338d77f99e30c57dd3194c0fc6084233dafc0d632f7d", "repo_url": "https://github.com/vultisig/vultisig-sdk", "name": "vultisig", "description": "MPC wallet for AI agents. Secure multi-chain crypto operations with threshold signing across 36+ blockchains. Routes to CLI (shell commands) or SDK (TypeScript) based on your use case.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vultisig/vultisig-sdk/blob/main/skills/vultisig-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T19:31:25Z"}, "embedding_text": "vultisig. MPC wallet for AI agents. Secure multi-chain crypto operations with threshold signing across 36+ blockchains. Routes to CLI (shell commands) or SDK (TypeScript) based on your use case. Platforms: claude_code."} +{"id": "eb084286d71ead2e7974892548aa1c8a2e9ad440d770b01d1579286b859b554f", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "keyword-optimizer", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/app-store/keyword-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "keyword-optimizer. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1b258ecec47186c230a1003bfd33f0906af02248e580056695e9268f15fe8002", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "accessibility-generator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/accessibility-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "accessibility-generator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2a8efed6170a78208ef676eb4f69ef24b26630d28b228eefee3459785ac34659", "repo_url": "https://github.com/secondsky/claude-skills", "name": "vercel-blob", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/vercel-blob/skills/vercel-blob/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vercel-blob"}, "quality": {"stars": 178, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:27:15Z"}, "embedding_text": "vercel-blob. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} +{"id": "0b6f4dbbd159027586793741aedf5b54413534ab35a36291e93c3db480f3e8ee", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "skill-idea-miner", "description": "Mine Claude Code session logs for skill idea candidates. Use when running the weekly skill generation pipeline to extract, score, and backlog new skill ideas from recent coding sessions.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/skills/skill-idea-miner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "skill-idea-miner. Mine Claude Code session logs for skill idea candidates. Use when running the weekly skill generation pipeline to extract, score, and backlog new skill ideas from recent coding sessions. Platforms: claude_code."} +{"id": "7aca09efa8419d8a1ae7c895b205b41ce311055d03bed965ca06a70d495d474e", "repo_url": "https://github.com/2001haru/closeclaw", "name": "complex_task", "description": "Workflow for handling multi-step and complex tasks using a Todo-Driven approach.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/2001haru/closeclaw/blob/main/closeclaw/skills/complex_task/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-31T11:27:42Z"}, "embedding_text": "complex_task. Workflow for handling multi-step and complex tasks using a Todo-Driven approach. Platforms: claude_code."} +{"id": "1d47cdc5fa12151b93de433bb4e9c9e4b71ba3f619e03367e3096a04fb0fc995", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "API Designer", "description": "Design REST and GraphQL APIs. Use when creating backend APIs, defining API contracts, or integrating third-party services. Covers endpoint design, authentication, versioning, documentation, and best p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/api-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "API Designer. Design REST and GraphQL APIs. Use when creating backend APIs, defining API contracts, or integrating third-party services. Covers endpoint design, authentication, versioning, documentation, and best p Platforms: claude_code."} +{"id": "506a1b80b266a153e20751ed7e46f87effc5f394261bb0c1c9f35141eaba3dd7", "repo_url": "https://github.com/centminmod/claude-code-devcontainers", "name": "claude-docs-consultant", "description": "Consult official Claude Code documentation from docs.claude.com using selective fetching. Use this skill when working on Claude Code hooks, skills, subagents, MCP servers, or any Claude Code feature t", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/centminmod/claude-code-devcontainers/blob/master/.claude/skills/claude-docs-consultant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-01T02:12:02Z"}, "embedding_text": "claude-docs-consultant. Consult official Claude Code documentation from docs.claude.com using selective fetching. Use this skill when working on Claude Code hooks, skills, subagents, MCP servers, or any Claude Code feature t Platforms: claude_code."} +{"id": "b956e3f6789f84578d569240973741ae2122794eb3584223b5474519faf2ea15", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "swarm-spawning", "description": "Spawn agents and teammates in Claude Code swarms. Use when choosing between subagents vs teammates, selecting agent types (Explore, Plan, general-purpose, plugin agents), configuring spawn backends (i", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/swarm-spawning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "swarm-spawning. Spawn agents and teammates in Claude Code swarms. Use when choosing between subagents vs teammates, selecting agent types (Explore, Plan, general-purpose, plugin agents), configuring spawn backends (i Platforms: claude_code."} +{"id": "3d1d3a7ddafae42d9b428ed06a3649e5e39be09c36d729fc08f0d10067373def", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Context Preserver", "description": "Automatically save and restore development context to minimize cognitive load when resuming work. Use when switching tasks, taking breaks, or returning after interruptions. Captures mental state, file", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/context-preserver/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Context Preserver. Automatically save and restore development context to minimize cognitive load when resuming work. Use when switching tasks, taking breaks, or returning after interruptions. Captures mental state, file Platforms: claude_code."} +{"id": "5399cc3d954f3d26acccb493b943fb64c206c324243b2116a088fdb9033942ea", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "codex-cli-bridge", "description": "Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/claude-code-skill-factory/generated-skills/codex-cli-bridge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "codex-cli-bridge. Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools Platforms: claude_code."} +{"id": "836e35e9e5f0988689ebf9a77de5caf1aebf7f5265b76d9042c993bfd6e60211", "repo_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow", "name": "SRT Social Summary", "description": "This skill should be used when the user asks to \"generate social media summary from srt\", \"create platform-specific descriptions\", \"generate Facebook post from transcript\", \"create YouTube description from srt\", \"write Thread post from subtitles\", \"\u751f\u6210\u5f71\u7247\u4ecb\u7d39\", \"\u6839\u64da\u9010\u5b57\u7a3f\u751f\u6210\u8cbc\u6587\", or needs to create engaging social media content from SRT subtitle files for Facebook, Thread, or YouTube platforms.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow/blob/master/.agent/skills/srt-social-summary/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install SRT Social Summary"}, "quality": {"stars": 187, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-28T06:28:55Z"}, "embedding_text": "SRT Social Summary. This skill should be used when the user asks to \"generate social media summary from srt\", \"create platform-specific descriptions\", \"generate Facebook post from transcript\", \"create YouTube description from srt\", \"write Thread post from subtitles\", \"\u751f\u6210\u5f71\u7247\u4ecb\u7d39\", \"\u6839\u64da\u9010\u5b57\u7a3f\u751f\u6210\u8cbc\u6587\", or needs to create engaging social media content from SRT subtitle files for Facebook, Thread, or YouTube platforms. Platforms: claude_code."} +{"id": "fbadb7e8448379956c75c4533b90a357ccc62902a748db89a4691e2811d64017", "repo_url": "https://github.com/jabrena/cursor-rules-java", "name": "cursor-rules-java", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jabrena/cursor-rules-java/blob/main/skills/001-commands-inventory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 407, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:01:09Z"}, "embedding_text": "cursor-rules-java. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c69734d049092a3c22805712ae269ad345aee1ddee75651ce364600ad6bbcd9f", "repo_url": "https://github.com/plurigrid/asi", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work Platforms: claude_code."} +{"id": "898c1573c4fc3ea9b97371c81cb2782f855a9f381f41de06005438ef0865d13f", "repo_url": "https://github.com/paulrberg/agent-skills", "name": "tailwind-css", "description": "This skill should be used when the user asks to \"style with Tailwind\", \"add Tailwind classes\", \"fix Tailwind styles\", \"use tailwind-variants\", \"add animations with tw-animate-css\", \"configure Tailwind", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paulrberg/agent-skills/blob/main/skills/tailwind-css/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T14:10:46Z"}, "embedding_text": "tailwind-css. This skill should be used when the user asks to \"style with Tailwind\", \"add Tailwind classes\", \"fix Tailwind styles\", \"use tailwind-variants\", \"add animations with tw-animate-css\", \"configure Tailwind Platforms: claude_code."} +{"id": "48a0e02b33580960a6548c6edd457bb3bf7f74f94000ef1248f4b5e3abf648b8", "repo_url": "https://github.com/mandubian/ccos", "name": "Agent Workflow Patterns", "description": "Common patterns for building agent workflows in CCOS", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mandubian/ccos/blob/main/.claude/skills/agent-workflows/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T23:54:00Z"}, "embedding_text": "Agent Workflow Patterns. Common patterns for building agent workflows in CCOS Platforms: claude_code."} +{"id": "2022aac0971782fee6706cfcc1ae797029b63e9dc4a863130867cedc6ae34661", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Design Doc Creator", "description": "Create AILANG design documents in the correct format and location. Use when user asks to create a design doc, plan a feature, or document a design. Handles both planned/ and implemented/ docs with pro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/design-doc-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Design Doc Creator. Create AILANG design documents in the correct format and location. Use when user asks to create a design doc, plan a feature, or document a design. Handles both planned/ and implemented/ docs with pro Platforms: claude_code."} +{"id": "9f813a6a3bdafe2f3a1a169170e56f7cec3b6d0ecb49e7290d4070b22e22e173", "repo_url": "https://github.com/uberskillsdev/uberskills", "name": "Test Skill", "description": "A skill for testing the importer module", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/uberskillsdev/uberskills/blob/master/packages/skill-engine/src/__tests__/fixtures/invalid-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-04T10:28:51Z"}, "embedding_text": "Test Skill. A skill for testing the importer module Platforms: claude_code."} +{"id": "f551b2e7a6c32908bed14b8ad46ecd86543206f8b2a985e8d1313e6556988fe3", "repo_url": "https://github.com/vercel/next-devtools-mcp", "name": "next-devtools-mcp", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 771, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T17:10:06Z"}, "embedding_text": "next-devtools-mcp. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8a69488a74a60d7da7f29d865a66f246d1356fcac282d15c6b517396339f9b45", "repo_url": "https://github.com/incomestreamsurfer/claude-skills-collection", "name": "agent-skills-guide", "description": "Guide for creating, managing, and using Claude Code Agent Skills. Use when the user asks about Skills, wants to create a new Skill, or needs help with SKILL.md files.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/incomestreamsurfer/claude-skills-collection/blob/main/skills/agent-skills-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T05:35:33Z"}, "embedding_text": "agent-skills-guide. Guide for creating, managing, and using Claude Code Agent Skills. Use when the user asks about Skills, wants to create a new Skill, or needs help with SKILL.md files. Platforms: claude_code."} +{"id": "2fbae9f80f70fceceb132133bfa8bacfb5ff450e23ffc656bb11e93ad3b55855", "repo_url": "https://github.com/sunholo-data/ailang", "name": "AILANG Sprint Executor", "description": "Execute approved sprint plans with test-driven development, continuous linting, progress tracking, and pause points. Use when user says \"execute sprint\", \"start sprint\", or wants to implement an appro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/sprint-executor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "AILANG Sprint Executor. Execute approved sprint plans with test-driven development, continuous linting, progress tracking, and pause points. Use when user says \"execute sprint\", \"start sprint\", or wants to implement an appro Platforms: claude_code."} +{"id": "b09416c3142a21ee1e1f3b927586444390ccaf560cd64040b7dfa3c372b153f0", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Coordinator Helper", "description": "Manage coordinator daemon tasks, approve/reject work, monitor autonomous agents. Use when user asks to delegate tasks, check task status, review agent work, manage the coordinator, or use GitHub-drive", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/coordinator-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Coordinator Helper. Manage coordinator daemon tasks, approve/reject work, monitor autonomous agents. Use when user asks to delegate tasks, check task status, review agent work, manage the coordinator, or use GitHub-drive Platforms: claude_code."} +{"id": "9a70e18e16364bc10b41bec76f5b7f66e51e7320f805b215cf9dea324cae98bb", "repo_url": "https://github.com/sunholo-data/ailang", "name": "AILANG Release Manager", "description": "Create new AILANG releases with version bumps, changelog updates, git tags, and CI/CD verification. Use when user says \"ready to release\", \"create release\", mentions version numbers, or wants to publi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/release-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "AILANG Release Manager. Create new AILANG releases with version bumps, changelog updates, git tags, and CI/CD verification. Use when user says \"ready to release\", \"create release\", mentions version numbers, or wants to publi Platforms: claude_code."} +{"id": "4a4ca13c311f8d59fb827ddba9b6d45c66aee740c12a544031bb4162f2888d90", "repo_url": "https://github.com/onurkanbakirci/awesome-skills", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onurkanbakirci/awesome-skills/blob/main/public/skills/5e6f7a8b-9c0d-1e2f-3a4b-5c6d7e8f9a0b/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T14:03:20Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "aeaf3c1fa567305bf6eaa82c8029585bb3c6cc111bbe628af7a8cbbf68345c60", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "internal-comms", "description": "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 com", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills-templates/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "internal-comms. 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 com Platforms: claude_code."} +{"id": "adc47c011d2d45ebef44dffe02a25616a2a4b8114f4179212a84c7d800a79eba", "repo_url": "https://github.com/matsuni-kk/agent_template_public", "name": "subagent-generate", "description": "Skills\u7fa4\u306b\u5bfe\u5fdc\u3059\u308b\u30b5\u30d6\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\uff08.claude/agents/*.md\uff09\u3092\u8a2d\u8a08\u30fb\u751f\u6210\u3059\u308b\u3002\u300c\u30b5\u30d6\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u4f5c\u6210\u300d\u300c\u4e26\u5217\u51e6\u7406\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u300d\u300c\u5c02\u9580\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u300d\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matsuni-kk/agent_template_public/blob/main/.claude/skills/subagent-generate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T07:11:55Z"}, "embedding_text": "subagent-generate. Skills\u7fa4\u306b\u5bfe\u5fdc\u3059\u308b\u30b5\u30d6\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\uff08.claude/agents/*.md\uff09\u3092\u8a2d\u8a08\u30fb\u751f\u6210\u3059\u308b\u3002\u300c\u30b5\u30d6\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u4f5c\u6210\u300d\u300c\u4e26\u5217\u51e6\u7406\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u300d\u300c\u5c02\u9580\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u300d\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002 Platforms: claude_code."} +{"id": "30111808189a3171d8608d6c687078880f0495124abbf0f673970dd2394f93b4", "repo_url": "https://github.com/avifenesh/agentsys", "name": "reference", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avifenesh/agentsys/blob/main/.kiro/skills/consult/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 873, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T23:30:45Z"}, "embedding_text": "reference. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e8e7693d1e2f55878d8d8488f915b05332e2dcceb22dcbe334f709266572c476", "repo_url": "https://github.com/pr-pm/prpm", "name": "creating-claude-agents", "description": "Use when creating or improving Claude Code agents. Expert guidance on agent file structure, frontmatter, persona definition, tool access, model selection, and validation against schema.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pr-pm/prpm/blob/main/.claude/skills/creating-claude-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T10:00:50Z"}, "embedding_text": "creating-claude-agents. Use when creating or improving Claude Code agents. Expert guidance on agent file structure, frontmatter, persona definition, tool access, model selection, and validation against schema. Platforms: claude_code."} +{"id": "aab0b7df912b22c2888056d34e1cc7f27939385fb55c1f213b0e6ec192150972", "repo_url": "https://github.com/sionic-ai/sionic-maestro-skills", "name": "maestro-workflow", "description": "Multi-LLM orchestration implementing the 5-stage coding workflow: Example Analysis \u2192 Hypothesis \u2192 Implementation \u2192 Debug Loop \u2192 Recursive Improvement.\nBased on \"Towards a Science of Scaling Agent Syst", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sionic-ai/sionic-maestro-skills/blob/main/.claude/skills/maestro-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T07:37:40Z"}, "embedding_text": "maestro-workflow. Multi-LLM orchestration implementing the 5-stage coding workflow: Example Analysis \u2192 Hypothesis \u2192 Implementation \u2192 Debug Loop \u2192 Recursive Improvement.\nBased on \"Towards a Science of Scaling Agent Syst Platforms: claude_code."} +{"id": "6388ded84c61408c205c2e74624cf8afaf57bf1c01059d6ec7489a7257237080", "repo_url": "https://github.com/plurigrid/asi", "name": "tailscale", "description": "Mesh VPN.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.opencode/skill/tailscale-file-transfer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "tailscale. Mesh VPN. Platforms: claude_code."} +{"id": "9dfc36bc99c1f218e8e5995686ff9654b4f43f86219bed19a07ba34d3dcaa841", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "claude-cowork-guidelines", "description": "R\u00e8gles comportementales pour \u00e9viter les erreurs courantes des LLM dans Claude Cowork. S'active pour TOUTES les t\u00e2ches (documents, spreadsheets, pr\u00e9sentations, scripts, automatisations). Bas\u00e9 sur les o", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/design/claude-cowork-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "claude-cowork-guidelines. R\u00e8gles comportementales pour \u00e9viter les erreurs courantes des LLM dans Claude Cowork. S'active pour TOUTES les t\u00e2ches (documents, spreadsheets, pr\u00e9sentations, scripts, automatisations). Bas\u00e9 sur les o Platforms: claude_code."} +{"id": "c3c7befecdaeac418f469befc968357358226c025fe3733aebc7b00a8351c40c", "repo_url": "https://github.com/martinemde/skillet", "name": "claude-spec-skill", "description": "A skill demonstrating all Claude Code spec fields.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinemde/skillet/blob/main/testdata/claude-spec-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T05:19:06Z"}, "embedding_text": "claude-spec-skill. A skill demonstrating all Claude Code spec fields. Platforms: claude_code."} +{"id": "59ae44e01d5599d02fe8203b1cb062599bb50bd234e97d909fb975112da461a1", "repo_url": "https://github.com/imgoodbai/goodable", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/imgoodbai/goodable/blob/main/resources/demo/skill-demo/builtin-skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 184, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T09:23:17Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts Platforms: claude_code."} +{"id": "8d469c9b6d55815c069d02844b35a8d3b8e1c9f56ae3d907115a8204eb1b7442", "repo_url": "https://github.com/pact-foundation/pact-python", "name": "pact-python", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 677, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:03:16Z"}, "embedding_text": "pact-python. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "d134f51589b0e4a5c2b16f010fcc7c35f0db7dd6a43ea3027dfda1c021b0d46f", "repo_url": "https://github.com/iamfakeguru/claude-md", "name": "claude-md", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iamfakeguru/claude-md/blob/main/.agents/skills/agent-md-verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 954, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-27T21:41:49Z"}, "embedding_text": "claude-md. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "4c268bd628d776e32562149155409d6c849cc17cf682510fecde295a36e1d48a", "repo_url": "https://github.com/doggy8088/better-rm", "name": "better-rm", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 257, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-09T10:32:22Z"}, "embedding_text": "better-rm. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "1405d2f4d9f7ccdf8a609224739816238f20bd3941500893bfc773e264e7ce1e", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "pdf", "description": "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 p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "pdf. 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 p Platforms: claude_code."} +{"id": "a960bb1d5fdb597f2749394e40c164431d543a953cafa018860fc95375e14f67", "repo_url": "https://github.com/aspiers/ai-config", "name": "describing-PRs", "description": "Generate a PR description for the current branch. Writes Markdown to .git/magit/posts/new-pullreq for use with magit-forge.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/describing-prs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "describing-PRs. Generate a PR description for the current branch. Writes Markdown to .git/magit/posts/new-pullreq for use with magit-forge. Platforms: claude_code."} +{"id": "fa1aaa77e1617de03fae7aeca4d87f19d052e6d7235d60b2a85e978c19f4049e", "repo_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit", "name": "project-setup", "description": "Initialize Claude Code framework infrastructure for any project", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/applied-artificial-intelligence/claude-code-toolkit/blob/main/plugins/system/skills/project-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T12:36:10Z"}, "embedding_text": "project-setup. Initialize Claude Code framework infrastructure for any project Platforms: claude_code."} +{"id": "10ae0cde56fae32aa83b4362192312efddf6c84f331872e8c8abc06be17a406e", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "feature-flags", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/feature-flags/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "feature-flags. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "00a61d2a175f44bf8103cec8840a956ef2be1ff09035feb7f67638f1e45019fd", "repo_url": "https://github.com/r3bl-org/r3bl-open-core", "name": "write-documentation", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/r3bl-org/r3bl-open-core/blob/main/.agents/skills/write-documentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 475, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T20:45:39Z"}, "embedding_text": "write-documentation. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6f09481b7718717e16134bf6cb5ce1b92ff4c1e051af4d6bb4ec05ae235dbd73", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "summarize-session", "description": "Summarize the current session and generate reusable Claude rules, skills, or commands.", "source": ["skillhub", "topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/summarize-session/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install summarize-session"}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "summarize-session. Summarize the current session and generate reusable Claude rules, skills, or commands. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} +{"id": "4b67a5fae16f12a430a0b6e5ae96e080d69357a4650db4f812771677db1a76ad", "repo_url": "https://github.com/aaddrick/claude-desktop-debian", "name": "triage", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaddrick/claude-desktop-debian/blob/main/.claude/skills/triage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 5036, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:24:01Z"}, "embedding_text": "triage. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c7a1e63bfd0d28eb913af61b180e8b1d70d1821d83f329776aa230f9232b4b48", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "agent-capability-analyzer", "description": "Runs the description-drift experiment \u2014 spawns all Claude Code agents simultaneously to collect self-reported capabilities, then compares them against static frontmatter descriptions to reveal how rel", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/agent-capability-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "agent-capability-analyzer. Runs the description-drift experiment \u2014 spawns all Claude Code agents simultaneously to collect self-reported capabilities, then compares them against static frontmatter descriptions to reveal how rel Platforms: claude_code."} +{"id": "b6989e1e872f218e06232ac17acd68cd8add8ffcb883b1f191ca24c2898ecbe8", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "hook-creator", "description": "Guide for creating Claude Code plugin hooks \u2014 Node.js .cjs scripts only, hooks.json configuration, event selection, prompt-based vs command hooks, ${CLAUDE_PLUGIN_ROOT} paths, stdio suppression, timeo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/hook-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "hook-creator. Guide for creating Claude Code plugin hooks \u2014 Node.js .cjs scripts only, hooks.json configuration, event selection, prompt-based vs command hooks, ${CLAUDE_PLUGIN_ROOT} paths, stdio suppression, timeo Platforms: claude_code."} +{"id": "f7bac6c95d874050faf5d4a80193293bf14195438bc86dd5099a8df64e18a247", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "find-cause", "description": "Wrap investigation requests with evidence-chain discipline. Use when the user asks to find out why something happens, look into something, research a root cause, debug an issue, or investigate unexpec", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/find-cause/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "find-cause. Wrap investigation requests with evidence-chain discipline. Use when the user asks to find out why something happens, look into something, research a root cause, debug an issue, or investigate unexpec Platforms: claude_code."} +{"id": "25d8ecb2d621e62dca28d6232f8c316f30210943c1a54964d724e52c5b441191", "repo_url": "https://github.com/sun-protocol/sunhat", "name": "Sunhat TRON Development", "description": "The official detailed guide for developing, testing, deploying, and auditing TRON smart contracts using the Sunhat toolkit.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sun-protocol/sunhat/blob/main/skills/sunhat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T14:13:49Z"}, "embedding_text": "Sunhat TRON Development. The official detailed guide for developing, testing, deploying, and auditing TRON smart contracts using the Sunhat toolkit. Platforms: claude_code."} +{"id": "9e336194b4d02eca1a1c41c3e5dfe239376531f8a7e6e17fe1fdc520c788b216", "repo_url": "https://github.com/sugarforever/01coder-agent-skills", "name": "Next.js Security Scan", "description": "Comprehensive security vulnerability scanner for Next.js and TypeScript/JavaScript projects. Detects OWASP Top 10 vulnerabilities, XSS, injection flaws, authentication issues, hardcoded secrets, and N", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sugarforever/01coder-agent-skills/blob/main/skills/nextjs-security-scan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 120, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:52:39Z"}, "embedding_text": "Next.js Security Scan. Comprehensive security vulnerability scanner for Next.js and TypeScript/JavaScript projects. Detects OWASP Top 10 vulnerabilities, XSS, injection flaws, authentication issues, hardcoded secrets, and N Platforms: claude_code."} +{"id": "0168b4d7163078e80a109d9b4f67ca59e6df5372145e243bb3131cddb64e9b6b", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/document-skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:28:52Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas Platforms: claude_code."} +{"id": "7f71cd032d8d331a927862e9b93182705cbc7207e570d8b70393ca8275f0a156", "repo_url": "https://github.com/aitytech/agentkits-marketing", "name": "translate-readme", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aitytech/agentkits-marketing/blob/main/skills/ab-test-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 546, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-10T11:32:08Z"}, "embedding_text": "translate-readme. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8a324ee613b1c56912847f0e8bed997d79b8ee120ebb60a685b051410802bc74", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts Platforms: claude_code."} +{"id": "b035821561bbc257600bf0f918a5b148fd33be85c7f943b381fc0731d5d73861", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Trace Debugger", "description": "Debug performance issues and understand code flow using AILANG telemetry traces. Use when user asks to debug slow compilation, analyze benchmarks, find bottlenecks, investigate hangs, or understand sy", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/trace-debugger/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Trace Debugger. Debug performance issues and understand code flow using AILANG telemetry traces. Use when user asks to debug slow compilation, analyze benchmarks, find bottlenecks, investigate hangs, or understand sy Platforms: claude_code."} +{"id": "5fb1e3a7b3d5343df7d6f99ea96e9f5bec29e23d546a04a2d32b5ffc1d76cab4", "repo_url": "https://github.com/aspiers/ai-config", "name": "skill-authoring", "description": "Create and maintain Claude Code skills following Anthropic best practices. Use when building new skills, refactoring existing ones, or ensuring skills follow official guidelines for structure, naming,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/skill-authoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "skill-authoring. Create and maintain Claude Code skills following Anthropic best practices. Use when building new skills, refactoring existing ones, or ensuring skills follow official guidelines for structure, naming, Platforms: claude_code."} +{"id": "4be80b91ee16c872aafafd7a119610278042dc7cfebd29874930833ae353db9e", "repo_url": "https://github.com/daffy0208/ai-dev-standards", "name": "Figma Developer", "description": "Extract components from Figma, convert designs to React components, sync design tokens, and generate code from designs. Bridge the gap between design and code with automated workflows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daffy0208/ai-dev-standards/blob/main/skills/figma-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T03:50:17Z"}, "embedding_text": "Figma Developer. Extract components from Figma, convert designs to React components, sync design tokens, and generate code from designs. Bridge the gap between design and code with automated workflows. Platforms: claude_code."} +{"id": "81dde38d82dc58dccd5d5e751321e1428bfc428c0be967d21266a655207232b3", "repo_url": "https://github.com/mandubian/ccos", "name": "Capability Development", "description": "Guide for creating, registering, and managing CCOS/RTFS capabilities", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mandubian/ccos/blob/main/.claude/skills/capability-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T23:54:00Z"}, "embedding_text": "Capability Development. Guide for creating, registering, and managing CCOS/RTFS capabilities Platforms: claude_code."} +{"id": "271cf7a648706072e05bf88c618469f3d639d7803f1d6218451d82760b39f51c", "repo_url": "https://github.com/anthropics/financial-services-plugins", "name": "check-model", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anthropics/financial-services-plugins/blob/main/plugins/agent-plugins/earnings-reviewer/skills/audit-xls/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32177, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T20:53:09Z"}, "embedding_text": "check-model. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "95216759d905f430087077a2b2adf19030f081f2e71b1b8c7b012eabfb5c02dd", "repo_url": "https://github.com/a-ariff/ariff-claude-plugins", "name": "plugin-creator", "description": "Use this skill when asked to \"create a plugin\", \"build a new plugin\", \"make a Claude Code plugin\", \"scaffold plugin\", \"plugin structure\", \"add commands/agents/skills/hooks to plugin\", or when helping", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/a-ariff/ariff-claude-plugins/blob/main/plugins/plugin-creator/skills/plugin-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-28T20:44:19Z"}, "embedding_text": "plugin-creator. Use this skill when asked to \"create a plugin\", \"build a new plugin\", \"make a Claude Code plugin\", \"scaffold plugin\", \"plugin structure\", \"add commands/agents/skills/hooks to plugin\", or when helping Platforms: claude_code."} +{"id": "5c75028ef038604d2f4c7261c3ace9f63756382f56e6015738bf3e71a0d2da1c", "repo_url": "https://github.com/rhel-lightspeed/linux-mcp-server", "name": "linux-mcp-server", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 248, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T20:08:37Z"}, "embedding_text": "linux-mcp-server. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "cadfec74492b36fa3c64db498955df8e5fcaf6e24ba106d1dcb48715e276ee98", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "pptx", "description": "\u6f14\u793a\u6587\u7a3f\u521b\u5efa\u3001\u7f16\u8f91\u548c\u5206\u6790\u3002\u5f53 Claude \u9700\u8981\u5904\u7406\u6f14\u793a\u6587\u7a3f\uff08.pptx \u6587\u4ef6\uff09\u65f6\uff1a(1) \u521b\u5efa\u65b0\u6f14\u793a\u6587\u7a3f\uff0c(2) \u4fee\u6539\u6216\u7f16\u8f91\u5185\u5bb9\uff0c(3) \u5904\u7406\u5e03\u5c40\uff0c(4) \u6dfb\u52a0\u8bc4\u8bba\u6216\u6f14\u8bb2\u8005\u5907\u6ce8\uff0c\u6216\u4efb\u4f55\u5176\u4ed6\u6f14\u793a\u6587\u7a3f\u4efb\u52a1", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/document-skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "pptx. \u6f14\u793a\u6587\u7a3f\u521b\u5efa\u3001\u7f16\u8f91\u548c\u5206\u6790\u3002\u5f53 Claude \u9700\u8981\u5904\u7406\u6f14\u793a\u6587\u7a3f\uff08.pptx \u6587\u4ef6\uff09\u65f6\uff1a(1) \u521b\u5efa\u65b0\u6f14\u793a\u6587\u7a3f\uff0c(2) \u4fee\u6539\u6216\u7f16\u8f91\u5185\u5bb9\uff0c(3) \u5904\u7406\u5e03\u5c40\uff0c(4) \u6dfb\u52a0\u8bc4\u8bba\u6216\u6f14\u8bb2\u8005\u5907\u6ce8\uff0c\u6216\u4efb\u4f55\u5176\u4ed6\u6f14\u793a\u6587\u7a3f\u4efb\u52a1 Platforms: claude_code."} +{"id": "81c50c4f4d4a2cfbb51fca376bd10a11f502d079961feb3a9ec53dd2a9c21cbc", "repo_url": "https://github.com/lllllllama/ai-paper-reproduction-skill", "name": "paper-context-resolver", "description": "Rigor Paper Context helper for README-first deep learning repo reproduction. Use only when the README and repository files leave a narrow reproduction-critical gap and the task is to resolve a specifi", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lllllllama/ai-paper-reproduction-skill/blob/main/skills/paper-context-resolver/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 466, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T07:43:54Z"}, "embedding_text": "paper-context-resolver. Rigor Paper Context helper for README-first deep learning repo reproduction. Use only when the README and repository files leave a narrow reproduction-critical gap and the task is to resolve a specifi Platforms: claude_code."} +{"id": "6dff5af919f44a24ad2284a64c565ba74ce3f3c133155ba583e5bb91cfb243c5", "repo_url": "https://github.com/lllllllama/ai-paper-reproduction-skill", "name": "repo-intake-and-plan", "description": "Rigor Intake helper for README-first deep learning repo reproduction. Use when the task is specifically to scan a repository, read the README and common project files, extract documented commands, cla", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lllllllama/ai-paper-reproduction-skill/blob/main/skills/repo-intake-and-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 466, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T07:43:54Z"}, "embedding_text": "repo-intake-and-plan. Rigor Intake helper for README-first deep learning repo reproduction. Use when the task is specifically to scan a repository, read the README and common project files, extract documented commands, cla Platforms: claude_code."} +{"id": "8fff29115ee977e68ba434bd6ad08f9df3a59e08048e5583c48b604d3bd58127", "repo_url": "https://github.com/eqtylab/cupcake", "name": "harness", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 271, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T17:06:18Z"}, "embedding_text": "harness. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2a3c9d3258d60e2d7d4834de31e2423b71119cc54fd32c61d5e06ce1ae32e078", "repo_url": "https://github.com/paoloricciuti/mcp-add", "name": "mcp-add", "description": "Add MCP (Model Context Protocol) servers to AI coding clients using npx. Use when the user wants to configure, add, or set up an MCP server for Claude Code, Claude Desktop, Cursor, VS Code, Windsurf,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paoloricciuti/mcp-add/blob/main/skills/mcp-add/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-17T14:03:31Z"}, "embedding_text": "mcp-add. Add MCP (Model Context Protocol) servers to AI coding clients using npx. Use when the user wants to configure, add, or set up an MCP server for Claude Code, Claude Desktop, Cursor, VS Code, Windsurf, Platforms: claude_code."} +{"id": "9d3d8a8a1245491918cb0032558a595032eef217eb0a2f35ffc340824922613c", "repo_url": "https://github.com/lllllllama/ai-paper-reproduction-skill", "name": "minimal-run-and-audit", "description": "Rigor Run skill for README-first deep learning repo reproduction. Use when the task is specifically to capture or normalize evidence from the selected smoke test or documented inference or evaluation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lllllllama/ai-paper-reproduction-skill/blob/main/skills/minimal-run-and-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 466, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T07:43:54Z"}, "embedding_text": "minimal-run-and-audit. Rigor Run skill for README-first deep learning repo reproduction. Use when the task is specifically to capture or normalize evidence from the selected smoke test or documented inference or evaluation Platforms: claude_code."} +{"id": "0114a6c5bef3188727471099036e85cebe7aa250d16f28a47d4e1d22f3628171", "repo_url": "https://github.com/lllllllama/ai-paper-reproduction-skill", "name": "env-and-assets-bootstrap", "description": "Rigor Setup skill for README-first deep learning repo reproduction. Use when the task is specifically to prepare a conservative conda-first environment, checkpoint and dataset path assumptions, cache", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lllllllama/ai-paper-reproduction-skill/blob/main/skills/env-and-assets-bootstrap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 466, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T07:43:54Z"}, "embedding_text": "env-and-assets-bootstrap. Rigor Setup skill for README-first deep learning repo reproduction. Use when the task is specifically to prepare a conservative conda-first environment, checkpoint and dataset path assumptions, cache Platforms: claude_code."} +{"id": "5264612583ef9415865b4f5cee09e2c0408f7fcb90464b2dc09003132c5902c6", "repo_url": "https://github.com/waynesutton/markdown-site", "name": "update-project-docs", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/markdown-site/blob/main/.cursor/skills/update-project-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 621, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T14:56:54Z"}, "embedding_text": "update-project-docs. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "782b297cb2b02003192090ae56005861d80d15215a6671680379174ccf599978", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "brand-guidelines", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "brand-guidelines. 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 Platforms: claude_code."} +{"id": "92065a46561aa9427485272241ac39b6183c59e315daf90a3688119f4861ce05", "repo_url": "https://github.com/vcnoc/claude-code-zen-mcp-skill-work", "name": "zen-mcp-server", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vcnoc/claude-code-zen-mcp-skill-work/blob/main/skills/codex-code-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 117, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T08:51:53Z"}, "embedding_text": "zen-mcp-server. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c48baa93f6211c8601477b116576876340a9bba3b413ad748e88790c67a0a792", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "runner", "description": "This skill provides unified test execution for CFN test suites with automated benchmarking and regression detection, enabling comprehensive quality assurance through historical performance tracking an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-test-framework/lib/runner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "runner. This skill provides unified test execution for CFN test suites with automated benchmarking and regression detection, enabling comprehensive quality assurance through historical performance tracking an Platforms: claude_code."} +{"id": "a72660c6baa74262e591fc4ce8cd42dfa5d4934d941fdfeb0cb34f0edbc1b015", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "ultraplan", "description": "Record multi-modal context (audio, screenshots, clipboard, keystrokes) to generate detailed prompts. Use when user wants to capture context from meetings, research sessions, debugging workflows, or an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/ultraplan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "ultraplan. Record multi-modal context (audio, screenshots, clipboard, keystrokes) to generate detailed prompts. Use when user wants to capture context from meetings, research sessions, debugging workflows, or an Platforms: claude_code."} +{"id": "bb7cc34cc59712b9ea64ca19885d65d0dc18bd3880dc96777fc63bf1c60a5862", "repo_url": "https://github.com/rohunvora/cool-claude-skills", "name": "mobbin-ux", "description": "Research-driven UI/UX improvement using Mobbin. Use when user explicitly requests design pattern research (\"use Mobbin\", \"research design patterns\", \"find UX patterns for X\"). Requires Mobbin account", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohunvora/cool-claude-skills/blob/main/skills/mobbin-ux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-09T05:28:41Z"}, "embedding_text": "mobbin-ux. Research-driven UI/UX improvement using Mobbin. Use when user explicitly requests design pattern research (\"use Mobbin\", \"research design patterns\", \"find UX patterns for X\"). Requires Mobbin account Platforms: claude_code."} +{"id": "bcbc83bff1d68ef876731b0433999ea8baf66eb8fc6d66438603469f841efc85", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "cc-docs", "description": "Read Claude Code documentation to learn about features, capabilities, hooks, skills, MCP, subagents, and how to use Claude Code effectively.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/cc-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cc-docs"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "cc-docs. Read Claude Code documentation to learn about features, capabilities, hooks, skills, MCP, subagents, and how to use Claude Code effectively. Platforms: claude_code."} +{"id": "816ceedd25ec03d77781d4b1f0538bac1426d63fbe48e8550eafe05f9c29cde5", "repo_url": "https://github.com/appautomaton/agent-designer", "name": "collaborating-with-claude", "description": "Use the Claude Code CLI to consult Claude and delegate coding tasks for prototyping, debugging, and code review. Supports multi-turn sessions via SESSION_ID. Optimized for low-token, file/line-based h", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/appautomaton/agent-designer/blob/main/skills/collaborating-with-claude/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 121, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T17:19:13Z"}, "embedding_text": "collaborating-with-claude. Use the Claude Code CLI to consult Claude and delegate coding tasks for prototyping, debugging, and code review. Supports multi-turn sessions via SESSION_ID. Optimized for low-token, file/line-based h Platforms: claude_code."} +{"id": "67da8cc325730dfde39e804b527a6131b7eeab589dbd0761dcfaf5db6f2145a0", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "Cross-Platform Build Expert", "description": "Expert in building desktop applications for Windows, macOS, and Linux with focus on platform-specific configurations, code signing, and distribution requirements", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/accessibility-wcag/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "Cross-Platform Build Expert. Expert in building desktop applications for Windows, macOS, and Linux with focus on platform-specific configurations, code signing, and distribution requirements Platforms: claude_code."} +{"id": "b6c4b811044b0b6d7084f192bc20a471b54750aef201057dd8bbc84341172553", "repo_url": "https://github.com/araaking/opencode-kuli-pro", "name": "template-skill", "description": "This is a template skill that provides a structure for creating new Claude skills, allowing developers to define custom functionality and specify when Claude should activate it.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/araaking/opencode-kuli-pro/blob/main/skills/template-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-04T09:55:12Z"}, "embedding_text": "template-skill. This is a template skill that provides a structure for creating new Claude skills, allowing developers to define custom functionality and specify when Claude should activate it. Platforms: claude_code."} +{"id": "113d93be5667bf5ac5eb9af1d7a7abf546103c3756375f025f45aa0dd04126d7", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "internal-comms", "description": "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 com", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/.claude/skills/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "internal-comms. 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 com Platforms: claude_code."} +{"id": "93d02adfe7380afc74d7dc9e2b62144264061c87bce08a63f79761fd6c2592f4", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-cloud-sdk-ai", "description": "Integrates SAP Cloud SDK for AI into JavaScript/TypeScript and Java applications. Use when building applications with SAP AI Core, Generative AI Hub, or Orchestration Service. Covers chat completion,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-cloud-sdk-ai-python/skills/sap-cloud-sdk-ai-python/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-cloud-sdk-ai. Integrates SAP Cloud SDK for AI into JavaScript/TypeScript and Java applications. Use when building applications with SAP AI Core, Generative AI Hub, or Orchestration Service. Covers chat completion, Platforms: claude_code."} +{"id": "4ec9c8d5b1db4a038ea17f89ee44be4ace0cacc763b93f903cc82e287ffad690", "repo_url": "https://github.com/theprimeagen/skills", "name": "vim", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/theprimeagen/skills/blob/master/skills/vim.diagnostics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 228, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-27T16:29:00Z"}, "embedding_text": "vim. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "7cf0c9b303429b33a234634da7364d8e35df617b37cc68dc082cdb45cac4ea45", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "mcp-builder", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/development/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "mcp-builder. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d8edcf7c564371500addcb0f1ea7095c08e94ce109546ae4a87e18cf9d22e0be", "repo_url": "https://github.com/0xdarkmatter/claude-mods", "name": "spawn", "description": "Generate PhD-level expert agent prompts for Claude Code. Creates comprehensive 500-1000 line agents with detailed patterns, code examples, and best practices. Triggers on: spawn agent, create agent, g", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/0xdarkmatter/claude-mods/blob/main/skills/spawn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T08:30:48Z"}, "embedding_text": "spawn. Generate PhD-level expert agent prompts for Claude Code. Creates comprehensive 500-1000 line agents with detailed patterns, code examples, and best practices. Triggers on: spawn agent, create agent, g Platforms: claude_code."} +{"id": "96b5876efe09bec6be6f0efb672e8cddfec1be6ea1e8041a0cd545350656fa74", "repo_url": "https://github.com/win4r/clawteam-openclaw", "name": "ClawTeam Multi-Agent Coordination", "description": "This skill should be used when the user asks to \"create a team\", \"spawn agents\", \"assign tasks\", \"coordinate multiple agents\", \"check team status\", \"view kanban board\", \"send messages between agents\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/win4r/clawteam-openclaw/blob/main/docs/skills/clawteam/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1412, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T11:15:48Z"}, "embedding_text": "ClawTeam Multi-Agent Coordination. This skill should be used when the user asks to \"create a team\", \"spawn agents\", \"assign tasks\", \"coordinate multiple agents\", \"check team status\", \"view kanban board\", \"send messages between agents\", Platforms: claude_code."} +{"id": "845d3df0e32a951d443021482377029d17b61eeca2917d6b59b73cd981dbb76c", "repo_url": "https://github.com/zeng3ld/claude-session-restore", "name": "restore-session", "description": "Restore context from previous Claude session by analyzing session files and git history. Triggers on phrases like \"restore session\", \"previous session\", \"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u0441\u0435\u0441\u0441\u0438\u044e\", \"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432 \u0441\u0435\u0441\u0441\u0438\u044e\", \"\u043f\u0440\u0435\u0434\u044b", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zeng3ld/claude-session-restore/blob/master/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 33, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T07:54:26Z"}, "embedding_text": "restore-session. Restore context from previous Claude session by analyzing session files and git history. Triggers on phrases like \"restore session\", \"previous session\", \"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438 \u0441\u0435\u0441\u0441\u0438\u044e\", \"\u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432 \u0441\u0435\u0441\u0441\u0438\u044e\", \"\u043f\u0440\u0435\u0434\u044b Platforms: claude_code."} +{"id": "9e6a83f1ec34a2e6604fbebe1f6c297fd3e212aeebbb53b18d53d1974a238459", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-ssti", "description": "Detect Server-Side Template Injection (SSTI) vulnerabilities in a codebase using a three-phase approach: recon (find template rendering sites that use dynamic strings), batched verify (trace user inpu", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-ssti/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-ssti. Detect Server-Side Template Injection (SSTI) vulnerabilities in a codebase using a three-phase approach: recon (find template rendering sites that use dynamic strings), batched verify (trace user inpu Platforms: claude_code."} +{"id": "10f06c02a84e0a9dab99f11c494d7e7596807cb6eabced90c24f396d9f16a30e", "repo_url": "https://github.com/utkusen/sast-skills", "name": "sast-missingauth", "description": "Detect missing authentication and broken function-level authorization vulnerabilities in a codebase using a three-phase approach: recon (map endpoints and the role/permission system), batched verify (", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/utkusen/sast-skills/blob/main/sast-files/.agents/skills/sast-missingauth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 669, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T14:45:56Z"}, "embedding_text": "sast-missingauth. Detect missing authentication and broken function-level authorization vulnerabilities in a codebase using a three-phase approach: recon (map endpoints and the role/permission system), batched verify ( Platforms: claude_code."} +{"id": "7cdd2af2779b92226eca6ad849b0d66ab6fa81dc30bf40c2d189c0a6080e7f24", "repo_url": "https://github.com/tachyon-beep/skillpacks", "name": "using-skillpack-maintenance", "description": "Use when maintaining, enhancing, or modifying existing Claude Code plugins - handles skills, commands, agents, hooks, and reference sheets through systematic domain analysis, structure review, behavio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tachyon-beep/skillpacks/blob/main/plugins/meta-skillpack-maintenance/skills/using-skillpack-maintenance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T20:05:31Z"}, "embedding_text": "using-skillpack-maintenance. Use when maintaining, enhancing, or modifying existing Claude Code plugins - handles skills, commands, agents, hooks, and reference sheets through systematic domain analysis, structure review, behavio Platforms: claude_code."} +{"id": "6b0fa88799686f6de39d8b2d38a69a368dc090e965462250d44d846df8200bb2", "repo_url": "https://github.com/bitwarden/ios", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bitwarden/ios/blob/main/.claude/skills/build-test-verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 622, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T20:38:28Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8ebf7a67714552e2926882d3b4df27c1434680cb8acf90c8b79d861d88eae687", "repo_url": "https://github.com/stsquad/emacs_chrome", "name": "emacs_chrome", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 541, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-05T09:07:01Z"}, "embedding_text": "emacs_chrome. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "63da6d563da509395d214e7919cb71647017fa75010962770de8054b6572e7a1", "repo_url": "https://github.com/tddworks/skillsmanager", "name": "improvement", "description": "Guide for making improvements to existing ClaudeBar functionality using TDD. Use this skill when:\n(1) Enhancing existing features (not adding new ones)\n(2) Improving UX, performance, or code quality\n(", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tddworks/skillsmanager/blob/main/.claude/skills/improvement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T02:46:02Z"}, "embedding_text": "improvement. Guide for making improvements to existing ClaudeBar functionality using TDD. Use this skill when:\n(1) Enhancing existing features (not adding new ones)\n(2) Improving UX, performance, or code quality\n( Platforms: claude_code."} +{"id": "a8997117c30ccfb9a79dfa9553c287ebf0ce46c2ddffcaf1c11610559dff4d7f", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "widget-generator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/widget-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "widget-generator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "243f11b28a85abba336ab0dafcf68c7939f58e5cf7ff7e7c38825bee318ebc56", "repo_url": "https://github.com/nyldn/claude-octopus", "name": "skill-decision-support", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nyldn/claude-octopus/blob/main/.claude/skills/skill-decision-support/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3663, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T12:41:23Z"}, "embedding_text": "skill-decision-support. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3e006a1252c559d9959ddce186bfab01139bcd7d53bdc61cc03754382c0df593", "repo_url": "https://github.com/arnaldo-delisio/claude-code-studio", "name": "claude-code-studio", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 274, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-08-12T21:49:24Z"}, "embedding_text": "claude-code-studio. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "503ae18ac686d51ea7007e74f01bb7ead0453a0331b8677eabce01cca8f9d9f6", "repo_url": "https://github.com/majiayu000/sage", "name": "sage-mcp-protocol", "description": "Sage MCP \u534f\u8bae\u5f00\u53d1\u6307\u5357\uff0c\u6db5\u76d6\u5ba2\u6237\u7aef\u3001\u4f20\u8f93\u5c42\u3001\u670d\u52a1\u53d1\u73b0\u3001\u901a\u77e5\u5904\u7406", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/sage/blob/main/.sage/skills/sage-mcp-protocol/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T20:35:51Z"}, "embedding_text": "sage-mcp-protocol. Sage MCP \u534f\u8bae\u5f00\u53d1\u6307\u5357\uff0c\u6db5\u76d6\u5ba2\u6237\u7aef\u3001\u4f20\u8f93\u5c42\u3001\u670d\u52a1\u53d1\u73b0\u3001\u901a\u77e5\u5904\u7406 Platforms: claude_code."} +{"id": "bd804e1c2fa4ef066a0aa01b0457d9a29ee8b29a110f534fc166476c1e33e916", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/document-skills/document-skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts Platforms: claude_code."} +{"id": "961c5bfebc0b01800d1053358c9acfececb26aec1adc5bae66ed78f9091a4145", "repo_url": "https://github.com/jwynia/agent-skills", "name": "react-pwa", "description": "A skill for building Progressive Web Apps (PWAs) using React and Vite. It guides users through setup, manifest configuration, service worker generation, offline support, and installability features.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jwynia/agent-skills/blob/main/skills/tech/frontend/pwa/react-pwa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T02:35:14Z"}, "embedding_text": "react-pwa. A skill for building Progressive Web Apps (PWAs) using React and Vite. It guides users through setup, manifest configuration, service worker generation, offline support, and installability features. Platforms: claude_code."} +{"id": "0acd58f0f49e37922368347dde9835e29fbda91f1289b129198ee39bd4c831d0", "repo_url": "https://github.com/anobaka/bakabase", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anobaka/bakabase/blob/main/.claude/skills/sentry-triage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 527, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T15:01:06Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5a6489afbca317e9dfb05407af21c081234a5a7dc9ee82df4913ec93ef336c94", "repo_url": "https://github.com/scientiacapital/skills", "name": "planning-prompts", "description": "Comprehensive skill for project planning and prompt engineering. Covers hierarchical plans (briefs, roadmaps, phases), Claude-to-Claude meta-prompts, and multi-stage workflows. Use when: planning, pro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/planning-prompts-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "planning-prompts. Comprehensive skill for project planning and prompt engineering. Covers hierarchical plans (briefs, roadmaps, phases), Claude-to-Claude meta-prompts, and multi-stage workflows. Use when: planning, pro Platforms: claude_code."} +{"id": "a598182e87dc0039e7856d3f86564f68d45bd722f6b9b26a4cb987badc90205e", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "worktrees", "description": "Multi-agent parallel development using git worktrees. Use when user says \"plan workstreams\", \"create worktree\", \"spawn worktree\", \"write status\", \"check status\", \"coordinate agents\", \"parallel develop", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/cli-automation/using-git-worktrees/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "worktrees. Multi-agent parallel development using git worktrees. Use when user says \"plan workstreams\", \"create worktree\", \"spawn worktree\", \"write status\", \"check status\", \"coordinate agents\", \"parallel develop Platforms: claude_code."} +{"id": "3f2975f50f33388e4669d779990fd7e1e0c1b05cef4a474906c071f7c0ddb681", "repo_url": "https://github.com/jiahao-shao1/sjh-skills", "name": "cmux", "description": "Use this skill for ANY multi-pane or multi-agent terminal orchestration in cmux. Required when the user wants to: run things in parallel in separate terminal panes, split the terminal, spawn a sub-age", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jiahao-shao1/sjh-skills/blob/main/skills/cmux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 34, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:18:22Z"}, "embedding_text": "cmux. Use this skill for ANY multi-pane or multi-agent terminal orchestration in cmux. Required when the user wants to: run things in parallel in separate terminal panes, split the terminal, spawn a sub-age Platforms: claude_code."} +{"id": "971c1bf8fe4b2562ec953a20455dc0f109cf222af0d3cce570d04f72ebdfea91", "repo_url": "https://github.com/ghostwriternr/claude-code-containers", "name": "claude-code-containers", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 244, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-06-24T15:30:49Z"}, "embedding_text": "claude-code-containers. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8399a9b51e39e59c2199857a67436a41f527fd78221cef2d9a7e7acae2cddcf6", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "claude-web-server-llm", "description": "\u591a\u7ebf\u7a0bClaude Web\u670d\u52a1\u5668\uff0c\u4f7f\u7528FastAPI\u5c06Claude\u66b4\u9732\u4e3a\u540e\u7aefAPI\u670d\u52a1\u3002\u6b64\u670d\u52a1\u5668\u4f1a\u8bdd\u6301\u4e45\u5316\u3001\u652f\u6301\u5e76\u53d1\u5904\u7406\u3001\u53ef\u57fa\u4e8e\u7528\u6237\u8bed\u4e49\u8c03\u7528\u6240\u6709skills/agents/subagents\u76f4\u81f3\u5b8c\u6210\u8f93\u51fa\u7ed9\u7528\u6237\u3002\u4f7f\u7528\u573a\u666f\uff1a\uff081\uff09\u542f\u52a8Claude\u4f5c\u4e3aWeb\u670d\u52a1\u4f9b\u5176\u4ed6\u5e94\u7528\u8c03\u7528\uff0c\uff082\uff09\u901a\u8fc7API\u96c6\u6210Claude\u80fd\u529b\u5230\u73b0\u6709\u7cfb\u7edf\uff0c\uff083\uff09\u6784\u5efa\u57fa\u4e8eClaude\u7684\u5e94\u7528\u540e\u7aef\u3002\u6b64skill\u4ec5\u7528\u4e8e\u542f\u52a8\u548c\u7ba1\u7406\u670d\u52a1\u5668\u672c\u8eab\uff0c\u4e0d", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/llm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "claude-web-server-llm. \u591a\u7ebf\u7a0bClaude Web\u670d\u52a1\u5668\uff0c\u4f7f\u7528FastAPI\u5c06Claude\u66b4\u9732\u4e3a\u540e\u7aefAPI\u670d\u52a1\u3002\u6b64\u670d\u52a1\u5668\u4f1a\u8bdd\u6301\u4e45\u5316\u3001\u652f\u6301\u5e76\u53d1\u5904\u7406\u3001\u53ef\u57fa\u4e8e\u7528\u6237\u8bed\u4e49\u8c03\u7528\u6240\u6709skills/agents/subagents\u76f4\u81f3\u5b8c\u6210\u8f93\u51fa\u7ed9\u7528\u6237\u3002\u4f7f\u7528\u573a\u666f\uff1a\uff081\uff09\u542f\u52a8Claude\u4f5c\u4e3aWeb\u670d\u52a1\u4f9b\u5176\u4ed6\u5e94\u7528\u8c03\u7528\uff0c\uff082\uff09\u901a\u8fc7API\u96c6\u6210Claude\u80fd\u529b\u5230\u73b0\u6709\u7cfb\u7edf\uff0c\uff083\uff09\u6784\u5efa\u57fa\u4e8eClaude\u7684\u5e94\u7528\u540e\u7aef\u3002\u6b64skill\u4ec5\u7528\u4e8e\u542f\u52a8\u548c\u7ba1\u7406\u670d\u52a1\u5668\u672c\u8eab\uff0c\u4e0d Platforms: claude_code."} +{"id": "a63c43284cb0bdc7244a50dc4567fe0cf11c4f122929df307580956a5bcfcb8d", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "provider", "description": "This skill translates agent-specified model names (like sonnet/haiku/opus) into provider-specific model names, enabling seamless cross-provider compatibility and cost optimization through tier-based s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-routing-config/lib/provider/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "provider. This skill translates agent-specified model names (like sonnet/haiku/opus) into provider-specific model names, enabling seamless cross-provider compatibility and cost optimization through tier-based s Platforms: claude_code."} +{"id": "8228f334eff87e6905ac0245fe0af704a55a71d7bc47aa8148ba556c433078b0", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "claude-player", "description": "An AI-powered Game Boy emulator agent that uses Claude's vision and reasoning to autonomously play Game Boy games.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/claude-player/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "claude-player. An AI-powered Game Boy emulator agent that uses Claude's vision and reasoning to autonomously play Game Boy games. Platforms: claude_code."} +{"id": "ea28fe09f399e8add46fb9f4dd2cb13a4b8847a934b370ef80758813b5d4ffd1", "repo_url": "https://github.com/rohunvora/cool-claude-skills", "name": "quick-view", "description": "Generate minimal HTML pages to review Claude Code output in a browser. Use when terminal output is hard to read, when reviewing lists/tables/drafts, or when user says \"show me\", \"make this reviewable\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohunvora/cool-claude-skills/blob/main/skills/quick-view/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-09T05:28:41Z"}, "embedding_text": "quick-view. Generate minimal HTML pages to review Claude Code output in a browser. Use when terminal output is hard to read, when reviewing lists/tables/drafts, or when user says \"show me\", \"make this reviewable\" Platforms: claude_code."} +{"id": "ae59b251d29b481dc3c200c9828b7b6d79ac367f884010d6b63432be8622cd73", "repo_url": "https://github.com/pr-pm/prpm", "name": "agents-md-skill", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pr-pm/prpm/blob/main/packages/cli/test-fixtures/integration/batch-3-special/files/agents-md-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T10:00:50Z"}, "embedding_text": "agents-md-skill. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e314c123398499fa30c904516fd8ab7c270da04c6575f78d4b5facb03d4a988d", "repo_url": "https://github.com/malob/nix-config", "name": "say", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/plugins/tts/skills/say/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install say"}, "quality": {"stars": 460, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T01:26:28Z"}, "embedding_text": "say. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} +{"id": "6a88d47dd8042f96a0d28e304279af8316568dcb396a795fc648fb2a38bda50c", "repo_url": "https://github.com/terminalskills/skills", "name": "anthropic-sdk", "description": "Integrate Claude AI into applications with the Anthropic SDK. Use when a user asks to add Claude to an app, use Claude for text generation, build a chatbot with Claude, use Claude's long context windo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/terminalskills/skills/blob/main/skills/anthropic-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 85, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T19:37:07Z"}, "embedding_text": "anthropic-sdk. Integrate Claude AI into applications with the Anthropic SDK. Use when a user asks to add Claude to an app, use Claude for text generation, build a chatbot with Claude, use Claude's long context windo Platforms: claude_code."} +{"id": "4984b733767078d9fdf2c40a699bf7a3708bc35009207cbed1fe2879d262892d", "repo_url": "https://github.com/ryanmac/code-conductor", "name": "roles", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-30T17:25:39Z"}, "embedding_text": "roles. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6159ad90b98c84428b8af126f88967a7b1dd5a25af5cb296459c8a00009ac09b", "repo_url": "https://github.com/akitaonrails/frankclaw", "name": "FrankClaw", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 123, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-11T22:40:56Z"}, "embedding_text": "FrankClaw. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f32b309bbf18295efc40c80421bdb4e5a086950da9ca6cacd1f11c350d295772", "repo_url": "https://github.com/brendonovich/macrograph", "name": "MacroGraph", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 308, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-13T04:19:01Z"}, "embedding_text": "MacroGraph. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1abc2fd77c83d19e59cf80a8dc83a094bb669f98cc00593a1c726d629d21335c", "repo_url": "https://github.com/theprimeagen/skills", "name": "vim.treesitter", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/theprimeagen/skills/blob/master/skills/vim.treesitter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 228, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-27T16:29:00Z"}, "embedding_text": "vim.treesitter. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "52ef2e04cf1d3a2cbc8da0ab386ede656eb9a0f67cb94b94d17b2c123b29857b", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-image", "description": "AI image generation and editing for blog content powered by Gemini via MCP. Claude acts as Creative Director \u2014 interpreting intent, selecting domain expertise, constructing optimized 6-component prompts (Subject + Action + Context + Composition + Lighting + Style), and orchestrating Gemini for blog-quality results. Generates hero images, inline illustrations, social preview cards, and OG images. Edits existing blog images. Supports 6 blog-optimized domain modes (Editorial, Product, Landscape, UI/Web, Infographic, Abstract). Works standalone via /blog image or internally from blog-write and blog-rewrite workflows. Falls back gracefully when MCP is not configured. Use when user says \"blog image\", \"generate hero image\", \"blog illustration\", \"social card\", \"generate blog image\", \"edit blog image\", \"image generate\", \"blog cover image\", \"inline image\", \"OG image\".\n", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-image/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-image"}, "quality": {"stars": 1122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-05T04:23:28Z"}, "embedding_text": "blog-image. AI image generation and editing for blog content powered by Gemini via MCP. Claude acts as Creative Director \u2014 interpreting intent, selecting domain expertise, constructing optimized 6-component prompts (Subject + Action + Context + Composition + Lighting + Style), and orchestrating Gemini for blog-quality results. Generates hero images, inline illustrations, social preview cards, and OG images. Edits existing blog images. Supports 6 blog-optimized domain modes (Editorial, Product, Landscape, UI/Web, Infographic, Abstract). Works standalone via /blog image or internally from blog-write and blog-rewrite workflows. Falls back gracefully when MCP is not configured. Use when user says \"blog image\", \"generate hero image\", \"blog illustration\", \"social card\", \"generate blog image\", \"edit blog image\", \"image generate\", \"blog cover image\", \"inline image\", \"OG image\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} +{"id": "3f6b9be5f1cd6afb0e9256a126d28f15ba4f6806638cb78d0a6594ef8926eead", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-full-auto", "description": "Fully autonomous development mode. Spec in, production-ready software out. Claude makes decisions, uses agents, commits locally. Only stops for hard blockers.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-full-auto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-full-auto"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-full-auto. Fully autonomous development mode. Spec in, production-ready software out. Claude makes decisions, uses agents, commits locally. Only stops for hard blockers. Platforms: claude_code."} +{"id": "e5280bf151a8ace25515fd72eafe53b9445f10e04685699437767057b3ed6022", "repo_url": "https://github.com/sugarforever/01coder-agent-skills", "name": "Python Security Scan", "description": "Comprehensive security vulnerability scanner for Python projects including Flask, Django, and FastAPI applications. Detects OWASP Top 10 vulnerabilities, injection flaws, insecure deserialization, aut", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sugarforever/01coder-agent-skills/blob/main/skills/python-security-scan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 120, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T17:52:39Z"}, "embedding_text": "Python Security Scan. Comprehensive security vulnerability scanner for Python projects including Flask, Django, and FastAPI applications. Detects OWASP Top 10 vulnerabilities, injection flaws, insecure deserialization, aut Platforms: claude_code."} +{"id": "81bdc75db01a6eb69a2ac3a895150d5be842e506153b7c0c9219b7ffc68e60b7", "repo_url": "https://github.com/ynulihao/agentskillos", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ynulihao/agentskillos/blob/main/data/skill_seeds/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 430, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T16:51:24Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "a27c226f68110f1a566cce54045befb5a3e519ec0562b0bfcc911d4a78a81511", "repo_url": "https://github.com/tilework-tech/nori-cli", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T03:45:05Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "20eacd8f597999b0aebcfa14e7a77debc936540de29aa2cdf1b5f98f943734a7", "repo_url": "https://github.com/wcy-dt/ponghub", "name": "ponghub", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 226, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T16:52:15Z"}, "embedding_text": "ponghub. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "79e7136e15c3c1e88ffe733339a09f1e4dc5ebe8de9441457410cd3371fba08d", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "template-skill", "description": "Replace with description of the skill and when Claude should use it.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/template-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install template-skill"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:28:52Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Claude should use it. Platforms: claude_code."} +{"id": "9f52b60751905b0e653a99668e876db204b4748779e7e90f19f91b37a1983795", "repo_url": "https://github.com/jeffh/claude-plugins", "name": "create-skill", "description": "Create, update, validate, and canonicalize Claude Code skills. USE WHEN user wants to create a new skill OR modify an existing skill OR validate skill structure OR fix skill format OR migrate legacy s", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffh/claude-plugins/blob/main/pai/skills/create-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T00:05:55Z"}, "embedding_text": "create-skill. Create, update, validate, and canonicalize Claude Code skills. USE WHEN user wants to create a new skill OR modify an existing skill OR validate skill structure OR fix skill format OR migrate legacy s Platforms: claude_code."} +{"id": "5103a9bd87006302e3d685bcc569dca19a8005a596a6cab56d4d344bee8ba86b", "repo_url": "https://github.com/team-attention/hoyeon", "name": "skill-session-analyzer", "description": "This skill should be used when the user asks to \"analyze session\", \"evaluate skill execution\",\n\"check session logs\", provides a session ID with a skill path,\nor wants to verify that a skill executed c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/skills/skill-session-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "skill-session-analyzer. This skill should be used when the user asks to \"analyze session\", \"evaluate skill execution\",\n\"check session logs\", provides a session ID with a skill path,\nor wants to verify that a skill executed c Platforms: claude_code."} +{"id": "43623bf55b52e5f6542dba09cbabdc2f667807774a2f4095f870d9893d4e86e5", "repo_url": "https://github.com/llmsresearch/paperbanana", "name": "generate-plot", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/llmsresearch/paperbanana/blob/main/.claude/skills/generate-plot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2017, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T23:33:07Z"}, "embedding_text": "generate-plot. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5a53ae7621fb0ffb63c384ccf24c96df75af1b01a7005f2578b1a5ad0f8afc71", "repo_url": "https://github.com/mikeyobrien/ralph-orchestrator", "name": "pdd", "description": "This sop guides you through the process of transforming a rough idea into a detailed design document with an implementation plan and todo list. It follows the Prompt-Driven Development methodology to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mikeyobrien/ralph-orchestrator/blob/main/.claude/skills/pdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2952, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:01:48Z"}, "embedding_text": "pdd. This sop guides you through the process of transforming a rough idea into a detailed design document with an implementation plan and todo list. It follows the Prompt-Driven Development methodology to Platforms: claude_code."} +{"id": "5ee5589b7f20541300ed96186703396a7a2f420c40980c57c3da0053d62fc74c", "repo_url": "https://github.com/stripe/stripe-python", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2016, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T19:34:00Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "d8c8e6e3e08daf40baed4f6b502001eb23a76d34d8903ac91f2bc70da588d351", "repo_url": "https://github.com/yi-john-huang/sdd-mcp", "name": "sdd-design", "description": "Create technical design specifications for SDD workflow. Use when designing architecture, defining components, or creating system design documents after requirements are approved. Invoked via /sdd-des", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yi-john-huang/sdd-mcp/blob/master/.claude/skills/sdd-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:53:04Z"}, "embedding_text": "sdd-design. Create technical design specifications for SDD workflow. Use when designing architecture, defining components, or creating system design documents after requirements are approved. Invoked via /sdd-des Platforms: claude_code."} +{"id": "ce65eaac9d44a40676706ba1d8f85c6a9757df860fa3aa8d30ac16a4c10cb7be", "repo_url": "https://github.com/cexll/myclaude", "name": "dev", "description": "Extreme lightweight end-to-end development workflow with requirements clarification, intelligent backend selection, parallel codeagent execution, and mandatory 90% test coverage", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cexll/myclaude/blob/master/skills/dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2701, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-04T04:25:57Z"}, "embedding_text": "dev. Extreme lightweight end-to-end development workflow with requirements clarification, intelligent backend selection, parallel codeagent execution, and mandatory 90% test coverage Platforms: claude_code."} +{"id": "856f0752376fd2e15a117a09046f019f6dbdfb37aed861a9e8e75e2180d7ec72", "repo_url": "https://github.com/martinemde/skillet", "name": "derived-name-skill", "description": "A skill that derives its name from the directory.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinemde/skillet/blob/main/testdata/derived-name-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 19, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T05:19:06Z"}, "embedding_text": "derived-name-skill. A skill that derives its name from the directory. Platforms: claude_code."} +{"id": "8bc00b14daf836f13a67e180e1e6206ac9da87b677c197ac4aea1f77ef8817b0", "repo_url": "https://github.com/hacklyc/myagents", "name": "MyAgents", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hacklyc/myagents/blob/main/bundled-skills/myagents-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 816, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T20:09:39Z"}, "embedding_text": "MyAgents. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f7b7eacbc2bdb7d8faa3226b065a04e0c7e1521708104b2233833c35ba7b1aab", "repo_url": "https://github.com/affaan-m/agentshield", "name": "vulnerable", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/affaan-m/agentshield/blob/main/.agents/skills/agentshield/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 906, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:55:50Z"}, "embedding_text": "vulnerable. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "5dbd56d248528aff8f112ac0b4f8fcdf7ad305dfdad73cc1e4344afca7c5dc48", "repo_url": "https://github.com/caopulan/notification-skill", "name": "bark-notify", "description": "Send Bark (day.app) push notifications after Codex completes a task. Use when one Codex or Claude run is finished, or when you need to notify on task completion with device name, project name, status,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/caopulan/notification-skill/blob/main/bark-notify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-07T05:25:21Z"}, "embedding_text": "bark-notify. Send Bark (day.app) push notifications after Codex completes a task. Use when one Codex or Claude run is finished, or when you need to notify on task completion with device name, project name, status, Platforms: claude_code."} +{"id": "ed3ee40c21090303752857186cda8ffb23ce315e39323ae6a42c6f7b15d5c258", "repo_url": "https://github.com/mikeyobrien/ralph-orchestrator", "name": "release-bump", "description": "Use when bumping ralph-orchestrator version for a new release, after fixes are committed and ready to publish", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mikeyobrien/ralph-orchestrator/blob/main/.claude/skills/release-bump/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2952, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:01:48Z"}, "embedding_text": "release-bump. Use when bumping ralph-orchestrator version for a new release, after fixes are committed and ready to publish Platforms: claude_code."} +{"id": "103e17aa68ef05133fca2dc2041216fb753f8c8200e9ebe551fbc4f5d65c4551", "repo_url": "https://github.com/nyldn/claude-octopus", "name": "skill-resume", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nyldn/claude-octopus/blob/main/.claude/skills/skill-resume/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3663, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T12:41:23Z"}, "embedding_text": "skill-resume. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "791023c2f3f2867abb00e1e1e44e1a778490ee1fab16c1b313616897041d8c95", "repo_url": "https://github.com/yi-john-huang/sdd-mcp", "name": "simple-task", "description": "Implement simple features with best practices. Use when adding small features, bug fixes, or quick enhancements without the full SDD workflow. Invoked via /simple-task .", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yi-john-huang/sdd-mcp/blob/master/.claude/skills/simple-task/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:53:04Z"}, "embedding_text": "simple-task. Implement simple features with best practices. Use when adding small features, bug fixes, or quick enhancements without the full SDD workflow. Invoked via /simple-task . Platforms: claude_code."} +{"id": "c9100c04de8f412ee138109182c64d3cab8b200a82de1fb7d0667df5b49eabe2", "repo_url": "https://github.com/afumu/openlink", "name": "openlink", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 367, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T15:28:40Z"}, "embedding_text": "openlink. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "db241efcfbb44a089f3f8321a1e091ced68839cf9627c19ec301efd422b6ecb2", "repo_url": "https://github.com/tddworks/skillsmanager", "name": "fix-bug", "description": "Guide for fixing bugs in ClaudeBar following Chicago School TDD and rich domain design. Use this skill when:\n(1) User reports a bug or unexpected behavior\n(2) Fixing a defect in existing functionality", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tddworks/skillsmanager/blob/main/.claude/skills/fix-bug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 155, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T02:46:02Z"}, "embedding_text": "fix-bug. Guide for fixing bugs in ClaudeBar following Chicago School TDD and rich domain design. Use this skill when:\n(1) User reports a bug or unexpected behavior\n(2) Fixing a defect in existing functionality Platforms: claude_code."} +{"id": "c41314912c2f9fc105e3e2bc91650277fa735a5b1eb67a86d4b8b51d6ff5cc32", "repo_url": "https://github.com/iplug2/iplug2", "name": "validate", "description": "Validate iPlug2 plugin builds using format-specific validators (auval, pluginval, vstvalidator, clap-validator) (project)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iplug2/iplug2/blob/master/.claude/skills/validate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 2337, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T21:54:48Z"}, "embedding_text": "validate. Validate iPlug2 plugin builds using format-specific validators (auval, pluginval, vstvalidator, clap-validator) (project) Platforms: claude_code."} +{"id": "2d6afbaf91f36b984263a38c840ac0f02d9ca1fc76a19c7e3be8eac01c78f1a1", "repo_url": "https://github.com/langgenius/dify", "name": "frontend-testing", "description": "Generate Vitest + React Testing Library tests for Dify frontend components, hooks, and utilities. Triggers on testing, spec files, coverage, Vitest, RTL, unit tests, integration tests, or write/review", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/langgenius/dify/blob/main/.agents/skills/frontend-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 146168, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T20:12:17Z"}, "embedding_text": "frontend-testing. Generate Vitest + React Testing Library tests for Dify frontend components, hooks, and utilities. Triggers on testing, spec files, coverage, Vitest, RTL, unit tests, integration tests, or write/review Platforms: claude_code."} +{"id": "8e4c3b99e763b9701b4d2dc7246465f29b11b6ee2b30873ddd18c0bbf92e84eb", "repo_url": "https://github.com/nyldn/claude-octopus", "name": "skill-iterative-loop", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nyldn/claude-octopus/blob/main/.claude/skills/skill-iterative-loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3663, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T12:41:23Z"}, "embedding_text": "skill-iterative-loop. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "675216a1072f063f243b5f3697c34713a48c9effc41063309167ff500ae306c0", "repo_url": "https://github.com/antorsae/dual-agent", "name": "respond", "description": "Manually write response back to Claude. Use if read-task did not auto-complete or to finalize response.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antorsae/dual-agent/blob/main/.codex/skills/respond/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T13:55:36Z"}, "embedding_text": "respond. Manually write response back to Claude. Use if read-task did not auto-complete or to finalize response. Platforms: claude_code."} +{"id": "16a7abe54005cb15245a79014ad5f99e40c3c63732c2c0af2331f3c4b3a43608", "repo_url": "https://github.com/caopulan/notification-skill", "name": "email-notify", "description": "Send SMTP email notifications after Codex completes a task. Use when one Codex or Claude run is finished, or when you need to notify on task completion with device name, project name, status, and summ", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/caopulan/notification-skill/blob/main/email-notify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-07T05:25:21Z"}, "embedding_text": "email-notify. Send SMTP email notifications after Codex completes a task. Use when one Codex or Claude run is finished, or when you need to notify on task completion with device name, project name, status, and summ Platforms: claude_code."} +{"id": "d15d2d6e2e206c109ec77b37ca5b807836762e3ad77d8b5511ae536125b050f9", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "Database Design Expert", "description": "Expert in database schema design with focus on normalization, indexing strategies, FTS optimization, and performance-oriented architecture for desktop applications", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/database-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "Database Design Expert. Expert in database schema design with focus on normalization, indexing strategies, FTS optimization, and performance-oriented architecture for desktop applications Platforms: claude_code."} +{"id": "a07d5b7cdc153b7be3c4576d4c618d2788ae18e0c321d28286f065145ce9f291", "repo_url": "https://github.com/enuno/claude-command-and-control", "name": "hooks", "description": "Use Bun instead of Node.js, npm, pnpm, or vite.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enuno/claude-command-and-control/blob/main/skills/ship-faster/skills/tool-hooks-doctor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T09:43:47Z"}, "embedding_text": "hooks. Use Bun instead of Node.js, npm, pnpm, or vite. Platforms: claude_code."} +{"id": "128e10fa3aa42aa84fa60ecbd7f3f16941b0bbc2bb24d7c783cdb94e12acae38", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "ci-cd-setup", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/ci-cd-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "ci-cd-setup. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9d54db266d59049a6c358841241f4bc99e799c875f442d26633391f3ef9892d1", "repo_url": "https://github.com/commandcodeai/agent-skills", "name": "template-skill", "description": "Replace with description of the skill and when Claude should use it.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/commandcodeai/agent-skills/blob/main/skills/template-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 79, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-10T23:05:52Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Claude should use it. Platforms: claude_code."} +{"id": "f5a794094d47fd900213418f36d43469dd9a3a49c13cd24745aeb1315302748e", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "push-notifications", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/push-notifications/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "push-notifications. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "015ba4db1d4e5521d83404a76e2c23854b6dd072fe8d0aa17fdad70fb0186069", "repo_url": "https://github.com/kreuzberg-dev/kreuzberg", "name": "extraction-pipeline-patterns", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kreuzberg-dev/kreuzberg/blob/main/.ai-rulez/skills/extraction-pipeline-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 8524, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T20:20:12Z"}, "embedding_text": "extraction-pipeline-patterns. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3e4fed9bda0d00562d972ce428be913e8564dc6f394c021e6810db2454cb8136", "repo_url": "https://github.com/sunholo-data/ailang", "name": "Builtin Developer", "description": "Guides development of AILANG builtin functions. Use when user wants to add a builtin function, register new builtins, or understand the builtin system. Reduces development time from 7.5h to 2.5h (-67%", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sunholo-data/ailang/blob/dev/.claude/skills/builtin-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:43:04Z"}, "embedding_text": "Builtin Developer. Guides development of AILANG builtin functions. Use when user wants to add a builtin function, register new builtins, or understand the builtin system. Reduces development time from 7.5h to 2.5h (-67% Platforms: claude_code."} +{"id": "62e9d5ab8fcb6f1aa35d9ba1074b28e6cae23f9c808c310ad6a083f00913038e", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "algorithmic-art", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "algorithmic-art. 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 Platforms: claude_code."} +{"id": "b4c5143e90af9de9c0b3bc7e45431b0f2fac0178bfb47333d6ae5398b56cba87", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "CI/CD Pipeline Security Expert", "description": "Expert in CI/CD pipeline design with focus on secret management, code signing, artifact security, and supply chain protection for desktop application builds", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/ci-cd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "CI/CD Pipeline Security Expert. Expert in CI/CD pipeline design with focus on secret management, code signing, artifact security, and supply chain protection for desktop application builds Platforms: claude_code."} +{"id": "9b007b2ae0a474d10e42083b098f1bd9cc4bd1be4ef2d53dd3e37c5e7c5c86c1", "repo_url": "https://github.com/leastbit/claude_skills_zh-cn", "name": "pdf", "description": "\u5168\u9762\u7684 PDF \u64cd\u4f5c\u5de5\u5177\u5305\uff0c\u7528\u4e8e\u63d0\u53d6\u6587\u672c\u548c\u8868\u683c\u3001\u521b\u5efa\u65b0 PDF\u3001\u5408\u5e76/\u62c6\u5206\u6587\u6863\u4ee5\u53ca\u5904\u7406\u8868\u5355\u3002\u5f53 Claude \u9700\u8981\u586b\u5199 PDF \u8868\u5355\u6216\u4ee5\u7f16\u7a0b\u65b9\u5f0f\u5927\u89c4\u6a21\u5904\u7406\u3001\u751f\u6210\u6216\u5206\u6790 PDF \u6587\u6863\u65f6\u4f7f\u7528\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/leastbit/claude_skills_zh-cn/blob/main/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 506, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-19T05:50:17Z"}, "embedding_text": "pdf. \u5168\u9762\u7684 PDF \u64cd\u4f5c\u5de5\u5177\u5305\uff0c\u7528\u4e8e\u63d0\u53d6\u6587\u672c\u548c\u8868\u683c\u3001\u521b\u5efa\u65b0 PDF\u3001\u5408\u5e76/\u62c6\u5206\u6587\u6863\u4ee5\u53ca\u5904\u7406\u8868\u5355\u3002\u5f53 Claude \u9700\u8981\u586b\u5199 PDF \u8868\u5355\u6216\u4ee5\u7f16\u7a0b\u65b9\u5f0f\u5927\u89c4\u6a21\u5904\u7406\u3001\u751f\u6210\u6216\u5206\u6790 PDF \u6587\u6863\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} +{"id": "ada6daf4c0bbc9f117336064a390a96c8e56502494c3136048f0898d4d98b2ce", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "SQLCipher Encrypted Database Expert", "description": "Expert in SQLCipher encrypted database development with focus on encryption key management, key rotation, secure data handling, and cryptographic best practices", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/sqlcipher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "SQLCipher Encrypted Database Expert. Expert in SQLCipher encrypted database development with focus on encryption key management, key rotation, secure data handling, and cryptographic best practices Platforms: claude_code."} +{"id": "9ffa7156fff9db68314ad01021b96285965cf86379eb931a81f75c814d857f0a", "repo_url": "https://github.com/synqing/k1.hardware", "name": "prism-protocol-spec", "description": "Wire protocol for PRISM K1 device communication, frame structure, and CRC32 validation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/synqing/k1.hardware/blob/feat/mcp-rag-bootstrap/.claude/skills/prism-protocol-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-11T02:58:37Z"}, "embedding_text": "prism-protocol-spec. Wire protocol for PRISM K1 device communication, frame structure, and CRC32 validation Platforms: claude_code."} +{"id": "c4480c5a25ea2e30c6f62a3082975a597fb14a4af43a12dc84bb64a1b9354e49", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "hook-factory", "description": "Generate production-ready Claude Code hooks with interactive Q&A, automated installation, and enhanced validation. Supports 10 templates across 7 event types for comprehensive workflow automation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/claude-code-skill-factory/generated-skills/hook-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "hook-factory. Generate production-ready Claude Code hooks with interactive Q&A, automated installation, and enhanced validation. Supports 10 templates across 7 event types for comprehensive workflow automation. Platforms: claude_code."} +{"id": "62fa6d6be99d8a7dd93f2bfb7d333166908cb12c5712fcbbcf1b5c1940271e61", "repo_url": "https://github.com/ya-luotao/claude-agent-sdk-ruby", "name": "claude-agent-ruby", "description": "Implement or modify Ruby code that uses the claude-agent-sdk gem, including query() one-shot calls, Client-based interactive sessions, streaming input, option configuration, tools/permissions, hooks,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ya-luotao/claude-agent-sdk-ruby/blob/main/plugins/claude-agent-ruby/skills/claude-agent-ruby/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T19:31:27Z"}, "embedding_text": "claude-agent-ruby. Implement or modify Ruby code that uses the claude-agent-sdk gem, including query() one-shot calls, Client-based interactive sessions, streaming input, option configuration, tools/permissions, hooks, Platforms: claude_code."} +{"id": "aea4658946c120314024cb43f96ec5480aca795ddff32f0ffe2d94f03e5bfdbe", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-btp-integration-suite", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-btp-integration-suite/skills/sap-btp-integration-suite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-btp-integration-suite. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6619c33722f562deba6271fd5481bc2203e3edc37e0df1bff44876dde2cd536d", "repo_url": "https://github.com/dougtrajano/pydantic-ai-skills", "name": "arxiv-search", "description": "Search arXiv preprint repository for papers in physics, mathematics, computer science, quantitative biology, and related fields.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dougtrajano/pydantic-ai-skills/blob/main/examples/skills/arxiv-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install arxiv-search"}, "quality": {"stars": 318, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T02:35:06Z"}, "embedding_text": "arxiv-search. Search arXiv preprint repository for papers in physics, mathematics, computer science, quantitative biology, and related fields. Platforms: claude_code."} +{"id": "4e419d1cc76b26c1964a952616fcdbb5e111ccad57702cc6de1016eea297be9e", "repo_url": "https://github.com/jykim/claude-obsidian-skills", "name": "video-cleaning", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jykim/claude-obsidian-skills/blob/main/video-cleaning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T22:15:25Z"}, "embedding_text": "video-cleaning. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5eeb9b5fa899dd7dae066f76f98101c618d7748ead062c4d2fc7bb3f6ba9b9eb", "repo_url": "https://github.com/ruvnet/midstream", "name": "AIMDS", "description": "AI Manipulation Defense System implementation with Midstream, AgentDB, and lean-agentic", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruvnet/midstream/blob/main/.claude/skills/AIMDS/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 122, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T07:36:20Z"}, "embedding_text": "AIMDS. AI Manipulation Defense System implementation with Midstream, AgentDB, and lean-agentic Platforms: claude_code."} +{"id": "4841905a1b20b5c73369de5afac106c46c0c970c57108a409e8b62b50e2bbf28", "repo_url": "https://github.com/prorise-cool/claude-code-multi-agent", "name": "skill-creator", "description": "\u521b\u5efa\u6709\u6548\u6280\u80fd\u7684\u6307\u5357\u3002\u5f53\u7528\u6237\u60f3\u8981\u521b\u5efa\u65b0\u6280\u80fd\uff08\u6216\u66f4\u65b0\u73b0\u6709\u6280\u80fd\uff09\u4ee5\u901a\u8fc7\u4e13\u4e1a\u77e5\u8bc6\u3001\u5de5\u4f5c\u6d41\u6216\u5de5\u5177\u96c6\u6210\u6269\u5c55 Claude \u7684\u529f\u80fd\u65f6\uff0c\u5e94\u4f7f\u7528\u6b64\u6280\u80fd\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/claude-code-multi-agent/blob/master/.claude/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 299, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:05:34Z"}, "embedding_text": "skill-creator. \u521b\u5efa\u6709\u6548\u6280\u80fd\u7684\u6307\u5357\u3002\u5f53\u7528\u6237\u60f3\u8981\u521b\u5efa\u65b0\u6280\u80fd\uff08\u6216\u66f4\u65b0\u73b0\u6709\u6280\u80fd\uff09\u4ee5\u901a\u8fc7\u4e13\u4e1a\u77e5\u8bc6\u3001\u5de5\u4f5c\u6d41\u6216\u5de5\u5177\u96c6\u6210\u6269\u5c55 Claude \u7684\u529f\u80fd\u65f6\uff0c\u5e94\u4f7f\u7528\u6b64\u6280\u80fd\u3002 Platforms: claude_code."} +{"id": "316fca900ec52acc1fe124fd1ec527196d79af3aebd35cd759a3b2b4071881f2", "repo_url": "https://github.com/trabian/fluxwing-skills", "name": "Fluxwing Screen Scaffolder", "description": "Build complete UI screens by composing multiple uxscii components. Use when working with .uxm files, when user wants to create, scaffold, or build .uxm screens like login, dashboard, profile, settings, or checkout pages.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trabian/fluxwing-skills/blob/main/skills/fluxwing-screen-scaffolder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Fluxwing Screen Scaffolder"}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-30T13:14:20Z"}, "embedding_text": "Fluxwing Screen Scaffolder. Build complete UI screens by composing multiple uxscii components. Use when working with .uxm files, when user wants to create, scaffold, or build .uxm screens like login, dashboard, profile, settings, or checkout pages. Categories: claude-code, claude-code-plugins, claude-skills. Platforms: claude_code."} +{"id": "5963dfa3b71d7c73d1be22c4fb14b44569818249758a8ed4fb097c357ba1dfb6", "repo_url": "https://github.com/alecdotdev/markpad", "name": "Markpad", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 625, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T16:46:52Z"}, "embedding_text": "Markpad. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "f2b9bef35850559f50420d929e39b658bc666e87d26f8e83b6b99bb31f2d8f9a", "repo_url": "https://github.com/trabian/fluxwing-skills", "name": "Fluxwing Component Creator", "description": "Create uxscii components with ASCII art and structured metadata when user wants to create, build, or design UI components. Use when working with .uxm files, when user mentions .uxm components, or when creating buttons, inputs, cards, forms, modals, or navigation.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trabian/fluxwing-skills/blob/main/skills/fluxwing-component-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Fluxwing Component Creator"}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-30T13:14:20Z"}, "embedding_text": "Fluxwing Component Creator. Create uxscii components with ASCII art and structured metadata when user wants to create, build, or design UI components. Use when working with .uxm files, when user mentions .uxm components, or when creating buttons, inputs, cards, forms, modals, or navigation. Categories: claude-code, claude-code-plugins, claude-skills. Platforms: claude_code."} +{"id": "859a7d52f7757ab86aa1616f9fa3353f254a3ef3ce95f972a1c1cd4ceb7494b0", "repo_url": "https://github.com/doccker/cc-use-exp", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/doccker/cc-use-exp/blob/main/.claude/skills/api-design-safety/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 854, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T07:19:36Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1a945a5da2a856604933cbacbb6b51e3cfd548f2427c8719ab4511e64cd3028f", "repo_url": "https://github.com/eyadkelleh/awesome-claude-skills-security", "name": "usernames", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eyadkelleh/awesome-claude-skills-security/blob/main/skills/security-usernames/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 316, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T08:31:04Z"}, "embedding_text": "usernames. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3002309c36ae22369b6402c137a2c6cd1d34cdf78599f72186116b02d40b760b", "repo_url": "https://github.com/aardvark-platform/aardvark.base", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 162, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:33:29Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a76b88749b7b84e0dfceffb19061df677a0452963b0302f44dd0e27960fcdefa", "repo_url": "https://github.com/eyadkelleh/awesome-claude-skills-security", "name": "pattern-matching", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eyadkelleh/awesome-claude-skills-security/blob/main/skills/llm-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 316, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T08:31:04Z"}, "embedding_text": "pattern-matching. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c8cb259cdbe41d88c56977ac6a70220240ad9fcb7f6e75bd897c0ac23c622941", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "conductor-orchestrator", "description": "Master coordinator for the Evaluate-Loop workflow v3. Supports GOAL-DRIVEN entry, PARALLEL execution via worker agents, BOARD OF DIRECTORS deliberation, and message bus coordination. Dispatches specia", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/conductor-orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "conductor-orchestrator. Master coordinator for the Evaluate-Loop workflow v3. Supports GOAL-DRIVEN entry, PARALLEL execution via worker agents, BOARD OF DIRECTORS deliberation, and message bus coordination. Dispatches specia Platforms: claude_code."} +{"id": "58933ec3473e26be931033acf529230c8406d6ba49c5c00cd556e55b3f0944d4", "repo_url": "https://github.com/secondsky/sap-skills", "name": "skill-review", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/.agents/skills/claude-automation-recommender/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "skill-review. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ae825c4025c009fe2293183dbe0b13004dd11273a4fc72e65958b2fd55d6e3b1", "repo_url": "https://github.com/coder/anyclaude", "name": "anyclaude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 284, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-08-12T02:46:53Z"}, "embedding_text": "anyclaude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2dc543c8babe643026523d6a7b2f740a6a9f48ad0f56fe02ab60fab63d06e4dc", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "chatfiles", "description": "Coordinate multiple Claude agents via shared text files. Triggers on Chatfile, multi-agent, cross-machine coordination.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/data-ai/chatfiles/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "chatfiles. Coordinate multiple Claude agents via shared text files. Triggers on Chatfile, multi-agent, cross-machine coordination. Platforms: claude_code."} +{"id": "f076bc223c1c881475446d2dd6c5fbc2980a6075044916f39109c83d4936f2b7", "repo_url": "https://github.com/tokoroten/prompt-review", "name": "prompt-review", "description": "\u3053\u306e\u30b9\u30ad\u30eb\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u300c\u30d7\u30ed\u30f3\u30d7\u30c8\u3092\u30ec\u30d3\u30e5\u30fc\u3057\u3066\u300d\u300c\u5bfe\u8a71\u5c65\u6b74\u3092\u5206\u6790\u3057\u3066\u300d\u300c\u7406\u89e3\u5ea6\u3092\u8a3a\u65ad\u3057\u3066\u300d \u3068\u4f9d\u983c\u3057\u305f\u3068\u304d\u3001\u307e\u305f\u306f /prompt-review \u3067\u547c\u3073\u51fa\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002 \u904e\u53bb\u306eAI\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u5bfe\u8a71\u5c65\u6b74\uff08Claude Code, GitHub Copilot Chat, Cursor, Cline, Roo Code, Windsurf, Antigravity, Gemini CLI,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tokoroten/prompt-review/blob/main/.claude/skills/prompt-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-14T11:15:27Z"}, "embedding_text": "prompt-review. \u3053\u306e\u30b9\u30ad\u30eb\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u304c\u300c\u30d7\u30ed\u30f3\u30d7\u30c8\u3092\u30ec\u30d3\u30e5\u30fc\u3057\u3066\u300d\u300c\u5bfe\u8a71\u5c65\u6b74\u3092\u5206\u6790\u3057\u3066\u300d\u300c\u7406\u89e3\u5ea6\u3092\u8a3a\u65ad\u3057\u3066\u300d \u3068\u4f9d\u983c\u3057\u305f\u3068\u304d\u3001\u307e\u305f\u306f /prompt-review \u3067\u547c\u3073\u51fa\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002 \u904e\u53bb\u306eAI\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8\u5bfe\u8a71\u5c65\u6b74\uff08Claude Code, GitHub Copilot Chat, Cursor, Cline, Roo Code, Windsurf, Antigravity, Gemini CLI, Platforms: claude_code."} +{"id": "50e5dcdb333fdac04d63b9ecd80b301fb37a3165dc3cf587fcce18de5153b65c", "repo_url": "https://github.com/mailpoet/mailpoet", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mailpoet/mailpoet/blob/trunk/.ai/skills/creating-pull-requests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 158, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T18:44:19Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b2f861baf652e17c103adc7230526e3c7aa00125c8bcb4878fd155b5b1f545b8", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv Platforms: claude_code."} +{"id": "d247bd0e9b35b38675da52c224043a29934374c027edd3557d799a1b2c6a035f", "repo_url": "https://github.com/uberskillsdev/uberskills", "name": "Skill Beta", "description": "Second skill in a multi-skill directory", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/uberskillsdev/uberskills/blob/master/packages/skill-engine/src/__tests__/fixtures/multi-skill/skill-b/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 18, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-04T10:28:51Z"}, "embedding_text": "Skill Beta. Second skill in a multi-skill directory Platforms: claude_code."} +{"id": "ce306f595c03e5264057df031c99d6f3a135cd4e5ab713ed3c5f9ce3ccc81b69", "repo_url": "https://github.com/terminalskills/skills", "name": "structured-output", "description": "Force LLMs to return typed, validated JSON \u2014 not free-text. Use when someone asks to \"get structured data from LLM\", \"parse LLM response as JSON\", \"make AI return typed output\", \"validate LLM output\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/terminalskills/skills/blob/main/skills/structured-output/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 85, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T19:37:07Z"}, "embedding_text": "structured-output. Force LLMs to return typed, validated JSON \u2014 not free-text. Use when someone asks to \"get structured data from LLM\", \"parse LLM response as JSON\", \"make AI return typed output\", \"validate LLM output\", Platforms: claude_code."} +{"id": "6ed5c704ff8a90deca9b3fa525e4b1a08191c20c8932546aaf785dbd0eae1bc5", "repo_url": "https://github.com/aspiers/ai-config", "name": "agent-command-authoring", "description": "Create Claude Code slash commands and OpenCode command files that delegate to subagents. Use when creating new commands or refactoring existing ones to follow the delegation pattern.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/agent-command-authoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "agent-command-authoring. Create Claude Code slash commands and OpenCode command files that delegate to subagents. Use when creating new commands or refactoring existing ones to follow the delegation pattern. Platforms: claude_code."} +{"id": "a725872f73bb741ecbf65a1b4e8e334e826b86ea72c2da30f9a6832e2845a2c8", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "web-artifacts-builder", "description": "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 manag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/web-artifacts-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "web-artifacts-builder. 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 manag Platforms: claude_code."} +{"id": "46319fda700aad577f47a2ba24965506c65c8887108fd7fc4c34e45bd2c2a6bd", "repo_url": "https://github.com/webdevtodayjason/sub-agents", "name": "sub-agents", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 200, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-04T16:01:09Z"}, "embedding_text": "sub-agents. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "190cff64c41c2d0cb29b88e7764d2bd4ed6c61cd4df22dd1353e9633c8a622c1", "repo_url": "https://github.com/pr-pm/prpm", "name": "claude-hook-writer", "description": "Expert guidance for writing secure, reliable, and performant Claude Code hooks - validates design decisions, enforces best practices, and prevents common pitfalls", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pr-pm/prpm/blob/main/.claude/skills/claude-hook-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 115, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T10:00:50Z"}, "embedding_text": "claude-hook-writer. Expert guidance for writing secure, reliable, and performant Claude Code hooks - validates design decisions, enforces best practices, and prevents common pitfalls Platforms: claude_code."} +{"id": "c75432a2fa83000436b665125b0b59d8fe90fed1777c504e84435c78ca023e04", "repo_url": "https://github.com/yoanbernabeu/grepai-skills", "name": "grepai-mcp-claude", "description": "Integrate GrepAI with Claude Code via MCP. Use this skill to enable semantic code search in Claude Code.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yoanbernabeu/grepai-skills/blob/main/skills/integration/grepai-mcp-claude/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-01T11:14:48Z"}, "embedding_text": "grepai-mcp-claude. Integrate GrepAI with Claude Code via MCP. Use this skill to enable semantic code search in Claude Code. Platforms: claude_code."} +{"id": "1ed2ee2e88c74c7b9dc4e0b06eae5603dcc18babb9c3f4f56d153543ca835cf0", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-gepa-reflective", "description": "This skill should be used when the user asks to \"optimize an agent with GEPA\", \"use reflective optimization\", \"optimize ReAct agents\", \"provide feedback metrics\", mentions \"GEPA optimizer\", \"LLM reflection\", \"execution trajectories\", \"agentic systems optimization\", or needs to optimize complex multi-step agents using textual feedback on execution traces.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omidzamani/dspy-skills/blob/master/skills/dspy-gepa-reflective/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-gepa-reflective"}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T18:25:32Z"}, "embedding_text": "dspy-gepa-reflective. This skill should be used when the user asks to \"optimize an agent with GEPA\", \"use reflective optimization\", \"optimize ReAct agents\", \"provide feedback metrics\", mentions \"GEPA optimizer\", \"LLM reflection\", \"execution trajectories\", \"agentic systems optimization\", or needs to optimize complex multi-step agents using textual feedback on execution traces. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} +{"id": "e2ca2565c06d2fa7817219fc2e233c7659014a79b5ac06176b74308fb8260791", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "patchright-skill", "description": "Patchright-based browser automation with bot detection bypass. Use when Claude needs to interact with local web applications, test localhost/dev servers, take screenshots, or perform UI interactions on private networks. Ideal for QA automation, frontend debugging, E2E testing, and pre-deployment verification on local development environments.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/smallnest/patchright-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install patchright-skill"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "patchright-skill. Patchright-based browser automation with bot detection bypass. Use when Claude needs to interact with local web applications, test localhost/dev servers, take screenshots, or perform UI interactions on private networks. Ideal for QA automation, frontend debugging, E2E testing, and pre-deployment verification on local development environments. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "096bde203db88cfd1d2f4502f43017127197d1d4d895669b04bf05b1be52c456", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts Platforms: claude_code."} +{"id": "e7aa5c59598d442414f224638b5173620edadd0bce671c0dc40b66d827aad58e", "repo_url": "https://github.com/scientiacapital/skills", "name": "project-context", "description": "Maintains project context and progress tracking across Claude sessions.\nUse at session start to load context, on session end to save progress.\nTriggers: \"load project context\", \"save context\", \"end se", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/stable/project-context-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "project-context. Maintains project context and progress tracking across Claude sessions.\nUse at session start to load context, on session end to save progress.\nTriggers: \"load project context\", \"save context\", \"end se Platforms: claude_code."} +{"id": "4841f15bd1eff07748e7fec18bad7f4a829f0cacadde90f81385a9c9ef185f73", "repo_url": "https://github.com/duthaho/claudekit", "name": "token-efficient", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/duthaho/claudekit/blob/main/skills/audit-dependencies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-07T10:02:20Z"}, "embedding_text": "token-efficient. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "faffbc9c67e59cb6e0f263907c767a4f8b415232b7b82bce8e3ee7d51cc0dbe9", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "memory-and-rules", "description": "Configure and manage Claude Code persistent memory (CLAUDE.md, auto memory, rules) across sessions. Use when setting up project memory, organizing .claude/rules/, managing auto memory files, creating", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/memory-and-rules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "memory-and-rules. Configure and manage Claude Code persistent memory (CLAUDE.md, auto memory, rules) across sessions. Use when setting up project memory, organizing .claude/rules/, managing auto memory files, creating Platforms: claude_code."} +{"id": "68642dca12e5f750c78f68fee9e27bdcec321d49e8560f1f3aa1fda18ebcdd28", "repo_url": "https://github.com/shahtuyakov/claude-setup", "name": "brand-guidelines", "description": "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", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shahtuyakov/claude-setup/blob/main/skills/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-29T22:53:46Z"}, "embedding_text": "brand-guidelines. 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 Platforms: claude_code."} +{"id": "b4a787f688bf696cf3dbfe96829d539c89226dbd0c0df3484bc50498c726da7f", "repo_url": "https://github.com/smallnest/langgraphgo", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smallnest/langgraphgo/blob/master/testdata/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 266, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T14:00:50Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "11553c49065f2a7df3529cd1db5dbd58169952b66353d385d955183fb5acaadd", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "template-skill_mrgoonie", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/template-skill_mrgoonie/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install template-skill_mrgoonie"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "template-skill_mrgoonie. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "29092d8ba70d8737b2fcfc4a8087925281a5d21d9693f676158dbe14d5df5ffe", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "audit-skill-completeness", "description": "Evaluate a single skill's quality against 8 completeness categories derived from Anthropic's official skills repository. Scores preparation, progression, verification, scripts, examples, anti-patterns", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/audit-skill-completeness/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "audit-skill-completeness. Evaluate a single skill's quality against 8 completeness categories derived from Anthropic's official skills repository. Scores preparation, progression, verification, scripts, examples, anti-patterns Platforms: claude_code."} +{"id": "2309f8d701d12d14c8ef025d49bf704087ff66fe2bacbb80602ec7e1af51bea4", "repo_url": "https://github.com/knative/func", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 360, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T11:40:49Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1bc9ace80d2669fe79250228bf496026c82bbff6cbf72417cafd7bbc5b9000c7", "repo_url": "https://github.com/rshankras/claude-code-apple-skills", "name": "deep-linking", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rshankras/claude-code-apple-skills/blob/main/skills/generators/deep-linking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 439, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T04:48:27Z"}, "embedding_text": "deep-linking. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "31e405d1eee6240c6ebe6fcd2fbccf84e8032ae8dd44b74133a53c6b3bfcefec", "repo_url": "https://github.com/vcnoc/claude-code-zen-mcp-skill-work", "name": "simple-gemini", "description": "Collaborative documentation and test code writing workflow using zen mcp's clink to launch gemini CLI session in WSL (via 'gemini' command) where all writing operations are executed. Use this skill wh", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vcnoc/claude-code-zen-mcp-skill-work/blob/main/skills/simple-gemini/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 117, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T08:51:53Z"}, "embedding_text": "simple-gemini. Collaborative documentation and test code writing workflow using zen mcp's clink to launch gemini CLI session in WSL (via 'gemini' command) where all writing operations are executed. Use this skill wh Platforms: claude_code."} +{"id": "210f1e4fe7822de332c31faf54d9b920ae53477fae90962032c36e466c00480c", "repo_url": "https://github.com/yifanzz/claude-code-boost", "name": "claude-code-boost", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 164, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-21T15:51:55Z"}, "embedding_text": "claude-code-boost. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "78eac20d706c1760643f75681cd1a6d11062c7eeb55d0c7d231c32aa6029286f", "repo_url": "https://github.com/wrmilling/k3s-gitops", "name": "k3s-gitops", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 228, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T21:02:40Z"}, "embedding_text": "k3s-gitops. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b787529fcb7fc1ac9bcfd3e18ce74f0cace0f2e0215fcd62500b26ba94bc71df", "repo_url": "https://github.com/eyadkelleh/awesome-claude-skills-security", "name": "fuzzing", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eyadkelleh/awesome-claude-skills-security/blob/main/skills/security-fuzzing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 316, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T08:31:04Z"}, "embedding_text": "fuzzing. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ec1b6443d04abd3f1a288a7e46d78297afff19f6d5d70b5429d1dac1ddbf47b8", "repo_url": "https://github.com/eyadkelleh/awesome-claude-skills-security", "name": "payloads", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eyadkelleh/awesome-claude-skills-security/blob/main/skills/security-payloads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 316, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T08:31:04Z"}, "embedding_text": "payloads. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "780f7ed07f104f46a6deadbd0d0b7619ab1520ce3c659ab87c9d23150335ee47", "repo_url": "https://github.com/team-attention/hoyeon", "name": "deep-research", "description": "Deep web research skill using parallel subagents + chromux browser-explorer + Gemini. Spawns multiple WebSearch research agents AND browser-explorer agents (via chromux for JS-heavy/dynamic sites), pl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-attention/hoyeon/blob/main/codex/skills/hoyeon-deep-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T04:06:30Z"}, "embedding_text": "deep-research. Deep web research skill using parallel subagents + chromux browser-explorer + Gemini. Spawns multiple WebSearch research agents AND browser-explorer agents (via chromux for JS-heavy/dynamic sites), pl Platforms: claude_code."} +{"id": "726162d53a5e60aa8d6fb4f7a47dcafe8d5df31099dc59ddf92c17733676a43c", "repo_url": "https://github.com/eyadkelleh/awesome-claude-skills-security", "name": "web-shells", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eyadkelleh/awesome-claude-skills-security/blob/main/skills/security-webshells/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 316, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-08T08:31:04Z"}, "embedding_text": "web-shells. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "594f8ad916830b4c7e4cf00f55f065710a689bb9190e7728428518c3fe2d6442", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "reverse-engineering-firmware", "description": "This skill provides firmware extraction and security analysis for IoT devices and embedded systems, focusing on reverse engineering, vulnerability assessment, and compliance verification in isolated e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/security/reverse-engineering-firmware-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "reverse-engineering-firmware. This skill provides firmware extraction and security analysis for IoT devices and embedded systems, focusing on reverse engineering, vulnerability assessment, and compliance verification in isolated e Platforms: claude_code."} +{"id": "b179cfbe5e71243b22f025a5cc98756dbd4f50dfd241cdf46b677a97a77f3f40", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "skill-security-analyzer", "description": "Comprehensive security risk analysis for Claude skills. Use when asked to analyze security risks, review security stance, audit skills for vulnerabilities, check security before deployment, or evaluat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/security-analyzer/skill-security-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "skill-security-analyzer. Comprehensive security risk analysis for Claude skills. Use when asked to analyze security risks, review security stance, audit skills for vulnerabilities, check security before deployment, or evaluat Platforms: claude_code."} +{"id": "0de334c9ae3493a0240ca0bc23900793c89bf71e23beb6ee987ba5a56d3138b2", "repo_url": "https://github.com/tavily-ai/skills", "name": "tavily-best-practices", "description": "Build production-ready Tavily integrations with best practices baked in. Reference documentation for developers using coding assistants (Claude Code, Cursor, etc.) to implement web search, content ext", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tavily-ai/skills/blob/main/skills/tavily-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 384, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-04T19:07:08Z"}, "embedding_text": "tavily-best-practices. Build production-ready Tavily integrations with best practices baked in. Reference documentation for developers using coding assistants (Claude Code, Cursor, etc.) to implement web search, content ext Platforms: claude_code."} +{"id": "83545025db6cf249892c2cfbcf535e5ca41b2b004c65c5ba3292a503d848a4d1", "repo_url": "https://github.com/paralleldrive/aidd", "name": "aidd", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paralleldrive/aidd/blob/main/ai/skills/aidd-agent-orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 361, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T20:01:01Z"}, "embedding_text": "aidd. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "62eae0296c8637b451feeedb916a904cf0235c2ff0ac9163ba818384f5f68cb7", "repo_url": "https://github.com/wondelai/skills", "name": "jobs-to-be-done", "description": "Discover what customers truly need by analyzing the \"job\" they hire your product to do. Use when the user mentions \"customer discovery\", \"why customers churn\", \"what job does this solve\", \"competing against luck\", or \"product-market fit\". Covers JTBD interviews, competition analysis, and jobs-oriented roadmaps. For product positioning, see obviously-awesome. For rapid validation, see design-sprint.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/jobs-to-be-done/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jobs-to-be-done"}, "quality": {"stars": 1418, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:13:04Z"}, "embedding_text": "jobs-to-be-done. Discover what customers truly need by analyzing the \"job\" they hire your product to do. Use when the user mentions \"customer discovery\", \"why customers churn\", \"what job does this solve\", \"competing against luck\", or \"product-market fit\". Covers JTBD interviews, competition analysis, and jobs-oriented roadmaps. For product positioning, see obviously-awesome. For rapid validation, see design-sprint. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} +{"id": "ec279285a082d9bdfb47b85fd00e19c65ccc397530ac270c00ed543a8e2a324f", "repo_url": "https://github.com/adityaraj0421/naksha-studio", "name": "design", "description": "Assembles a virtual design team to produce production-quality UI, UX, visual, social media, email, and data output. A Design Manager staffs the right specialists (Product Designer, UX Designer, UI Des", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/adityaraj0421/naksha-studio/blob/main/skills/design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 289, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T06:34:29Z"}, "embedding_text": "design. Assembles a virtual design team to produce production-quality UI, UX, visual, social media, email, and data output. A Design Manager staffs the right specialists (Product Designer, UX Designer, UI Des Platforms: claude_code."} +{"id": "c9affc70fdf04048ef05809992ae51b812984ff6ff3347e61c168882f1ed25d6", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "claude-reflect", "description": "Self-learning system that captures corrections during sessions and reminds users to run /reflect to update CLAUDE.md. Use when discussing learnings, corrections, or when the user mentions remembering something for future sessions.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bayramannakov/claude-reflect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-reflect"}, "quality": {"stars": 368, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T15:42:59Z"}, "embedding_text": "claude-reflect. Self-learning system that captures corrections during sessions and reminds users to run /reflect to update CLAUDE.md. Use when discussing learnings, corrections, or when the user mentions remembering something for future sessions. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} +{"id": "1c2d74aefd49cc4587a9f01f21f7b07faf558998ece80fc12469a59ee6e8801a", "repo_url": "https://github.com/codealive-ai/claude-code-reflection-skills", "name": "settings-management", "description": "View and configure settings for coding agents (Claude Code, Codex CLI, and others). Covers JSON settings for Claude Code and TOML config for Codex CLI, including permissions, sandbox, model selection,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codealive-ai/claude-code-reflection-skills/blob/main/skills/settings-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 90, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:03:39Z"}, "embedding_text": "settings-management. View and configure settings for coding agents (Claude Code, Codex CLI, and others). Covers JSON settings for Claude Code and TOML config for Codex CLI, including permissions, sandbox, model selection, Platforms: claude_code."} +{"id": "89b9209fcba1946a18633710bf56f6d12fa4e4e2c0b13e362bfaefcfd85b89b2", "repo_url": "https://github.com/dannyaziz/claude-prune", "name": "claude-prune", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 85, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-09-16T15:34:38Z"}, "embedding_text": "claude-prune. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d2fc47a7b788c60604131d5bfaf8c4435431082d7fc2535c21ed87e70757b2da", "repo_url": "https://github.com/brian-yu/python-rope-refactor", "name": "Python Rope Refactor", "description": "Rope-first workflow for ANY mechanical Python rename/move (functions/methods/classes/variables/modules/packages), updating imports/references via scripts/rope_refactor.py; use even for small renames;", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brian-yu/python-rope-refactor/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 39, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-25T01:10:47Z"}, "embedding_text": "Python Rope Refactor. Rope-first workflow for ANY mechanical Python rename/move (functions/methods/classes/variables/modules/packages), updating imports/references via scripts/rope_refactor.py; use even for small renames; Platforms: claude_code."} +{"id": "2c22cbe8c0724a93944550864817c221198af1767fbddb2a988ebc3be1026d00", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "motion", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/motion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install motion"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "motion. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "92a7e2a5a045947124629369f200b78509c62a69c1c5e8666630a46fa3f565c7", "repo_url": "https://github.com/bonny/wordpress-simple-history", "name": "sql", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bonny/wordpress-simple-history/blob/main/.claude/skills/sql/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 315, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T16:10:26Z"}, "embedding_text": "sql. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9ee6844e42f6d8f4048171a7baf1054d3e72376edeabde0ce075669f381bc412", "repo_url": "https://github.com/aspiers/ai-config", "name": "subagent-authoring", "description": "Create subagent definitions for Claude Code and OpenCode that delegate to skills. Use when creating new subagents or refactoring existing ones to follow the delegation pattern.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/subagent-authoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "subagent-authoring. Create subagent definitions for Claude Code and OpenCode that delegate to skills. Use when creating new subagents or refactoring existing ones to follow the delegation pattern. Platforms: claude_code."} +{"id": "146c2d1b57ac016a7838aba3c29c7473a2dcef9d3d8912c4f4eef04ba2264c3f", "repo_url": "https://github.com/harperreed/dotfiles", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/harperreed/dotfiles/blob/master/.claude/skills-archive/agent-business-canvas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 325, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:04:48Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6938122ba70f656a58c910d8c976785d26247678095168a8a93fdbf105d09d63", "repo_url": "https://github.com/yizhiyanhua-ai/skills-updater", "name": "skills-updater", "description": "Check and update installed Claude Code skills from multiple sources (Claude plugins and npx skills). Scans for available updates, supports batch or individual updates with intelligent local change mer", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/yizhiyanhua-ai/skills-updater/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 166, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T14:50:16Z"}, "embedding_text": "skills-updater. Check and update installed Claude Code skills from multiple sources (Claude plugins and npx skills). Scans for available updates, supports batch or individual updates with intelligent local change mer Platforms: claude_code."} +{"id": "689b7eb50a1be5102236c423a8da4b1818891d97e3956a9c3920cfff964b062a", "repo_url": "https://github.com/cellwebb/gac", "name": "gac", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cellwebb/gac/blob/main/.skills/adding-provider/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 319, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T15:02:51Z"}, "embedding_text": "gac. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a16504cba01a2e6910681d049ffdec9c48e33d8cf63507300b6b4f333de690e7", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-haystack-integration", "description": "This skill should be used when the user asks to \"integrate DSPy with Haystack\", \"optimize Haystack prompts using DSPy\", \"use DSPy to improve Haystack pipeline\", mentions \"Haystack pipeline optimization\", \"combining DSPy and Haystack\", \"extract DSPy prompt for Haystack\", or wants to use DSPy's optimization capabilities to automatically improve prompts in existing Haystack pipelines.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omidzamani/dspy-skills/blob/master/skills/dspy-haystack-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-haystack-integration"}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T18:25:32Z"}, "embedding_text": "dspy-haystack-integration. This skill should be used when the user asks to \"integrate DSPy with Haystack\", \"optimize Haystack prompts using DSPy\", \"use DSPy to improve Haystack pipeline\", mentions \"Haystack pipeline optimization\", \"combining DSPy and Haystack\", \"extract DSPy prompt for Haystack\", or wants to use DSPy's optimization capabilities to automatically improve prompts in existing Haystack pipelines. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} +{"id": "4e2216c83ca917346f20c7a920fe748b9a431dab1179e1897e794b394d9a83e8", "repo_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers", "name": "business-docs-sync", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ibrahim-3d/conductor-orchestrator-superpowers/blob/master/skills/business-docs-sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 357, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:49:30Z"}, "embedding_text": "business-docs-sync. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a967a8eb941e6ebc9031425690dab5ad95d492bb3a21e11ad0ce71ac013b22fc", "repo_url": "https://github.com/yinzhenyu-su/weekly-git-summary", "name": "weekly-git-summary", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 201, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T04:57:12Z"}, "embedding_text": "weekly-git-summary. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "121fc1784b67d511c3456b6556d56b9d1cc11ecfb1612635d78b2b150c399119", "repo_url": "https://github.com/plurigrid/asi", "name": "borkdude", "description": "Babashka and ClojureScript runtime selection guidance by @borkdude", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/borkdude/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "borkdude. Babashka and ClojureScript runtime selection guidance by @borkdude Platforms: claude_code."} +{"id": "deb36b28a966cf0d73dbf92eb33f58d38a0941069d3a76c9d2f44d28bc471cd0", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "claude-code-mastery", "description": "Master Claude Code capabilities - subagents, skills, hooks, MCP. Use when optimizing workflows, creating automation, or improving how agents work.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/claude-code-mastery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-code-mastery"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "claude-code-mastery. Master Claude Code capabilities - subagents, skills, hooks, MCP. Use when optimizing workflows, creating automation, or improving how agents work. Platforms: claude_code."} +{"id": "aaaa62bb169632b14f4c3a261dbc065323a249d467daa17cd22c4a8797b0210c", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "flutter-networking", "description": "Comprehensive Flutter networking guidance including HTTP CRUD operations, WebSocket connections, authentication, error handling, and performance optimization. Use when Claude needs to implement HTTP r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/flutter-networking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "flutter-networking. Comprehensive Flutter networking guidance including HTTP CRUD operations, WebSocket connections, authentication, error handling, and performance optimization. Use when Claude needs to implement HTTP r Platforms: claude_code."} +{"id": "c787f03dc63e0dab81acc4224ec5eb240529b3e30b386b1f86db0e6ca4852f60", "repo_url": "https://github.com/sparesparrow/mcp-prompts", "name": "scripts", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sparesparrow/mcp-prompts/blob/main/scripts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 119, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:47:34Z"}, "embedding_text": "scripts. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6b17350162106561e5966565149862f325cc534a03c4948f489fff385d58fae7", "repo_url": "https://github.com/diegosouzapw/awesome-omni-skill", "name": "til", "description": "Today I Learned - Claude Code\u30bb\u30c3\u30b7\u30e7\u30f3\u304b\u3089\u6280\u8853\u7684\u306a\u77e5\u898b\u3092\u62bd\u51fa\u3057\u3066Markdown\u3067\u4fdd\u5b58", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/diegosouzapw/awesome-omni-skill/blob/main/skills/ai-agents/utilization-review-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-02T12:15:57Z"}, "embedding_text": "til. Today I Learned - Claude Code\u30bb\u30c3\u30b7\u30e7\u30f3\u304b\u3089\u6280\u8853\u7684\u306a\u77e5\u898b\u3092\u62bd\u51fa\u3057\u3066Markdown\u3067\u4fdd\u5b58 Platforms: claude_code."} +{"id": "d58b36c5d2452be32489ebf28c9277df72ca0143fba701682ed3c4c085f90b91", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "50b359da902d237fa33fceb9cbf4496757d2b1ba27c69d8e2993b61e94a40333", "repo_url": "https://github.com/jparkerweb/pixel-banner", "name": "pixel-banner", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 202, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-17T15:05:23Z"}, "embedding_text": "pixel-banner. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "80bafbd5ab29c4e9eb87260cc55043ccbc0d557b59c3e3c7d953b22c294fd424", "repo_url": "https://github.com/ericbuess/claude-code-project-index", "name": "claude-code-project-index", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 195, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-09-16T18:35:24Z"}, "embedding_text": "claude-code-project-index. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c940100f48392590a04b32b6b3dea36f739097f07b1e8cdce6485965c9a8ee64", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "senior-prompt-engineer", "description": "World-class prompt engineering skill for LLM optimization, prompt patterns, structured outputs, and AI product development. Expertise in Claude, GPT-4, prompt design patterns, few-shot learning, chain", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/alirezarezvani-claude-skills/engineering-team/senior-prompt-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "senior-prompt-engineer. World-class prompt engineering skill for LLM optimization, prompt patterns, structured outputs, and AI product development. Expertise in Claude, GPT-4, prompt design patterns, few-shot learning, chain Platforms: claude_code."} +{"id": "cf6d62224e5c50f8c2e9132d89b4ecbbf2f12e68134127624480449c9f282de4", "repo_url": "https://github.com/aker-dev/microfolio", "name": "microfolio", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 137, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-21T13:44:49Z"}, "embedding_text": "microfolio. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d181a19f03ef76b7c9612b9fff2725ff25f622229d61e99d58fd634f7bdfce88", "repo_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop", "name": "retrospective", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alfredolopez80/multi-agent-ralph-loop/blob/main/.claude/skills/retrospective/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 139, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T11:32:56Z"}, "embedding_text": "retrospective. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "44cb2234e75f1211547097603e3d2e43f9925bbcb8e6f2f9d6ac8cb6aad9f14d", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "project-guidelines-example", "description": "\u57fa\u4e8e\u771f\u5b9e\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f\u7684\u9879\u76ee\u7279\u5b9a\u6280\u80fd\uff08Skill\uff09\u6a21\u677f\u793a\u4f8b\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/project-guidelines-example/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "project-guidelines-example. \u57fa\u4e8e\u771f\u5b9e\u751f\u4ea7\u5e94\u7528\u7a0b\u5e8f\u7684\u9879\u76ee\u7279\u5b9a\u6280\u80fd\uff08Skill\uff09\u6a21\u677f\u793a\u4f8b\u3002 Platforms: claude_code."} +{"id": "a00c5f624a9b8400b13858028ae7190fb509414b6eaadbcc7a9f37b3d7d99233", "repo_url": "https://github.com/paleo/alignfirst", "name": "alignfirst", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/paleo/alignfirst/blob/main/skills/al/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 82, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:42:24Z"}, "embedding_text": "alignfirst. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0ca4836c69daf979529a335076cd1d362a56774d3a4edb512d43d4744429b263", "repo_url": "https://github.com/jonathanprozzi/claude-utils", "name": "zork", "description": "Play Zork text adventure via dfrotz. Use /zork to play (e.g., /zork go north), /zork for status, /zork new to restart, /zork setup to configure Obsidian sync.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jonathanprozzi/claude-utils/blob/main/skills/zork/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-23T04:23:58Z"}, "embedding_text": "zork. Play Zork text adventure via dfrotz. Use /zork to play (e.g., /zork go north), /zork for status, /zork new to restart, /zork setup to configure Obsidian sync. Platforms: claude_code."} +{"id": "127517c4b19232bd8d9b114f8b307bfa90b00736cad6eace734b5c37dd33d13b", "repo_url": "https://github.com/avifenesh/agnix", "name": "valid", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avifenesh/agnix/blob/main/tests/fixtures/invalid/skills/invalid-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "valid. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0a971db1e70c848c280fc9cf5290a27ef33e1770f2de1dfea424b4b9ae0f219f", "repo_url": "https://github.com/jleechanorg/claude-commands", "name": "commands", "description": "Command system documentation & header requirements", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jleechanorg/claude-commands/blob/main/.claude/skills/4layer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T22:59:36Z"}, "embedding_text": "commands. Command system documentation & header requirements Platforms: claude_code."} +{"id": "7ae4da2d54f8f3441c9cf0acd668ba206aa163e7af3b500d0a47333d6e9bc045", "repo_url": "https://github.com/avifenesh/agnix", "name": "no-precedence", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avifenesh/agnix/blob/main/plugin/skills/agnix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "no-precedence. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "1f7c3b2a3b9a73b9bc2fc203a8dde7ddf5ae0d02178a0ccbe93b8b08482a9fa8", "repo_url": "https://github.com/ntcoding/claude-skillz", "name": "Challenge That", "description": "Force critical evaluation of proposals, requirements, or decisions by analyzing from multiple adversarial perspectives. Invoke with /challenge-that when Claude accepts something too readily.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ntcoding/claude-skillz/blob/main/challenge-that/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 318, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-24T16:19:26Z"}, "embedding_text": "Challenge That. Force critical evaluation of proposals, requirements, or decisions by analyzing from multiple adversarial perspectives. Invoke with /challenge-that when Claude accepts something too readily. Platforms: claude_code."} +{"id": "17260473daa0324278bf4d064db65a3e98f867bf19d83d06e324c0875215a65d", "repo_url": "https://github.com/plurigrid/asi", "name": "proofgeneral-narya", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.claude-marketplaces/topos-skills/plugins/topos-skills/skills/proofgeneral-narya/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "proofgeneral-narya. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d6c700576807a5e14a3b2c62ee3824b3863c2d8c388a1d74913b7d9b05f73845", "repo_url": "https://github.com/hasna/skills", "name": "Audio Generation", "description": "Generate high-quality audio using ElevenLabs, OpenAI TTS, and Google Text-to-Speech APIs. Support for text-to-speech, voice cloning, multiple languages, and various voice options.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hasna/skills/blob/main/skills/audio/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T11:14:12Z"}, "embedding_text": "Audio Generation. Generate high-quality audio using ElevenLabs, OpenAI TTS, and Google Text-to-Speech APIs. Support for text-to-speech, voice cloning, multiple languages, and various voice options. Platforms: claude_code."} +{"id": "8ebd557265066ca19e4fb89acf8fbd484cef6bd759fd713d31f5ab1d3e499f56", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "skills-collection-manager", "description": "Comprehensive toolkit for managing large Claude Code skill collections including bulk downloading from GitHub, organizing into categories, detecting and removing duplicates, consolidating skills, and maintaining clean skill repositories with 100+ skills.", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/skills-collection-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skills-collection-manager"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "skills-collection-manager. Comprehensive toolkit for managing large Claude Code skill collections including bulk downloading from GitHub, organizing into categories, detecting and removing duplicates, consolidating skills, and maintaining clean skill repositories with 100+ skills. Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "1d6f2712bc59259314816b96a947c2b59792d51e8adfdd6a75bbaeddca103f2f", "repo_url": "https://github.com/second-state/kitten_tts_rs", "name": "kitten_tts_rs", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 306, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-29T06:59:19Z"}, "embedding_text": "kitten_tts_rs. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "c1b44bed70d029c42fe940203c24524870c17401f8f3efa2dc2913c7fa846689", "repo_url": "https://github.com/r-lib/httr2", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 265, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T16:11:43Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "04c91de3f30092468b5bded8540d86dc8255a2456b420910f43c27318cbf433a", "repo_url": "https://github.com/shuvonsec/claude-bug-bounty", "name": "bug-bounty", "description": "Complete bug bounty workflow \u2014 recon (subdomain enumeration, asset discovery, fingerprinting, HackerOne scope, source code audit), pre-hunt learning (disclosed reports, tech stack research, mind maps,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shuvonsec/claude-bug-bounty/blob/main/skills/bug-bounty/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 3468, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T09:58:47Z"}, "embedding_text": "bug-bounty. Complete bug bounty workflow \u2014 recon (subdomain enumeration, asset discovery, fingerprinting, HackerOne scope, source code audit), pre-hunt learning (disclosed reports, tech stack research, mind maps, Platforms: claude_code."} +{"id": "7f9b64739b232366effbe6069ed8b453d2cdeacae588a737299baee433eb93ca", "repo_url": "https://github.com/saynaai/sayna", "name": "sayna", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 175, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T02:00:32Z"}, "embedding_text": "sayna. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b53d09501eca719d1bd1149d9d76bcccba54b26b0a815d88daa84e91ee1a0d52", "repo_url": "https://github.com/packmindhub/packmind", "name": "e2e-tests", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/packmindhub/packmind/blob/main/.claude/skills/create-run-e2e-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:14:12Z"}, "embedding_text": "e2e-tests. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "968afd0547c12b41ec0ece17df60039620b22f85b238d9ea1960c3cd80e13bab", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "springboot-verification", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/docs/ja-JP/skills/springboot-verification/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "springboot-verification. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "acb4b9c8d6aac5ab7b914ca0e696c340b77e57995869ba9fd79d537b266f7236", "repo_url": "https://github.com/danielchu97/value-investing-agent", "name": "Value-Investing-Agent", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "topic"], "categories": ["ai-agent", "buffett", "claude-skills", "financial-analysis", "graham", "mcp", "stock-analysis-ai", "us-stock-market", "value-investing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/danielchu97/value-investing-agent/blob/main/skills/value-investing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Value-Investing-Agent"}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T23:14:08Z"}, "embedding_text": "Value-Investing-Agent. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: ai-agent, buffett, claude-skills, financial-analysis, graham, mcp, stock-analysis-ai, us-stock-market, value-investing. Platforms: claude_code."} +{"id": "5e787c7693aad91addbe1aa579d825e97dc4df94aa7791173cdb709af0198935", "repo_url": "https://github.com/jwynia/agent-skills", "name": "xlsx-generator", "description": "Create and manipulate Excel XLSX files programmatically. Use when the user needs to generate spreadsheets, modify XLSX templates, extract spreadsheet content, or automate Excel workflows. Supports bot", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jwynia/agent-skills/blob/main/skills/general/document-processing/spreadsheet/xlsx-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T02:35:14Z"}, "embedding_text": "xlsx-generator. Create and manipulate Excel XLSX files programmatically. Use when the user needs to generate spreadsheets, modify XLSX templates, extract spreadsheet content, or automate Excel workflows. Supports bot Platforms: claude_code."} +{"id": "aca5cf7a35b7f015d483499d721b0c9c502a9c36c900c273a432fe0572a57ac0", "repo_url": "https://github.com/vijaythecoder/clueless", "name": "clueless", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 582, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-09T02:12:28Z"}, "embedding_text": "clueless. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "89b3a5438351b275c4637aeedf9a98b7ab8f848335372e322213d948befc68a6", "repo_url": "https://github.com/plurigrid/asi", "name": "sicp", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/sicp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "sicp. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3102864d9f8770ac39386cd50cc33908021cfa3280c737075608822dc7a35cf2", "repo_url": "https://github.com/gocallum/nextjs16-agent-skills", "name": "ai-agents-ui-skills", "description": "Comprehensive guide for building AI agents using ToolLoopAgent, workflow patterns, and AI SDK UI components (useChat, generative UIs, tool calling)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gocallum/nextjs16-agent-skills/blob/main/skills/ai-agents-ui-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T13:27:54Z"}, "embedding_text": "ai-agents-ui-skills. Comprehensive guide for building AI agents using ToolLoopAgent, workflow patterns, and AI SDK UI components (useChat, generative UIs, tool calling) Platforms: claude_code."} +{"id": "cca1476b8cd23c79c1626484b7f0bcdfed58776eb25ea7de7c9d8aaf31bbcacf", "repo_url": "https://github.com/haleclipse/claudiatron", "name": "Claudiatron", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-08-18T06:43:12Z"}, "embedding_text": "Claudiatron. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "66dda12d7d6b8452f5e647527f3d5e51564ba447cbb9c4292810d0805b7288f7", "repo_url": "https://github.com/agentregistry-dev/agentregistry", "name": "agentregistry", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 375, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T18:42:48Z"}, "embedding_text": "agentregistry. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1bb58ca301073a15873d81b88dd89d66ad205613e151511bcb31aed2eb2708fd", "repo_url": "https://github.com/nicepkg/vsync", "name": "skill-downloader", "description": "Download and install Claude Code skills from various sources. Supports GitHub repositories, compressed archives (.zip, .tar.gz, .skill), and direct URLs. Use when user wants to download, install, or a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nicepkg/vsync/blob/main/.claude/skills/skill-downloader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T03:27:42Z"}, "embedding_text": "skill-downloader. Download and install Claude Code skills from various sources. Supports GitHub repositories, compressed archives (.zip, .tar.gz, .skill), and direct URLs. Use when user wants to download, install, or a Platforms: claude_code."} +{"id": "4880c3b1112dca1e5eebc82fa0af2e276ff50df13e0b035f2f54fedffde9ebe2", "repo_url": "https://github.com/bobchao/pm-skills-rfp-to-stories", "name": "Story Refiner", "description": "Evaluates User Story quality and automatically corrects items not meeting standards. Reviews from developer, QA, and stakeholder perspectives, directly producing improved versions for low-quality Stor", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bobchao/pm-skills-rfp-to-stories/blob/main/story-refiner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-02T00:56:11Z"}, "embedding_text": "Story Refiner. Evaluates User Story quality and automatically corrects items not meeting standards. Reviews from developer, QA, and stakeholder perspectives, directly producing improved versions for low-quality Stor Platforms: claude_code."} +{"id": "3987f2067dd431bee1c1a13d5c7c365504a67fc1c20301580e1e22e28b30cc8f", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "write-frontmatter-description", "description": "Write or rewrite frontmatter description fields for Claude Code skills and agents. Use when creating new skills/agents, description exceeds 1024 characters, description uses forbidden YAML multiline i", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/write-frontmatter-description/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "write-frontmatter-description. Write or rewrite frontmatter description fields for Claude Code skills and agents. Use when creating new skills/agents, description exceeds 1024 characters, description uses forbidden YAML multiline i Platforms: claude_code."} +{"id": "50abb1328ef8610e2c2ed30a976fa4e0631dd22d70b1ac6f165f40216aad30a1", "repo_url": "https://github.com/divinevideo/divine-mobile", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/divinevideo/divine-mobile/blob/main/.claude/skills/claudeception/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 257, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T20:55:59Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3d3b805f7b389a45944905fcfe6c7ba26b77a8318d6e4174b6c2d51a658cf185", "repo_url": "https://github.com/robertguss/claude-skills", "name": "book-research-assistant", "description": "Plan, orchestrate, and validate deep research for nonfiction books. Use when an author has completed book architecture and needs to fill research gaps before outlining chapters. Triggers include reque", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-skills/blob/main/skills/non-fiction-book-factory/book-research-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 99, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-22T19:14:06Z"}, "embedding_text": "book-research-assistant. Plan, orchestrate, and validate deep research for nonfiction books. Use when an author has completed book architecture and needs to fill research gaps before outlining chapters. Triggers include reque Platforms: claude_code."} +{"id": "6ac3b108acf8d0e3c13f2713c3552d95cf74a4bb2affefe426fd461b58adf8c4", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "hypothesis-testing-engine", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/hypothesis-testing-engine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "hypothesis-testing-engine. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "cb039834e11069765121eb2f7fdb0e2d35bc8357731c8412b68a542016f2cdbc", "repo_url": "https://github.com/oimiragieo/agent-studio", "name": "claude-api", "description": "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 TRI", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oimiragieo/agent-studio/blob/main/.claude/skills/claude-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:23:02Z"}, "embedding_text": "claude-api. 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 TRI Platforms: claude_code."} +{"id": "977f6c458db083b48e76c2cd78fc9b09c56105efb502dbf6accdd4d29b7fc629", "repo_url": "https://github.com/jwynia/agent-skills", "name": "docx-generator", "description": "Create and manipulate Word DOCX files programmatically. Use when the user needs to generate documents, modify DOCX templates, extract document content, or automate Word document workflows. Supports bo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jwynia/agent-skills/blob/main/skills/general/document-processing/word/docx-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T02:35:14Z"}, "embedding_text": "docx-generator. Create and manipulate Word DOCX files programmatically. Use when the user needs to generate documents, modify DOCX templates, extract document content, or automate Word document workflows. Supports bo Platforms: claude_code."} +{"id": "5357ff9521bc11cb00d8544ade0cb2ad26b40a2dc5772ab680474fe9899783fa", "repo_url": "https://github.com/gocallum/nextjs16-agent-skills", "name": "resend-integration-skills", "description": "Integrate Resend email service via MCP protocol for AI agents to send emails with Claude Desktop, GitHub Copilot, and Cursor. Set up transactional and marketing emails, configure sender verification,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gocallum/nextjs16-agent-skills/blob/main/skills/resend-integration-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T13:27:54Z"}, "embedding_text": "resend-integration-skills. Integrate Resend email service via MCP protocol for AI agents to send emails with Claude Desktop, GitHub Copilot, and Cursor. Set up transactional and marketing emails, configure sender verification, Platforms: claude_code."} +{"id": "324f16c14ee0b897af7fc7935fc0d59f5cc16b20d97f1d771cb0de39c8f6a19d", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "swarm-patterns", "description": "Recipes and patterns for Claude Code multi-agent swarms. Use when building parallel specialist reviews, pipeline workflows, self-organizing swarms, research-then-implement flows, plan approval gates,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/.claude/skills/swarm-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "swarm-patterns. Recipes and patterns for Claude Code multi-agent swarms. Use when building parallel specialist reviews, pipeline workflows, self-organizing swarms, research-then-implement flows, plan approval gates, Platforms: claude_code."} +{"id": "3b924504d0b7fc10099e0c2f4b9a1c02dc2c121cb3cfb5e8488b3c0998d84e3e", "repo_url": "https://github.com/grapeot/context-infrastructure", "name": "context-infrastructure", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 616, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T16:44:40Z"}, "embedding_text": "context-infrastructure. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9d9fbdeaede396e8d5bef856b56f9d6e8976901ae9e3b9e802e85c27d3f04936", "repo_url": "https://github.com/vamseeachanta/workspace-hub", "name": "rag-system-builder", "description": "Build Retrieval-Augmented Generation (RAG) Q&A systems with Claude or OpenAI. Use for creating AI assistants that answer questions from document collections, technical libraries, or knowledge bases.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vamseeachanta/workspace-hub/blob/main/.agents/skills/data/documents/rag-system-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T05:00:49Z"}, "embedding_text": "rag-system-builder. Build Retrieval-Augmented Generation (RAG) Q&A systems with Claude or OpenAI. Use for creating AI assistants that answer questions from document collections, technical libraries, or knowledge bases. Platforms: claude_code."} +{"id": "0c745fd067125c392ab0d86edd91045d870340699a826ed6f8a2ab65fd6dc8bf", "repo_url": "https://github.com/jordanrubin/future_tokens", "name": "rhetoricize", "description": "Every AI output has structural blind spots determined by the generation process itself. Future Tokens operations are named, composable instruments that target specific blind spots. They surface new information on every pass because expanding the output changes the blind spot geometry.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "ai", "ai-reasoning", "ai-tools", "anthropic", "claude", "claude-code", "claude-skills", "cognitive-tools", "llm", "prompt-engineering", "reasoning", "skills", "thinking"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jordanrubin/future_tokens/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rhetoricize"}, "quality": {"stars": 62, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-19T11:40:31Z"}, "embedding_text": "rhetoricize. Every AI output has structural blind spots determined by the generation process itself. Future Tokens operations are named, composable instruments that target specific blind spots. They surface new information on every pass because expanding the output changes the blind spot geometry. Categories: agent-skills, ai, ai-reasoning, ai-tools, anthropic, claude, claude-code, claude-skills, cognitive-tools, llm, prompt-engineering, reasoning, skills, thinking. Platforms: claude_code."} +{"id": "61b1da8d5a6de3965b7974e5f634e3eef720fc8cecdcb709b0ed93ba51010705", "repo_url": "https://github.com/nwiizo/cctx", "name": "cctx", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 146, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-06-19T23:20:57Z"}, "embedding_text": "cctx. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "759c2be10e37af5dbecff1b38f753ae91ac880103e6cff77753027d6045f4017", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "agentskills", "description": "Agent Skills Open Standard reference (agentskills.io). Use when creating portable skills for Claude Code, Cursor, Gemini CLI, OpenAI Codex, VS Code, Roo Code, and 20+ compatible agents. Covers frontma", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/agentskills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "agentskills. Agent Skills Open Standard reference (agentskills.io). Use when creating portable skills for Claude Code, Cursor, Gemini CLI, OpenAI Codex, VS Code, Roo Code, and 20+ compatible agents. Covers frontma Platforms: claude_code."} +{"id": "745c4bf6dfeb66f9fc12aeca7fdd336499c0a17cb083e7a6c958577bdfdca21f", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-ears-validator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-ears/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-ears-validator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "fb92fd43b5e0a50dd439517fabd288222a79312e935501684f39f07ea59c79f6", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "argo-expert", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/argo-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "argo-expert. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5fbab1f02c5c5620860ecac581b909a6164419775b54ec6fd95a5188283a9dac", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-brd-validator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-brd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-brd-validator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "5b1e7dff46aa31cc33e48c01640e61374fa82d82165987c10efe3b06e5d236fd", "repo_url": "https://github.com/plurigrid/asi", "name": "ihara-zeta", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/ihara-zeta/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ihara-zeta. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c6659d130cc4b6d98158aca1c96d3e2a504189b369a41fc3024be0df6150c8cc", "repo_url": "https://github.com/aspiers/ai-config", "name": "allow-agent-commands", "description": "Add or change allowed commands in AI agent permission configs (OpenCode, Claude Code)", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aspiers/ai-config/blob/main/.agents/skills/allow-agent-commands/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-24T15:59:03Z"}, "embedding_text": "allow-agent-commands. Add or change allowed commands in AI agent permission configs (OpenCode, Claude Code) Platforms: claude_code."} +{"id": "27a3c09ee58560f95739533534c870c11ea87643a96cece2a499eb3cd51fa463", "repo_url": "https://github.com/jwynia/agent-skills", "name": "pdf-generator", "description": "Create and manipulate PDF files programmatically. Use when the user needs to generate PDFs, fill PDF forms, extract PDF content, add watermarks/overlays, or merge documents. Supports both template-bas", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jwynia/agent-skills/blob/main/skills/general/document-processing/pdf/pdf-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T02:35:14Z"}, "embedding_text": "pdf-generator. Create and manipulate PDF files programmatically. Use when the user needs to generate PDFs, fill PDF forms, extract PDF content, add watermarks/overlays, or merge documents. Supports both template-bas Platforms: claude_code."} +{"id": "260cbc671c27847c763afc2e42cc87f9abaec075f478fd8136965340eb1bc0de", "repo_url": "https://github.com/matsuni-kk/agent_template_public", "name": "core-rule-maintenance", "description": "CLAUDE.md/AGENTS.md\u7b49\u306e\u30b3\u30a2\u30eb\u30fc\u30eb\u30d5\u30a1\u30a4\u30eb\u306e\u4fdd\u5b88\u30fb\u66f4\u65b0\u3092\u5bfe\u8a71\u3067\u884c\u3044\u30013\u74b0\u5883\u540c\u671f\u3068\u6574\u5408\u6027\u3092\u7dad\u6301\u3057\u305f\u307e\u307e\u53cd\u6620\u3059\u308b\u3002CLAUDE.md\u66f4\u65b0\u3001\u30b3\u30a2\u30eb\u30fc\u30eb\u5909\u66f4\u3001\u30eb\u30fc\u30eb\u8ffd\u52a0\u3001\u30d1\u30b9\u8f9e\u66f8\u66f4\u65b0\u3001\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u7d22\u5f15\u66f4\u65b0\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matsuni-kk/agent_template_public/blob/main/.claude/skills/core-rule-maintenance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 10, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-16T07:11:55Z"}, "embedding_text": "core-rule-maintenance. CLAUDE.md/AGENTS.md\u7b49\u306e\u30b3\u30a2\u30eb\u30fc\u30eb\u30d5\u30a1\u30a4\u30eb\u306e\u4fdd\u5b88\u30fb\u66f4\u65b0\u3092\u5bfe\u8a71\u3067\u884c\u3044\u30013\u74b0\u5883\u540c\u671f\u3068\u6574\u5408\u6027\u3092\u7dad\u6301\u3057\u305f\u307e\u307e\u53cd\u6620\u3059\u308b\u3002CLAUDE.md\u66f4\u65b0\u3001\u30b3\u30a2\u30eb\u30fc\u30eb\u5909\u66f4\u3001\u30eb\u30fc\u30eb\u8ffd\u52a0\u3001\u30d1\u30b9\u8f9e\u66f8\u66f4\u65b0\u3001\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u7d22\u5f15\u66f4\u65b0\u3092\u4f9d\u983c\u3055\u308c\u305f\u3068\u304d\u306b\u4f7f\u7528\u3059\u308b\u3002 Platforms: claude_code."} +{"id": "798c94eceeaa8fb295da4fcaf85476f8a0cade76abda88fa72b6e64486558b74", "repo_url": "https://github.com/dusk-network/rusk", "name": "rusk", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 200, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:11:03Z"}, "embedding_text": "rusk. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8a313095502d45da385ade6ef0155052e6bb64f41e9d7a54c3c35152e8e9504f", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-evaluation-suite", "description": "This skill should be used when the user asks to \"evaluate a DSPy program\", \"test my DSPy module\", \"measure performance\", \"create evaluation metrics\", \"use answer_exact_match or SemanticF1\", mentions \"Evaluate class\", \"comparing programs\", \"establishing baselines\", or needs to systematically test and measure DSPy program quality with custom or built-in metrics.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omidzamani/dspy-skills/blob/master/skills/dspy-evaluation-suite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-evaluation-suite"}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T18:25:32Z"}, "embedding_text": "dspy-evaluation-suite. This skill should be used when the user asks to \"evaluate a DSPy program\", \"test my DSPy module\", \"measure performance\", \"create evaluation metrics\", \"use answer_exact_match or SemanticF1\", mentions \"Evaluate class\", \"comparing programs\", \"establishing baselines\", or needs to systematically test and measure DSPy program quality with custom or built-in metrics. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} +{"id": "f72bc57e8a92373c0dfcb58300953636a45059d4b6604637061bd07884186e0a", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-bootstrap-fewshot", "description": "This skill should be used when the user asks to \"bootstrap few-shot examples\", \"generate demonstrations\", \"use BootstrapFewShot\", \"optimize with limited data\", \"create training demos automatically\", mentions \"teacher model for few-shot\", \"10-50 training examples\", or wants automatic demonstration generation for a DSPy program without extensive compute.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omidzamani/dspy-skills/blob/master/skills/dspy-bootstrap-fewshot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-bootstrap-fewshot"}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T18:25:32Z"}, "embedding_text": "dspy-bootstrap-fewshot. This skill should be used when the user asks to \"bootstrap few-shot examples\", \"generate demonstrations\", \"use BootstrapFewShot\", \"optimize with limited data\", \"create training demos automatically\", mentions \"teacher model for few-shot\", \"10-50 training examples\", or wants automatic demonstration generation for a DSPy program without extensive compute. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} +{"id": "06cf60318cff6209a8d8fed1ef261680d45a975e53ac79209777e3c288d54cb5", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-rag-pipeline", "description": "This skill should be used when the user asks to \"build a RAG pipeline\", \"create retrieval augmented generation\", \"use ColBERTv2 in DSPy\", \"set up a retriever in DSPy\", mentions \"RAG with DSPy\", \"context retrieval\", \"multi-hop RAG\", or needs to build a DSPy system that retrieves external knowledge to answer questions with grounded, factual responses.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omidzamani/dspy-skills/blob/master/skills/dspy-rag-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-rag-pipeline"}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T18:25:32Z"}, "embedding_text": "dspy-rag-pipeline. This skill should be used when the user asks to \"build a RAG pipeline\", \"create retrieval augmented generation\", \"use ColBERTv2 in DSPy\", \"set up a retriever in DSPy\", mentions \"RAG with DSPy\", \"context retrieval\", \"multi-hop RAG\", or needs to build a DSPy system that retrieves external knowledge to answer questions with grounded, factual responses. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} +{"id": "3d32c888a2efdefecd42a00107226d7c5f2597fc4604a8cf3db29ab9d52cb104", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-signature-designer", "description": "This skill should be used when the user asks to \"create a DSPy signature\", \"define inputs and outputs\", \"design a signature\", \"use InputField or OutputField\", \"add type hints to DSPy\", mentions \"signature class\", \"type-safe DSPy\", \"Pydantic models in DSPy\", or needs to define what a DSPy module should do with structured inputs and outputs.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omidzamani/dspy-skills/blob/master/skills/dspy-signature-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-signature-designer"}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T18:25:32Z"}, "embedding_text": "dspy-signature-designer. This skill should be used when the user asks to \"create a DSPy signature\", \"define inputs and outputs\", \"design a signature\", \"use InputField or OutputField\", \"add type hints to DSPy\", mentions \"signature class\", \"type-safe DSPy\", \"Pydantic models in DSPy\", or needs to define what a DSPy module should do with structured inputs and outputs. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} +{"id": "10697a33a86667938bab680a12a5c66f71d6a7676da883a835272fe79a7e50f3", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-miprov2-optimizer", "description": "This skill should be used when the user asks to \"optimize a DSPy program\", \"use MIPROv2\", \"tune instructions and demos\", \"get best DSPy performance\", \"run Bayesian optimization\", mentions \"state-of-the-art DSPy optimizer\", \"joint instruction tuning\", or needs maximum performance from a DSPy program with substantial training data (200+ examples).", "source": ["skillhub", "topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omidzamani/dspy-skills/blob/master/skills/dspy-miprov2-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-miprov2-optimizer"}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T18:25:32Z"}, "embedding_text": "dspy-miprov2-optimizer. This skill should be used when the user asks to \"optimize a DSPy program\", \"use MIPROv2\", \"tune instructions and demos\", \"get best DSPy performance\", \"run Bayesian optimization\", mentions \"state-of-the-art DSPy optimizer\", \"joint instruction tuning\", or needs maximum performance from a DSPy program with substantial training data (200+ examples). Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} +{"id": "d0b8c068c11ae7273af0b243c1c7c325b72d9172e5b90fa711a3a20aebb7a57b", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-finetune-bootstrap", "description": "This skill should be used when the user asks to \"fine-tune a DSPy model\", \"distill a program into weights\", \"use BootstrapFinetune\", \"create a student model\", \"reduce inference costs with fine-tuning\", mentions \"model distillation\", \"teacher-student training\", or wants to deploy a DSPy program as fine-tuned weights for production efficiency.", "source": ["skillhub", "topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/omidzamani/dspy-skills/blob/master/skills/dspy-finetune-bootstrap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-finetune-bootstrap"}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T18:25:32Z"}, "embedding_text": "dspy-finetune-bootstrap. This skill should be used when the user asks to \"fine-tune a DSPy model\", \"distill a program into weights\", \"use BootstrapFinetune\", \"create a student model\", \"reduce inference costs with fine-tuning\", mentions \"model distillation\", \"teacher-student training\", or wants to deploy a DSPy program as fine-tuned weights for production efficiency. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} +{"id": "2f87d20a45a74451140c642557c5ca14726c7f340657cea94278a1c450009365", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "cognitive-lensing", "description": "A cross-lingual cognitive framing system that activates specific AI reasoning patterns by embedding authentic multi-lingual phrases to tackle complex tasks requiring diverse thinking modes.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/foundry/cognitive-lensing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "cognitive-lensing. A cross-lingual cognitive framing system that activates specific AI reasoning patterns by embedding authentic multi-lingual phrases to tackle complex tasks requiring diverse thinking modes. Platforms: claude_code."} +{"id": "f094092eed3d25b6fe65148926cf3acf4413b5699cae6318f07dfd415ce7449e", "repo_url": "https://github.com/plurigrid/asi", "name": "rezk-types", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/rezk-types/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "rezk-types. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9f4a6eb6fb593409b8e86b688850ba618f2a6d2ffe88ac15279cf3af26afd280", "repo_url": "https://github.com/plurigrid/asi", "name": "multiversal-finance", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/multiversal-finance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "multiversal-finance. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "dd294c5894552f857c81667cd6d674929aa4c3367d6110ce6ee974fef95c352d", "repo_url": "https://github.com/plurigrid/asi", "name": "quantum-guitar", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/quantum-guitar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "quantum-guitar. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "191994e7a4fb28a5dbce83df40aa44e6d85c0b893a80ce9a84e495ca62270416", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "e3", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/e3/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install e3"}, "quality": {"stars": 432, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T05:42:58Z"}, "embedding_text": "e3. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "513b3815cd8ed43f664c301941f11c76427e462ff4716dd79532e2acc9ed1e6b", "repo_url": "https://github.com/interstellar-code/claud-skills", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/interstellar-code/claud-skills/blob/main/.claude/skills/document-skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T10:24:44Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts Platforms: claude_code."} +{"id": "c1ea74da916ef3c8ac5a047ee34f0050c4cbafcbcf4d664fa9ec93451b2d841e", "repo_url": "https://github.com/mazrean/kessoku", "name": "mock-skill", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mazrean/kessoku/blob/main/internal/llmsetup/testdata/mock-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 134, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T21:13:14Z"}, "embedding_text": "mock-skill. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "95fdd172e2e716d596b5c8a2988737aec7c2dfdd040dbb26b5a8ac2a480552dc", "repo_url": "https://github.com/bearcove/dodeca", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bearcove/dodeca/blob/main/libs/pikru/.claude/skills/code-annotations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 210, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T21:33:24Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "701d12ae04244121d0ebe274ce9029b123052460c659a86746eb16f1cea7a97d", "repo_url": "https://github.com/basher83/lunar-claude", "name": "plugin-structure", "description": "This skill should be used when the user asks to \"create a plugin\", \"scaffold a plugin\", \"understand plugin structure\", \"organize plugin components\", \"set up plugin.json\", \"use ${CLAUDE_PLUGIN_ROOT}\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/meta/plugin-dev/skills/plugin-structure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "plugin-structure. This skill should be used when the user asks to \"create a plugin\", \"scaffold a plugin\", \"understand plugin structure\", \"organize plugin components\", \"set up plugin.json\", \"use ${CLAUDE_PLUGIN_ROOT}\", Platforms: claude_code."} +{"id": "c02784bca8d67b1c65d070a8eddf56f850ecff9b6684b73952f8735ae00883fa", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "optimize", "description": "Use when writing delegation instructions to subagents, authoring CLAUDE.md files, rules, skills, or agent definitions, or auditing existing AI-facing content for bloat. Activates on \"write a rule for\"", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/optimize-claude-md/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "optimize. Use when writing delegation instructions to subagents, authoring CLAUDE.md files, rules, skills, or agent definitions, or auditing existing AI-facing content for bloat. Activates on \"write a rule for\" Platforms: claude_code."} +{"id": "72d11e7871ace00856bc6e7ebefa96f32d286cd0e943be9eb4365ce952de24ad", "repo_url": "https://github.com/plurigrid/asi", "name": "markov-game-acset", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/markov-game-acset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "markov-game-acset. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f4bc7ffd375441f40e8a1869f2280053d10908e368e27a5696789c93b1cdd960", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "internal-comms", "description": "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 com", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "internal-comms. 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 com Platforms: claude_code."} +{"id": "68d58da0f1604d1595526a33017482e41cbda70d9a51773c0d5c920978f2c000", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "gemini-image-gen", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/gemini-image-gen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "gemini-image-gen. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3a4c59071510507ac70816983f4a42a2179710ba0989d6da9c7086ba806132ed", "repo_url": "https://github.com/0x80/isolate-package", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T10:10:28Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7e79b130afeb2c047036cd94395ca7158c40a665f4537915e5afeafb348c123e", "repo_url": "https://github.com/onewave-ai/claude-skills", "name": "game-recap-generator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onewave-ai/claude-skills/blob/main/game-recap-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:00:58Z"}, "embedding_text": "game-recap-generator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a13c07a630e17756f85d0cb6f48f241277ca3be0a068c4dc56a4381f5e9afe8e", "repo_url": "https://github.com/timeverse/my-tw-coverage", "name": "My-TW-Coverage", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 501, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-25T22:14:40Z"}, "embedding_text": "My-TW-Coverage. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2231e2d3249a8d85cc33d00f1c2c03c85e2036e6b5815b1b7fc36168810dc0d7", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "founder-intelligence", "description": "Audit how a brand appears in AI-powered search (ChatGPT, Perplexity, Claude, Gemini). Use when user mentions \"AI search,\" \"how do I show up in ChatGPT,\" \"AI discoverability,\" \"AEO,\" \"LLM visibility,\" or wants to understand their brand's AI presence.", "source": ["skillhub", "marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/ai-discoverability-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install founder-intelligence"}, "quality": {"stars": 335, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T12:37:28Z"}, "embedding_text": "founder-intelligence. Audit how a brand appears in AI-powered search (ChatGPT, Perplexity, Claude, Gemini). Use when user mentions \"AI search,\" \"how do I show up in ChatGPT,\" \"AI discoverability,\" \"AEO,\" \"LLM visibility,\" or wants to understand their brand's AI presence. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} +{"id": "71e9c6a5bc73767724255798eb6c4623c6cae3cf32baadf8d0378502a6029372", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/panaversity-ri-vault/skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts Platforms: claude_code."} +{"id": "5a278ccfade0b99dfacb9d3a65e2ee2da544516e5ee1ba3e6c84c3ccf345e02e", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "tutorial-creator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/tutorial-creator/skills/tutorial-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "tutorial-creator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7e5d01776dd0feab8d77707e18e750a1594e94effd9543466199f03c5afaa91e", "repo_url": "https://github.com/masharratt/claude-flow-novice", "name": "specialist", "description": "This skill dynamically enhances existing AI agent teams by adding specialized agents (like Security or Performance experts) based on recurring feedback themes, ensuring non-destructive improvements an", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/masharratt/claude-flow-novice/blob/main/.claude/skills/cfn-task-intelligence/lib/specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 14, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T20:22:56Z"}, "embedding_text": "specialist. This skill dynamically enhances existing AI agent teams by adding specialized agents (like Security or Performance experts) based on recurring feedback themes, ensuring non-destructive improvements an Platforms: claude_code."} +{"id": "b255e520e035e1ead27bf6b184c900cce8e983a42c663182698cb2144fe46aa0", "repo_url": "https://github.com/scoobynko/claude-code-design-skills", "name": "claude-code-design-skills", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "topic"], "categories": ["claude-code", "claude-skill", "claude-skills", "design", "figma", "product"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scoobynko/claude-code-design-skills/blob/main/figma-to-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-code-design-skills"}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-07T09:56:55Z"}, "embedding_text": "claude-code-design-skills. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Categories: claude-code, claude-skill, claude-skills, design, figma, product. Platforms: claude_code."} +{"id": "6e41c9125ebf6be3bc04e0f529417931521c2f52c1c85d4ef66d39ccc88eef72", "repo_url": "https://github.com/kerim/zotero-code-execution", "name": "zotero-mcp-code", "description": "Search Zotero library using code execution for efficient multi-strategy searches without crash risks. Use this skill when the user needs comprehensive Zotero searches with automatic deduplication and", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kerim/zotero-code-execution/blob/main/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 57, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T13:54:23Z"}, "embedding_text": "zotero-mcp-code. Search Zotero library using code execution for efficient multi-strategy searches without crash risks. Use this skill when the user needs comprehensive Zotero searches with automatic deduplication and Platforms: claude_code."} +{"id": "8cda77a90ccfdee74efa6d96052b72955d4e6e3de5df10271f7e0bbb5ec4e695", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "cloud-api-integration", "description": "Expert skill for integrating cloud AI APIs (Claude, GPT-4, Gemini). Covers secure API key management, prompt injection prevention, rate limiting, cost optimization, and protection against data exfiltr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/cloud-api-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "cloud-api-integration. Expert skill for integrating cloud AI APIs (Claude, GPT-4, Gemini). Covers secure API key management, prompt injection prevention, rate limiting, cost optimization, and protection against data exfiltr Platforms: claude_code."} +{"id": "d16ba8c374a86106ed1cdc464f9ee5ef9e91e87b95affc1ddb53f9f9c9625a32", "repo_url": "https://github.com/lifedever/claude-rules", "name": "init-rules", "description": "Initialize or update CLAUDE.md coding standards for any project by auto-detecting tech stack and assembling rules from the claude-rules template library. Use when user says \"init rules\", \"\u521d\u59cb\u5316\u89c4\u8303\", \"\u751f\u6210", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lifedever/claude-rules/blob/main/.claude/skills/init-rules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 183, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-19T02:25:54Z"}, "embedding_text": "init-rules. Initialize or update CLAUDE.md coding standards for any project by auto-detecting tech stack and assembling rules from the claude-rules template library. Use when user says \"init rules\", \"\u521d\u59cb\u5316\u89c4\u8303\", \"\u751f\u6210 Platforms: claude_code."} +{"id": "eaf58b1312881645a6beae384d6375bfa5d2d28de3d38d9eb6a23907809b452b", "repo_url": "https://github.com/padak/claude-code-kit", "name": "e2b", "description": "Execute AI-generated code in secure isolated E2B cloud sandboxes (SDK v2). Use for running Python/JavaScript/TypeScript/R/Java/Bash code, managing sandbox lifecycle (create, pause, resume, kill, list,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/padak/claude-code-kit/blob/main/.claude/skills/e2b/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 44, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-23T13:43:23Z"}, "embedding_text": "e2b. Execute AI-generated code in secure isolated E2B cloud sandboxes (SDK v2). Use for running Python/JavaScript/TypeScript/R/Java/Bash code, managing sandbox lifecycle (create, pause, resume, kill, list, Platforms: claude_code."} +{"id": "31ff5c9a41b544b45fc9ca3fec86765b75067368d69da6347a7eeaf823025275", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "hooks-builder", "description": "Create event-driven hooks for Claude Code automation. Use when the user wants to create hooks, automate tool validation, add pre/post processing, enforce security policies, or configure settings.json", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/hooks-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "hooks-builder. Create event-driven hooks for Claude Code automation. Use when the user wants to create hooks, automate tool validation, add pre/post processing, enforce security policies, or configure settings.json Platforms: claude_code."} +{"id": "c18642b8a3462f61f30cff028cd4d0bfc0335da0bf52d17259c1e3e753dea7ff", "repo_url": "https://github.com/wiz-sec-public/sitf", "name": "technique-proposal", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wiz-sec-public/sitf/blob/main/.claude/skills/technique-proposal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technique-proposal"}, "quality": {"stars": 170, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T08:10:40Z"}, "embedding_text": "technique-proposal. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6e2ebe0f84aa10b68b26595a9b82dc0d3b6173afa98df5cffea4a5a897223bcb", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/document-skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts Platforms: claude_code."} +{"id": "46e7f2b95d07cdbd34fa02ae8b6633fffb6febff285e581c757bb85ec01b52e0", "repo_url": "https://github.com/netresearch/jira-skill", "name": "jira-communication", "description": "Use when interacting with Jira issues - searching, creating, updating, transitioning, commenting, logging work, downloading attachments, managing sprints, boards, issue links, fields, or users. Auto-triggers on Jira URLs and issue keys (PROJ-123).", "source": ["skillhub", "topic"], "categories": ["agent-skills", "ai-agent", "atlassian", "claude-code-skill", "jira", "mcp", "open-standard", "project-management", "skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/netresearch/jira-skill/blob/main/skills/jira-communication/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jira-communication"}, "quality": {"stars": 64, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T10:56:37Z"}, "embedding_text": "jira-communication. Use when interacting with Jira issues - searching, creating, updating, transitioning, commenting, logging work, downloading attachments, managing sprints, boards, issue links, fields, or users. Auto-triggers on Jira URLs and issue keys (PROJ-123). Categories: agent-skills, ai-agent, atlassian, claude-code-skill, jira, mcp, open-standard, project-management, skill. Platforms: claude_code."} +{"id": "120e8310868ef6139b1a82903714e5edeee5663be7593c4ff2a27384c38dc1bf", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "tests", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/analyze-skill-issues/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 225, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:17:52Z"}, "embedding_text": "tests. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c19feda876359f6d8907522294eaaa541fce92b8cf327eb08f59e6e4b97d62b6", "repo_url": "https://github.com/plugin87/ux-ui-agent-skills", "name": "ux-ui-agent-skills", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plugin87/ux-ui-agent-skills/blob/main/.claude/skills/a11y-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 230, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T03:02:28Z"}, "embedding_text": "ux-ui-agent-skills. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2d936bc04db181465d408362b9d439da6d72c2cc579adccfccf857ce0e8367ea", "repo_url": "https://github.com/plurigrid/asi", "name": "ordered-locale-proper", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/ordered-locale-proper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "ordered-locale-proper. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0ffdd42a2d0f75f028d0cce5be2b999a1ca4992e89fc05f01109b11ed8c952d7", "repo_url": "https://github.com/outfitter-dev/agents", "name": "security-engineering", "description": "This skill should be used when auditing code for security issues, reviewing authentication/authorization, evaluating input validation, analyzing cryptographic usage, or reviewing dependency security.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outfitter-dev/agents/blob/main/plugins/outfitter/skills/security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T20:19:32Z"}, "embedding_text": "security-engineering. This skill should be used when auditing code for security issues, reviewing authentication/authorization, evaluating input validation, analyzing cryptographic usage, or reviewing dependency security. Platforms: claude_code."} +{"id": "4c74a4379163a7916ddb27e66fda6936ec232b511e1c08beec455bc3f4461bd5", "repo_url": "https://github.com/full-stack-biz/claude-skills-toolkit", "name": "plugin-creator", "description": "Create, validate, and refine Claude Code plugins with Agent Skills, hooks, agents, and servers. Use when: building plugins from scratch, converting projects to plugins, improving plugin structure, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/full-stack-biz/claude-skills-toolkit/blob/main/skills/plugin-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-06T15:31:41Z"}, "embedding_text": "plugin-creator. Create, validate, and refine Claude Code plugins with Agent Skills, hooks, agents, and servers. Use when: building plugins from scratch, converting projects to plugins, improving plugin structure, or Platforms: claude_code."} +{"id": "6952b02a00ecdf91bcc45601055b14d0c5bf8009cf573ab43a2c589320f397c9", "repo_url": "https://github.com/iflow-ai/niopd", "name": "NioPD", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 119, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-26T06:56:44Z"}, "embedding_text": "NioPD. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e3447bfc0143afe1b3fcc8772f41b37bd15351c48dcd473c53254f19fa9be7cb", "repo_url": "https://github.com/plurigrid/asi", "name": "structural-rewilding", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/plugins/asi/skills/structural-rewilding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "structural-rewilding. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "299f8048247d090083afdf1d2beae077b21dea63b057b54f9ab37c7a348ad67d", "repo_url": "https://github.com/onurkanbakirci/awesome-skills", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onurkanbakirci/awesome-skills/blob/main/public/skills/5e6f7a8b-9c0d-1e2f-3a4b-5c6d7e8f9a0b/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T14:03:20Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents ( Platforms: claude_code."} +{"id": "c8e30ad729916ecac7d01b7bc83685805ea19759a2132efcc861e2f5adb12cd7", "repo_url": "https://github.com/basher83/lunar-claude", "name": "skill-development", "description": "This skill should be used when the user wants to \"create a skill\", \"add a skill to plugin\", \"write a new skill\", \"improve skill description\", \"organize skill content\", or needs guidance on skill struc", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/meta/plugin-dev/skills/skill-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "skill-development. This skill should be used when the user wants to \"create a skill\", \"add a skill to plugin\", \"write a new skill\", \"improve skill description\", \"organize skill content\", or needs guidance on skill struc Platforms: claude_code."} +{"id": "39f4b6cfebf4346920a1a9d69c2a1733437a7dcf1cfbdd018832b9f7a4627dac", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "ui-ux-design", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/ui-ux-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "ui-ux-design. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "bae815ae798fd07de2e4a8657bec1e6b53713c34b122161b203900e01a7a35c3", "repo_url": "https://github.com/okjpg/skill-creator", "name": "criar-skill", "description": "Cria um SKILL.md completo para Claude Code a partir de qualquer workflow, sess\u00e3o executada ou ideia nova. Acionar quando o usu\u00e1rio pedir para criar, montar, construir ou salvar uma skill \u2014 mesmo que n", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/okjpg/skill-creator/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 75, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-16T19:08:20Z"}, "embedding_text": "criar-skill. Cria um SKILL.md completo para Claude Code a partir de qualquer workflow, sess\u00e3o executada ou ideia nova. Acionar quando o usu\u00e1rio pedir para criar, montar, construir ou salvar uma skill \u2014 mesmo que n Platforms: claude_code."} +{"id": "692f2ac92632872f272fb8d4e553023011e2a74442ee6bfff1c02a87132d9497", "repo_url": "https://github.com/madteacher/mad-agents-skills", "name": "flutter-internationalization", "description": "Complete guide for internationalizing Flutter apps using gen-l10n and intl packages. Use when Claude needs to add localization support to Flutter applications, translate UI text, format numbers/dates", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/madteacher/mad-agents-skills/blob/main/flutter-internationalization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-01T14:16:25Z"}, "embedding_text": "flutter-internationalization. Complete guide for internationalizing Flutter apps using gen-l10n and intl packages. Use when Claude needs to add localization support to Flutter applications, translate UI text, format numbers/dates Platforms: claude_code."} +{"id": "7356bcfa6df256d05dcc29b127ab6d7f3a39aa99da374efe0406f71a6a3cf297", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-spec-validator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-spec-validator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0c26158beed3f6d100c5121f1777d38dffeed14a0693c64abb87b7aab72c82fe", "repo_url": "https://github.com/ericporres/llm-coding-workflow-skill", "name": "llm-coding-workflow", "description": "AI-augmented software engineering workflow synthesized from Addy Osmani's methodology, Anthropic's agentic coding research, and 30+ real-world projects. Supports two collaboration modes \u2014 interactive", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ericporres/llm-coding-workflow-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-05T21:32:45Z"}, "embedding_text": "llm-coding-workflow. AI-augmented software engineering workflow synthesized from Addy Osmani's methodology, Anthropic's agentic coding research, and 30+ real-world projects. Supports two collaboration modes \u2014 interactive Platforms: claude_code."} +{"id": "ca07ad5e4d631a8ea4c4132f01ce90d8b8502eccf7dc407f925cba4ebb66c820", "repo_url": "https://github.com/renzora/engine", "name": "engine", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 214, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T21:44:17Z"}, "embedding_text": "engine. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3a3f91025bd3586cf306cfad870706c68ad2e22f73355164e0dfe651b4fe8d55", "repo_url": "https://github.com/bluerobotics/cockpit", "name": "cockpit", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 181, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T22:00:01Z"}, "embedding_text": "cockpit. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "aa36fce1ae24e7f4a9bb0b7aa137d60feeac442f2a7953ffbceb2e28035380c9", "repo_url": "https://github.com/interstellar-code/claud-skills", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/interstellar-code/claud-skills/blob/main/.claude/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T10:24:44Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "a030a581e8e5e306bd984057238707a3e056798249fbd1bbd80f30ac17326c54", "repo_url": "https://github.com/wirasm/worktree-manager-skill", "name": "worktree-manager", "description": "Create, manage, and cleanup git worktrees with Claude Code agents across all projects. USE THIS SKILL when user says \"create worktree\", \"spin up worktrees\", \"new worktree for X\", \"worktree status\", \"c", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wirasm/worktree-manager-skill/blob/main/.claude/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 132, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-07T11:16:54Z"}, "embedding_text": "worktree-manager. Create, manage, and cleanup git worktrees with Claude Code agents across all projects. USE THIS SKILL when user says \"create worktree\", \"spin up worktrees\", \"new worktree for X\", \"worktree status\", \"c Platforms: claude_code."} +{"id": "544daaa56280d159f3f189f516a59ab18a91bcdefe38d4385f364e6d37fa4e8f", "repo_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/promptadvisers/claude-code-polished-documents-skills/blob/main/.claude/skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T19:51:06Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents ( Platforms: claude_code."} +{"id": "9326374c2f4b992d2200f9bb8b99f2e43746e8a28db18b0601d121b244d3503a", "repo_url": "https://github.com/jefflester/claude-skills-supercharged", "name": "skill-developer", "description": "Create and manage Claude Code skills following Anthropic best practices. Use when creating new skills, modifying skill-rules.json, understanding trigger patterns, working with hooks, debugging skill a", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jefflester/claude-skills-supercharged/blob/main/.claude/skills/skill-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T16:06:42Z"}, "embedding_text": "skill-developer. Create and manage Claude Code skills following Anthropic best practices. Use when creating new skills, modifying skill-rules.json, understanding trigger patterns, working with hooks, debugging skill a Platforms: claude_code."} +{"id": "6f5dc82360bb51d7d987cc562f75079c6d1f5c8ee3877643198aa9c71edcbaf7", "repo_url": "https://github.com/marcelsud/spec-driven-agentic-development", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 171, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-03T02:38:12Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "80c04603b9ecfae50f60e13274c2bf6b896a718910ca4450c6bc19793ff7ce59", "repo_url": "https://github.com/icebear0828/clio", "name": "clio", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 182, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-03T06:14:43Z"}, "embedding_text": "clio. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "be03ebce0513c18e7f455474695de90b1b35260e1163a3e03f570ab40a53323b", "repo_url": "https://github.com/jwynia/agent-skills", "name": "security-scan", "description": "This skill performs automated security vulnerability scanning for codebases, detecting issues like OWASP Top 10 risks, hardcoded secrets, and injection flaws to improve application security.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jwynia/agent-skills/blob/main/skills/tech/security/security-scan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T02:35:14Z"}, "embedding_text": "security-scan. This skill performs automated security vulnerability scanning for codebases, detecting issues like OWASP Top 10 risks, hardcoded secrets, and injection flaws to improve application security. Platforms: claude_code."} +{"id": "81318aa2a97afd51a743925ac72e967e2c7a5de12f172f42c9f4bdc156f9dfd3", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "kubernetes-specialist", "description": "A specialized skill for expert Kubernetes orchestration, focusing on Helm chart development, custom operators, service mesh implementation, auto-scaling strategies, and multi-cluster management for pr", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/operations/cloud-platforms/kubernetes-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "kubernetes-specialist. A specialized skill for expert Kubernetes orchestration, focusing on Helm chart development, custom operators, service mesh implementation, auto-scaling strategies, and multi-cluster management for pr Platforms: claude_code."} +{"id": "ebf0d2094cdb9b0080aa01d070ae4fbca65cfe3feeea6b8300dc1ab33813428c", "repo_url": "https://github.com/codealive-ai/claude-code-reflection-skills", "name": "mcp-management", "description": "Search, install, configure, update, and remove MCP servers across coding agents (Claude Code, Cursor, VS Code, Claude Desktop, Gemini CLI, Codex, Goose, Zed, and more). Supports multi-agent installati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codealive-ai/claude-code-reflection-skills/blob/main/skills/mcp-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 90, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:03:39Z"}, "embedding_text": "mcp-management. Search, install, configure, update, and remove MCP servers across coding agents (Claude Code, Cursor, VS Code, Claude Desktop, Gemini CLI, Codex, Goose, Zed, and more). Supports multi-agent installati Platforms: claude_code."} +{"id": "f7e3feb4a05ddbab26c7fd1a2cab05a99f50254ff45863cd143fbfa31ec9ec8c", "repo_url": "https://github.com/maxcountryman/underway", "name": "underway", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 169, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-21T17:34:34Z"}, "embedding_text": "underway. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "e94fcfc002dd47a67c8af1b6006ee3d66cbdc9107f96ccc19bc7c41dba9bfbab", "repo_url": "https://github.com/happycapy-ai/happycapy-skills", "name": "llm-council", "description": "Multi-model LLM Council with live dashboard. Query multiple AI models simultaneously, see responses side-by-side in a swarm-style dashboard, synthesize consensus, and run anonymous model-to-model voti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/happycapy-ai/happycapy-skills/blob/main/skills/llm-council/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 126, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T12:02:01Z"}, "embedding_text": "llm-council. Multi-model LLM Council with live dashboard. Query multiple AI models simultaneously, see responses side-by-side in a swarm-style dashboard, synthesize consensus, and run anonymous model-to-model voti Platforms: claude_code."} +{"id": "d4539e8bc259fec75ee125a5088b231545f44cdebc2eda3b208ea836df2761d1", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "claude-skills-overview-2026", "description": "Reference guide for Claude Code skills system (March 2026). Use when creating, modifying, or understanding skills, SKILL.md format, frontmatter fields, hooks, context fork, or skill best practices.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/claude-skills-overview-2026/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "claude-skills-overview-2026. Reference guide for Claude Code skills system (March 2026). Use when creating, modifying, or understanding skills, SKILL.md format, frontmatter fields, hooks, context fork, or skill best practices. Platforms: claude_code."} +{"id": "f31f1b9ce4d1f5a6942b44d0ef2fe2b9e8d8a3078f461cf77b536b71dae4f149", "repo_url": "https://github.com/full-stack-biz/claude-skills-toolkit", "name": "hook-creator", "description": "Create, validate, and refine Claude Code plugin hooks for automating workflows. Use when building new hooks from scratch, validating existing hooks against best practices, or improving hook quality fo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/full-stack-biz/claude-skills-toolkit/blob/main/skills/hook-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-06T15:31:41Z"}, "embedding_text": "hook-creator. Create, validate, and refine Claude Code plugin hooks for automating workflows. Use when building new hooks from scratch, validating existing hooks against best practices, or improving hook quality fo Platforms: claude_code."} +{"id": "1fae67e1f5de1a2fbab7fe2708ee12b4c9f8b633306924988509b664399289a8", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "agent-creator", "description": "Create high-quality Claude Code agents from scratch or by adapting existing agents as templates. Use when the user wants to create a new agent, modify agent configurations, build specialized subagents", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/agent-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "agent-creator. Create high-quality Claude Code agents from scratch or by adapting existing agents as templates. Use when the user wants to create a new agent, modify agent configurations, build specialized subagents Platforms: claude_code."} +{"id": "c1befc73f04166b23b6b1d49704ee1c5d4b3af59048a0ebcf971bc364ed5cb7b", "repo_url": "https://github.com/gotalab/skillport", "name": "opus-4-5-migration", "description": "Migrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5. Use when the user wants to update their codebase, prompts, or API calls to use Opus 4.5. Handles model string updates and prompt adjustments for known Opus 4.5 behavioral differences. Does NOT migrate Haiku 4.5.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gotalab/skillport/blob/main/.skills/experimental/opus-4-5-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install opus-4-5-migration"}, "quality": {"stars": 397, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T18:49:12Z"}, "embedding_text": "opus-4-5-migration. Migrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5. Use when the user wants to update their codebase, prompts, or API calls to use Opus 4.5. Handles model string updates and prompt adjustments for known Opus 4.5 behavioral differences. Does NOT migrate Haiku 4.5. Platforms: claude_code."} +{"id": "e52ba689e47f5a423d11d2d1acb3fb8e86b17fda3a20617988efe42fde48f5d2", "repo_url": "https://github.com/aviz85/claude-skills-library", "name": "kinetic-video-creator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aviz85/claude-skills-library/blob/main/plugins/kinetic-video-creator/skills/kinetic-video-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:38:13Z"}, "embedding_text": "kinetic-video-creator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "10fb575cc59ba7475c80311f2292f67afb11fa296b9f670794770baf3bae7bb7", "repo_url": "https://github.com/outfitter-dev/agents", "name": "software-engineering", "description": "This skill should be used when making design decisions, evaluating trade-offs, assessing code quality, or when \"engineering judgment\" or \"code quality\" are mentioned.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outfitter-dev/agents/blob/main/plugins/but/skills/complete-branch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T20:19:32Z"}, "embedding_text": "software-engineering. This skill should be used when making design decisions, evaluating trade-offs, assessing code quality, or when \"engineering judgment\" or \"code quality\" are mentioned. Platforms: claude_code."} +{"id": "f2a9af68658b222f6d1a89978083677a00ed31acac8b7e1f647bf5374fd13d98", "repo_url": "https://github.com/wrsmith108/linear-claude-skill", "name": "Linear", "description": "Managing Linear issues, projects, and teams. Use when working with Linear tasks, creating issues, updating status, querying projects, or managing team workflows.", "source": ["skillhub", "marketplace", "topic"], "categories": ["claude-code", "claude-code-skills", "claude-skills", "linear", "project-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wrsmith108/linear-claude-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Linear"}, "quality": {"stars": 110, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-19T20:47:43Z"}, "embedding_text": "Linear. Managing Linear issues, projects, and teams. Use when working with Linear tasks, creating issues, updating status, querying projects, or managing team workflows. Categories: claude-code, claude-code-skills, claude-skills, linear, project-management. Platforms: claude_code."} +{"id": "5f3ec8e2fc5e9d7cae95b94ccca172ae9107b6e649943be6a89271c53705b78f", "repo_url": "https://github.com/chainstacklabs/web3-ai-trading-agent", "name": "web3-ai-trading-agent", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-08-21T01:48:33Z"}, "embedding_text": "web3-ai-trading-agent. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "45c2f63ad95447cdbde629b67cd357523f29a8c71c81f139559bca55fb412b8e", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "motion-design", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/motion-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "motion-design. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7a1c156031cbd6650ba5913afcda4dedef7abf003d1f16ee2529aa9d7c083381", "repo_url": "https://github.com/loperanger7/gstack-auto", "name": "gstack-auto", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 228, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-27T03:01:34Z"}, "embedding_text": "gstack-auto. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "abb63b30189147551c4df84e6e6b8bba5e72fe3f49c05bb048c1980ecb4f91af", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "Plugin Structure", "description": "This skill should be used when the user asks to \"create a plugin\", \"scaffold a plugin\", \"understand plugin structure\", \"organize plugin components\", \"set up plugin.json\", \"use ${CLAUDE_PLUGIN_ROOT}\",", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/official-anthropic/claude-plugins-official/plugins/plugin-dev/skills/plugin-structure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "Plugin Structure. This skill should be used when the user asks to \"create a plugin\", \"scaffold a plugin\", \"understand plugin structure\", \"organize plugin components\", \"set up plugin.json\", \"use ${CLAUDE_PLUGIN_ROOT}\", Platforms: claude_code."} +{"id": "491695f0effe9823469822233ef23ac6daa85df682062aba6fab609b3acbf2fd", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "security-auditing", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/security-auditing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "security-auditing. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c1da3a092fc9e903ef87fbd406ba449fb3dd9fdb76399238dfc30fe161cb803d", "repo_url": "https://github.com/xixu-me/skills", "name": "develop-userscripts", "description": "Use when building, debugging, packaging, or publishing browser userscripts for Tampermonkey or ScriptCat, including GM APIs, metadata blocks, permission issues, @match/@grant/@connect setup, ScriptCat", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xixu-me/skills/blob/main/skills/develop-userscripts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 65, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T05:07:22Z"}, "embedding_text": "develop-userscripts. Use when building, debugging, packaging, or publishing browser userscripts for Tampermonkey or ScriptCat, including GM APIs, metadata blocks, permission issues, @match/@grant/@connect setup, ScriptCat Platforms: claude_code."} +{"id": "129c4a30a55cdb6e59220b3d4be482d06dba07c512c8ada07ff771460f5102ef", "repo_url": "https://github.com/getlago/lago-front", "name": "make-tests", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/getlago/lago-front/blob/main/.agents/skills/make-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 158, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:39:39Z"}, "embedding_text": "make-tests. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0bbcfc2c5319acb632f4cc4b3442cdb0df0632300a6a02786a8f5b775cd16c64", "repo_url": "https://github.com/leegonzales/aiskills", "name": "claude-project-docs", "description": "Generate concise CLAUDE.md files and agent documentation following best practices. Use when setting up a new project for Claude Code, auditing existing CLAUDE.md, or creating progressive disclosure do", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/leegonzales/aiskills/blob/main/ClaudeProjectDocs/claude-project-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:57:36Z"}, "embedding_text": "claude-project-docs. Generate concise CLAUDE.md files and agent documentation following best practices. Use when setting up a new project for Claude Code, auditing existing CLAUDE.md, or creating progressive disclosure do Platforms: claude_code."} +{"id": "b48e8028c48804cfd575ab9ff960aff6e4d8e0b7d6d79a7f0b2f5f338d34b062", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "ae88734af375f9b9cdb3c05424d5b0a55f210596e9e1ddd84fa0574d5d42e167", "repo_url": "https://github.com/skillcreatorai/awesome-agent-skills", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/skillcreatorai/awesome-agent-skills/blob/master/document-skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 160, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T23:56:12Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents ( Platforms: claude_code."} +{"id": "93b38033fecff973363f50c909bc7cb4d866a545378974e794b67f1d73864b55", "repo_url": "https://github.com/prorise-cool/prorise-claude-skills", "name": "skill-generator", "description": "Meta-skill for creating new Claude Code skills with configurable execution modes. Supports sequential (fixed order) and autonomous (stateless) phase patterns. Use for skill scaffolding, skill creation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prorise-cool/prorise-claude-skills/blob/master/.claude/skills/operations-specialist/references/domains/skill-lifecycle/generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 24, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-15T14:13:57Z"}, "embedding_text": "skill-generator. Meta-skill for creating new Claude Code skills with configurable execution modes. Supports sequential (fixed order) and autonomous (stateless) phase patterns. Use for skill scaffolding, skill creation Platforms: claude_code."} +{"id": "cd46cbb9fd3fd7529cabfd85d8737cb13817ea6b0179b9695c31b128e80fea2c", "repo_url": "https://github.com/tidymodels/rsample", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tidymodels/rsample/blob/main/.claude/skills/tidy-argument-checking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 341, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-14T13:53:37Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "604c2aa111cc9252b3cf3afcf917c44c96f35e1a190f56f04febb1756ccd3bf6", "repo_url": "https://github.com/obra/macmcp", "name": "macMCP", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-05-31T18:12:56Z"}, "embedding_text": "macMCP. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "83fe37d51673711b94aba0daba8bc16e457908926a0a0295284649b7cdfa00b3", "repo_url": "https://github.com/linlb/thsautotrader", "name": "THSAutoTrader", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 130, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T14:24:03Z"}, "embedding_text": "THSAutoTrader. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9e6dcae4d1cfcafa152d0a8198b599b3f1a5f51f0da7236732a3048eafc6503e", "repo_url": "https://github.com/enbyaugust/zacs-claude-skills", "name": "update-doc", "description": "Transform documentation into AI-optimized format for Claude Code. Use when user says \"update doc\", \"optimize doc\", \"rewrite for claude\", or \"AI optimize\". Shows recently modified .md files for selecti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/enbyaugust/zacs-claude-skills/blob/master/skills/update-doc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 31, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-27T06:54:23Z"}, "embedding_text": "update-doc. Transform documentation into AI-optimized format for Claude Code. Use when user says \"update doc\", \"optimize doc\", \"rewrite for claude\", or \"AI optimize\". Shows recently modified .md files for selecti Platforms: claude_code."} +{"id": "0a41ce997783971617f6b39607bc5d5fca84ad8d1cd59fcbfd4ef133baff0252", "repo_url": "https://github.com/algopian/chromeclaw", "name": "chromeclaw", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 180, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-04T05:17:00Z"}, "embedding_text": "chromeclaw. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7eb26ad52cdea817c305e9d2c998be78e73fe9709256649022340fc65f80aa41", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-iplan-validator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-iplan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-iplan-validator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "68c384edc2ed23048b09c8736d2235a98326fff3cc9e68aab5f868e329561425", "repo_url": "https://github.com/ruvnet/claude-flow", "name": "Hooks Automation", "description": "Automated coordination, formatting, and learning from Claude Code operations using intelligent hooks with MCP integration. Includes pre/post task hooks, session management, Git integration, memory coo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruvnet/claude-flow/blob/main/.agents/skills/hooks-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 60808, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T06:09:22Z"}, "embedding_text": "Hooks Automation. Automated coordination, formatting, and learning from Claude Code operations using intelligent hooks with MCP integration. Includes pre/post task hooks, session management, Git integration, memory coo Platforms: claude_code."} +{"id": "a95c419bb6b17fa035f669a5e796be852d64e0295c2cc4db8c5efab7bd16fcb6", "repo_url": "https://github.com/veraticus/claude-code-ntfy", "name": "claude-code-ntfy", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 56, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-06-26T16:34:44Z"}, "embedding_text": "claude-code-ntfy. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "744a18d6252c75e00408ee444a17c4a92e86107b21b2e2ff044f347c1c808a41", "repo_url": "https://github.com/ethanplusai/jarvis", "name": "jarvis", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 641, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T03:29:56Z"}, "embedding_text": "jarvis. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "af6946b275a038b8d3dc8620dad49a48631d3f37d09273a75f3dc3e31601d803", "repo_url": "https://github.com/d3soxyephedrine/jailbreaks-and-methods", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 145, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-18T10:04:25Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "536ab8513539077e0ca0d13b76001663cdc50ff9cdb9c75cd2ec98209fc319b0", "repo_url": "https://github.com/full-stack-biz/claude-skills-toolkit", "name": "subagent-creator", "description": "Create, validate, and refine Claude Code subagents for reliable delegation. Use when building new subagents, validating existing ones, improving quality, scoping tool access, configuring permission mo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/full-stack-biz/claude-skills-toolkit/blob/main/skills/subagent-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-06T15:31:41Z"}, "embedding_text": "subagent-creator. Create, validate, and refine Claude Code subagents for reliable delegation. Use when building new subagents, validating existing ones, improving quality, scoping tool access, configuring permission mo Platforms: claude_code."} +{"id": "40ad6e856b9462ad2c2b9170929a46368fac52101dd79c5a35cbb7c7ccdbc243", "repo_url": "https://github.com/uni-algo/uni-algo", "name": "doc", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 325, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2024-01-05T14:06:22Z"}, "embedding_text": "doc. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "87feeb567795682c0bd6bbbb72ef5a5f3f749b7be3d2bed3d4cd1023333344d4", "repo_url": "https://github.com/agent-sh/agnix", "name": "missing-frontmatter", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/skills/missing-frontmatter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "missing-frontmatter. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "2a53b54354fa54b697455645dcc53b06479805d534fc3c857a22a6ae151c5d5d", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "add-doc-updater", "description": "Add automated documentation updater to any Claude skill. Creates a Python sync script that downloads upstream docs, processes markdown for AI consumption, and maintains local cache with configurable r", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/add-doc-updater/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "add-doc-updater. Add automated documentation updater to any Claude skill. Creates a Python sync script that downloads upstream docs, processes markdown for AI consumption, and maintains local cache with configurable r Platforms: claude_code."} +{"id": "da0494d1b6fdde627ae09dfd294b32cf53ba3c7499d95ddfe41142ef748b745a", "repo_url": "https://github.com/agent-sh/agnix", "name": "valid", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agent-sh/agnix/blob/main/tests/fixtures/invalid/skills/invalid-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 296, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T14:53:39Z"}, "embedding_text": "valid. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "110704e550a7386a85bb6fcfc9a70a509af99dc59b94201e9ee87a0a202a3c1c", "repo_url": "https://github.com/davidliedle/driftdb", "name": "DriftDB", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 135, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-27T19:15:26Z"}, "embedding_text": "DriftDB. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2dd8aa7492358c837074f3da514dd9f6467b5dfe794f6f8d551d7546e6c1ccc3", "repo_url": "https://github.com/mike-coulbourn/claude-vibes", "name": "marketplace-builder", "description": "Create and configure Claude Code marketplaces and plugins. Use when the user wants to create a marketplace, publish plugins, set up team plugin distribution, or configure marketplace.json or plugin.js", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mike-coulbourn/claude-vibes/blob/main/plugins/vibes/skills/marketplace-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T12:28:11Z"}, "embedding_text": "marketplace-builder. Create and configure Claude Code marketplaces and plugins. Use when the user wants to create a marketplace, publish plugins, set up team plugin distribution, or configure marketplace.json or plugin.js Platforms: claude_code."} +{"id": "ba8fcd298e79b9ce0a3d2eefda77f343832fb48044b61665d9ff3aa4339010f7", "repo_url": "https://github.com/acoyfellow/userdo", "name": "UserDO", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 135, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-08-04T20:58:54Z"}, "embedding_text": "UserDO. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3f0b540b3212fe4aa56df10800a55057f489de2543832ed8024c8d1acb4ed7bc", "repo_url": "https://github.com/binggg/claude-code-web-gui", "name": "Claude-Code-Web-GUI", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 72, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-07-14T16:17:36Z"}, "embedding_text": "Claude-Code-Web-GUI. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a8fbdb9604eff938a317c5fc791ed34c631890f0a52b3d37020c82871a193487", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "frontend-specialists", "description": "A comprehensive frontend development system providing specialist agents for building modern web applications using React, Vue, and other frameworks. It focuses on UI components, CSS, accessibility, pe", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/specialists/frontend-specialists/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "frontend-specialists. A comprehensive frontend development system providing specialist agents for building modern web applications using React, Vue, and other frameworks. It focuses on UI components, CSS, accessibility, pe Platforms: claude_code."} +{"id": "42a93e66d0262283b1345e3e1239f8b36b2a9e0d3693755bb1ff7569d5729f3b", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "gemini-search", "description": "A skill that enables real-time web searches via Gemini's Google Search integration to fetch current information, documentation, and best practices, addressing Claude's knowledge cutoff limitation.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/platforms/gemini-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "gemini-search. A skill that enables real-time web searches via Gemini's Google Search integration to fetch current information, documentation, and best practices, addressing Claude's knowledge cutoff limitation. Platforms: claude_code."} +{"id": "a86d02042ab34db2ebc208fb003b266e45af74d487ee63ac553210baf1f9bfdc", "repo_url": "https://github.com/nwiizo/ccswarm", "name": "git-worktree", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nwiizo/ccswarm/blob/master/.agents/skills/git-worktree/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 142, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T10:24:22Z"}, "embedding_text": "git-worktree. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "686f5fc3037e483d39be84a469181ea48459dd22722a46e54e711b7777e31e36", "repo_url": "https://github.com/bcsdlab/koin_android", "name": "business", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bcsdlab/koin_android/blob/develop/.agents/skills/create-api-endpoint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 23, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T15:35:57Z"}, "embedding_text": "business. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "a2c05ecebc957d59b82339163f1af26fab295825237c8abc381f207388a94418", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "terraform-iac", "description": "A Terraform Infrastructure as Code specialist for multi-cloud deployments (AWS/GCP/Azure), state management, module development, drift detection, and policy enforcement. Ensures versioned, reproducibl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/operations/infrastructure/terraform-iac/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "terraform-iac. A Terraform Infrastructure as Code specialist for multi-cloud deployments (AWS/GCP/Azure), state management, module development, drift detection, and policy enforcement. Ensures versioned, reproducibl Platforms: claude_code."} +{"id": "e68cb0ecac36dde56773a5bd20a7726422fc2328beb7e7a5255aeb2d9552c040", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "i18n-automation", "description": "This skill automates internationalization and localization workflows for web applications, including translation key generation, library setup, and managing multi-language content with proper formatti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/delivery/i18n-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "i18n-automation. This skill automates internationalization and localization workflows for web applications, including translation key generation, library setup, and managing multi-language content with proper formatti Platforms: claude_code."} +{"id": "75fa569a76b3458e471290861c05e1f9710267eed46c4bb18d6357a72d05879a", "repo_url": "https://github.com/gradion-ai/freeact", "name": "tests", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gradion-ai/freeact/blob/main/.agents/skills/freeact-interaction/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 129, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T09:02:06Z"}, "embedding_text": "tests. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "49c84c8a47fe24e861ae51ce5ed1454febff5adc1e696a5091c23316854ec4a5", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "examples", "description": "This Claude Skill provides a comprehensive project-level CLAUDE.md template for software development teams, covering code organization, style guidelines, testing practices, security measures, and deve", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/.agents/skills/api-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "examples. This Claude Skill provides a comprehensive project-level CLAUDE.md template for software development teams, covering code organization, style guidelines, testing practices, security measures, and deve Platforms: claude_code."} +{"id": "fe33d421bc00c92c5c3dae5e0b45e1f2c3de38491c4e83e723a4a0a55c131f1b", "repo_url": "https://github.com/basher83/lunar-claude", "name": "coderabbit", "description": "AI-powered code review using CodeRabbit CLI and GitHub integration. Use when running local code reviews before commits (\"run coderabbit\", \"review my changes\"), configuring .coderabbit.yaml files, inte", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/meta/claude-dev-sandbox/skills/coderabbit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "coderabbit. AI-powered code review using CodeRabbit CLI and GitHub integration. Use when running local code reviews before commits (\"run coderabbit\", \"review my changes\"), configuring .coderabbit.yaml files, inte Platforms: claude_code."} +{"id": "7f5298db2320ce01ed8c1465b5a30876e0a39dfd9bce803561a5dc0ab0621056", "repo_url": "https://github.com/onurkanbakirci/awesome-skills", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onurkanbakirci/awesome-skills/blob/main/public/skills/5e6f7a8b-9c0d-1e2f-3a4b-5c6d7e8f9a0b/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-08T14:03:20Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts Platforms: claude_code."} +{"id": "d19ccd9ea2485e0b7d6216345d44ab95d7db956f9603463c393f86fe84d5050c", "repo_url": "https://github.com/phongnguyend/sql-server-kit", "name": "Fundamentals", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 87, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-24T04:25:54Z"}, "embedding_text": "Fundamentals. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "146b0498c1f44a1d903be654548ae9a5099fc59d2f2bd2ae476d02f75390f99a", "repo_url": "https://github.com/basher83/lunar-claude", "name": "mcp-integration", "description": "This skill should be used when the user asks to \"add MCP server\", \"integrate MCP\", \"configure MCP in plugin\", \"use .mcp.json\", \"set up Model Context Protocol\", \"connect external service\", mentions \"${", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/meta/plugin-dev/skills/mcp-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "mcp-integration. This skill should be used when the user asks to \"add MCP server\", \"integrate MCP\", \"configure MCP in plugin\", \"use .mcp.json\", \"set up Model Context Protocol\", \"connect external service\", mentions \"${ Platforms: claude_code."} +{"id": "acf5bddee911b70439a05964f719605f905483c36a1cf58e23b92f2d59eadbd0", "repo_url": "https://github.com/scientiacapital/skills", "name": "extension-authoring", "description": "Comprehensive guide for authoring Claude Code extensions including skills (SKILL.md), hooks, slash commands, and subagents. Use when: creating skills, writing hooks, making slash commands, building su", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/extension-authoring-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "extension-authoring. Comprehensive guide for authoring Claude Code extensions including skills (SKILL.md), hooks, slash commands, and subagents. Use when: creating skills, writing hooks, making slash commands, building su Platforms: claude_code."} +{"id": "35cad93d0b9e8b87cfb2c3bca4424d3ee89e4d4fdf7835256b647ade907d5287", "repo_url": "https://github.com/basher83/lunar-claude", "name": "multi-agent-composition", "description": "This skill should be used when the user asks to \"choose between skill and agent\", \"compose multi-agent system\", \"orchestrate agents\", \"manage agent context\", \"design component architecture\", \"should I", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/meta/meta-claude/skills/multi-agent-composition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "multi-agent-composition. This skill should be used when the user asks to \"choose between skill and agent\", \"compose multi-agent system\", \"orchestrate agents\", \"manage agent context\", \"design component architecture\", \"should I Platforms: claude_code."} +{"id": "51a042cf4630a3448f3c53e0afd981a6a89aedd9bd91faffcd3bcc6f0afe4f80", "repo_url": "https://github.com/xu-xiang/everything-claude-code-zh", "name": "verification-loop", "description": "A comprehensive verification system for code development sessions that runs build, type checks, linting, tests, security scans, and diff reviews to ensure code quality before PR submission.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xu-xiang/everything-claude-code-zh/blob/main/.agents/skills/verification-loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1356, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-05T01:45:41Z"}, "embedding_text": "verification-loop. A comprehensive verification system for code development sessions that runs build, type checks, linting, tests, security scans, and diff reviews to ensure code quality before PR submission. Platforms: claude_code."} +{"id": "ff04355d04a892c38fcaa6e92d54dc439eacc98b47db27dc504f2626d8c796cd", "repo_url": "https://github.com/basher83/lunar-claude", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/examples/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "01a29e2d3e15c7625ce6e1825262612d60b776f2799f890dc9eb6aabef59948c", "repo_url": "https://github.com/hx1997/dayu", "name": "dayu", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 134, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-17T18:25:14Z"}, "embedding_text": "dayu. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1c28fdeaf1d081b3c28737da3a68f5d76f8ef67e4d3775229ee343c9f4ecd6b3", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-prd-validator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-prd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-prd-validator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "99adfcb4ca6ef52a7974c326a27c3699b9525442f67a20cd225e2becca3e9aff", "repo_url": "https://github.com/synqing/k1.hardware", "name": "kicad-pcb-synthesizer", "description": "A skill that generates complete PCB layout files using KiCad's Python API. It automates stackup configuration, design rules, component placement, and pre-routing based on a provided design specificati", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/synqing/k1.hardware/blob/feat/mcp-rag-bootstrap/.claude/skills/kicad-pcb-synthesizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-11T02:58:37Z"}, "embedding_text": "kicad-pcb-synthesizer. A skill that generates complete PCB layout files using KiCad's Python API. It automates stackup configuration, design rules, component placement, and pre-routing based on a provided design specificati Platforms: claude_code."} +{"id": "37af65e820f512cd90dc84f25d88d63e42235b2c7f961bca41b661865ba5f903", "repo_url": "https://github.com/xmtp/xmtp-js", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xmtp/xmtp-js/blob/main/packages/xmtp-cli/skills/xmtp-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 301, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T13:35:56Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "73b162aab2699669f14cba0ab6b5db57b9472e85c46bb6330e9f27f49576fe0d", "repo_url": "https://github.com/gsscsd/big_model_radar", "name": "big_model_radar", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 470, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T01:52:11Z"}, "embedding_text": "big_model_radar. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ff3abae0c5613897425b3d34e5e9900eeb558f5cc24930e2e1d51c450793fa3f", "repo_url": "https://github.com/mjunaidca/mjs-agent-skills", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mjunaidca/mjs-agent-skills/blob/main/docs/panaversity-ri-vault/skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-24T12:07:53Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents ( Platforms: claude_code."} +{"id": "cdc2abbd17ab9b62afdf3d352d4867ecbdfb89c14ce6652241a59f1a00fcf328", "repo_url": "https://github.com/samhvw8/dotfiles", "name": "infra-engineer", "description": "Comprehensive infrastructure engineering covering DevOps, cloud platforms, FinOps, and DevSecOps. Platforms: AWS (EC2, Lambda, S3, ECS, EKS, RDS, CloudFormation), Azure basics, Cloudflare (Workers, R2", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samhvw8/dotfiles/blob/master/dot_ccp/hub/skills/infra-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:59:44Z"}, "embedding_text": "infra-engineer. Comprehensive infrastructure engineering covering DevOps, cloud platforms, FinOps, and DevSecOps. Platforms: AWS (EC2, Lambda, S3, ECS, EKS, RDS, CloudFormation), Azure basics, Cloudflare (Workers, R2 Platforms: claude_code."} +{"id": "a61c4c4bc73078d93398a1d106596b2f60de16990fea5288b138a6bce030e2a8", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "os-keychain", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/os-keychain/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "os-keychain. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1224e27fd7c5cbab8597130806a85a759595cbc39f3c4f73d28c8fa8eb652139", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "agent-factory", "description": "Claude Code agent generation system that creates custom agents and sub-agents with enhanced YAML frontmatter, tool access patterns, and MCP integration support following proven production patterns", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/claude-code-skill-factory/generated-skills/agent-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "agent-factory. Claude Code agent generation system that creates custom agents and sub-agents with enhanced YAML frontmatter, tool access patterns, and MCP integration support following proven production patterns Platforms: claude_code."} +{"id": "446d1866698cbf77551527012af986b6e2b4dae3e11d9fd29e7b29d5909fc518", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "rest-api-design", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/rest-api-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "rest-api-design. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2092f1c0c58f8f1a756a15db3e9dbd625984523b72579d89abae8ceac132de85", "repo_url": "https://github.com/interstellar-code/claud-skills", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/interstellar-code/claud-skills/blob/main/.claude/skills/document-skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T10:24:44Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents ( Platforms: claude_code."} +{"id": "f9b9f7d7d427f0c1bcefe255667a2680f30273d3d0cbdec94023066287452ca5", "repo_url": "https://github.com/johnlindquist/claude-workshop-skills", "name": "review", "description": "Centralizes persona-driven code reviews (Fowler, Torvalds, Carmack, React core, etc.) so Claude can pick or combine expert viewpoints when the user asks for a code review or perspective-specific criti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/johnlindquist/claude-workshop-skills/blob/main/skills/review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-21T12:42:00Z"}, "embedding_text": "review. Centralizes persona-driven code reviews (Fowler, Torvalds, Carmack, React core, etc.) so Claude can pick or combine expert viewpoints when the user asks for a code review or perspective-specific criti Platforms: claude_code."} +{"id": "4d51366086cc9c84587997c5909c99405dadec348acb06a2d190c67246c5b5ac", "repo_url": "https://github.com/juspay/neurolink", "name": "neurolink", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/juspay/neurolink/blob/release/docs/skills/neurolink-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T18:33:12Z"}, "embedding_text": "neurolink. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e70bfd856a2271996d77dac897fb31277aabdd256a247a1bc4b380bc527b919f", "repo_url": "https://github.com/hasna/skills", "name": "skill-e2bswarm", "description": "Spawn and manage E2B sandbox instances for parallel Claude Code task execution. Use when you need to run multiple tasks in parallel across isolated environments, distribute work across sandboxes, or e", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hasna/skills/blob/main/skills/ad-creative-pack/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 12, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T11:14:12Z"}, "embedding_text": "skill-e2bswarm. Spawn and manage E2B sandbox instances for parallel Claude Code task execution. Use when you need to run multiple tasks in parallel across isolated environments, distribute work across sandboxes, or e Platforms: claude_code."} +{"id": "298bfa693dfe2adbdfb3d56a8d5e9b4170d7d17bb6df33a8965947291ad4a35f", "repo_url": "https://github.com/nesbo/dotnet-claude-code-skills", "name": "bdd-dotnet", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nesbo/dotnet-claude-code-skills/blob/main/bdd-dotnet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-26T13:04:27Z"}, "embedding_text": "bdd-dotnet. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "762e87dedfdc56b8937bc901143450de886e3d05e0ae1f6cffc0f154b32cd3e5", "repo_url": "https://github.com/xquik-dev/x-twitter-scraper", "name": "x-twitter-scraper", "description": "X API & Twitter scraper skill for AI coding agents. Builds integrations with the Xquik REST API, MCP server & webhooks: tweet search, user lookup, follower extraction, engagement metrics, giveaway con", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xquik-dev/x-twitter-scraper/blob/master/skills/x-twitter-scraper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 119, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T20:32:55Z"}, "embedding_text": "x-twitter-scraper. X API & Twitter scraper skill for AI coding agents. Builds integrations with the Xquik REST API, MCP server & webhooks: tweet search, user lookup, follower extraction, engagement metrics, giveaway con Platforms: claude_code."} +{"id": "07ec68e6cdca85ca70273c1d8fffab249c270046da496dc259f1474a1c6c4e9c", "repo_url": "https://github.com/horizondatawave/hdw-mcp-server", "name": "hdw-mcp-server", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 61, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T08:21:22Z"}, "embedding_text": "hdw-mcp-server. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c15f28cb9f85ab9059e20095b1b6591f1916b0f9e4efc30f762d49cbf5b62084", "repo_url": "https://github.com/laguagu/claude-code-nextjs-skills", "name": "skill-creator", "description": "Creates Claude Code skills, hooks, MCP configs, and custom agents. Use when user wants to create a skill, needs help with SKILL.md, asks about hooks, MCP servers, sub-agents, or autonomous workflows l", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/laguagu/claude-code-nextjs-skills/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 49, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-14T11:40:42Z"}, "embedding_text": "skill-creator. Creates Claude Code skills, hooks, MCP configs, and custom agents. Use when user wants to create a skill, needs help with SKILL.md, asks about hooks, MCP servers, sub-agents, or autonomous workflows l Platforms: claude_code."} +{"id": "8317de77ee8da467980443a0dad95720d4c463f8f1c86059ca5efa425ee29575", "repo_url": "https://github.com/lattifai/lattifai-python", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-31T15:17:28Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "82d85e65e7207f780b9e5bd98823f1509d46e9adb011e1d39d2187ed71d4316a", "repo_url": "https://github.com/danvega/compacting-chat-memory-advisor", "name": "compacting-chat-memory-advisor", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 17, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-02T02:07:40Z"}, "embedding_text": "compacting-chat-memory-advisor. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "1aabd43cb6fddf86525752bd0a5ceba8c0ce06064b572639e17fc638ebcc87a2", "repo_url": "https://github.com/basher83/lunar-claude", "name": "plugin-settings", "description": "This skill should be used when the user asks about \"plugin settings\", \"store plugin configuration\", \"user-configurable plugin\", \".local.md files\", \"plugin state files\", \"read YAML frontmatter\", \"per-p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/meta/plugin-dev/skills/plugin-settings/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "plugin-settings. This skill should be used when the user asks about \"plugin settings\", \"store plugin configuration\", \"user-configurable plugin\", \".local.md files\", \"plugin state files\", \"read YAML frontmatter\", \"per-p Platforms: claude_code."} +{"id": "03040c0c0be8ee13984b519f41edafdf56345d58da73e96000fba154cba3e9f0", "repo_url": "https://github.com/jykim/claude-obsidian-skills", "name": "gemini-image-skill", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jykim/claude-obsidian-skills/blob/main/gemini-image-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-03T22:15:25Z"}, "embedding_text": "gemini-image-skill. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2607c69df04b6041ff93c41a9174aa110a39a9cac939ddedd1a6823dcf29732f", "repo_url": "https://github.com/interstellar-code/claud-skills", "name": "lark-agent-simple", "description": "A token-efficient Claude skill that creates Lark tasks directly from markdown test files, bypassing workflow generation to reduce token usage by 60-70%.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/interstellar-code/claud-skills/blob/main/generic-claude-framework/skills/lark-agent-simple/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T10:24:44Z"}, "embedding_text": "lark-agent-simple. A token-efficient Claude skill that creates Lark tasks directly from markdown test files, bypassing workflow generation to reduce token usage by 60-70%. Platforms: claude_code."} +{"id": "5c92e9e7bf012dbcaec7ff94d84d1d5b576facf6e2656b39ada3aa2483b03fa3", "repo_url": "https://github.com/scientiacapital/skills", "name": "langgraph-agents", "description": "Multi-agent systems with LangGraph - supervisor/swarm patterns, state coordination, multi-provider routing. Use when building multi-agent workflows, coordinating agents, or need cost-optimized orchest", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/langgraph-agents-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "langgraph-agents. Multi-agent systems with LangGraph - supervisor/swarm patterns, state coordination, multi-provider routing. Use when building multi-agent workflows, coordinating agents, or need cost-optimized orchest Platforms: claude_code."} +{"id": "81aedf4604899825f818937963d5101859e0d045ed307b94a715d3628aca5708", "repo_url": "https://github.com/wxingheng/markdown-to-image-serve", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 270, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-01T12:02:02Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2bac395a16a93b4402611170f238a78e32786f7f1e2df15d56a01e5d07859f32", "repo_url": "https://github.com/pomterre/ccguard", "name": "ccguard", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-07-29T04:55:32Z"}, "embedding_text": "ccguard. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "fc30d9fd569bc0a0a8d6b33af43ea922e4a29b8abb5b6ec21a8b5ff77fd4bb1c", "repo_url": "https://github.com/loulanyue/spec-kit-zh", "name": "spec-kit-zh", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 259, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T23:11:41Z"}, "embedding_text": "spec-kit-zh. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d5fab512dfa8cf0de67a11875c12d43e3fab23585714c0de3c88cd9cdbaa66bf", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "bootstrap", "description": "This skill should be used when the user asks to \"create a slash command\", \"add a command\", \"write a custom command\", \"define command arguments\", \"use command frontmatter\", \"organize commands\", \"create command with file references\", \"interactive command\", \"use AskUserQuestion in command\", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/.agents/skills/Command Development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bootstrap"}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T19:57:51Z"}, "embedding_text": "bootstrap. This skill should be used when the user asks to \"create a slash command\", \"add a command\", \"write a custom command\", \"define command arguments\", \"use command frontmatter\", \"organize commands\", \"create command with file references\", \"interactive command\", \"use AskUserQuestion in command\", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} +{"id": "4e292a5e7a00a475e6dc0b2ce13e47730f12a04b351c0a1efd2bf740ba22a7ed", "repo_url": "https://github.com/openshift/oc-mirror", "name": "oc-mirror", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openshift/oc-mirror/blob/main/.agents/skills/automate-integration-test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 119, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T10:44:21Z"}, "embedding_text": "oc-mirror. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6ac949ae48daf3ad441e4a03c482df2e5b6a2679f0f018bde7769286cee1d60b", "repo_url": "https://github.com/sudocode-ai/sudocode", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sudocode-ai/sudocode/blob/main/skills/sudocode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 281, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-18T23:20:38Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b980241d50fc7a85caaa459315b14262a27adb0bed239d6b009df3c117e3edb3", "repo_url": "https://github.com/fvadicamo/dev-agent-skills", "name": "github-pr-merge", "description": "Merges GitHub Pull Requests after validating pre-merge checklist. Use when user wants to merge PR, close PR, finalize PR, complete merge, approve and merge, or execute merge. Runs pre-merge validation", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fvadicamo/dev-agent-skills/blob/main/plugins/github-workflow/skills/github-pr-merge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T23:49:38Z"}, "embedding_text": "github-pr-merge. Merges GitHub Pull Requests after validating pre-merge checklist. Use when user wants to merge PR, close PR, finalize PR, complete merge, approve and merge, or execute merge. Runs pre-merge validation Platforms: claude_code."} +{"id": "d3edddddc46fb9067cade3edc1d9e21b72080155277bec42e1ae9a377bba63b1", "repo_url": "https://github.com/fvadicamo/dev-agent-skills", "name": "github-pr-creation", "description": "Creates GitHub Pull Requests with automated validation and task tracking. Use when user wants to create PR, open pull request, submit for review, or check if ready for PR. Analyzes commits, validates", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fvadicamo/dev-agent-skills/blob/main/plugins/github-workflow/skills/github-pr-creation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 66, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T23:49:38Z"}, "embedding_text": "github-pr-creation. Creates GitHub Pull Requests with automated validation and task tracking. Use when user wants to create PR, open pull request, submit for review, or check if ready for PR. Analyzes commits, validates Platforms: claude_code."} +{"id": "3c0e30bdff400b4e9b09ce3b408b2b84cd461ffa15110548f03ca888b4ceefed", "repo_url": "https://github.com/go-openapi/errors", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T18:08:39Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "85472cfded4d9e6d0f418f65461fe5e05e47e2c231fad73d0e2aba3ba15370d7", "repo_url": "https://github.com/digidai/product-manager-skills", "name": "product-manager-skills", "description": "PM skill for Claude Code, Codex, Cursor, and Windsurf. Diagnoses SaaS metrics, critiques PRDs, plans roadmaps, runs discovery, coaches PM career transitions, and pressure-tests AI product decisions. S", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/digidai/product-manager-skills/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 114, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T03:05:07Z"}, "embedding_text": "product-manager-skills. PM skill for Claude Code, Codex, Cursor, and Windsurf. Diagnoses SaaS metrics, critiques PRDs, plans roadmaps, runs discovery, coaches PM career transitions, and pressure-tests AI product decisions. S Platforms: claude_code."} +{"id": "186505985f9c50c2bdeaa8fcf30cce4f9f293663bee1b078eed535a491c7e604", "repo_url": "https://github.com/scientiacapital/skills", "name": "agent-teams", "description": "Orchestrate teams of parallel Claude Code sessions working on the same codebase. Handles task decomposition, agent coordination, context isolation, and merge strategies. Builds on worktree-manager for", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/agent-teams-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "agent-teams. Orchestrate teams of parallel Claude Code sessions working on the same codebase. Handles task decomposition, agent coordination, context isolation, and merge strategies. Builds on worktree-manager for Platforms: claude_code."} +{"id": "6880d5e85a394ec938888ffd9a78e88478801222e56e28037e313c9031f4f865", "repo_url": "https://github.com/juliusolsson05/pharos-ai", "name": "agent", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 144, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-16T10:18:45Z"}, "embedding_text": "agent. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "95d7b9d34a88a5d12404fd8ccccbdf158fe51736a9172179a34d6aa945939d7c", "repo_url": "https://github.com/full-stack-biz/claude-skills-toolkit", "name": "skill-refiner", "description": "Improve and validate existing Claude Code skills for clarity, efficiency, and production readiness. Use when: refining skills, improving skill structure, validating against best practices, reducing to", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/full-stack-biz/claude-skills-toolkit/blob/main/skills/skill-refiner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-06T15:31:41Z"}, "embedding_text": "skill-refiner. Improve and validate existing Claude Code skills for clarity, efficiency, and production readiness. Use when: refining skills, improving skill structure, validating against best practices, reducing to Platforms: claude_code."} +{"id": "83e17185d5a8cd108f8185b4baae13a25668950bd115f01a6a4b130e9ac57de5", "repo_url": "https://github.com/martymcenroe/assemblyzero", "name": "mock_repo", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 100, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T21:08:17Z"}, "embedding_text": "mock_repo. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "c03884dc879b8a4c6eb69d24f58c0d1bd0f5660b541cada25bbe097b37058728", "repo_url": "https://github.com/vladm3105/aidoc-flow-framework", "name": "doc-adr-validator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vladm3105/aidoc-flow-framework/blob/main/platforms/claude-code-plugin/skills/doc-adr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T01:32:13Z"}, "embedding_text": "doc-adr-validator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "00e1d40bdd525ddbf25f096e22353d985489b17c0108abd08b9273208255e673", "repo_url": "https://github.com/full-stack-biz/claude-skills-toolkit", "name": "skill-tester", "description": "Test and benchmark Claude Code skills empirically using evaluation-driven development. Use when validating a skill's effectiveness, comparing skill vs. baseline performance, running benchmarks with ti", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/full-stack-biz/claude-skills-toolkit/blob/main/skills/skill-tester/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-06T15:31:41Z"}, "embedding_text": "skill-tester. Test and benchmark Claude Code skills empirically using evaluation-driven development. Use when validating a skill's effectiveness, comparing skill vs. baseline performance, running benchmarks with ti Platforms: claude_code."} +{"id": "780ee7c13f56412222981a6a12ce5aea3cf14e92f9ffc9a77366c69f08fd2506", "repo_url": "https://github.com/basher83/lunar-claude", "name": "claude-agent-sdk", "description": "This skill should be used when building applications with the Claude Agent SDK (Python). Use for creating orchestrators with subagents, configuring agents programmatically, setting up hooks and permis", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/devops/python-tools/skills/claude-agent-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "claude-agent-sdk. This skill should be used when building applications with the Claude Agent SDK (Python). Use for creating orchestrators with subagents, configuring agents programmatically, setting up hooks and permis Platforms: claude_code."} +{"id": "24915ad67c9d7be1b68b3cf32a82778c7f5560cf15ec7578f886ba0b2ef46565", "repo_url": "https://github.com/full-stack-biz/claude-skills-toolkit", "name": "skill-composer", "description": "Create NEW Claude Code skills from scratch following best practices. Use when building new skills, interviewing for requirements, applying templates, organizing frontmatter and body content, or conver", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/full-stack-biz/claude-skills-toolkit/blob/main/skills/skill-composer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-06T15:31:41Z"}, "embedding_text": "skill-composer. Create NEW Claude Code skills from scratch following best practices. Use when building new skills, interviewing for requirements, applying templates, organizing frontmatter and body content, or conver Platforms: claude_code."} +{"id": "48ca9b244c14a9d9799ece71b3a52fd9e50a5e6b057a7fd497fbe40d3659c5ea", "repo_url": "https://github.com/basher83/lunar-claude", "name": "command-development", "description": "This skill should be used when the user asks to \"create a slash command\", \"add a command\", \"write a custom command\", \"define command arguments\", \"use command frontmatter\", \"organize commands\", \"create", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/meta/plugin-dev/skills/command-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "command-development. This skill should be used when the user asks to \"create a slash command\", \"add a command\", \"write a custom command\", \"define command arguments\", \"use command frontmatter\", \"organize commands\", \"create Platforms: claude_code."} +{"id": "361aba447027a8369b636f4f829ae4bf5371dcabf82d4dc43c727eb30ced272b", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "Research Literature Trace", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/research-literature-trace/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "Research Literature Trace. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "0018a6013cce72d6bfbba7926c2310352dfc777c2f2673acb3ff76613765bfe7", "repo_url": "https://github.com/codealive-ai/claude-code-reflection-skills", "name": "subagents-management", "description": "Create, edit, list, move, and delete subagents and skills for coding agents (Claude Code, Codex CLI). Manage AGENTS.md instructions, custom subagent definitions, and skill packages across user and pro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codealive-ai/claude-code-reflection-skills/blob/main/skills/subagents-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 90, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:03:39Z"}, "embedding_text": "subagents-management. Create, edit, list, move, and delete subagents and skills for coding agents (Claude Code, Codex CLI). Manage AGENTS.md instructions, custom subagent definitions, and skill packages across user and pro Platforms: claude_code."} +{"id": "a58f66f788c8a67122d30e29165c26b4f2b19daefd8bfc0bec5a9995a52dd202", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "Research Pipeline Planner", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/research-pipeline-planner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "Research Pipeline Planner. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "bd04fc53b240bde0ac268630f889be3fa867aee384ce589b2bbfda8a868ac9f1", "repo_url": "https://github.com/openhft/chronicle-values", "name": "Chronicle-Values", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 113, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-29T11:29:24Z"}, "embedding_text": "Chronicle-Values. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c09172d316cd504b9f99225213e1c29beb722c043188dcf5efa85bcac4e8e4cf", "repo_url": "https://github.com/heshamfs/materials-simulation-skills", "name": "differentiation-schemes", "description": "Select and apply numerical differentiation schemes for PDE/ODE discretization. Use when choosing finite difference/volume/spectral schemes, building stencils, handling boundaries, estimating truncatio", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heshamfs/materials-simulation-skills/blob/main/skills/core-numerical/differentiation-schemes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 45, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T16:05:58Z"}, "embedding_text": "differentiation-schemes. Select and apply numerical differentiation schemes for PDE/ODE discretization. Use when choosing finite difference/volume/spectral schemes, building stencils, handling boundaries, estimating truncatio Platforms: claude_code."} +{"id": "feb393795c168fda24f55a7d31d8dd9848cdbd0bfb22bf7a72d80bf7e05ed516", "repo_url": "https://github.com/siriusfhj/shangannotes", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 276, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-09-26T07:49:17Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "bf90b0b6b20aa160b382c584711ae645d7c39ef435cab92667747f27d8a5a465", "repo_url": "https://github.com/ligphidonk/oh-my--paper", "name": "Research Experiment Driver", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ligphidonk/oh-my--paper/blob/main/skills/research-experiment-driver/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 661, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-15T08:53:14Z"}, "embedding_text": "Research Experiment Driver. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "f7c11f4339e1f3dff1839878ff66256aaf0599c74fa80d5beaaa08c80c6e1e3a", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/document-skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:28:52Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks Platforms: claude_code."} +{"id": "5af03faf2ce2a1048a9a238e663a7626be3e6a0658a34b0b3d43f50ad7f237a1", "repo_url": "https://github.com/gitguardian/ggmcp", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gitguardian/ggmcp/blob/main/.claude/skills/docker-image-tags/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 36, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T13:49:45Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "92a45bcdc6a9c2fbf2557a38428286668c51380bdd2862ad1140720937d950fa", "repo_url": "https://github.com/efij/secure-claude-code", "name": "secure-tune", "description": "Tune Secure Claude Code with stricter or lighter profiles and explain individual guards.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/efij/secure-claude-code/blob/main/skills/secure-tune/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T10:36:04Z"}, "embedding_text": "secure-tune. Tune Secure Claude Code with stricter or lighter profiles and explain individual guards. Platforms: claude_code."} +{"id": "00a8f81e8c8e2fe6837c7c94bc6dc01550c8c805fd35fd1f108fb2e8adcd54a8", "repo_url": "https://github.com/jmilinovich/goal-md", "name": "goal-md", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 147, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-03T22:09:41Z"}, "embedding_text": "goal-md. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7a6deb6f4e59b5f2b4b8938b9f3e21fd5f2cef83893b056ac3a1e2d8c08ae4c3", "repo_url": "https://github.com/foreveryh/claude-skills-tutorial", "name": "skill-article-writer", "description": "Generate comprehensive analysis articles from Claude skills. This skill should be used when you want to analyze a skill from the Anthropic skills repository and create a detailed tutorial article expl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/foreveryh/claude-skills-tutorial/blob/main/.claude/skills/skill-article-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-24T14:34:10Z"}, "embedding_text": "skill-article-writer. Generate comprehensive analysis articles from Claude skills. This skill should be used when you want to analyze a skill from the Anthropic skills repository and create a detailed tutorial article expl Platforms: claude_code."} +{"id": "ee89b8f2e3c587487b3d723e200ba97bcad6c2422b332076a5a75bbb5897b04a", "repo_url": "https://github.com/kangraemin/claude-inspector", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kangraemin/claude-inspector/blob/main/.claude/skills/build/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-12T23:40:25Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "6281b8a7b43329dda2518c58ec70e9452913de3b9a869bf78be66fd4c300f7c4", "repo_url": "https://github.com/jwynia/agent-skills", "name": "mastra-hono", "description": "Develop AI agents, tools, and workflows with Mastra v1 Beta and Hono servers. This skill should be used when creating Mastra agents, defining tools with Zod schemas, building workflows with step data", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jwynia/agent-skills/blob/main/skills/tech/ai/mastra-hono/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T02:35:14Z"}, "embedding_text": "mastra-hono. Develop AI agents, tools, and workflows with Mastra v1 Beta and Hono servers. This skill should be used when creating Mastra agents, defining tools with Zod schemas, building workflows with step data Platforms: claude_code."} +{"id": "2ec0b621076075f02c6d013d7b81578f86d5e28fe0860c5ac634b39d8d596adb", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "claude-plugins-reference-2026", "description": "Complete reference for Claude Code plugins system (January 2026). Use when creating plugins, understanding plugin.json schema, marketplace configuration, bundling skills/commands/agents/hooks/MCP/LSP", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/claude-plugins-reference-2026/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "claude-plugins-reference-2026. Complete reference for Claude Code plugins system (January 2026). Use when creating plugins, understanding plugin.json schema, marketplace configuration, bundling skills/commands/agents/hooks/MCP/LSP Platforms: claude_code."} +{"id": "1c877a30bd20547a9af97bf4d200994c3edd56e10e90b864583a386d320f2a82", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/document-skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pptx"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:28:52Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks Platforms: claude_code."} +{"id": "2fb321400b02a98625f17ee4e8bb594763457d13a31a12e741f8547ffd1d0d9e", "repo_url": "https://github.com/jwynia/agent-skills", "name": "secrets-scan", "description": "A security scanning tool that detects hardcoded credentials, API keys, tokens, and other sensitive data in source code and git history using pattern matching and entropy analysis.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jwynia/agent-skills/blob/main/skills/tech/security/secrets-scan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-24T02:35:14Z"}, "embedding_text": "secrets-scan. A security scanning tool that detects hardcoded credentials, API keys, tokens, and other sensitive data in source code and git history using pattern matching and entropy analysis. Platforms: claude_code."} +{"id": "1c64a0fa6298bf9e0acd08c78576a1a9ee193b359b55a3e9f7bb756c5a443d96", "repo_url": "https://github.com/sjungling/claude-plugins", "name": "builder", "description": "Expert in creating Claude Code subagents, skills, slash commands, plugins, and plugin marketplaces. Automatically activates when working with .md files in .claude/ directories, agent/command/skill fro", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sjungling/claude-plugins/blob/main/plugins/cli-developer/skills/cli-ux-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-12T18:02:16Z"}, "embedding_text": "builder. Expert in creating Claude Code subagents, skills, slash commands, plugins, and plugin marketplaces. Automatically activates when working with .md files in .claude/ directories, agent/command/skill fro Platforms: claude_code."} +{"id": "047473bbd66385d5bc8fe018029ab6c3c9655002ac37459362ede27898975794", "repo_url": "https://github.com/scientiacapital/skills", "name": "worktree-manager", "description": "Parallel development with git worktrees and Claude Code agents. Handles Ghostty terminal launching, port allocation, and global registry. Use when creating worktrees, managing parallel development, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/scientiacapital/skills/blob/main/active/worktree-manager-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-01T23:36:54Z"}, "embedding_text": "worktree-manager. Parallel development with git worktrees and Claude Code agents. Handles Ghostty terminal launching, port allocation, and global registry. Use when creating worktrees, managing parallel development, or Platforms: claude_code."} +{"id": "80c4da087b6020ea39ecc2b69e519c07865c5dca0930304c86dbed9025a56b98", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "typescript-specialist", "description": "A TypeScript development specialist skill for building type-safe backend APIs with Express/Nest.js, creating npm packages, managing monorepos, and implementing advanced TypeScript patterns with modern", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/specialists/language-specialists/typescript-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "typescript-specialist. A TypeScript development specialist skill for building type-safe backend APIs with Express/Nest.js, creating npm packages, managing monorepos, and implementing advanced TypeScript patterns with modern Platforms: claude_code."} +{"id": "c2e0ed229f11db791f085c50fff6ccba28d6c712a04ee339859258cec894e7dc", "repo_url": "https://github.com/mburdo/knowledge_and_vibes", "name": "advance", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mburdo/knowledge_and_vibes/blob/master/.claude/skills/advance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 43, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-28T19:47:07Z"}, "embedding_text": "advance. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "cb8d73cf04d94928133244c9db451088710c729603da35601e03d804a1806d40", "repo_url": "https://github.com/akinalpfdn/claude-ground", "name": "claude-ground", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 112, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T10:32:15Z"}, "embedding_text": "claude-ground. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9cf25eb58cca4fa7e99c98fae17db413ac51b2eae435d0aa53c77cf2b4a56fe7", "repo_url": "https://github.com/evolvinglmms-lab/lmms-lab-writer", "name": "lmms-lab-writer", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 229, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-01T14:57:34Z"}, "embedding_text": "lmms-lab-writer. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a93ba40835eb9afc3758ec565080830ffc5cbaed0edc7f3b5ee7d9ee6259b512", "repo_url": "https://github.com/revfactory/claude-code-guide", "name": "claude-code-guide", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 74, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-07-27T10:43:33Z"}, "embedding_text": "claude-code-guide. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8072f1390966b71650ed5adada965eb1652462886d0d792ae4982b81cb6c2125", "repo_url": "https://github.com/swiftfulthinking/swiftfulstarterproject", "name": "SwiftfulStarterProject", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/swiftfulthinking/swiftfulstarterproject/blob/main/.claude/skills/adding-deep-link/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-26T20:26:16Z"}, "embedding_text": "SwiftfulStarterProject. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "adb6fed217c2472672713fe0c3ce642f2208fbbb5d4c2d7200a7effc27e7ebab", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "gitlab-skill", "description": "The model must apply when tasks involve .gitlab-ci.yml configuration, GitLab Flavored Markdown (GLFM) syntax, gitlab-ci-local testing, CI/CD pipeline optimization, GitLab CI Steps composition, Docker-", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/individual-skills/ios-simulator-skill/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "gitlab-skill. The model must apply when tasks involve .gitlab-ci.yml configuration, GitLab Flavored Markdown (GLFM) syntax, gitlab-ci-local testing, CI/CD pipeline optimization, GitLab CI Steps composition, Docker- Platforms: claude_code."} +{"id": "18b8b951e5f5826bcf8c3717270ecc6ea669a093f31a9e9b675849088db17cd6", "repo_url": "https://github.com/rohunvora/cool-claude-skills", "name": "skill-creator", "description": "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, workfl", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohunvora/cool-claude-skills/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-09T05:28:41Z"}, "embedding_text": "skill-creator. 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, workfl Platforms: claude_code."} +{"id": "303fa185a7b1216d7041a7c0696da4f8182648ecf4939dc23df379edb836fec2", "repo_url": "https://github.com/outfitter-dev/agents", "name": "multi-agent", "description": "This skill should be used when coordinating multiple agents, parallel development, agent handoffs, or when multi-agent, concurrent agents, or parallel agents are mentioned.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outfitter-dev/agents/blob/main/plugins/but/skills/multi-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T20:19:32Z"}, "embedding_text": "multi-agent. This skill should be used when coordinating multiple agents, parallel development, agent handoffs, or when multi-agent, concurrent agents, or parallel agents are mentioned. Platforms: claude_code."} +{"id": "0e14909cfdab1a87f67852bfa549b8bd4c9e560f27a8a861a62e5b2416ce3622", "repo_url": "https://github.com/asteroid-belt/skulto", "name": "superplan", "description": "Use when starting significant features, epics, or complex tasks. Creates multi-phase implementation plans with parallelizable phases, poker estimates, TDD-first acceptance criteria, and quality gates.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asteroid-belt/skulto/blob/main/.claude/skills/superplan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 48, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T05:18:31Z"}, "embedding_text": "superplan. Use when starting significant features, epics, or complex tasks. Creates multi-phase implementation plans with parallelizable phases, poker estimates, TDD-first acceptance criteria, and quality gates. Platforms: claude_code."} +{"id": "bb72ba1d8fc7c31a50f92d1bc2c53b621b30703deb5f4251b22b80193c7811ab", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "adk-agent-builder", "description": "Build production-ready AI agents using Google's Agent Development Kit with Claude integration, React patterns, multi-agent orchestration, and comprehensive tool libraries", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/plugins/claude-code-plugins-plus/backups/skills-batch-20251204-000554/plugins/jeremy-google-adk/skills/adk-agent-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "adk-agent-builder. Build production-ready AI agents using Google's Agent Development Kit with Claude integration, React patterns, multi-agent orchestration, and comprehensive tool libraries Platforms: claude_code."} +{"id": "2c043fab660a1d4a20c53e3e158c3434933235c10d389c4158d0197da5c51ba4", "repo_url": "https://github.com/outfitter-dev/agents", "name": "code-review", "description": "This skill should be used when reviewing code before commit, conducting quality gates, or when \"review\", \"fresh eyes\", \"pre-commit review\", or \"quality gate\" are mentioned.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outfitter-dev/agents/blob/main/plugins/outfitter/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T20:19:32Z"}, "embedding_text": "code-review. This skill should be used when reviewing code before commit, conducting quality gates, or when \"review\", \"fresh eyes\", \"pre-commit review\", or \"quality gate\" are mentioned. Platforms: claude_code."} +{"id": "bad4ef4c299d99442f8a4aebe9aea224ac192ab26261c6a38307b56d385cb03d", "repo_url": "https://github.com/wondelai/skills", "name": "storybrand-messaging", "description": "Clarify brand messaging using narrative structure that positions the customer as hero. Use when the user mentions \"brand message\", \"website copy\", \"elevator pitch\", \"one-liner\", \"messaging isn't resonating\", or \"brand script\". Covers landing page copy, marketing collateral, and consistent communication. For memorable messaging, see made-to-stick. For product positioning, see obviously-awesome.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/storybrand-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install storybrand-messaging"}, "quality": {"stars": 1418, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T14:13:04Z"}, "embedding_text": "storybrand-messaging. Clarify brand messaging using narrative structure that positions the customer as hero. Use when the user mentions \"brand message\", \"website copy\", \"elevator pitch\", \"one-liner\", \"messaging isn't resonating\", or \"brand script\". Covers landing page copy, marketing collateral, and consistent communication. For memorable messaging, see made-to-stick. For product positioning, see obviously-awesome. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} +{"id": "b6056464c38fa57fbda5c0bb5ee5faa5408da7af9bcb4baa6dc4f5f45ecdc7fd", "repo_url": "https://github.com/joelhooks/logseq-mcp-tools", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-21T15:28:41Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f1c34ea4749f7964bdbffa42911e38c7640c7d1eaf9f19947fb58c584437d788", "repo_url": "https://github.com/pulumi/pulumi-hcloud", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pulumi/pulumi-hcloud/blob/master/.claude/skills/provider-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T04:35:17Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "bb61577c5b8995c88bf4766dcf685d5dcf0e238b9d3dc02378ca8dbf1a76fb87", "repo_url": "https://github.com/moonwell-fi/moonwell-contracts-v2", "name": "mip", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moonwell-fi/moonwell-contracts-v2/blob/main/.claude/skills/mip/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 106, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-16T15:31:37Z"}, "embedding_text": "mip. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "cba9c303723d59c13a5265a7d2a8b14c9d450449b18aa49ac150edbd2c70a132", "repo_url": "https://github.com/samhvw8/dotfiles", "name": "claude-extensibility", "description": "Claude Code extensibility: agents, skills, output styles. Capabilities: create/update/delete agents and skills, YAML frontmatter, system prompts, tool/model selection, resumable agents, CLI-defined ag", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samhvw8/dotfiles/blob/master/dot_ccp/hub/skills/claude/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:59:44Z"}, "embedding_text": "claude-extensibility. Claude Code extensibility: agents, skills, output styles. Capabilities: create/update/delete agents and skills, YAML frontmatter, system prompts, tool/model selection, resumable agents, CLI-defined ag Platforms: claude_code."} +{"id": "482d7a958d224a3e218e59ddeb8ab8ce22220641ffb64d9bf7fa843b2e0d2cd8", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "design-systems", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/design-systems/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "design-systems. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f8335283f92103a7dcc25838020b3362fa30e9b49ea93652bd2df45bfa00b841", "repo_url": "https://github.com/huseyinstif/oculos", "name": "oculos", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 125, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-07T22:25:56Z"}, "embedding_text": "oculos. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b7fab5abb2ef062c0e4b9dc6bd4612865a3a8d089ca7fb811fc20e2985b05354", "repo_url": "https://github.com/lyehe/build_gpu_colmap", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-15T04:52:53Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c35438738d5ff3ce0952b5a5184080477be6899b2b83bc2167aff2d1677c63d4", "repo_url": "https://github.com/mrchantey/beet", "name": "release", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mrchantey/beet/blob/main/.agents/skills/release/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 127, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:52:40Z"}, "embedding_text": "release. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "2101fe6eb38217bae85c23034c0e39e872bb2c2026bc2475f3b5b07c74c45028", "repo_url": "https://github.com/vuralserhat86/antigravity-agentic-skills", "name": "pdf", "description": "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 p", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vuralserhat86/antigravity-agentic-skills/blob/main/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 43, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-03T12:20:04Z"}, "embedding_text": "pdf. 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 p Platforms: claude_code."} +{"id": "4dfa2c7dcf3f5bd7e74277d4cd6e76c851ad690c1e761d1e93bf4777ff386164", "repo_url": "https://github.com/kentcdodds/kody", "name": "kody", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kentcdodds/kody/blob/main/.agents/skills/remix/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T12:22:16Z"}, "embedding_text": "kody. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f1285e9b6a1b9e0e68f3d01f0ee9390e8cf6b90c8f48f8739401cbd6cea380dc", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-agentic-ai", "description": "AWS Bedrock AgentCore comprehensive expert for deploying and managing all AgentCore services. Use when working with Gateway, Runtime, Memory, Identity, or any AgentCore component. Covers MCP target deployment, credential management, schema optimization, runtime configuration, memory management, and identity services.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "aws", "aws-agentc", "aws-agentcore", "aws-cdk", "aws-serverless-architecture", "claude-code", "claude-plugin", "claude-skills", "event-driven-architecture"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/aws-agentic-ai/skills/aws-agentic-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-agentic-ai"}, "quality": {"stars": 318, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T14:37:32Z"}, "embedding_text": "aws-agentic-ai. AWS Bedrock AgentCore comprehensive expert for deploying and managing all AgentCore services. Use when working with Gateway, Runtime, Memory, Identity, or any AgentCore component. Covers MCP target deployment, credential management, schema optimization, runtime configuration, memory management, and identity services. Categories: agent-skills, aws, aws-agentc, aws-agentcore, aws-cdk, aws-serverless-architecture, claude-code, claude-plugin, claude-skills, event-driven-architecture. Platforms: claude_code."} +{"id": "c21919bee7f41fdaf2f727b929c684f3cb4a1f8bfee51eff9bd3552ddbd0ac7d", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-mcp-setup", "description": "Configure AWS MCP servers for documentation search and API access. Use when setting up AWS MCP, configuring AWS documentation tools, troubleshooting MCP connectivity, or when user mentions aws-mcp, awsdocs, uvx setup, or MCP server configuration. Covers both Full AWS MCP Server (with uvx + credentials) and lightweight Documentation MCP (no auth required).", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "aws", "aws-agentc", "aws-agentcore", "aws-cdk", "aws-serverless-architecture", "claude-code", "claude-plugin", "claude-skills", "event-driven-architecture"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/aws-common/skills/aws-mcp-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-mcp-setup"}, "quality": {"stars": 318, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T14:37:32Z"}, "embedding_text": "aws-mcp-setup. Configure AWS MCP servers for documentation search and API access. Use when setting up AWS MCP, configuring AWS documentation tools, troubleshooting MCP connectivity, or when user mentions aws-mcp, awsdocs, uvx setup, or MCP server configuration. Covers both Full AWS MCP Server (with uvx + credentials) and lightweight Documentation MCP (no auth required). Categories: agent-skills, aws, aws-agentc, aws-agentcore, aws-cdk, aws-serverless-architecture, claude-code, claude-plugin, claude-skills, event-driven-architecture. Platforms: claude_code."} +{"id": "0032ff283f933271f8ed5d497531454266ca10f7df2955839e1ff31e8b9768c7", "repo_url": "https://github.com/plurigrid/asi", "name": "moebius-inversion", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/plurigrid/asi/blob/main/ies/music-topos/.codex/skills/moebius-inversion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 26, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T12:51:42Z"}, "embedding_text": "moebius-inversion. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "91e4ff83729acfcc7d8e7aef2f08d71393bd1de907e0bb6ae590330e9b747127", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-serverless-eda", "description": "AWS serverless and event-driven architecture expert based on Well-Architected Framework. Use when building serverless APIs, Lambda functions, REST APIs, microservices, or async workflows. Covers Lambda with TypeScript/Python, API Gateway (REST/HTTP), DynamoDB, Step Functions, EventBridge, SQS, SNS, and serverless patterns. Essential when user mentions serverless, Lambda, API Gateway, event-driven, async processing, queues, pub/sub, or wants to build scalable serverless applications with AWS best practices.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "aws", "aws-agentc", "aws-agentcore", "aws-cdk", "aws-serverless-architecture", "claude-code", "claude-plugin", "claude-skills", "event-driven-architecture"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/serverless-eda/skills/aws-serverless-eda/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-serverless-eda"}, "quality": {"stars": 318, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T14:37:32Z"}, "embedding_text": "aws-serverless-eda. AWS serverless and event-driven architecture expert based on Well-Architected Framework. Use when building serverless APIs, Lambda functions, REST APIs, microservices, or async workflows. Covers Lambda with TypeScript/Python, API Gateway (REST/HTTP), DynamoDB, Step Functions, EventBridge, SQS, SNS, and serverless patterns. Essential when user mentions serverless, Lambda, API Gateway, event-driven, async processing, queues, pub/sub, or wants to build scalable serverless applications with AWS best practices. Categories: agent-skills, aws, aws-agentc, aws-agentcore, aws-cdk, aws-serverless-architecture, claude-code, claude-plugin, claude-skills, event-driven-architecture. Platforms: claude_code."} +{"id": "7ceb58c66f72947687ccda807169713b98d7ef9063d0ff9dbd64bce593e9ad95", "repo_url": "https://github.com/udecode/plate-playground-template", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/udecode/plate-playground-template/blob/main/.agents/skills/agent-browser-issue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 236, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T09:29:08Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6db1b638afc18542474adea9662795e5c717487e8b6d54c0983d4ce661f61118", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-cdk-development", "description": "AWS Cloud Development Kit (CDK) expert for building cloud infrastructure with TypeScript/Python. Use when creating CDK stacks, defining CDK constructs, implementing infrastructure as code, or when the", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/aws-iac/skills/aws-cdk-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 318, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T14:37:32Z"}, "embedding_text": "aws-cdk-development. AWS Cloud Development Kit (CDK) expert for building cloud infrastructure with TypeScript/Python. Use when creating CDK stacks, defining CDK constructs, implementing infrastructure as code, or when the Platforms: claude_code."} +{"id": "e16d9d4c83e9bd3f2ff32cb5c420838396374c8e115dbf55bb0b085a3ede1c5c", "repo_url": "https://github.com/leegonzales/aiskills", "name": "playwright-browser-automation", "description": "Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login flo", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/leegonzales/aiskills/blob/main/PlaywrightSkill/playwright/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 29, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T19:57:36Z"}, "embedding_text": "playwright-browser-automation. Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login flo Platforms: claude_code."} +{"id": "b15df2239d45cfe768111b207a7e6e3f21f228379b6c07bf573845e06069c268", "repo_url": "https://github.com/sunfish-shogi/shogihome", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 234, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T11:59:21Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6ea52ace3ff61066e8bf5da5d66cabba3035a4568a2fb49f2cbd4d69b0d3569c", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-cost-operations", "description": "AWS cost optimization, monitoring, and operational excellence expert. Use when analyzing AWS bills, estimating costs, setting up CloudWatch alarms, querying logs, auditing CloudTrail activity, or assessing security posture. Essential when user mentions AWS costs, spending, billing, budget, pricing, CloudWatch, observability, monitoring, alerting, CloudTrail, audit, or wants to optimize AWS infrastructure costs and operational efficiency.", "source": ["skillhub", "marketplace", "topic"], "categories": ["agent-skills", "aws", "aws-agentc", "aws-agentcore", "aws-cdk", "aws-serverless-architecture", "claude-code", "claude-plugin", "claude-skills", "event-driven-architecture"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/aws-cost-ops/skills/aws-cost-operations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-cost-operations"}, "quality": {"stars": 318, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T14:37:32Z"}, "embedding_text": "aws-cost-operations. AWS cost optimization, monitoring, and operational excellence expert. Use when analyzing AWS bills, estimating costs, setting up CloudWatch alarms, querying logs, auditing CloudTrail activity, or assessing security posture. Essential when user mentions AWS costs, spending, billing, budget, pricing, CloudWatch, observability, monitoring, alerting, CloudTrail, audit, or wants to optimize AWS infrastructure costs and operational efficiency. Categories: agent-skills, aws, aws-agentc, aws-agentcore, aws-cdk, aws-serverless-architecture, claude-code, claude-plugin, claude-skills, event-driven-architecture. Platforms: claude_code."} +{"id": "48630cad78e4b5980213246d9bb75a5344685664b6aa651c58ea2c5faf9cae80", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "python3-development", "description": "Use when building Python 3.11+ CLI apps (Typer/Rich), writing pytest test suites, fixing ruff linting or ty/mypy type errors, configuring pyproject.toml, creating portable scripts, or reviewing Python", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/python3-development/skills/python3-development-meta-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "python3-development. Use when building Python 3.11+ CLI apps (Typer/Rich), writing pytest test suites, fixing ruff linting or ty/mypy type errors, configuring pyproject.toml, creating portable scripts, or reviewing Python Platforms: claude_code."} +{"id": "0166e69b972fc9a46d6ba119678567b0c0cebc7a293a848c6c31eb7391f24653", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "plugin-creator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/plugin-creator-meta-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "plugin-creator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0fd15271378611e0efb27084b910bf1a1e1157934c7be39c65e1d7d3ba4af779", "repo_url": "https://github.com/jakedahn/pomodoro", "name": "pomodoro", "description": "Simple Pomodoro timer for focused work sessions with session tracking and productivity analytics. Use when users request focus timers, ask about productivity patterns, or want to track work sessions over time. Demonstrates the System Skill Pattern (CLI + SKILL.md + Database).", "source": ["skillhub", "topic"], "categories": ["claude", "claude-ai", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jakedahn/pomodoro/blob/main/dist/skills/pomodoro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pomodoro"}, "quality": {"stars": 54, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-10-23T05:27:22Z"}, "embedding_text": "pomodoro. Simple Pomodoro timer for focused work sessions with session tracking and productivity analytics. Use when users request focus timers, ask about productivity patterns, or want to track work sessions over time. Demonstrates the System Skill Pattern (CLI + SKILL.md + Database). Categories: claude, claude-ai, claude-code, claude-skills. Platforms: claude_code."} +{"id": "7a9b63e39dda275db1e07629ab3805680a77854512d30f2d634051752665ed16", "repo_url": "https://github.com/bitwarden/sdk-internal", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 103, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T21:29:35Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "07805c98bef2865797b0e5027bee06277e71d766b3e23791536712895c2fc2c9", "repo_url": "https://github.com/blas0/severance", "name": "orchestrate", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blas0/severance/blob/master/skills/orchestrate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 47, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-03T04:47:30Z"}, "embedding_text": "orchestrate. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "6f1cee0829995c0b192d78a8628a0cbef45dfc321c541bc5c320f8a1c6710aba", "repo_url": "https://github.com/basher83/lunar-claude", "name": "hook-development", "description": "This skill should be used when the user asks to \"create a hook\", \"add a PreToolUse/PostToolUse/Stop hook\", \"validate tool use\", \"implement prompt-based hooks\", \"use ${CLAUDE_PLUGIN_ROOT}\", \"set up eve", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/basher83/lunar-claude/blob/main/plugins/meta/plugin-dev/skills/hook-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 21, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T10:01:41Z"}, "embedding_text": "hook-development. This skill should be used when the user asks to \"create a hook\", \"add a PreToolUse/PostToolUse/Stop hook\", \"validate tool use\", \"implement prompt-based hooks\", \"use ${CLAUDE_PLUGIN_ROOT}\", \"set up eve Platforms: claude_code."} +{"id": "bd085da81e44730b59a05a029d6edb724e63b5b83e8c6a4b8abd878bdc97b9f4", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "cloudflare-images", "description": "This skill provides comprehensive knowledge for Cloudflare Images, covering both the Images API (upload/storage) and Image Transformations (optimize any image). It should be used when uploading images to Cloudflare, resizing images, optimizing image delivery, implementing direct creator uploads, creating image variants, generating signed URLs for private images, transforming images via Workers, or encountering image upload/transformation errors.\n\nUse when: setting up Cloudflare Images storage, implementing user-uploaded images, creating responsive images, optimizing image formats (WebP/AVIF), resizing images via URL or Workers, debugging CORS errors with direct uploads, handling image transformation errors (9401-9413), implementing signed URLs, managing image variants, or building image CDNs.\n\nKeywords: cloudflare images, image upload cloudflare, imagedelivery.net, cloudflare image transformations, /cdn-cgi/image/, direct creator upload, image variants, cf.image workers, signed urls images, flexible variants, webp avif conversion, responsive images cloudflare, error 5408, error 9401, error 9403, CORS direct upload, multipart/form-data, image optimization cloudflare\n", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/cloudflare-images/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cloudflare-images"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "cloudflare-images. This skill provides comprehensive knowledge for Cloudflare Images, covering both the Images API (upload/storage) and Image Transformations (optimize any image). It should be used when uploading images to Cloudflare, resizing images, optimizing image delivery, implementing direct creator uploads, creating image variants, generating signed URLs for private images, transforming images via Workers, or encountering image upload/transformation errors.\n\nUse when: setting up Cloudflare Images storage, implementing user-uploaded images, creating responsive images, optimizing image formats (WebP/AVIF), resizing images via URL or Workers, debugging CORS errors with direct uploads, handling image transformation errors (9401-9413), implementing signed URLs, managing image variants, or building image CDNs.\n\nKeywords: cloudflare images, image upload cloudflare, imagedelivery.net, cloudflare image transformations, /cdn-cgi/image/, direct creator upload, image variants, cf.image workers, signed urls images, flexible variants, webp avif conversion, responsive images cloudflare, error 5408, error 9401, error 9403, CORS direct upload, multipart/form-data, image optimization cloudflare\n Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "879e2f311ee342b8e48de364884ef9dd5447ebf619641774a788601233b1a8bc", "repo_url": "https://github.com/jamie-bitflight/claude_skills", "name": "audit-agent-lifecycle", "description": "Audit agent lifecycle \u2014 validates agent execution capability against configuration. Accepts plugin path, runs 8 semantic audits (capability vs config alignment, skill loading correctness, inter-agent", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamie-bitflight/claude_skills/blob/main/plugins/plugin-creator/skills/audit-agent-lifecycle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T08:40:11Z"}, "embedding_text": "audit-agent-lifecycle. Audit agent lifecycle \u2014 validates agent execution capability against configuration. Accepts plugin path, runs 8 semantic audits (capability vs config alignment, skill loading correctness, inter-agent Platforms: claude_code."} +{"id": "0866d8dbcf197549dd126c8d2d6e1abb9acda3c55ce80c52740605077a4ed855", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "skill-creator", "description": "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.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 25, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:28:52Z"}, "embedding_text": "skill-creator. 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. Platforms: claude_code."} +{"id": "202f86b37c8b3cf86cb4dc7e52de6c7bc451aaa92c6c1d9bad42b7d23438f81d", "repo_url": "https://github.com/zendevve/opentweak", "name": "mcaf-skill-curation", "description": "Create, update, and validate repository skills under your agent\u2019s skills directory (Codex: `.codex/skills/`, Claude: `.claude/skills/`) so they match the real codebase and `AGENTS.md` rules; tune YAML", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zendevve/opentweak/blob/main/.codex/skills/mcaf-skill-curation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-14T10:22:13Z"}, "embedding_text": "mcaf-skill-curation. Create, update, and validate repository skills under your agent\u2019s skills directory (Codex: `.codex/skills/`, Claude: `.claude/skills/`) so they match the real codebase and `AGENTS.md` rules; tune YAML Platforms: claude_code."} +{"id": "055ff573cf70acc5be909cc6d33d861682707747caebed6aa56d9d346dfca77a", "repo_url": "https://github.com/joemccann/x-bookmarks-pipeline", "name": "x-bookmarks-pipeline", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 93, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-20T03:48:47Z"}, "embedding_text": "x-bookmarks-pipeline. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "611f50ea7a1c8a970cedfa99a831d0ceb2dc915dbe45e6541521784c6cdd1bec", "repo_url": "https://github.com/raceychan/lihil", "name": "lihil", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 215, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T01:17:24Z"}, "embedding_text": "lihil. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b8b546cef217ef299266574f074673e1fdebee5251341b53d1f86f12e80f9eba", "repo_url": "https://github.com/dougtrajano/pydantic-ai-skills", "name": "web-research", "description": "Use this skill for requests related to web research; it provides a structured approach to conducting comprehensive web research.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dougtrajano/pydantic-ai-skills/blob/main/examples/skills/web-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install web-research"}, "quality": {"stars": 318, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T02:35:06Z"}, "embedding_text": "web-research. Use this skill for requests related to web research; it provides a structured approach to conducting comprehensive web research. Platforms: claude_code."} +{"id": "1f5ba5559c9fc543e5ae90e184c8cf91b931119f003af2a3e9dd4e225b6c32ae", "repo_url": "https://github.com/cybersharkvin/llmitm_v2", "name": "anthropic-sdk", "description": "Anthropic Python SDK documentation \u2014 messages API, structured output, programmatic tool calling, code execution sandbox, beta features, and prompt engineering. Use when writing or modifying agent code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cybersharkvin/llmitm_v2/blob/main/.claude/skills/anthropic-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 16, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-16T02:27:16Z"}, "embedding_text": "anthropic-sdk. Anthropic Python SDK documentation \u2014 messages API, structured output, programmatic tool calling, code execution sandbox, beta features, and prompt engineering. Use when writing or modifying agent code Platforms: claude_code."} +{"id": "b40377391ddfcc3d28070871627514b252d0229c326066fd7642503d0d57e442", "repo_url": "https://github.com/heshamfs/materials-simulation-skills", "name": "time-stepping", "description": "Plan and control time-step policies for simulations. Use when coupling CFL/physics limits with adaptive stepping, ramping initial transients, scheduling outputs/checkpoints, or planning restart strate", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heshamfs/materials-simulation-skills/blob/main/skills/core-numerical/time-stepping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 45, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T16:05:58Z"}, "embedding_text": "time-stepping. Plan and control time-step policies for simulations. Use when coupling CFL/physics limits with adaptive stepping, ramping initial transients, scheduling outputs/checkpoints, or planning restart strate Platforms: claude_code."} +{"id": "46c25c2292ca4e7ef775f05b5563b00f26d544ff01d6d2a04e06871288e2babb", "repo_url": "https://github.com/henryhawke/mcp-titan", "name": "mcp-titan", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 87, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-21T01:28:49Z"}, "embedding_text": "mcp-titan. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "12fd084f481aa7995b2be4ce6454f1172f2a644b457a756cff3eb7ecdacb86d0", "repo_url": "https://github.com/daytimedrinkingclub/shipstation", "name": "shipstation", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 93, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-08-25T19:17:27Z"}, "embedding_text": "shipstation. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f194b9b656b5308b6763896ede014c651a1a529d4cf0afb4dd75a21930ca9c5f", "repo_url": "https://github.com/dougtrajano/pydantic-ai-skills", "name": "pydanticai-docs", "description": "Use this skill whenever the user is working with the Pydantic AI framework \u2014 including building AI agents, defining structured outputs with Pydantic models, wiring up tools/function calling, configuring model providers (OpenAI, Anthropic, Gemini, etc.), managing dependencies via agent context, handling streaming responses, or debugging agent runs. Trigger this skill even for adjacent tasks like \"how do I make my agent return JSON\", \"set up a multi-step agent\", \"add a tool to my agent\", or \"validate LLM output with Pydantic\" \u2014 any time Pydantic AI is mentioned or implied as the target framework.", "source": ["skillhub", "marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dougtrajano/pydantic-ai-skills/blob/main/examples/skills/pydanticai-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pydanticai-docs"}, "quality": {"stars": 318, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-11T02:35:06Z"}, "embedding_text": "pydanticai-docs. Use this skill whenever the user is working with the Pydantic AI framework \u2014 including building AI agents, defining structured outputs with Pydantic models, wiring up tools/function calling, configuring model providers (OpenAI, Anthropic, Gemini, etc.), managing dependencies via agent context, handling streaming responses, or debugging agent runs. Trigger this skill even for adjacent tasks like \"how do I make my agent return JSON\", \"set up a multi-step agent\", \"add a tool to my agent\", or \"validate LLM output with Pydantic\" \u2014 any time Pydantic AI is mentioned or implied as the target framework. Platforms: claude_code."} +{"id": "f358a36793c5c5b745b2266c89402e622a6a6478db7fb06cbe65e909213327ba", "repo_url": "https://github.com/heshamfs/materials-simulation-skills", "name": "parameter-optimization", "description": "Explore and optimize simulation parameters via design of experiments (DOE), sensitivity analysis, and optimizer selection. Use for calibration, uncertainty studies, parameter sweeps, LHS sampling, Sob", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heshamfs/materials-simulation-skills/blob/main/skills/simulation-workflow/parameter-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 45, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T16:05:58Z"}, "embedding_text": "parameter-optimization. Explore and optimize simulation parameters via design of experiments (DOE), sensitivity analysis, and optimizer selection. Use for calibration, uncertainty studies, parameter sweeps, LHS sampling, Sob Platforms: claude_code."} +{"id": "866b0120ff2958f13d46ec7b298d2917856b38f177610c012293258447d48965", "repo_url": "https://github.com/grigio/llm-eval-simple", "name": "llm-eval-simple", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-28T08:06:21Z"}, "embedding_text": "llm-eval-simple. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "10f957a03bc5e506ba6c21b2b88bbdb42475f00287f6383e97236443088affc7", "repo_url": "https://github.com/bogliosimone/similaripy", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 58, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-03T12:39:42Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2a57a3792dd16de6508e46b4239cbc2ab7b1e2cf13b9c6a72c8d0ad86744cf0c", "repo_url": "https://github.com/muqsitnawaz/mq", "name": "mq", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/muqsitnawaz/mq/blob/main/skills/mq/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 63, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-13T20:32:22Z"}, "embedding_text": "mq. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2c861ec1df7176ef8046d169072a42c3bd203976f70e126019324043e88a4b0d", "repo_url": "https://github.com/jun-murakami/ai-browser", "name": "AI-Browser", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 46, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-29T18:13:08Z"}, "embedding_text": "AI-Browser. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "c7b2fc1d5c3356025423fd729038b23145850af9c81ebbd69510dd2a72f3148d", "repo_url": "https://github.com/slackapi/slack-cli", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/slackapi/slack-cli/blob/main/.claude/skills/record-demo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 258, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T20:16:11Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "10e44f1ca1f5f5027a54c140c0ad9e2f6f84ed161dabe69d4dec66ba999c4404", "repo_url": "https://github.com/pulumi/pulumi-digitalocean", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pulumi/pulumi-digitalocean/blob/master/.claude/skills/provider-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 92, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:08:19Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "e731b624e98b47e391f165cb37192fc40ec70a5666fe8a8a0d81d6b0b8cd2d49", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "improvement-pipeline", "description": "A structured workflow for systematic self-improvement of code or skills, providing executable stages from proposal to rollback with validation and version control.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/tooling/improvement-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "improvement-pipeline. A structured workflow for systematic self-improvement of code or skills, providing executable stages from proposal to rollback with validation and version control. Platforms: claude_code."} +{"id": "2e9b655a16f12ef5a0f20cbf0ec8e05720c409d04ee2f6d4778f27ce98b52151", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "system-design-architect", "description": "A comprehensive system design methodology that treats systems as living organisms with specialized components. It guides architectural decisions, scaling strategies, and interview preparation for comp", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/specialists/system-design-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "system-design-architect. A comprehensive system design methodology that treats systems as living organisms with specialized components. It guides architectural decisions, scaling strategies, and interview preparation for comp Platforms: claude_code."} +{"id": "ae60dd48773f5520b12d1a5b20e9297728632b620bbbc70d931fdbc176d3eb90", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "github-workflow-automation", "description": "This Claude Skill automates GitHub workflows using AI swarm coordination, providing intelligent CI/CD pipelines, workflow orchestration, and repository management for adaptive and self-organizing GitH", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/operations/github-workflow-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "github-workflow-automation. This Claude Skill automates GitHub workflows using AI swarm coordination, providing intelligent CI/CD pipelines, workflow orchestration, and repository management for adaptive and self-organizing GitH Platforms: claude_code."} +{"id": "9cac0d95b3200d463acff572b857be1746dfcf29de3b1bec7b6be18181c5d980", "repo_url": "https://github.com/dbreunig/plumb", "name": "plumb", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dbreunig/plumb/blob/main/.claude/skills/plumb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 135, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-10T23:59:59Z"}, "embedding_text": "plumb. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "7577d45f8df648b80cbf1895febba5c17182434cdbc0b64685f3e25d1538ccb7", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "github-integration", "description": "Build reliable GitHub integrations, webhooks, and automation bridges", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/operations/github-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "github-integration. Build reliable GitHub integrations, webhooks, and automation bridges Platforms: claude_code."} +{"id": "cdb2d3029b38985aca901b3b16c3d2bdd8357df1b28357901e1f60987c61d1f2", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "meta-tools", "description": "A framework for creating, validating, optimizing, and composing development tools with automated workflows for tool generation and cross-tool orchestration.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/foundry/meta-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "meta-tools. A framework for creating, validating, optimizing, and composing development tools with automated workflows for tool generation and cross-tool orchestration. Platforms: claude_code."} +{"id": "17b7b4b05319d4b7ecbb7d18bb1162ed9c9453add88d66e1787a1e9ed3cf5154", "repo_url": "https://github.com/allthingsida/idacpp", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 95, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-26T02:30:44Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8b7ff3afb287b2e63fcf492d5920befd9ba84d032a886a82759ff8968a9a45ca", "repo_url": "https://github.com/buildonspark/spark", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buildonspark/spark/blob/main/.claude/skills/proto-regenerate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 101, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T19:12:02Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2c795e82bcf9ee9be728a39cc7b0983c3fe3974b5ce26994f0ef7f6a4d3f332d", "repo_url": "https://github.com/tang-vu/contribai", "name": "ContribAI", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 243, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-25T01:16:14Z"}, "embedding_text": "ContribAI. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "4a023f4247605f5a3ca42ec2ec677ead3dc94ed25caa65e2b3ed9bde16cf99f1", "repo_url": "https://github.com/yuichkun/reference-graph", "name": "reference-graph", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 87, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-25T11:04:55Z"}, "embedding_text": "reference-graph. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "c7af702b68e8aa02fb7809775922464df1df3f139d5732eac7f53ab83b0398ec", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "codex-auto", "description": "A Claude Skill that enables autonomous, sandboxed code prototyping and project scaffolding using Codex CLI's Full Auto mode, allowing unattended execution for rapid development and overnight builds.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/platforms/codex-auto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "codex-auto. A Claude Skill that enables autonomous, sandboxed code prototyping and project scaffolding using Codex CLI's Full Auto mode, allowing unattended execution for rapid development and overnight builds. Platforms: claude_code."} +{"id": "ff09caa60f186a5f6d093bc09294a197b9e8a3d4401353e68333c4600bd55322", "repo_url": "https://github.com/backrunner/start-claude", "name": "start-claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 33, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-09T18:47:23Z"}, "embedding_text": "start-claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "a805bb3a65942ae2749b769193ca4f87421e933e82ab5df59e77f5496bbaf987", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-btp-cloud-transport-management", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-btp-cloud-transport-management/skills/sap-btp-cloud-transport-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-btp-cloud-transport-management. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ad5ef1b059d175f4d82e6fe00e90099c269e6e3730366728903cc66d18846b47", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/official-anthropic/anthropic-skills/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code Platforms: claude_code."} +{"id": "6fa9a5bc3c6a752e0ba8571e8569fd5cd516a866a38cdf4271c8498c894dc03a", "repo_url": "https://github.com/martinholovsky/claude-skills-generator", "name": "encryption", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/martinholovsky/claude-skills-generator/blob/main/skills/encryption/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 40, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-06T21:40:03Z"}, "embedding_text": "encryption. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f42e1cd58ddf5b0fb04b6915b230a8de92e9463b70fe87dc307632403a6d9e5d", "repo_url": "https://github.com/idoru/influxdb-mcp-server", "name": "influxdb-mcp-server", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-14T16:24:11Z"}, "embedding_text": "influxdb-mcp-server. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "cb3cb3380809d0713c938c30d068bc6a92e1a292ca733d9d29455d5ec3bcc340", "repo_url": "https://github.com/bearcove/roam", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 109, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T03:13:24Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "15adbed8a9bb95a8ff2e6aeb7308af57eb44656f02607ed0a4701500205535d0", "repo_url": "https://github.com/daoif/anti-power", "name": "anti-power", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 98, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-23T11:16:34Z"}, "embedding_text": "anti-power. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "564ec7e399698b405bb8d64621b186833fbe0351056281bc127744c3bbb43523", "repo_url": "https://github.com/raysonmeng/agent-bridge", "name": "agent-bridge", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 138, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-17T19:31:33Z"}, "embedding_text": "agent-bridge. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "94e61dda4a6abb777fb33f4e93b608a34fb044294482613b7b5e0fb2e5fd85c2", "repo_url": "https://github.com/astral-sh/claude-code-plugins", "name": "ty", "description": "Guide for using ty, the extremely fast Python type checker and language server. Use this when type checking Python code or setting up type checking in Python projects.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astral-sh/claude-code-plugins/blob/main/plugins/astral/skills/ty/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 273, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-27T16:09:15Z"}, "embedding_text": "ty. Guide for using ty, the extremely fast Python type checker and language server. Use this when type checking Python code or setting up type checking in Python projects. Platforms: claude_code."} +{"id": "2d90a3d24596ae0d115bbece7a187d0ac5ca25a4ece7b4755c89ed00707c17a0", "repo_url": "https://github.com/anis-marrouchi/shadxn", "name": "shadxn", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 85, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-12T09:06:35Z"}, "embedding_text": "shadxn. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "9ef1c9e6e6d23876490fd01929b0622ab03ebd1c8a8123144624d8781d1155bf", "repo_url": "https://github.com/astral-sh/claude-code-plugins", "name": "uv", "description": "Guide for using uv, the Python package and project manager. Use this when working with Python projects, scripts, packages, or tools.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/astral-sh/claude-code-plugins/blob/main/plugins/astral/skills/uv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 273, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-27T16:09:15Z"}, "embedding_text": "uv. Guide for using uv, the Python package and project manager. Use this when working with Python projects, scripts, packages, or tools. Platforms: claude_code."} +{"id": "ba74d2713662a49203c3cfaca674c35a326e2de2b0343ee2f2f7741150002e12", "repo_url": "https://github.com/vishalgojha/social-flow", "name": "social-flow", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 145, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-22T14:26:18Z"}, "embedding_text": "social-flow. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "139ba8124e47acc7bbea2f344a1576b3a6f2368288b460aabdc7cd7096cbdff5", "repo_url": "https://github.com/sorryhyun/dipeo", "name": "dipeo-backend", "description": "A backend development router skill for the DiPeO ecosystem, handling simple tasks directly and escalating complex work to the dipeo-backend agent.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sorryhyun/dipeo/blob/main/.claude/skills/dipeo-backend/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-31T05:50:01Z"}, "embedding_text": "dipeo-backend. A backend development router skill for the DiPeO ecosystem, handling simple tasks directly and escalating complex work to the dipeo-backend agent. Platforms: claude_code."} +{"id": "c615c00868815a1904658eb97e7dec95cc00a07726db900194047d1236615840", "repo_url": "https://github.com/starbaser/ccproxy", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/starbaser/ccproxy/blob/dev/skills/using-ccproxy-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 347, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T18:05:23Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "166505dfa4fa530c80edca43febd40542735e3e2d716ebdc8df9dbbf42ca2807", "repo_url": "https://github.com/outfitter-dev/agents", "name": "performance-engineering", "description": "This skill should be used when profiling code, optimizing bottlenecks, benchmarking, or when \"performance\", \"profiling\", \"optimization\", or \"--perf\" are mentioned.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outfitter-dev/agents/blob/main/plugins/outfitter/skills/performance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T20:19:32Z"}, "embedding_text": "performance-engineering. This skill should be used when profiling code, optimizing bottlenecks, benchmarking, or when \"performance\", \"profiling\", \"optimization\", or \"--perf\" are mentioned. Platforms: claude_code."} +{"id": "103b829a878ba48e2325b21d6e0cf68dca7b4dc3af3abff1d56cc193838ebf97", "repo_url": "https://github.com/samhvw8/dotfiles", "name": "shopify", "description": "Shopify platform development. Stack: Shopify CLI, GraphQL/REST APIs, Polaris UI, Liquid templating. Capabilities: app development (OAuth), checkout UI extensions, admin UI extensions, POS extensions,", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samhvw8/dotfiles/blob/master/dot_ccp/hub/skills/shopify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:59:44Z"}, "embedding_text": "shopify. Shopify platform development. Stack: Shopify CLI, GraphQL/REST APIs, Polaris UI, Liquid templating. Capabilities: app development (OAuth), checkout UI extensions, admin UI extensions, POS extensions, Platforms: claude_code."} +{"id": "fb1306f1d65a42050431656c7c41af34812b911f0730c39e94fe68876be66b81", "repo_url": "https://github.com/svenja-dev/claude-code-skills", "name": "e2e-testing", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/svenja-dev/claude-code-skills/blob/main/skills/e2e-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 37, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-14T13:34:52Z"}, "embedding_text": "e2e-testing. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "dda0ace283ae2f09f6dd1955e051aa6ea05f5cfe36a6eaf03d16b7e4c5b07674", "repo_url": "https://github.com/hexmode/mediawiki-el", "name": "mediawiki-el", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 82, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T07:40:55Z"}, "embedding_text": "mediawiki-el. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "3afadae940b23dd55ee3934edb9cb055fdc148ac5c8ce25c68be8a0627d6ec49", "repo_url": "https://github.com/samhvw8/dotfiles", "name": "mobile-development", "description": "Cross-platform and native mobile development. Frameworks: React Native, Flutter, Swift/SwiftUI, Kotlin/Jetpack Compose. Capabilities: mobile UI, offline-first architecture, push notifications, deep li", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samhvw8/dotfiles/blob/master/dot_ccp/hub/skills/mobile-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:59:44Z"}, "embedding_text": "mobile-development. Cross-platform and native mobile development. Frameworks: React Native, Flutter, Swift/SwiftUI, Kotlin/Jetpack Compose. Capabilities: mobile UI, offline-first architecture, push notifications, deep li Platforms: claude_code."} +{"id": "04d6b93c00d165e9a3d18a98dbc41b0469e3b3e247f837d21a9d8a9a929efaf2", "repo_url": "https://github.com/sohutv/agent-skills-mcp", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sohutv/agent-skills-mcp/blob/main/bin/skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 11, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-20T03:43:54Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts Platforms: claude_code."} +{"id": "0b363efdc275df96b14035d1cea8efe581eb71213e568e2a2363ed1b48bb391b", "repo_url": "https://github.com/galangryandana/superpowers-for-my-own-workflow", "name": "writing-plans", "description": "Use when you have a spec or requirements for a multi-step task, before touching code", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/galangryandana/superpowers-for-my-own-workflow/blob/main/skills/writing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-27T08:45:27Z"}, "embedding_text": "writing-plans. Use when you have a spec or requirements for a multi-step task, before touching code Platforms: claude_code."} +{"id": "65d081252b26954d9854634aef0df1badb24555a6c746278bcc4bca23e3421de", "repo_url": "https://github.com/matiasvillaverde/context-creator", "name": "context-creator", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 54, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-04T15:49:04Z"}, "embedding_text": "context-creator. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "f01b9ba8f2f88aa89698eab4ff613e33eca83c54e8f3d3fcd4bc9ea476df8deb", "repo_url": "https://github.com/marcusquinn/aidevops", "name": "aidevops", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/marcusquinn/aidevops/blob/main/.agents/tools/browser/chromium-debug-use/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 271, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T21:29:55Z"}, "embedding_text": "aidevops. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8f83b9f9a2565836aa47a89263591353272067bcbdec9da23e363f14a1ee7356", "repo_url": "https://github.com/alexk-dev/golemcore-bot", "name": "golemcore-bot", "description": "A Spring Boot-based AI agent framework implementing hexagonal architecture for multi-channel interaction, LLM integration, tool execution, and skill management with structured development guidelines.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 41, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T02:33:54Z"}, "embedding_text": "golemcore-bot. A Spring Boot-based AI agent framework implementing hexagonal architecture for multi-channel interaction, LLM integration, tool execution, and skill management with structured development guidelines. Platforms: claude_code."} +{"id": "77e6c46df0cdb0c01116cecb0fc2282da7defcf3bfafb426fc66713430756fe7", "repo_url": "https://github.com/jandedobbeleer/copilot-ralph", "name": "copilot-ralph", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 53, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-29T06:04:31Z"}, "embedding_text": "copilot-ralph. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "141b9cf41cddb384a53b99178adc46e858d275b720d916870e4559baa709c82b", "repo_url": "https://github.com/esaio/esa-mcp-server", "name": "esa-mcp-server", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 57, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T09:54:36Z"}, "embedding_text": "esa-mcp-server. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b1aef97657c7a3f33d6b5bb3480437cc49510cd39463eea2ad9262ec8935b766", "repo_url": "https://github.com/jackspace/claudeskillz", "name": "tanstack-query", "description": "This skill provides comprehensive knowledge for TanStack Query v5 (React Query) server state management in React applications. It should be used when setting up data fetching with useQuery, implementing mutations with useMutation, configuring QueryClient, managing caching strategies, migrating from v4 to v5, implementing optimistic updates, using infinite queries, or encountering query/mutation errors.\n\nUse when: initializing TanStack Query in React projects, configuring QueryClient settings, creating custom query hooks, implementing mutations with error handling, setting up optimistic updates, using useInfiniteQuery for pagination, migrating from React Query v4 to v5, debugging stale data issues, fixing caching problems, resolving v5 breaking changes, implementing suspense queries, or setting up query devtools.\n\nKeywords: TanStack Query, React Query, useQuery, useMutation, useInfiniteQuery, useSuspenseQuery, QueryClient, QueryClientProvider, data fetching, server state, caching, staleTime, gcTime, query invalidation, prefetching, optimistic updates, mutations, query keys, query functions, error boundaries, suspense, React Query DevTools, v5 migration, v4 to v5, request waterfalls, background refetching, cacheTime renamed, loading status renamed, pending status, initialPageParam required, keepPreviousData removed, placeholderData, query callbacks removed, onSuccess removed, onError removed, object syntax required\n", "source": ["skillhub", "topic"], "categories": ["agentic-coding", "ai-skills", "automation", "bioinformatics", "claude-skills", "cloud-infrastructure", "data-science", "development-tools", "devops", "github", "markdown", "open-source", "productivity", "scientific-computing", "web-development"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jackspace/claudeskillz/blob/master/skills/tanstack-query/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tanstack-query"}, "quality": {"stars": 15, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-20T23:48:26Z"}, "embedding_text": "tanstack-query. This skill provides comprehensive knowledge for TanStack Query v5 (React Query) server state management in React applications. It should be used when setting up data fetching with useQuery, implementing mutations with useMutation, configuring QueryClient, managing caching strategies, migrating from v4 to v5, implementing optimistic updates, using infinite queries, or encountering query/mutation errors.\n\nUse when: initializing TanStack Query in React projects, configuring QueryClient settings, creating custom query hooks, implementing mutations with error handling, setting up optimistic updates, using useInfiniteQuery for pagination, migrating from React Query v4 to v5, debugging stale data issues, fixing caching problems, resolving v5 breaking changes, implementing suspense queries, or setting up query devtools.\n\nKeywords: TanStack Query, React Query, useQuery, useMutation, useInfiniteQuery, useSuspenseQuery, QueryClient, QueryClientProvider, data fetching, server state, caching, staleTime, gcTime, query invalidation, prefetching, optimistic updates, mutations, query keys, query functions, error boundaries, suspense, React Query DevTools, v5 migration, v4 to v5, request waterfalls, background refetching, cacheTime renamed, loading status renamed, pending status, initialPageParam required, keepPreviousData removed, placeholderData, query callbacks removed, onSuccess removed, onError removed, object syntax required\n Categories: agentic-coding, ai-skills, automation, bioinformatics, claude-skills, cloud-infrastructure, data-science, development-tools, devops, github, markdown, open-source, productivity, scientific-computing, web-development. Platforms: claude_code."} +{"id": "e8de9f41621e0a935d799a9deb47be59d43f57511d4ca30523076a59431016d6", "repo_url": "https://github.com/microsoft/ignite25-lab512-prototyping-multimodal-agents-with-microsoft-foundry-and-the-ai-toolkit", "name": "ignite25-LAB512-prototyping-multimodal-agents-with-microsoft-foundry-and-the-ai-toolkit", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 42, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-22T18:54:22Z"}, "embedding_text": "ignite25-LAB512-prototyping-multimodal-agents-with-microsoft-foundry-and-the-ai-toolkit. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "98adc2ba1aeebf1cdba3c0d309a7f3466bba8c64181b1d157f4f1cf08c175fec", "repo_url": "https://github.com/shadowpr0/beautiful_prose", "name": "beautiful-prose", "description": "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, f", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shadowpr0/beautiful_prose/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 43, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-30T21:29:15Z"}, "embedding_text": "beautiful-prose. 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, f Platforms: claude_code."} +{"id": "731a47b1ffb1a008edea7ea6df317936a6f234b7ebd3563bc980703ea2a25dea", "repo_url": "https://github.com/hmbown/aleph", "name": "aleph", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hmbown/aleph/blob/main/plugins/aleph/skills/aleph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 204, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-11T23:57:39Z"}, "embedding_text": "aleph. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "340e33235b008e23663d34602717b97cd76ef4797618c2200fac08d287f0f175", "repo_url": "https://github.com/codealive-ai/claude-code-reflection-skills", "name": "hooks-management", "description": "Manage hooks and automation for coding agents (Claude Code, Codex CLI). Use when users want to add, list, remove, update, or validate hooks. Triggers on requests like \"add a hook\", \"create a hook that", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codealive-ai/claude-code-reflection-skills/blob/main/skills/hooks-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 90, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T20:03:39Z"}, "embedding_text": "hooks-management. Manage hooks and automation for coding agents (Claude Code, Codex CLI). Use when users want to add, list, remove, update, or validate hooks. Triggers on requests like \"add a hook\", \"create a hook that Platforms: claude_code."} +{"id": "ee815d146c001bd84b09ebe7f7d9553969d3a60c359dfbb33a5e50a41612e1f1", "repo_url": "https://github.com/trentferguson/homescreen-hero", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trentferguson/homescreen-hero/blob/develop/.claude/skills/design-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-04-08T18:25:56Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "847a1762493a84422df22dbd057db4daa1e16a02ac6365e4f3273daa23ed8836", "repo_url": "https://github.com/pcharbon70/term_ui", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 193, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-23T12:54:49Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "58472d38c25bf9fea3fbc7401d23866db13ff31edf12863dc60c676723c8dc30", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sapui5", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sapui5-cli/skills/sapui5-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sapui5. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "8dde3c03ffbff31cf9469801260e2081bef7f24b146decfa74d7025f17409df1", "repo_url": "https://github.com/tradermonty/claude-trading-skills", "name": "economic-calendar-fetcher", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tradermonty/claude-trading-skills/blob/main/examples/weekly-trade-strategy/.claude/skills/economic-calendar-fetcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 1996, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T18:11:15Z"}, "embedding_text": "economic-calendar-fetcher. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "50183fb8fd6e56d9910d86527322de2cc468ae194da12e83270c6f3c451144d0", "repo_url": "https://github.com/jgtolentino/insightpulse-odoo", "name": "drawio-adapter", "description": "This skill enables automated creation, validation, and export of diagrams (e.g., from Mermaid, BPMN) for visualizing processes and workflows, with direct integration for tools like SAP Process Intelli", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jgtolentino/insightpulse-odoo/blob/main/skills/integrations/drawio-adapter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 22, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-03-13T03:50:01Z"}, "embedding_text": "drawio-adapter. This skill enables automated creation, validation, and export of diagrams (e.g., from Mermaid, BPMN) for visualizing processes and workflows, with direct integration for tools like SAP Process Intelli Platforms: claude_code."} +{"id": "86070e60bcd3cbf03546487b0015cc1abd0669216f45a37383d532de53e15c02", "repo_url": "https://github.com/llama-farm/llamapajamas", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 52, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-17T20:03:35Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ddc3312bd9e317817cfd90bc76e5dc32baa3b94f031c497548897d901144b676", "repo_url": "https://github.com/vivy-company/aizen", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 269, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-22T07:49:18Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "34339a8c582b863d6ee98f5db9e00400a3db31b28399befabff7a5045ecf97a2", "repo_url": "https://github.com/foxj77/claudectx", "name": "claudectx", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 129, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T18:54:04Z"}, "embedding_text": "claudectx. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "bffbf62ce742a0c26a4b333f6b5838f10e83b6b718fd2f92a3da8a4ea0380ac1", "repo_url": "https://github.com/ryanthedev/code-foundations", "name": "gof-design-patterns", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ryanthedev/code-foundations/blob/main/skills/gof-design-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 280, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-19T03:42:22Z"}, "embedding_text": "gof-design-patterns. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "37c28d00591845e567d063ea9ef5eb80be1ac463378d3c730547e5e19de71cf9", "repo_url": "https://github.com/efij/secure-claude-code", "name": "secure-status", "description": "Inspect the current Secure Claude Code posture, enabled protections, and recent audit events.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/efij/secure-claude-code/blob/main/skills/secure-status/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-19T10:36:04Z"}, "embedding_text": "secure-status. Inspect the current Secure Claude Code posture, enabled protections, and recent audit events. Platforms: claude_code."} +{"id": "d48c6d8369888c1186a38aaef5382a8d470743a61f79035aaaf7c2213d2468c4", "repo_url": "https://github.com/heshamfs/materials-simulation-skills", "name": "post-processing", "description": "Extract, analyze, and visualize simulation output data. Use for field extraction, time series analysis, line profiles, statistical summaries, derived quantity computation, result comparison to referen", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heshamfs/materials-simulation-skills/blob/main/skills/simulation-workflow/post-processing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 45, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T16:05:58Z"}, "embedding_text": "post-processing. Extract, analyze, and visualize simulation output data. Use for field extraction, time series analysis, line profiles, statistical summaries, derived quantity computation, result comparison to referen Platforms: claude_code."} +{"id": "59ddb4e8e5cd0554c6a9aeaa1d1165e3f583490b04db056d846497ee2af6f9ed", "repo_url": "https://github.com/humaans/figbird", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 73, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-10T22:11:54Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "ea273990c0205fad2846698313ba6a49cfb8c1fa664f7eb1e70f6e264c83a098", "repo_url": "https://github.com/heshamfs/materials-simulation-skills", "name": "simulation-validator", "description": "Validate simulations before, during, and after execution. Use for pre-flight checks, runtime monitoring, post-run validation, diagnosing failed simulations, checking convergence, detecting NaN/Inf, or", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/heshamfs/materials-simulation-skills/blob/main/skills/simulation-workflow/simulation-validator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 45, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-07T16:05:58Z"}, "embedding_text": "simulation-validator. Validate simulations before, during, and after execution. Use for pre-flight checks, runtime monitoring, post-run validation, diagnosing failed simulations, checking convergence, detecting NaN/Inf, or Platforms: claude_code."} +{"id": "2127d6e38979c0d6622237f70e19c92343e8b14dc7d507765e8015605e57843b", "repo_url": "https://github.com/bobmatnyc/claude-mpm-skills", "name": "anthropic-sdk", "description": "Official Anthropic SDK for Claude AI with chat, streaming, function calling, and vision capabilities", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bobmatnyc/claude-mpm-skills/blob/main/toolchains/ai/sdks/anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 57, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T19:40:51Z"}, "embedding_text": "anthropic-sdk. Official Anthropic SDK for Claude AI with chat, streaming, function calling, and vision capabilities Platforms: claude_code."} +{"id": "53bc160870fec3f9ebee7eaf13f8bfd0d4c937e34ef486149307448b463c19d0", "repo_url": "https://github.com/darvaza-proxy/slog", "name": "zerolog", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-18T15:08:25Z"}, "embedding_text": "zerolog. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "d5a3cb80465d54bbf5ddd242b622fcc4ac61e0983b3a3ffca9c450a6328c9b4c", "repo_url": "https://github.com/bobmatnyc/claude-mpm-skills", "name": "langgraph", "description": "LangGraph framework for building stateful, multi-agent AI applications with cyclical workflows, human-in-the-loop patterns, and persistent checkpointing.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bobmatnyc/claude-mpm-skills/blob/main/toolchains/ai/frameworks/langgraph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 57, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-15T19:40:51Z"}, "embedding_text": "langgraph. LangGraph framework for building stateful, multi-agent AI applications with cyclical workflows, human-in-the-loop patterns, and persistent checkpointing. Platforms: claude_code."} +{"id": "77ca6cdff792ba0f09cb365009b806fa12378211c8dd7e5f36e0a9ac291253b6", "repo_url": "https://github.com/hapifhir/org.hl7.fhir.validator-wrapper", "name": "org.hl7.fhir.validator-wrapper", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 50, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-20T22:40:56Z"}, "embedding_text": "org.hl7.fhir.validator-wrapper. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "bad7cb13acd375a311bd3b31b3ca39162d74fb7338bf714a7b5097954ed9c758", "repo_url": "https://github.com/gemini-oss/rego", "name": "okta", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-12T19:57:41Z"}, "embedding_text": "okta. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "baa8e20cbcea2cbddc5089a1cf25673550fc63ce6d671857c773506152edac5c", "repo_url": "https://github.com/nwiizo/cargo-coupling", "name": "web", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nwiizo/cargo-coupling/blob/main/.claude/skills/web/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 80, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-21T07:12:05Z"}, "embedding_text": "web. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} +{"id": "345696dd2316e4f8fd781725699962a215286a8e6d35f32774e733d5e4520d68", "repo_url": "https://github.com/hainrixz/whatsapp-agentkit", "name": "whatsapp-agentkit", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 325, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-03T16:55:43Z"}, "embedding_text": "whatsapp-agentkit. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2e7b466fc819efcc54d1a3aed1d564036d9b03375790bda2d98b7efdf704ea11", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-btp-cloud-platform", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-btp-cloud-platform/skills/sap-btp-cloud-platform/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-btp-cloud-platform. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "0e014542708e1151fa94fb289fa0d951bb9dc0a22fb4d9af16456609808c35ab", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "github-project-management", "description": "A skill for managing GitHub projects using AI swarm coordination, featuring automated issue creation, project board synchronization, and intelligent workflow execution for efficient operations.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/operations/github-project-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "github-project-management. A skill for managing GitHub projects using AI swarm coordination, featuring automated issue creation, project board synchronization, and intelligent workflow execution for efficient operations. Platforms: claude_code."} +{"id": "338ea818f8fa8c83efa0d445dfc0311ca4306e10c14385efec95eb73fb32a3ef", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-sac-custom-widget", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-sac-custom-widget/skills/sap-sac-custom-widget/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-sac-custom-widget. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "b61f1fdedc713654975b1fd1a645f29dc19bc172838561e73e0430f9bb4c4ffa", "repo_url": "https://github.com/incomestreamsurfer/wordpress-claude-code-wizard", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 71, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-09-01T08:31:25Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "38410d266109dddca6cb5d3c9d5ddfca6b649215309fe9e1d211a0a630649ab5", "repo_url": "https://github.com/catrobat/catroweb", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/catrobat/catroweb/blob/main/.claude/skills/bundle-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 74, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T18:15:23Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "4e783cb2a6e05fc1b8df77208b08f9d0ac7fd07e9c0b481685ba827b06815b19", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "react-specialist", "description": "A specialized skill for modern React development, focusing on React 18+ features, Next.js 13+ with server components, state management, performance optimization, and best practices for building high-q", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/specialists/frontend-specialists/react-specialist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "react-specialist. A specialized skill for modern React development, focusing on React 18+ features, Next.js 13+ with server components, state management, performance optimization, and best practices for building high-q Platforms: claude_code."} +{"id": "0ab63abbca0d1d71b9692f68f4f85ae7d757d9bf061f3976effba88cf46b9740", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "base-template-generator", "description": "Generates clean, production-ready boilerplate templates for various frameworks (Node.js, Python, Go, React, Vue) to establish consistent foundational code structures for new projects.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/foundry/base-template-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "base-template-generator. Generates clean, production-ready boilerplate templates for various frameworks (Node.js, Python, Go, React, Vue) to establish consistent foundational code structures for new projects. Platforms: claude_code."} +{"id": "7c97e5fc37ed067e05c8800436db3b3434c9ea8eb025917e83811a758da4af5f", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "skill-creator-agent", "description": "A meta-tool for creating specialized Claude Code skills by tying each skill to an optimized agent using evidence-based prompting techniques and systematic workflows.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/foundry/skill-creator-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "skill-creator-agent. A meta-tool for creating specialized Claude Code skills by tying each skill to an optimized agent using evidence-based prompting techniques and systematic workflows. Platforms: claude_code."} +{"id": "9ebed250ca72fb1cf204a760a7cd9e9e4c3351b9ef3899c22264259f6ca0b1b1", "repo_url": "https://github.com/dnyoussef/context-cascade", "name": "observability", "description": "A specialized hub for system observability, providing expertise in monitoring, logging, tracing, and alerting workflows to support research and incident response in technical environments.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dnyoussef/context-cascade/blob/main/skills/research/observability/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 32, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-01-13T17:22:27Z"}, "embedding_text": "observability. A specialized hub for system observability, providing expertise in monitoring, logging, tracing, and alerting workflows to support research and incident response in technical environments. Platforms: claude_code."} +{"id": "327700548833f0fc80539921d2b31fe87c763c1d7b15790021b8169ed9ed42cd", "repo_url": "https://github.com/ceeon/wechat-data-tools", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 78, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-11-10T05:19:17Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "65e504768637f16aebf8f7df7fceeb2e1b4cf5a36b7cef4c8a0df3da1478ea6f", "repo_url": "https://github.com/secondsky/sap-skills", "name": "sap-btp-service-manager", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/sap-skills/blob/main/plugins/sap-btp-service-manager/skills/sap-btp-service-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 346, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-20T19:42:28Z"}, "embedding_text": "sap-btp-service-manager. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "2cb494a148b060d3280ed5c2a61352597c590f94d2ebd30b3416e0383e6faf10", "repo_url": "https://github.com/b-open-io/prompts", "name": "dev-browser", "description": "Integration guide for SawyerHood/dev-browser, a Claude Code plugin for browser automation. This skill enables agents to research, test web UIs, and interact with web applications using a headless brow", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b-open-io/prompts/blob/master/.agents/skills/add-app-to-server/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 13, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-05-28T23:53:54Z"}, "embedding_text": "dev-browser. Integration guide for SawyerHood/dev-browser, a Claude Code plugin for browser automation. This skill enables agents to research, test web UIs, and interact with web applications using a headless brow Platforms: claude_code."} +{"id": "c6118b0ce7ccb7a2f59c4e4df16f2fa4c780c9c68050f9b6250b06c7c55ee758", "repo_url": "https://github.com/bbgnsurftech/claude-skills-collection", "name": "uv", "description": "Expert guidance for Astral's uv - an extremely fast Python package and project manager. Use when working with Python projects, managing dependencies, creating scripts with PEP 723 metadata, installing", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bbgnsurftech/claude-skills-collection/blob/main/community/jamie-bitflight-claude-skills/uv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 20, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2025-12-18T12:19:58Z"}, "embedding_text": "uv. Expert guidance for Astral's uv - an extremely fast Python package and project manager. Use when working with Python projects, managing dependencies, creating scripts with PEP 723 metadata, installing Platforms: claude_code."} +{"id": "ba2a2de82faae27dee887da45db17b5225ef3d98f11ef72445703e95ce60d305", "repo_url": "https://github.com/bdfinst/agentic-dev-team", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install. OpenClaw verified.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bdfinst/agentic-dev-team/blob/main/evals/fixtures/cs-complete-setup/.claude/skills/deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 211, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T20:33:23Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. OpenClaw verified. Platforms: claude_code."} +{"id": "e3a82312791185e6c71070ce8fd399fc124f094f612ec568a7f221e9bda3fde5", "repo_url": "https://github.com/outfitter-dev/agents", "name": "debugging-and-diagnosis", "description": "This skill should be used when encountering bugs, errors, failing tests, or unexpected behavior. Provides systematic debugging with evidence-based root cause investigation using a four-phase framework", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outfitter-dev/agents/blob/main/plugins/outfitter/skills/debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 27, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-02-06T20:19:32Z"}, "embedding_text": "debugging-and-diagnosis. This skill should be used when encountering bugs, errors, failing tests, or unexpected behavior. Provides systematic debugging with evidence-based root cause investigation using a four-phase framework Platforms: claude_code."} +{"id": "257f7637202aa9dfa4d89b285e763af92a0fe14623118460a1e610e2e8429cec", "repo_url": "https://github.com/pulumi/pulumi-github", "name": ".claude", "description": "null. Score: /10. Best for everyone. One-click install.", "source": ["skillhub"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/pulumi/pulumi-github/blob/master/.claude/skills/provider-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {}, "quality": {"stars": 70, "skillhub_rank": "B", "skillhub_score": 0.0, "last_updated": "2026-06-22T07:14:53Z"}, "embedding_text": ".claude. null. Score: /10. Best for everyone. One-click install. Platforms: claude_code."} {"id": "19842a763665444aa3283f6c72f6ebbf99bc15c9a6da498ab0814af7ac41133d", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "capture-screen", "description": "Programmatic screenshot capture on macOS. Find window IDs with Swift CGWindowListCopyWindowInfo, control application windows via AppleScript (zoom, scroll, select), and capture with screencapture. Use when automating screenshots, capturing application windows for documentation, or building multi-shot visual workflows.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/capture-screen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install capture-screen"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "capture-screen. Programmatic screenshot capture on macOS. Find window IDs with Swift CGWindowListCopyWindowInfo, control application windows via AppleScript (zoom, scroll, select), and capture with screencapture. Use when automating screenshots, capturing application windows for documentation, or building multi-shot visual workflows. Platforms: claude_code."} {"id": "b59ceb235d11821dcd9a51f005c387720210d202d13143ebe9e267801554acf8", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "claude-code-history-files-finder", "description": "Finds and recovers content from Claude Code session history files. This skill should be used when searching for deleted files, tracking changes across sessions, analyzing conversation history, or recovering code from previous Claude interactions. Triggers include mentions of \"session history\", \"recover deleted\", \"find in history\", \"previous conversation\", or \".claude/projects\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/claude-code-history-files-finder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-code-history-files-finder"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "claude-code-history-files-finder. Finds and recovers content from Claude Code session history files. This skill should be used when searching for deleted files, tracking changes across sessions, analyzing conversation history, or recovering code from previous Claude interactions. Triggers include mentions of \"session history\", \"recover deleted\", \"find in history\", \"previous conversation\", or \".claude/projects\". Platforms: claude_code."} {"id": "5e52b8e10ad9936c59cda155d0671665bd685e6f78a555e7c49326c245457a04", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "fixing-claude-export-conversations", "description": "Fixes broken line wrapping in Claude Code exported conversation files (.txt), reconstructing tables, paragraphs, paths, and tool calls that were hard-wrapped at fixed column widths. Includes an automated validation suite (generic, file-agnostic checks). Triggers when the user has a Claude Code export file with broken formatting, mentions \"fix export\", \"fix conversation\", \"exported conversation\", \"make export readable\", references a file matching YYYY-MM-DD-HHMMSS-*.txt, or has a .txt file with broken tables, split paths, or mangled tool output from Claude Code.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/claude-export-txt-better/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install fixing-claude-export-conversations"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "fixing-claude-export-conversations. Fixes broken line wrapping in Claude Code exported conversation files (.txt), reconstructing tables, paragraphs, paths, and tool calls that were hard-wrapped at fixed column widths. Includes an automated validation suite (generic, file-agnostic checks). Triggers when the user has a Claude Code export file with broken formatting, mentions \"fix export\", \"fix conversation\", \"exported conversation\", \"make export readable\", references a file matching YYYY-MM-DD-HHMMSS-*.txt, or has a .txt file with broken tables, split paths, or mangled tool output from Claude Code. Platforms: claude_code."} @@ -12010,7 +16746,6 @@ {"id": "4d63190712d8f44bac342a321fefab5415db389fbdfcf79bf0f2f6e4a244d03d", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "financial-data-collector", "description": "Collect real financial data for any US publicly traded company from free public sources (yfinance). Output structured JSON consumable by downstream financial skills (DCF modeling, comps analysis, earnings review). Handles market data (price, shares, beta), historical financials (income statement, cash flow, balance sheet), WACC inputs, and analyst estimates. Use when users request collect data for ticker, get financials for company, pull market data, gather DCF inputs, or any task requiring structured financial data before analysis. Also triggers on financial data, company data, stock data.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/financial-data-collector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install financial-data-collector"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "financial-data-collector. Collect real financial data for any US publicly traded company from free public sources (yfinance). Output structured JSON consumable by downstream financial skills (DCF modeling, comps analysis, earnings review). Handles market data (price, shares, beta), historical financials (income statement, cash flow, balance sheet), WACC inputs, and analyst estimates. Use when users request collect data for ticker, get financials for company, pull market data, gather DCF inputs, or any task requiring structured financial data before analysis. Also triggers on financial data, company data, stock data. Platforms: claude_code."} {"id": "4a7efe93cad6ec74f7afb9b47e1ea52a78c09459992d283ca535d16296c6b8e5", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "github-contributor", "description": "Strategic guide for becoming an effective GitHub contributor. Covers opportunity discovery, project selection, high-quality PR creation, and reputation building. Use when looking to contribute to open-source projects, building GitHub presence, or learning contribution best practices.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/github-contributor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-contributor"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "github-contributor. Strategic guide for becoming an effective GitHub contributor. Covers opportunity discovery, project selection, high-quality PR creation, and reputation building. Use when looking to contribute to open-source projects, building GitHub presence, or learning contribution best practices. Platforms: claude_code."} {"id": "77c4d5c5e4eee34f208d52fe7fe19d297724c67b824bf61da7695bc0fc6c7780", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "github-ops", "description": "Provides comprehensive GitHub operations using gh CLI and GitHub API. Activates when working with pull requests, issues, repositories, workflows, or GitHub API operations including creating/viewing/merging PRs, managing issues, querying API endpoints, and handling GitHub workflows in enterprise or public GitHub environments.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/github-ops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-ops"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "github-ops. Provides comprehensive GitHub operations using gh CLI and GitHub API. Activates when working with pull requests, issues, repositories, workflows, or GitHub API operations including creating/viewing/merging PRs, managing issues, querying API endpoints, and handling GitHub workflows in enterprise or public GitHub environments. Platforms: claude_code."} -{"id": "f75a732a3b74912228f74a241cb196084c43d10bcc8b982da2df1c3b09b58666", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "i18n-expert", "description": "This skill should be used when setting up, auditing, or enforcing internationalization/localization in UI codebases (React/TS, i18next or similar, JSON locales), including installing/configuring the i18n framework, replacing hard-coded strings, ensuring en-US/zh-CN coverage, mapping error codes to localized messages, and validating key parity, pluralization, and formatting.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/i18n-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install i18n-expert"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "i18n-expert. This skill should be used when setting up, auditing, or enforcing internationalization/localization in UI codebases (React/TS, i18next or similar, JSON locales), including installing/configuring the i18n framework, replacing hard-coded strings, ensuring en-US/zh-CN coverage, mapping error codes to localized messages, and validating key parity, pluralization, and formatting. Platforms: claude_code."} {"id": "3463baecc2f0fe86333be07404cea2ed45a7f1631e48377a41ead41515b0c707", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "developing-ios-apps", "description": "Develops iOS/macOS applications with XcodeGen, SwiftUI, and SPM. Handles Apple Developer signing, notarization, and CI/CD pipelines. Triggers on XcodeGen project.yml, SPM dependency issues, device deployment, code signing errors (Error -25294, keychain mismatch, adhoc fallback, EMFILE, notarization credential conflict, continueOnError), camera/AVFoundation debugging, iOS version compatibility, \"Library not loaded @rpath\", Electron @electron/osx-sign/@electron/notarize config, notarytool, GitHub Actions secrets in conditionals, or certificate/provisioning problems. Use when building iOS/macOS apps, fixing Xcode build failures, deploying to real devices, or configuring CI/CD signing pipelines.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/iOS-APP-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install developing-ios-apps"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "developing-ios-apps. Develops iOS/macOS applications with XcodeGen, SwiftUI, and SPM. Handles Apple Developer signing, notarization, and CI/CD pipelines. Triggers on XcodeGen project.yml, SPM dependency issues, device deployment, code signing errors (Error -25294, keychain mismatch, adhoc fallback, EMFILE, notarization credential conflict, continueOnError), camera/AVFoundation debugging, iOS version compatibility, \"Library not loaded @rpath\", Electron @electron/osx-sign/@electron/notarize config, notarytool, GitHub Actions secrets in conditionals, or certificate/provisioning problems. Use when building iOS/macOS apps, fixing Xcode build failures, deploying to real devices, or configuring CI/CD signing pipelines. Platforms: claude_code."} {"id": "9f4027cd8ca164375decb02e1c155a65c66b34b25e95297b5b408fc8fdd8e0aa", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "llm-icon-finder", "description": "Finding and accessing AI/LLM model brand icons from lobe-icons library. Use when users need icon URLs, want to download brand logos for AI models/providers/applications (Claude, GPT, Gemini, etc.), or request icons in SVG/PNG/WEBP formats.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/llm-icon-finder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install llm-icon-finder"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "llm-icon-finder. Finding and accessing AI/LLM model brand icons from lobe-icons library. Use when users need icon URLs, want to download brand logos for AI models/providers/applications (Claude, GPT, Gemini, etc.), or request icons in SVG/PNG/WEBP formats. Platforms: claude_code."} {"id": "5aa144bec3a27d7a644fc6ab14ef6e480b71cf24bef056c52e23a47809611f81", "repo_url": "https://github.com/daymade/claude-code-skills", "name": "macos-cleaner", "description": "Analyze and reclaim macOS disk space through intelligent cleanup recommendations. This skill should be used when users report disk space issues, need to clean up their Mac, or want to understand what's consuming storage. Focus on safe, interactive analysis with user confirmation before any deletions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daymade/claude-code-skills/blob/main/macos-cleaner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install macos-cleaner"}, "quality": {"stars": 652, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:13:04Z"}, "embedding_text": "macos-cleaner. Analyze and reclaim macOS disk space through intelligent cleanup recommendations. This skill should be used when users report disk space issues, need to clean up their Mac, or want to understand what's consuming storage. Focus on safe, interactive analysis with user confirmation before any deletions. Platforms: claude_code."} @@ -12055,29 +16790,20 @@ {"id": "f5867c156fb6e32d71ee041fd654b1f2e957661ac9ec77ce0c514f7ed6dc162a", "repo_url": "https://github.com/alirezarezvani/claude-skills", "name": "marketing-skill", "description": "Marketing Skills Division - Claude Code skill from the Marketing domain.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-skills/blob/main/docs/skills/marketing-skill/marketing-skill.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install marketing-skill"}, "quality": {"stars": 5247, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:39:32Z"}, "embedding_text": "marketing-skill. Marketing Skills Division - Claude Code skill from the Marketing domain. Platforms: claude_code."} {"id": "77647d0a7343d28e13012784c1679c9bafe08e6fc46154fcf8992fcfe0964d5d", "repo_url": "https://github.com/microsoft/skills", "name": "azure-mgmt-fabric-dotnet", "description": "Azure Resource Manager SDK for Fabric in .NET. Use for MANAGEMENT PLANE operations: provisioning, scaling, suspending/resuming Microsoft Fabric capacities, checking name availability, and listing SKUs via Azure Resource Manager. Triggers: \"Fabric capacity\", \"create capacity\", \"suspend capacity\", \"resume capacity\", \"Fabric SKU\", \"provision Fabric\", \"ARM Fabric\", \"FabricCapacityResource\".\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-dotnet/skills/azure-mgmt-fabric-dotnet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-mgmt-fabric-dotnet"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-mgmt-fabric-dotnet. Azure Resource Manager SDK for Fabric in .NET. Use for MANAGEMENT PLANE operations: provisioning, scaling, suspending/resuming Microsoft Fabric capacities, checking name availability, and listing SKUs via Azure Resource Manager. Triggers: \"Fabric capacity\", \"create capacity\", \"suspend capacity\", \"resume capacity\", \"Fabric SKU\", \"provision Fabric\", \"ARM Fabric\", \"FabricCapacityResource\".\n Platforms: claude_code."} {"id": "5a2b2872ff86eb21e8a98b53c6577f856dfde0fc5c80f6644684a98cc5f6796b", "repo_url": "https://github.com/microsoft/skills", "name": "azure-identity-java", "description": "Azure Identity Java SDK for authentication with Azure services. Use when implementing DefaultAzureCredential, managed identity, service principal, or any Azure authentication pattern in Java applications.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-java/skills/azure-identity-java/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-identity-java"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-identity-java. Azure Identity Java SDK for authentication with Azure services. Use when implementing DefaultAzureCredential, managed identity, service principal, or any Azure authentication pattern in Java applications. Platforms: claude_code."} -{"id": "d028b84753dd3fe66000194800f41a4a727e16681cb26c5dd7ac71344adc5ce7", "repo_url": "https://github.com/microsoft/skills", "name": "azure-ai-transcription-py", "description": "Azure AI Transcription SDK for Python. Use for real-time and batch speech-to-text transcription with timestamps and diarization.\nTriggers: \"transcription\", \"speech to text\", \"Azure AI Transcription\", \"TranscriptionClient\".\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-python/skills/azure-ai-transcription-py/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-ai-transcription-py"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-ai-transcription-py. Azure AI Transcription SDK for Python. Use for real-time and batch speech-to-text transcription with timestamps and diarization.\nTriggers: \"transcription\", \"speech to text\", \"Azure AI Transcription\", \"TranscriptionClient\".\n Platforms: claude_code."} {"id": "04612523712291c3198b66783ecda12586b57d5493aa881e5642dc32edc10045", "repo_url": "https://github.com/microsoft/skills", "name": "azure-mgmt-botservice-py", "description": "Azure Bot Service Management SDK for Python. Use for creating, managing, and configuring Azure Bot Service resources.\nTriggers: \"azure-mgmt-botservice\", \"AzureBotService\", \"bot management\", \"conversational AI\", \"bot channels\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-python/skills/azure-mgmt-botservice-py/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-mgmt-botservice-py"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-mgmt-botservice-py. Azure Bot Service Management SDK for Python. Use for creating, managing, and configuring Azure Bot Service resources.\nTriggers: \"azure-mgmt-botservice\", \"AzureBotService\", \"bot management\", \"conversational AI\", \"bot channels\". Platforms: claude_code."} -{"id": "a8d903bc4370c03aa89e97a80ad08bd0611b190d7a5e6d878b6ef3475933af4e", "repo_url": "https://github.com/microsoft/skills", "name": "azure-storage-blob-py", "description": "Azure Blob Storage SDK for Python. Use for uploading, downloading, listing blobs, managing containers, and blob lifecycle.\nTriggers: \"blob storage\", \"BlobServiceClient\", \"ContainerClient\", \"BlobClient\", \"upload blob\", \"download blob\".\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-python/skills/azure-storage-blob-py/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-storage-blob-py"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-storage-blob-py. Azure Blob Storage SDK for Python. Use for uploading, downloading, listing blobs, managing containers, and blob lifecycle.\nTriggers: \"blob storage\", \"BlobServiceClient\", \"ContainerClient\", \"BlobClient\", \"upload blob\", \"download blob\".\n Platforms: claude_code."} {"id": "61c98b4a502cdc6a45f13f90fde8b1295b1327d81eb60a635c559dd24f8d4bee", "repo_url": "https://github.com/microsoft/skills", "name": "hosted-agents-v2-py", "description": "Build hosted agents using Azure AI Projects SDK with ImageBasedHostedAgentDefinition.\nUse when creating container-based agents that run custom code in Azure AI Foundry.\nTriggers: \"ImageBasedHostedAgentDefinition\", \"hosted agent\", \"container agent\", \n\"create_version\", \"ProtocolVersionRecord\", \"AgentProtocol.RESPONSES\".\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-python/skills/hosted-agents-v2-py/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hosted-agents-v2-py"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "hosted-agents-v2-py. Build hosted agents using Azure AI Projects SDK with ImageBasedHostedAgentDefinition.\nUse when creating container-based agents that run custom code in Azure AI Foundry.\nTriggers: \"ImageBasedHostedAgentDefinition\", \"hosted agent\", \"container agent\", \n\"create_version\", \"ProtocolVersionRecord\", \"AgentProtocol.RESPONSES\".\n Platforms: claude_code."} {"id": "fc6abf922b606a76c7a513397e89739eca3322faea1a412f3042adabd130d33b", "repo_url": "https://github.com/microsoft/skills", "name": "azure-eventhub-rust", "description": "Azure Event Hubs SDK for Rust. Use for sending and receiving events, streaming data ingestion.\nTriggers: \"event hubs rust\", \"ProducerClient rust\", \"ConsumerClient rust\", \"send event rust\", \"streaming rust\".\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-rust/skills/azure-eventhub-rust/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-eventhub-rust"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-eventhub-rust. Azure Event Hubs SDK for Rust. Use for sending and receiving events, streaming data ingestion.\nTriggers: \"event hubs rust\", \"ProducerClient rust\", \"ConsumerClient rust\", \"send event rust\", \"streaming rust\".\n Platforms: claude_code."} -{"id": "3260eb5f4180d9df5afb8de807159bc53e63e0e8d1997c6daedc589c1ba74b2a", "repo_url": "https://github.com/microsoft/skills", "name": "azure-keyvault-keys-rust", "description": "Azure Key Vault Keys SDK for Rust. Use for creating, managing, and using cryptographic keys.\nTriggers: \"keyvault keys rust\", \"KeyClient rust\", \"create key rust\", \"encrypt rust\", \"sign rust\".\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-rust/skills/azure-keyvault-keys-rust/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-keyvault-keys-rust"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-keyvault-keys-rust. Azure Key Vault Keys SDK for Rust. Use for creating, managing, and using cryptographic keys.\nTriggers: \"keyvault keys rust\", \"KeyClient rust\", \"create key rust\", \"encrypt rust\", \"sign rust\".\n Platforms: claude_code."} -{"id": "0b8f55e5392b59fe786fbc99f0a9ba973289818db6d4fe0903b4eb5e3d8df3f7", "repo_url": "https://github.com/microsoft/skills", "name": "azure-ai-voicelive-ts", "description": "Azure AI Voice Live SDK for JavaScript/TypeScript. Build real-time voice AI applications with bidirectional WebSocket communication. Use for voice assistants, conversational AI, real-time speech-to-speech, and voice-enabled chatbots in Node.js or browser environments. Triggers: \"voice live\", \"real-time voice\", \"VoiceLiveClient\", \"VoiceLiveSession\", \"voice assistant TypeScript\", \"bidirectional audio\", \"speech-to-speech JavaScript\".\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-typescript/skills/azure-ai-voicelive-ts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-ai-voicelive-ts"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-ai-voicelive-ts. Azure AI Voice Live SDK for JavaScript/TypeScript. Build real-time voice AI applications with bidirectional WebSocket communication. Use for voice assistants, conversational AI, real-time speech-to-speech, and voice-enabled chatbots in Node.js or browser environments. Triggers: \"voice live\", \"real-time voice\", \"VoiceLiveClient\", \"VoiceLiveSession\", \"voice assistant TypeScript\", \"bidirectional audio\", \"speech-to-speech JavaScript\".\n Platforms: claude_code."} {"id": "d6575b4f388aa5d66de0ac1615db7ecfafc9d3b30452a17b0babc56fd9bec9d2", "repo_url": "https://github.com/microsoft/skills", "name": "azure-microsoft-playwright-testing-ts", "description": "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 pipelines, or publishing test results to the Azure portal.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-sdk-typescript/skills/azure-microsoft-playwright-testing-ts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-microsoft-playwright-testing-ts"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-microsoft-playwright-testing-ts. 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 pipelines, or publishing test results to the Azure portal. Platforms: claude_code."} {"id": "bdff5002e32e2a055d26db46440117dcc28379eedfa98e3521c42c3174c8864c", "repo_url": "https://github.com/microsoft/skills", "name": "azure-aigateway", "description": "Configure Azure API Management (APIM) as AI Gateway to secure, observe, control AI models, MCP servers, agents. Helps with rate limiting, semantic caching, content safety, load balancing.\nUSE FOR: AI Gateway, APIM, setup gateway, configure gateway, add gateway, model gateway, MCP server, rate limit, token limit, semantic cache, content safety, load balance, OpenAPI import, convert API to MCP.\nDO NOT USE FOR: deploy models (use microsoft-foundry), Azure Functions (use azure-functions), databases (use azure-postgres).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-skills/skills/azure-aigateway/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-aigateway"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-aigateway. Configure Azure API Management (APIM) as AI Gateway to secure, observe, control AI models, MCP servers, agents. Helps with rate limiting, semantic caching, content safety, load balancing.\nUSE FOR: AI Gateway, APIM, setup gateway, configure gateway, add gateway, model gateway, MCP server, rate limit, token limit, semantic cache, content safety, load balance, OpenAPI import, convert API to MCP.\nDO NOT USE FOR: deploy models (use microsoft-foundry), Azure Functions (use azure-functions), databases (use azure-postgres). Platforms: claude_code."} {"id": "44084554354466fd35c117ab5f2add1badc4e22fb7cf6610c90dc7c938e2210c", "repo_url": "https://github.com/microsoft/skills", "name": "azure-postgres", "description": "Create new Azure Database for PostgreSQL Flexible Server instances and configure passwordless authentication with Microsoft Entra ID. Set up developer access, managed identities for apps, group-based permissions, and migrate from password-based to Entra ID authentication. Trigger phrases include \"passwordless for postgres\", \"entra id postgres\", \"azure ad postgres authentication\", \"postgres managed identity\", \"migrate postgres to passwordless\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-skills/skills/azure-postgres/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-postgres"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-postgres. Create new Azure Database for PostgreSQL Flexible Server instances and configure passwordless authentication with Microsoft Entra ID. Set up developer access, managed identities for apps, group-based permissions, and migrate from password-based to Entra ID authentication. Trigger phrases include \"passwordless for postgres\", \"entra id postgres\", \"azure ad postgres authentication\", \"postgres managed identity\", \"migrate postgres to passwordless\". Platforms: claude_code."} {"id": "ab631810aee0a76b0ae5dae306870b58ca4e85afd2142cc0e2698d9b76a50c4a", "repo_url": "https://github.com/microsoft/skills", "name": "azure-storage", "description": "Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics capabilities. Includes access tiers (hot, cool, archive) and lifecycle management.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-skills/skills/azure-storage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-storage"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "azure-storage. Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics capabilities. Includes access tiers (hot, cool, archive) and lifecycle management. Platforms: claude_code."} {"id": "2c988823c8413fc0e4ee8dbeda1ab2b67e5c752e86723ea5cd44f1a8698b2cd2", "repo_url": "https://github.com/microsoft/skills", "name": "agent-framework", "description": "Create AI agents and workflows using Microsoft Agent Framework SDK. Supports single-agent and multi-agent workflow patterns.\nUSE FOR: create agent, build agent, scaffold agent, new agent, agent framework, workflow pattern, multi-agent, MCP tools, create workflow.\nDO NOT USE FOR: deploying agents (use agent/deploy), evaluating agents (use agent/evaluate), Azure AI Foundry agents without Agent Framework SDK.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/agent/create/agent-framework/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-framework"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "agent-framework. Create AI agents and workflows using Microsoft Agent Framework SDK. Supports single-agent and multi-agent workflow patterns.\nUSE FOR: create agent, build agent, scaffold agent, new agent, agent framework, workflow pattern, multi-agent, MCP tools, create workflow.\nDO NOT USE FOR: deploying agents (use agent/deploy), evaluating agents (use agent/evaluate), Azure AI Foundry agents without Agent Framework SDK. Platforms: claude_code."} {"id": "7a44748a4a9694207abf3036f8fb9182ea487e6f9e0b59777ba4404929ee0b0e", "repo_url": "https://github.com/microsoft/skills", "name": "wiki-architect", "description": "Analyzes code repositories and generates hierarchical documentation structures with onboarding guides. Use when the user wants to create a wiki, generate documentation, map a codebase structure, or understand a project's architecture at a high level.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/deep-wiki/skills/wiki-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wiki-architect"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "wiki-architect. Analyzes code repositories and generates hierarchical documentation structures with onboarding guides. Use when the user wants to create a wiki, generate documentation, map a codebase structure, or understand a project's architecture at a high level. Platforms: claude_code."} -{"id": "f4637c18a7ca956fa8103a5aff687a2ea817bb6a8f697ed5ad7af8da2cc24aea", "repo_url": "https://github.com/microsoft/skills", "name": "wiki-vitepress", "description": "Packages generated wiki Markdown into a VitePress static site with dark theme, dark-mode Mermaid diagrams with click-to-zoom, and production build output. Use when the user wants to create a browsable website from generated wiki pages.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/plugins/deep-wiki/skills/wiki-vitepress/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wiki-vitepress"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "wiki-vitepress. Packages generated wiki Markdown into a VitePress static site with dark theme, dark-mode Mermaid diagrams with click-to-zoom, and production build output. Use when the user wants to create a browsable website from generated wiki pages. Platforms: claude_code."} {"id": "fad6343e8170ab370f14e3fe47555cfc12b0588fb3f350680b39d079e88fb12f", "repo_url": "https://github.com/microsoft/skills", "name": "entra-agent-id", "description": "Microsoft Entra Agent ID (preview) for creating OAuth2-capable AI agent identities via Microsoft Graph beta API.\nCovers Agent Identity Blueprints, BlueprintPrincipals, Agent Identities, required permissions, sponsors, and Workload Identity Federation.\nTriggers: \"agent identity\", \"agent id\", \"Agent Identity Blueprint\", \"BlueprintPrincipal\", \"entra agent\", \"agent identity provisioning\", \"Graph agent identity\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/skills/blob/main/.github/skills/entra-agent-id/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install entra-agent-id"}, "quality": {"stars": 1737, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:14:52Z"}, "embedding_text": "entra-agent-id. Microsoft Entra Agent ID (preview) for creating OAuth2-capable AI agent identities via Microsoft Graph beta API.\nCovers Agent Identity Blueprints, BlueprintPrincipals, Agent Identities, required permissions, sponsors, and Workload Identity Federation.\nTriggers: \"agent identity\", \"agent id\", \"Agent Identity Blueprint\", \"BlueprintPrincipal\", \"entra agent\", \"agent identity provisioning\", \"Graph agent identity\". Platforms: claude_code."} {"id": "182025f6965067c9a17daadcdc4c1e4c3c4f8faee295141166253da3f3add9e0", "repo_url": "https://github.com/wshobson/agents", "name": "multi-reviewer-patterns", "description": "Coordinate parallel code reviews across multiple quality dimensions with finding deduplication, severity calibration, and consolidated reporting. Use this skill when organizing multi-reviewer code reviews, calibrating finding severity, or consolidating review results.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/agent-teams/skills/multi-reviewer-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install multi-reviewer-patterns"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "multi-reviewer-patterns. Coordinate parallel code reviews across multiple quality dimensions with finding deduplication, severity calibration, and consolidated reporting. Use this skill when organizing multi-reviewer code reviews, calibrating finding severity, or consolidating review results. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "9171452af4503f867600c997bde974481a73723f5c525ed3ff88a5442d06dd92", "repo_url": "https://github.com/wshobson/agents", "name": "parallel-debugging", "description": "Debug complex issues using competing hypotheses with parallel investigation, evidence collection, and root cause arbitration. Use this skill when debugging bugs with multiple potential causes, performing root cause analysis, or organizing parallel investigation workflows.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/agent-teams/skills/parallel-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install parallel-debugging"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "parallel-debugging. Debug complex issues using competing hypotheses with parallel investigation, evidence collection, and root cause arbitration. Use this skill when debugging bugs with multiple potential causes, performing root cause analysis, or organizing parallel investigation workflows. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "776a4cc55703b5546a5734d1e8d6cec3767c09b91f2b8f08432e57e7a431e8f1", "repo_url": "https://github.com/wshobson/agents", "name": "parallel-feature-development", "description": "Coordinate parallel feature development with file ownership strategies, conflict avoidance rules, and integration patterns for multi-agent implementation. Use this skill when decomposing features for parallel development, establishing file ownership boundaries, or managing integration between parallel work streams.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/agent-teams/skills/parallel-feature-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install parallel-feature-development"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "parallel-feature-development. Coordinate parallel feature development with file ownership strategies, conflict avoidance rules, and integration patterns for multi-agent implementation. Use this skill when decomposing features for parallel development, establishing file ownership boundaries, or managing integration between parallel work streams. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "c3c16b0c9fef0d20e29e4b68ebdb3309635bc903534b608cedb8d52b6b33294f", "repo_url": "https://github.com/wshobson/agents", "name": "task-coordination-strategies", "description": "Decompose complex tasks, design dependency graphs, and coordinate multi-agent work with proper task descriptions and workload balancing. Use this skill when breaking down work for agent teams, managing task dependencies, or monitoring team progress.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/agent-teams/skills/task-coordination-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install task-coordination-strategies"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "task-coordination-strategies. Decompose complex tasks, design dependency graphs, and coordinate multi-agent work with proper task descriptions and workload balancing. Use this skill when breaking down work for agent teams, managing task dependencies, or monitoring team progress. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} -{"id": "4091b8b3747060b62c12f0c66fc3721e5eda74822854aba3b1c41afd762fc8c0", "repo_url": "https://github.com/wshobson/agents", "name": "error-handling-patterns", "description": "Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling, designing APIs, or improving application reliability.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/developer-essentials/skills/error-handling-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install error-handling-patterns"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "error-handling-patterns. Master error handling patterns across languages including exceptions, Result types, error propagation, and graceful degradation to build resilient applications. Use when implementing error handling, designing APIs, or improving application reliability. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} -{"id": "4a979018db528250e832ac5897c8f99f7cc03df905e28f62c7a016572e07eaee", "repo_url": "https://github.com/wshobson/agents", "name": "turborepo-caching", "description": "Configure Turborepo for efficient monorepo builds with local and remote caching. Use when setting up Turborepo, optimizing build pipelines, or implementing distributed caching.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/developer-essentials/skills/turborepo-caching/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install turborepo-caching"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "turborepo-caching. Configure Turborepo for efficient monorepo builds with local and remote caching. Use when setting up Turborepo, optimizing build pipelines, or implementing distributed caching. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} -{"id": "2b992be67bd9dcd06b243e059b76f295fa372dbd12f8f3fed2000e7e684fc835", "repo_url": "https://github.com/wshobson/agents", "name": "gitops-workflow", "description": "Implement GitOps workflows with ArgoCD and Flux for automated, declarative Kubernetes deployments with continuous reconciliation. Use when implementing GitOps practices, automating Kubernetes deployments, or setting up declarative infrastructure management.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/kubernetes-operations/skills/gitops-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gitops-workflow"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "gitops-workflow. Implement GitOps workflows with ArgoCD and Flux for automated, declarative Kubernetes deployments with continuous reconciliation. Use when implementing GitOps practices, automating Kubernetes deployments, or setting up declarative infrastructure management. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} -{"id": "6ddacb23ad2c6232e1d91cee285a07d6e76d5f8204303d4dc3cbafd01f1f9d30", "repo_url": "https://github.com/wshobson/agents", "name": "rag-implementation", "description": "Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/llm-application-dev/skills/rag-implementation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rag-implementation"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "rag-implementation. Build Retrieval-Augmented Generation (RAG) systems for LLM applications with vector databases and semantic search. Use when implementing knowledge-grounded AI, building document Q&A systems, or integrating LLMs with external knowledge bases. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "474bc5403b52469f02534563bc227af1412b6c1b9404034adcd1e05ba2d6fff9", "repo_url": "https://github.com/wshobson/agents", "name": "python-anti-patterns", "description": "Common Python anti-patterns to avoid. Use as a checklist when reviewing code, before finalizing implementations, or when debugging issues that might stem from known bad practices.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/python-development/skills/python-anti-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-anti-patterns"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "python-anti-patterns. Common Python anti-patterns to avoid. Use as a checklist when reviewing code, before finalizing implementations, or when debugging issues that might stem from known bad practices. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "c0950cd8abd9831c7df85cc3f82718f622b750d3aba0d3da15f9e873cc1398ce", "repo_url": "https://github.com/wshobson/agents", "name": "python-background-jobs", "description": "Python background job patterns including task queues, workers, and event-driven architecture. Use when implementing async task processing, job queues, long-running operations, or decoupling work from request/response cycles.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/python-development/skills/python-background-jobs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-background-jobs"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "python-background-jobs. Python background job patterns including task queues, workers, and event-driven architecture. Use when implementing async task processing, job queues, long-running operations, or decoupling work from request/response cycles. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "bcfe4d7653f6b733e9b5d2a09b990b43ac82ef361f6550976232956afb6de0ee", "repo_url": "https://github.com/wshobson/agents", "name": "python-code-style", "description": "Python code style, linting, formatting, naming conventions, and documentation standards. Use when writing new code, reviewing style, configuring linters, writing docstrings, or establishing project standards.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/python-development/skills/python-code-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-code-style"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "python-code-style. Python code style, linting, formatting, naming conventions, and documentation standards. Use when writing new code, reviewing style, configuring linters, writing docstrings, or establishing project standards. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} @@ -12089,8 +16815,6 @@ {"id": "811515ca9a9a3b391eb2979f48c6b8418f7ff825c9e60726cc2374d12e0041ef", "repo_url": "https://github.com/wshobson/agents", "name": "python-resilience", "description": "Python resilience patterns including automatic retries, exponential backoff, timeouts, and fault-tolerant decorators. Use when adding retry logic, implementing timeouts, building fault-tolerant services, or handling transient failures.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/python-development/skills/python-resilience/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-resilience"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "python-resilience. Python resilience patterns including automatic retries, exponential backoff, timeouts, and fault-tolerant decorators. Use when adding retry logic, implementing timeouts, building fault-tolerant services, or handling transient failures. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "943e62f7edd84cbee1c10f0a16d9c5d2f8c5ae7bb9df931c94d5a3f2a5269b68", "repo_url": "https://github.com/wshobson/agents", "name": "python-resource-management", "description": "Python resource management with context managers, cleanup patterns, and streaming. Use when managing connections, file handles, implementing cleanup logic, or building streaming responses with accumulated state.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/python-development/skills/python-resource-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-resource-management"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "python-resource-management. Python resource management with context managers, cleanup patterns, and streaming. Use when managing connections, file handles, implementing cleanup logic, or building streaming responses with accumulated state. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "9812d25f8aa7af6bdef12ce63783725f6426c399581a36bba6923bdaed1920ac", "repo_url": "https://github.com/wshobson/agents", "name": "python-type-safety", "description": "Python type safety with type hints, generics, protocols, and strict type checking. Use when adding type annotations, implementing generic classes, defining structural interfaces, or configuring mypy/pyright.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/python-development/skills/python-type-safety/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-type-safety"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "python-type-safety. Python type safety with type hints, generics, protocols, and strict type checking. Use when adding type annotations, implementing generic classes, defining structural interfaces, or configuring mypy/pyright. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} -{"id": "286d595f2a8eb263c8a496aeb08e177e78ff037a2049b76352d4f5a91ef1c809", "repo_url": "https://github.com/wshobson/agents", "name": "bash-defensive-patterns", "description": "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.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/shell-scripting/skills/bash-defensive-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bash-defensive-patterns"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "bash-defensive-patterns. 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. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} -{"id": "e0578461d09835516563f079489b10ca94fd18026ff4875c9de7487c325c4545", "repo_url": "https://github.com/wshobson/agents", "name": "startup-metrics-framework", "description": "This skill should be used when the user asks about \"key startup metrics\", \"SaaS metrics\", \"CAC and LTV\", \"unit economics\", \"burn multiple\", \"rule of 40\", \"marketplace metrics\", or requests guidance on tracking and optimizing business performance metrics.", "source": ["marketplace", "topic"], "categories": ["agents", "anthropic", "anthropic-claude", "automation", "claude", "claude-code", "claude-code-cli", "claude-code-commands", "claude-code-plugin", "claude-code-plugins", "claude-code-skills", "claude-code-subagents", "claude-skills", "claudecode", "claudecode-config", "claudecode-subagents", "orchestration", "sub-agents", "subagents", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshobson/agents/blob/main/plugins/startup-business-analyst/skills/startup-metrics-framework/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install startup-metrics-framework"}, "quality": {"stars": 31391, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T15:57:59Z"}, "embedding_text": "startup-metrics-framework. This skill should be used when the user asks about \"key startup metrics\", \"SaaS metrics\", \"CAC and LTV\", \"unit economics\", \"burn multiple\", \"rule of 40\", \"marketplace metrics\", or requests guidance on tracking and optimizing business performance metrics. Categories: agents, anthropic, anthropic-claude, automation, claude, claude-code, claude-code-cli, claude-code-commands, claude-code-plugin, claude-code-plugins, claude-code-skills, claude-code-subagents, claude-skills, claudecode, claudecode-config, claudecode-subagents, orchestration, sub-agents, subagents, workflows. Platforms: claude_code."} {"id": "8f25e932a7dc3508ee6e46a5c83b5c2a221bb37fdc5534edca0bddcc7b740b04", "repo_url": "https://github.com/ruvnet/ruflo", "name": "agent-adaptive-coordinator", "description": "Agent skill for adaptive-coordinator - invoke with $agent-adaptive-coordinator", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruvnet/ruflo/blob/main/.agents/skills/agent-adaptive-coordinator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-adaptive-coordinator"}, "quality": {"stars": 21157, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T15:59:33Z"}, "embedding_text": "agent-adaptive-coordinator. Agent skill for adaptive-coordinator - invoke with $agent-adaptive-coordinator Platforms: claude_code."} {"id": "c5c61f36907e9b3ca7c381694be25eb950aa710973fd96d70e3ab93912f14eb3", "repo_url": "https://github.com/ruvnet/ruflo", "name": "agent-agent", "description": "Agent skill for agent - invoke with $agent-agent", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruvnet/ruflo/blob/main/.agents/skills/agent-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-agent"}, "quality": {"stars": 21157, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T15:59:33Z"}, "embedding_text": "agent-agent. Agent skill for agent - invoke with $agent-agent Platforms: claude_code."} {"id": "dade04ca1cb39accc849b7d8a9f4d10e8944cb39a197a194cc56953cf3ec5a1b", "repo_url": "https://github.com/ruvnet/ruflo", "name": "agent-agentic-payments", "description": "Agent skill for agentic-payments - invoke with $agent-agentic-payments", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruvnet/ruflo/blob/main/.agents/skills/agent-agentic-payments/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-agentic-payments"}, "quality": {"stars": 21157, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T15:59:33Z"}, "embedding_text": "agent-agentic-payments. Agent skill for agentic-payments - invoke with $agent-agentic-payments Platforms: claude_code."} @@ -12364,16 +17088,10 @@ {"id": "3b1c3765d9b039eb7de43c0541859b6a83bed79b771cc8e40c858146a93f7c71", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "hooks", "description": "Hook Development Rules", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/hooks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hooks"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "hooks. Hook Development Rules Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "37e45c49e29f4532b6bb11971c6df544c97a5f08490aec634c853c95f0ce40fb", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "implement_plan_micro", "description": "Implement technical plans from thoughts/shared/plans with verification", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/implement_plan_micro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install implement_plan_micro"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "implement_plan_micro. Implement technical plans from thoughts/shared/plans with verification Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "d7d2a134808e2f01c88620190752b7fb2825d602585abe0743dc51edc173c472", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "math", "description": "Unified math capabilities - computation, solving, and explanation. I route to the right tool.", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math-unified/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install math"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "math. Unified math capabilities - computation, solving, and explanation. I route to the right tool. Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} -{"id": "a2f08d97b032bf4b1be8afead50ae05508aef3a04e7871352ddc197edb20c734", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "groups", "description": "Problem-solving strategies for groups in abstract algebra", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/abstract-algebra/groups/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install groups"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "groups. Problem-solving strategies for groups in abstract algebra Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "5fc9646f06be5806244b196e19429caeb0118db0bc222328abbe2162e17041e9", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "banach-spaces", "description": "Problem-solving strategies for banach spaces in functional analysis", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/functional-analysis/banach-spaces/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install banach-spaces"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "banach-spaces. Problem-solving strategies for banach spaces in functional analysis Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} -{"id": "242a5218f5fd2ccd20d053b5143bf5d34b9657677c4d5f517f47796f2373fbdd", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "modular-arithmetic", "description": "Problem-solving strategies for modular arithmetic in graph number theory", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/graph-number-theory/modular-arithmetic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install modular-arithmetic"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "modular-arithmetic. Problem-solving strategies for modular arithmetic in graph number theory Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} -{"id": "378c2c8473dfeb9830fdbf40fd4a770dfee12c16a003a7af02139d138109ca0f", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "matrices", "description": "Problem-solving strategies for matrices in linear algebra", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/linear-algebra/matrices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matrices"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "matrices. Problem-solving strategies for matrices in linear algebra Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "29876ef40139862eb0d0846af625a6c5d9d3433731c3e8d475c27604ca4c3808", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "math-intuition-builder", "description": "Develops mathematical understanding through examples, visualization, and analogy", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/math-intuition-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install math-intuition-builder"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "math-intuition-builder. Develops mathematical understanding through examples, visualization, and analogy Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} -{"id": "55bfd8be16064fa87b34a406314228739a099086821c2df766d6758a841b72e7", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "math-model-selector", "description": "Routes problems to appropriate mathematical frameworks using expert heuristics", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/math-model-selector/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install math-model-selector"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "math-model-selector. Routes problems to appropriate mathematical frameworks using expert heuristics Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "a6651344e7686af04989fd9cb607c90d4875583188e2a5e644ad5cb834257c99", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "continuity", "description": "Problem-solving strategies for continuity in real analysis", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/real-analysis/continuity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install continuity"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "continuity. Problem-solving strategies for continuity in real analysis Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "06af0bf8624bf449b39910b17bf89846fb5fd9a9f6bb52a6b757af5e0ec383d0", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "limits", "description": "Problem-solving strategies for limits in real analysis", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/real-analysis/limits/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install limits"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "limits. Problem-solving strategies for limits in real analysis Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} -{"id": "bea6c9afb3fa768bb638912e31b7f38daf011524c173038a90597428d179f709", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "open-sets", "description": "Problem-solving strategies for open sets in topology", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/math/topology/open-sets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install open-sets"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "open-sets. Problem-solving strategies for open sets in topology Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} -{"id": "e5bff1b4f7c7d5f1ceab59dbf48ba69c02c6a37bf68bc559699a423891e4cb83", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "onboard", "description": "Analyze brownfield codebase and create initial continuity ledger", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/onboard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install onboard"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "onboard. Analyze brownfield codebase and create initial continuity ledger Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "c7bf8baadc0e3b99a7fe82b13be45b3a5ed1dbb80125b6a39483e40a9b9943f3", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "perplexity-search", "description": "AI-powered web search, research, and reasoning via Perplexity", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/perplexity-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install perplexity-search"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "perplexity-search. AI-powered web search, research, and reasoning via Perplexity Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "517af3f486f1eedefeb92e8c8604233f3d86f0fdef4caecffe18ea6645abcc47", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "recall", "description": "Query the memory system for relevant learnings from past sessions", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/recall/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recall"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "recall. Query the memory system for relevant learnings from past sessions Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "e8ae40ab13db67384a36ef9422f9e24004a0a076d6cd299ada8dec81010eba75", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "reference-sdk", "description": "Check reference SDK implementations using btca ask", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/reference-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reference-sdk"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "reference-sdk. Check reference SDK implementations using btca ask Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} @@ -12381,15 +17099,12 @@ {"id": "629149e4803f57dd9b0f232a0180f152e24987dd075492b6146678fd2715de46", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "router-first-architecture", "description": "Router-First Architecture", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/router-first-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install router-first-architecture"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "router-first-architecture. Router-First Architecture Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "bac92062d64c4ce36ee3b2d3604d57939f03d702471af70200d2ec34f98228f7", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "search-hierarchy", "description": "Search Tool Hierarchy", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/search-hierarchy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install search-hierarchy"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "search-hierarchy. Search Tool Hierarchy Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "c82a78e2b4c296800acefa6e1694b8efef9a3bf3ccdf0501d01e1edaeb2538d3", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "search-tools", "description": "Search Tool Hierarchy", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/search-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install search-tools"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "search-tools. Search Tool Hierarchy Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} -{"id": "3ba84a8de929bb1ffb950d306f23a90d38e21850a03927321ceb35555ec86e00", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "shapely-compute", "description": "Computational geometry with Shapely - create geometries, boolean operations, measurements, predicates", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/shapely-compute/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install shapely-compute"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "shapely-compute. Computational geometry with Shapely - create geometries, boolean operations, measurements, predicates Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "9e518dc8b96110055ac524ea80448667d390b4e905f4d8c469a0d136f7e53bc6", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "tdd", "description": "Test-driven development workflow with philosophy guide - plan \u2192 write tests \u2192 implement \u2192 validate", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/tdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tdd"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "tdd. Test-driven development workflow with philosophy guide - plan \u2192 write tests \u2192 implement \u2192 validate Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} -{"id": "7c98f7212e46428a0b7837a81444b262cca66ba07f647d20c8d95c4a574f63f5", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "tldr-overview", "description": "Get a token-efficient overview of any project using the TLDR stack", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/tldr-overview/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tldr-overview"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "tldr-overview. Get a token-efficient overview of any project using the TLDR stack Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "32cb2253fbe8c7d846ea53a459e41eed76235753aa9a2ca1f1c5b2fc372c5df2", "repo_url": "https://github.com/parcadei/continuous-claude-v3", "name": "tour", "description": "Friendly onboarding when users ask about capabilities", "source": ["marketplace", "topic"], "categories": ["agents", "claude-code", "claude-code-cli", "claude-code-hooks", "claude-code-mcp", "claude-code-skills", "claude-code-subagents", "claude-skills", "mcp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/parcadei/continuous-claude-v3/blob/main/.claude/skills/tour/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tour"}, "quality": {"stars": 3612, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-26T15:27:49Z"}, "embedding_text": "tour. Friendly onboarding when users ask about capabilities Categories: agents, claude-code, claude-code-cli, claude-code-hooks, claude-code-mcp, claude-code-skills, claude-code-subagents, claude-skills, mcp. Platforms: claude_code."} {"id": "f0f064480a9ab2fa684f9adeffeb8b12e3534a0e4af240e93d080e473a07a373", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "API Fuzzing for Bug Bounty", "description": "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 bounty API testing\", or needs guidance on API security assessment techniques.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/api-fuzzing-bug-bounty/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install API Fuzzing for Bug Bounty"}, "quality": {"stars": 3619, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T00:58:04Z"}, "embedding_text": "API Fuzzing for Bug Bounty. 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 bounty API testing\", or needs guidance on API security assessment techniques. Platforms: claude_code."} {"id": "829036614119c43232781c12cd358958929d0157e7fd336b3d901a5f7a4445b8", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "Burp Suite Web Application Testing", "description": "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 Repeater\", \"analyze HTTP history\", or \"configure proxy for web testing\". It provides comprehensive guidance for using Burp Suite's core features for web application security testing.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/burp-suite-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Burp Suite Web Application Testing"}, "quality": {"stars": 3619, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T00:58:04Z"}, "embedding_text": "Burp Suite Web Application Testing. 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 Repeater\", \"analyze HTTP history\", or \"configure proxy for web testing\". It provides comprehensive guidance for using Burp Suite's core features for web application security testing. Platforms: claude_code."} {"id": "7ad7dc2b7a56bc68c120ac4a26235a77ebfa299cd28750c8d2da365c67846df0", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "IDOR Vulnerability Testing", "description": "This skill should be used when the user asks to \"test for insecure direct object references,\" \"find IDOR vulnerabilities,\" \"exploit broken access control,\" \"enumerate user IDs or object references,\" or \"bypass authorization to access other users' data.\" It provides comprehensive guidance for detecting, exploiting, and remediating IDOR vulnerabilities in web applications.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/idor-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install IDOR Vulnerability Testing"}, "quality": {"stars": 3619, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T00:58:04Z"}, "embedding_text": "IDOR Vulnerability Testing. This skill should be used when the user asks to \"test for insecure direct object references,\" \"find IDOR vulnerabilities,\" \"exploit broken access control,\" \"enumerate user IDs or object references,\" or \"bypass authorization to access other users' data.\" It provides comprehensive guidance for detecting, exploiting, and remediating IDOR vulnerabilities in web applications. Platforms: claude_code."} {"id": "c638427372885db89bc8476c11d053bb20d551da576014293cad61c092d6f760", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "Linux Production Shell Scripts", "description": "This skill should be used when the user asks to \"create bash scripts\", \"automate Linux tasks\", \"monitor system resources\", \"backup files\", \"manage users\", or \"write production shell scripts\". It provides ready-to-use shell script templates for system administration.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/linux-shell-scripting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Linux Production Shell Scripts"}, "quality": {"stars": 3619, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T00:58:04Z"}, "embedding_text": "Linux Production Shell Scripts. This skill should be used when the user asks to \"create bash scripts\", \"automate Linux tasks\", \"monitor system resources\", \"backup files\", \"manage users\", or \"write production shell scripts\". It provides ready-to-use shell script templates for system administration. Platforms: claude_code."} -{"id": "ae3a5997009102748677109bfaae7cea63c1d72a4820bc91f0916719c67192cb", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "Network 101", "description": "This skill should be used when the user asks to \"set up a web server\", \"configure HTTP or HTTPS\", \"perform SNMP enumeration\", \"configure SMB shares\", \"test network services\", or needs guidance on configuring and testing network services for penetration testing labs.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/network-101/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Network 101"}, "quality": {"stars": 3619, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T00:58:04Z"}, "embedding_text": "Network 101. This skill should be used when the user asks to \"set up a web server\", \"configure HTTP or HTTPS\", \"perform SNMP enumeration\", \"configure SMB shares\", \"test network services\", or needs guidance on configuring and testing network services for penetration testing labs. Platforms: claude_code."} {"id": "4c577bb02199f043b7d01b2a4b9ec1cd78a31ee0ed7816c45830280e95f9e3b7", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "SQLMap Database Penetration Testing", "description": "This skill should be used when the user asks to \"automate SQL injection testing,\" \"enumerate database structure,\" \"extract database credentials using sqlmap,\" \"dump tables and columns from a vulnerable database,\" or \"perform automated database penetration testing.\" It provides comprehensive guidance for using SQLMap to detect and exploit SQL injection vulnerabilities.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/sqlmap-database-pentesting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install SQLMap Database Penetration Testing"}, "quality": {"stars": 3619, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T00:58:04Z"}, "embedding_text": "SQLMap Database Penetration Testing. This skill should be used when the user asks to \"automate SQL injection testing,\" \"enumerate database structure,\" \"extract database credentials using sqlmap,\" \"dump tables and columns from a vulnerable database,\" or \"perform automated database penetration testing.\" It provides comprehensive guidance for using SQLMap to detect and exploit SQL injection vulnerabilities. Platforms: claude_code."} {"id": "10d7f191dbfe4040b9e56adcf77c3f19fc0f6927130ed0749cd0be600de2b9e6", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "Top 100 Web Vulnerabilities Reference", "description": "This skill should be used when the user asks to \"identify web application vulnerabilities\", \"explain common security flaws\", \"understand vulnerability categories\", \"learn about injection attacks\", \"review access control weaknesses\", \"analyze API security issues\", \"assess security misconfigurations\", \"understand client-side vulnerabilities\", \"examine mobile and IoT security flaws\", or \"reference the OWASP-aligned vulnerability taxonomy\". Use this skill to provide comprehensive vulnerability definitions, root causes, impacts, and mitigation strategies across all major web security categories.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/top-web-vulnerabilities/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Top 100 Web Vulnerabilities Reference"}, "quality": {"stars": 3619, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T00:58:04Z"}, "embedding_text": "Top 100 Web Vulnerabilities Reference. This skill should be used when the user asks to \"identify web application vulnerabilities\", \"explain common security flaws\", \"understand vulnerability categories\", \"learn about injection attacks\", \"review access control weaknesses\", \"analyze API security issues\", \"assess security misconfigurations\", \"understand client-side vulnerabilities\", \"examine mobile and IoT security flaws\", or \"reference the OWASP-aligned vulnerability taxonomy\". Use this skill to provide comprehensive vulnerability definitions, root causes, impacts, and mitigation strategies across all major web security categories. Platforms: claude_code."} {"id": "1ca3c1f78fad575c4a1ce24bf4dae1a99d1cf1ef3e0d5f2026a298130e7b23cf", "repo_url": "https://github.com/zebbern/claude-code-guide", "name": "Wireshark Network Traffic Analysis", "description": "This skill should be used when the user asks to \"analyze network traffic with Wireshark\", \"capture packets for troubleshooting\", \"filter PCAP files\", \"follow TCP/UDP streams\", \"detect network anomalies\", \"investigate suspicious traffic\", or \"perform protocol analysis\". It provides comprehensive techniques for network packet capture, filtering, and analysis using Wireshark.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/claude-code-guide/blob/main/skills/wireshark-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Wireshark Network Traffic Analysis"}, "quality": {"stars": 3619, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T00:58:04Z"}, "embedding_text": "Wireshark Network Traffic Analysis. This skill should be used when the user asks to \"analyze network traffic with Wireshark\", \"capture packets for troubleshooting\", \"filter PCAP files\", \"follow TCP/UDP streams\", \"detect network anomalies\", \"investigate suspicious traffic\", or \"perform protocol analysis\". It provides comprehensive techniques for network packet capture, filtering, and analysis using Wireshark. Platforms: claude_code."} @@ -14442,26 +19157,14 @@ {"id": "437cb221b0d9e6ff8569b305a1499b6a0ce7c62741f87b254f594b5c661d722e", "repo_url": "https://github.com/jabrena/cursor-rules-java", "name": "171-java-adr", "description": "Use when you need to generate Architecture Decision Records (ADRs) for a Java project through an interactive, conversational process that systematically gathers context, stakeholders, options, and outcomes to produce well-structured ADR documents. Part of the skills-for-java project", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude", "claude-code", "claude-code-skills", "claude-code-subagents", "claude-skills", "cursor-agent", "cursor-ai", "cursor-rules", "cursor-rules-java", "cursorai", "github-copilot", "intellij-idea", "java", "prompting", "skills", "skillsjars", "system-prompts", "vscode"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jabrena/cursor-rules-java/blob/main/skills/171-java-adr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install 171-java-adr"}, "quality": {"stars": 322, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T09:07:33Z"}, "embedding_text": "171-java-adr. Use when you need to generate Architecture Decision Records (ADRs) for a Java project through an interactive, conversational process that systematically gathers context, stakeholders, options, and outcomes to produce well-structured ADR documents. Part of the skills-for-java project Categories: agent-skills, ai-skills, claude, claude-code, claude-code-skills, claude-code-subagents, claude-skills, cursor-agent, cursor-ai, cursor-rules, cursor-rules-java, cursorai, github-copilot, intellij-idea, java, prompting, skills, skillsjars, system-prompts, vscode. Platforms: claude_code."} {"id": "2747b5ababed3951508579e124f7fd4a12a9114587cfc821eb82a1d9af5124dc", "repo_url": "https://github.com/jabrena/cursor-rules-java", "name": "172-java-diagrams", "description": "Use when you need to generate Java project diagrams \u2014 including UML sequence diagrams, UML class diagrams, C4 model diagrams, and UML state machine diagrams \u2014 through a modular, step-based interactive process that adapts to your specific visualization needs. Part of the skills-for-java project", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude", "claude-code", "claude-code-skills", "claude-code-subagents", "claude-skills", "cursor-agent", "cursor-ai", "cursor-rules", "cursor-rules-java", "cursorai", "github-copilot", "intellij-idea", "java", "prompting", "skills", "skillsjars", "system-prompts", "vscode"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jabrena/cursor-rules-java/blob/main/skills/172-java-diagrams/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install 172-java-diagrams"}, "quality": {"stars": 322, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T09:07:33Z"}, "embedding_text": "172-java-diagrams. Use when you need to generate Java project diagrams \u2014 including UML sequence diagrams, UML class diagrams, C4 model diagrams, and UML state machine diagrams \u2014 through a modular, step-based interactive process that adapts to your specific visualization needs. Part of the skills-for-java project Categories: agent-skills, ai-skills, claude, claude-code, claude-code-skills, claude-code-subagents, claude-skills, cursor-agent, cursor-ai, cursor-rules, cursor-rules-java, cursorai, github-copilot, intellij-idea, java, prompting, skills, skillsjars, system-prompts, vscode. Platforms: claude_code."} {"id": "8dc7d2827163ddfaa2988b9ecc3866562f8581eb892a2a8cb3ba8224834bc6e2", "repo_url": "https://github.com/jabrena/cursor-rules-java", "name": "173-java-agents", "description": "Use when you need to generate an AGENTS.md file for a Java repository \u2014 covering project conventions, tech stack, file structure, commands, Git workflow, and contributor boundaries \u2014 through a modular, step-based interactive process that adapts to your specific project needs. Part of the skills-for-java project", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude", "claude-code", "claude-code-skills", "claude-code-subagents", "claude-skills", "cursor-agent", "cursor-ai", "cursor-rules", "cursor-rules-java", "cursorai", "github-copilot", "intellij-idea", "java", "prompting", "skills", "skillsjars", "system-prompts", "vscode"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jabrena/cursor-rules-java/blob/main/skills/173-java-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install 173-java-agents"}, "quality": {"stars": 322, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T09:07:33Z"}, "embedding_text": "173-java-agents. Use when you need to generate an AGENTS.md file for a Java repository \u2014 covering project conventions, tech stack, file structure, commands, Git workflow, and contributor boundaries \u2014 through a modular, step-based interactive process that adapts to your specific project needs. Part of the skills-for-java project Categories: agent-skills, ai-skills, claude, claude-code, claude-code-skills, claude-code-subagents, claude-skills, cursor-agent, cursor-ai, cursor-rules, cursor-rules-java, cursorai, github-copilot, intellij-idea, java, prompting, skills, skillsjars, system-prompts, vscode. Platforms: claude_code."} -{"id": "64d1c7d03616a0bc95ef5ca623aa18807d713514257f0b2b5d237792c44573ec", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "capabilities", "description": "Display shinkoku's current capabilities, supported personas, and known limitations. Use when the user asks \"what can you do?\", \"what's supported?\", or similar questions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/capabilities/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install capabilities"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "capabilities. Display shinkoku's current capabilities, supported personas, and known limitations. Use when the user asks \"what can you do?\", \"what's supported?\", or similar questions. Platforms: claude_code."} {"id": "1db3e670f22aef40c5b69e7dadd89df53a5f26ad5916e48266a5f1a35f991a67", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "consumption-tax", "description": "This skill should be used when the user needs to calculate consumption tax (\u6d88\u8cbb\u7a0e) or determine their tax method (2\u5272\u7279\u4f8b, \u7c21\u6613\u8ab2\u7a0e, or \u672c\u5247\u8ab2\u7a0e). Trigger phrases include: \"\u6d88\u8cbb\u7a0e\u3092\u8a08\u7b97\", \"\u6d88\u8cbb\u7a0e\u306e\u7533\u544a\", \"\u6d88\u8cbb\u7a0e\u7533\u544a\u66f8\", \"2\u5272\u7279\u4f8b\", \"\u7c21\u6613\u8ab2\u7a0e\", \"\u672c\u5247\u8ab2\u7a0e\", \"\u8ab2\u7a0e\u58f2\u4e0a\", \"\u6d88\u8cbb\u7a0e\u984d\", \"\u30a4\u30f3\u30dc\u30a4\u30b9\", \"\u307f\u306a\u3057\u4ed5\u5165\u7387\", \"\u8ab2\u7a0e\u4ed5\u5165\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/consumption-tax/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install consumption-tax"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "consumption-tax. This skill should be used when the user needs to calculate consumption tax (\u6d88\u8cbb\u7a0e) or determine their tax method (2\u5272\u7279\u4f8b, \u7c21\u6613\u8ab2\u7a0e, or \u672c\u5247\u8ab2\u7a0e). Trigger phrases include: \"\u6d88\u8cbb\u7a0e\u3092\u8a08\u7b97\", \"\u6d88\u8cbb\u7a0e\u306e\u7533\u544a\", \"\u6d88\u8cbb\u7a0e\u7533\u544a\u66f8\", \"2\u5272\u7279\u4f8b\", \"\u7c21\u6613\u8ab2\u7a0e\", \"\u672c\u5247\u8ab2\u7a0e\", \"\u8ab2\u7a0e\u58f2\u4e0a\", \"\u6d88\u8cbb\u7a0e\u984d\", \"\u30a4\u30f3\u30dc\u30a4\u30b9\", \"\u307f\u306a\u3057\u4ed5\u5165\u7387\", \"\u8ab2\u7a0e\u4ed5\u5165\". Platforms: claude_code."} {"id": "ecdde9f9bb614af03fa36a5e176ab7314158b75dd2964f722707d6d96375ef0f", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "e-bookkeeping-compliance", "description": "\u512a\u826f\u306a\u96fb\u5b50\u5e33\u7c3f\u306e\u8981\u4ef6\u30c1\u30a7\u30c3\u30af\u30fb\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u8a3a\u65ad\u3092\u5b9f\u884c\u3059\u308b\u3002 \u300c\u512a\u826f\u306a\u96fb\u5b50\u5e33\u7c3f\u300d\u300c\u96fb\u5e33\u6cd5\u5bfe\u5fdc\u300d\u300c\u96fb\u5b50\u5e33\u7c3f\u306e\u8981\u4ef6\u78ba\u8a8d\u300d \u300c\u7a0e\u52d9\u8abf\u67fb\u306e\u6e96\u5099\u300d\u300c75\u4e07\u5186\u63a7\u9664\u306e\u6761\u4ef6\u300d\u300c\u5e33\u7c3f\u306e\u8981\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u304b\u300d \u300ce-bookkeeping compliance\u300d\u3067\u8d77\u52d5\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/e-bookkeeping-compliance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install e-bookkeeping-compliance"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "e-bookkeeping-compliance. \u512a\u826f\u306a\u96fb\u5b50\u5e33\u7c3f\u306e\u8981\u4ef6\u30c1\u30a7\u30c3\u30af\u30fb\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u8a3a\u65ad\u3092\u5b9f\u884c\u3059\u308b\u3002 \u300c\u512a\u826f\u306a\u96fb\u5b50\u5e33\u7c3f\u300d\u300c\u96fb\u5e33\u6cd5\u5bfe\u5fdc\u300d\u300c\u96fb\u5b50\u5e33\u7c3f\u306e\u8981\u4ef6\u78ba\u8a8d\u300d \u300c\u7a0e\u52d9\u8abf\u67fb\u306e\u6e96\u5099\u300d\u300c75\u4e07\u5186\u63a7\u9664\u306e\u6761\u4ef6\u300d\u300c\u5e33\u7c3f\u306e\u8981\u4ef6\u3092\u6e80\u305f\u3057\u3066\u3044\u308b\u304b\u300d \u300ce-bookkeeping compliance\u300d\u3067\u8d77\u52d5\u3002 Platforms: claude_code."} -{"id": "c42eae3b3f92f7673a607bb034694eda485457c2fdbc67aaf99908314e03306f", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "furusato", "description": "This skill manages furusato nozei (hometown tax) donations. Use when the user wants to register donation data, read donation receipts, check deduction limits, or manage their furusato nozei records. Trigger phrases: \"\u3075\u308b\u3055\u3068\u7d0d\u7a0e\", \"furusato\", \"\u5bc4\u9644\u91d1\", \"\u5bc4\u4ed8\u91d1\", \"\u3075\u308b\u3055\u3068\u7d0d\u7a0e\u306e\u63a7\u9664\", \"\u5bc4\u9644\u91d1\u53d7\u9818\u8a3c\u660e\u66f8\", \"\u30ef\u30f3\u30b9\u30c8\u30c3\u30d7\u7279\u4f8b\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/furusato/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install furusato"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "furusato. This skill manages furusato nozei (hometown tax) donations. Use when the user wants to register donation data, read donation receipts, check deduction limits, or manage their furusato nozei records. Trigger phrases: \"\u3075\u308b\u3055\u3068\u7d0d\u7a0e\", \"furusato\", \"\u5bc4\u9644\u91d1\", \"\u5bc4\u4ed8\u91d1\", \"\u3075\u308b\u3055\u3068\u7d0d\u7a0e\u306e\u63a7\u9664\", \"\u5bc4\u9644\u91d1\u53d7\u9818\u8a3c\u660e\u66f8\", \"\u30ef\u30f3\u30b9\u30c8\u30c3\u30d7\u7279\u4f8b\". Platforms: claude_code."} -{"id": "5c5e7d117eef8f53ba7d195f10e8a39cb54819a4f9ed09fa168ce5ee3e4a498d", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "gather", "description": "This skill should be used when the user needs to know what documents to collect for their tax filing, wants a checklist of required documents, or asks where to obtain specific tax documents. Trigger phrases include: \"\u5fc5\u8981\u66f8\u985e\", \"\u66f8\u985e\u3092\u96c6\u3081\u308b\", \"\u4f55\u3092\u6e96\u5099\u3059\u308c\u3070\u3044\u3044\", \"\u6e90\u6cc9\u5fb4\u53ce\u7968\u306f\u3069\u3053\u3067\", \"\u66f8\u985e\u30c1\u30a7\u30c3\u30af\u30ea\u30b9\u30c8\", \"\u78ba\u5b9a\u7533\u544a\u306b\u5fc5\u8981\u306a\u3082\u306e\", \"\u66f8\u985e\u53ce\u96c6\", \"\u6e96\u5099\u3059\u308b\u3082\u306e\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/gather/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gather"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "gather. This skill should be used when the user needs to know what documents to collect for their tax filing, wants a checklist of required documents, or asks where to obtain specific tax documents. Trigger phrases include: \"\u5fc5\u8981\u66f8\u985e\", \"\u66f8\u985e\u3092\u96c6\u3081\u308b\", \"\u4f55\u3092\u6e96\u5099\u3059\u308c\u3070\u3044\u3044\", \"\u6e90\u6cc9\u5fb4\u53ce\u7968\u306f\u3069\u3053\u3067\", \"\u66f8\u985e\u30c1\u30a7\u30c3\u30af\u30ea\u30b9\u30c8\", \"\u78ba\u5b9a\u7533\u544a\u306b\u5fc5\u8981\u306a\u3082\u306e\", \"\u66f8\u985e\u53ce\u96c6\", \"\u6e96\u5099\u3059\u308b\u3082\u306e\". Platforms: claude_code."} {"id": "bcc95b6ae1ef38c89a3d0f934459e29f70ce119b271a3c417559f0c7ab58d873", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "income-tax", "description": "This skill should be used when the user needs to calculate their income tax (\u6240\u5f97\u7a0e), compute deductions, or import withholding slips. Trigger phrases include: \"\u6240\u5f97\u7a0e\u3092\u8a08\u7b97\", \"\u78ba\u5b9a\u7533\u544a\u66f8\u3092\u4f5c\u6210\", \"\u63a7\u9664\u3092\u8a08\u7b97\", \"\u6e90\u6cc9\u5fb4\u53ce\u7968\u3092\u53d6\u308a\u8fbc\u3080\", \"\u6240\u5f97\u7a0e\u984d\", \"\u7d0d\u4ed8\u984d\u3092\u8a08\u7b97\", \"\u9084\u4ed8\u984d\u3092\u8a08\u7b97\", \"\u7b2c\u4e00\u8868\", \"\u7b2c\u4e8c\u8868\", \"\u7533\u544a\u66f8B\", \"\u6240\u5f97\u63a7\u9664\", \"\u7a0e\u984d\u63a7\u9664\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/income-tax/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install income-tax"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "income-tax. This skill should be used when the user needs to calculate their income tax (\u6240\u5f97\u7a0e), compute deductions, or import withholding slips. Trigger phrases include: \"\u6240\u5f97\u7a0e\u3092\u8a08\u7b97\", \"\u78ba\u5b9a\u7533\u544a\u66f8\u3092\u4f5c\u6210\", \"\u63a7\u9664\u3092\u8a08\u7b97\", \"\u6e90\u6cc9\u5fb4\u53ce\u7968\u3092\u53d6\u308a\u8fbc\u3080\", \"\u6240\u5f97\u7a0e\u984d\", \"\u7d0d\u4ed8\u984d\u3092\u8a08\u7b97\", \"\u9084\u4ed8\u984d\u3092\u8a08\u7b97\", \"\u7b2c\u4e00\u8868\", \"\u7b2c\u4e8c\u8868\", \"\u7533\u544a\u66f8B\", \"\u6240\u5f97\u63a7\u9664\", \"\u7a0e\u984d\u63a7\u9664\". Platforms: claude_code."} -{"id": "f218d5108bc94805ba43974b7441c8d5b070c892114c08b61c970d09d8de99f0", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "incorporation", "description": "\u6cd5\u4eba\u6210\u308a\uff08\u500b\u4eba\u4e8b\u696d\u4e3b\u304b\u3089\u6cd5\u4eba\u3078\u306e\u79fb\u884c\uff09\u306b\u95a2\u3059\u308b\u76f8\u8ac7\u3002\u7a0e\u984d\u6bd4\u8f03\u30b7\u30df\u30e5\u30ec\u30fc\u30b7\u30e7\u30f3\u3001 \u6cd5\u4eba\u5f62\u614b\u306e\u9078\u629e\u3001\u8a2d\u7acb\u624b\u7d9a\u304d\u3001\u5f79\u54e1\u5831\u916c\u6226\u7565\u3001\u793e\u4f1a\u4fdd\u967a\u306e\u6bd4\u8f03\u3092\u652f\u63f4\u3059\u308b\u3002 Trigger: \"\u6cd5\u4eba\u6210\u308a\", \"\u4f1a\u793e\u8a2d\u7acb\", \"\u6cd5\u4eba\u5316\", \"\u682a\u5f0f\u4f1a\u793e\u306b\u3057\u305f\u3044\", \"\u5408\u540c\u4f1a\u793e\", \"\u6cd5\u4eba\u7a0e\u3068\u6240\u5f97\u7a0e\u306e\u6bd4\u8f03\", \"\u5f79\u54e1\u5831\u916c\", \"\u6cd5\u4eba\u6210\u308a\u306e\u30bf\u30a4\u30df\u30f3\u30b0\", \"\u30de\u30a4\u30af\u30ed\u6cd5\u4eba\", \"1\u4eba\u6cd5\u4eba\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/incorporation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install incorporation"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "incorporation. \u6cd5\u4eba\u6210\u308a\uff08\u500b\u4eba\u4e8b\u696d\u4e3b\u304b\u3089\u6cd5\u4eba\u3078\u306e\u79fb\u884c\uff09\u306b\u95a2\u3059\u308b\u76f8\u8ac7\u3002\u7a0e\u984d\u6bd4\u8f03\u30b7\u30df\u30e5\u30ec\u30fc\u30b7\u30e7\u30f3\u3001 \u6cd5\u4eba\u5f62\u614b\u306e\u9078\u629e\u3001\u8a2d\u7acb\u624b\u7d9a\u304d\u3001\u5f79\u54e1\u5831\u916c\u6226\u7565\u3001\u793e\u4f1a\u4fdd\u967a\u306e\u6bd4\u8f03\u3092\u652f\u63f4\u3059\u308b\u3002 Trigger: \"\u6cd5\u4eba\u6210\u308a\", \"\u4f1a\u793e\u8a2d\u7acb\", \"\u6cd5\u4eba\u5316\", \"\u682a\u5f0f\u4f1a\u793e\u306b\u3057\u305f\u3044\", \"\u5408\u540c\u4f1a\u793e\", \"\u6cd5\u4eba\u7a0e\u3068\u6240\u5f97\u7a0e\u306e\u6bd4\u8f03\", \"\u5f79\u54e1\u5831\u916c\", \"\u6cd5\u4eba\u6210\u308a\u306e\u30bf\u30a4\u30df\u30f3\u30b0\", \"\u30de\u30a4\u30af\u30ed\u6cd5\u4eba\", \"1\u4eba\u6cd5\u4eba\" Platforms: claude_code."} -{"id": "8d073c268cc01afcb98bafc3ef515238b36faae955c373d228cebd5234a5509b", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "reading-invoice", "description": "\u8acb\u6c42\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/reading-invoice/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reading-invoice"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "reading-invoice. \u8acb\u6c42\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002 Platforms: claude_code."} -{"id": "5deafd547907f7b44c000f09accb004d59ea822f7a7222e4febf9201fa41f8c9", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "reading-payment-statement", "description": "\u652f\u6255\u8abf\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/reading-payment-statement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reading-payment-statement"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "reading-payment-statement. \u652f\u6255\u8abf\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002 Platforms: claude_code."} -{"id": "e5d856bd6929977fea99388ee89f2abdf770c8c10e68addc8829d0932d5221e6", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "reading-receipt", "description": "\u30ec\u30b7\u30fc\u30c8\u30fb\u9818\u53ce\u66f8\u30fb\u3075\u308b\u3055\u3068\u7d0d\u7a0e\u53d7\u9818\u8a3c\u660e\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/reading-receipt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reading-receipt"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "reading-receipt. \u30ec\u30b7\u30fc\u30c8\u30fb\u9818\u53ce\u66f8\u30fb\u3075\u308b\u3055\u3068\u7d0d\u7a0e\u53d7\u9818\u8a3c\u660e\u66f8\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002 Platforms: claude_code."} -{"id": "f62bdebb15a8335e91fa4f215c876643da87e5b4b3140d0215b744fb68b3d721", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "reading-withholding", "description": "\u6e90\u6cc9\u5fb4\u53ce\u7968\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/reading-withholding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reading-withholding"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "reading-withholding. \u6e90\u6cc9\u5fb4\u53ce\u7968\u306e\u753b\u50cf\u3092\u8aad\u307f\u53d6\u308a\u69cb\u9020\u5316\u30c7\u30fc\u30bf\u3092\u8fd4\u3059\u3002 \u4ed6\u306e\u30b9\u30ad\u30eb\u304b\u3089\u547c\u3073\u51fa\u3055\u308c\u308b\u307b\u304b\u3001\u76f4\u63a5\u30e6\u30fc\u30b6\u30fc\u304c\u547c\u3073\u51fa\u3059\u3053\u3068\u3082\u53ef\u80fd\u3002 Platforms: claude_code."} -{"id": "e2122618b0a04d3e849cc11dfd6a7a4d596142beec8edbe1c11221871333023f", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "settlement", "description": "This skill should be used when the user needs to perform year-end closing adjustments (\u6c7a\u7b97\u6574\u7406), review financial statements (\u6c7a\u7b97\u66f8), compute depreciation, or review their trial balance. Trigger phrases include: \"\u6c7a\u7b97\", \"\u6c7a\u7b97\u6574\u7406\", \"\u6c7a\u7b97\u66f8\u3092\u4f5c\u308b\", \"\u6e1b\u4fa1\u511f\u5374\", \"\u8a66\u7b97\u8868\", \"\u6b8b\u9ad8\u8a66\u7b97\u8868\", \"\u640d\u76ca\u8a08\u7b97\u66f8\", \"\u8cb8\u501f\u5bfe\u7167\u8868\", \"BS\", \"PL\", \"\u671f\u672b\u51e6\u7406\", \"\u68da\u5378\u3057\", \"\u672a\u6255\u8a08\u4e0a\", \"\u524d\u6255\u51e6\u7406\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/settlement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install settlement"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "settlement. This skill should be used when the user needs to perform year-end closing adjustments (\u6c7a\u7b97\u6574\u7406), review financial statements (\u6c7a\u7b97\u66f8), compute depreciation, or review their trial balance. Trigger phrases include: \"\u6c7a\u7b97\", \"\u6c7a\u7b97\u6574\u7406\", \"\u6c7a\u7b97\u66f8\u3092\u4f5c\u308b\", \"\u6e1b\u4fa1\u511f\u5374\", \"\u8a66\u7b97\u8868\", \"\u6b8b\u9ad8\u8a66\u7b97\u8868\", \"\u640d\u76ca\u8a08\u7b97\u66f8\", \"\u8cb8\u501f\u5bfe\u7167\u8868\", \"BS\", \"PL\", \"\u671f\u672b\u51e6\u7406\", \"\u68da\u5378\u3057\", \"\u672a\u6255\u8a08\u4e0a\", \"\u524d\u6255\u51e6\u7406\". Platforms: claude_code."} -{"id": "8e656f808e0aa338641d03d120873ef15d0799d6830366a395e6bd87e8e9f71e", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "setup", "description": "This skill should be used when the user wants to set up shinkoku for the first time, initialize their configuration, or update their existing settings. Trigger phrases include: \"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\", \"\u521d\u671f\u8a2d\u5b9a\", \"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u308b\", \"shinkoku\u306e\u8a2d\u5b9a\", \"config\", \"setup\", \"\u59cb\u3081\u65b9\", \"\u4f7f\u3044\u65b9\", \"\u8a2d\u5b9a\u3092\u66f4\u65b0\", \"config\u3092\u4f5c\u308a\u76f4\u3059\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install setup"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "setup. This skill should be used when the user wants to set up shinkoku for the first time, initialize their configuration, or update their existing settings. Trigger phrases include: \"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\", \"\u521d\u671f\u8a2d\u5b9a\", \"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u308b\", \"shinkoku\u306e\u8a2d\u5b9a\", \"config\", \"setup\", \"\u59cb\u3081\u65b9\", \"\u4f7f\u3044\u65b9\", \"\u8a2d\u5b9a\u3092\u66f4\u65b0\", \"config\u3092\u4f5c\u308a\u76f4\u3059\". Platforms: claude_code."} -{"id": "e03db3ad764bb3bff865dc07246fb09555831841eb3a5a2dc9a4ecad88b049a3", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "submit", "description": "This skill should be used when the user is ready to submit their tax return, needs a final review checklist, wants to know how to submit (e-Tax, mail, or in-person), or asks about common mistakes before submission. Trigger phrases include: \"\u63d0\u51fa\u6e96\u5099\", \"\u63d0\u51fa\u65b9\u6cd5\", \"e-Tax\u3067\u63d0\u51fa\", \"\u30c1\u30a7\u30c3\u30af\u30ea\u30b9\u30c8\", \"\u7533\u544a\u66f8\u306e\u78ba\u8a8d\", \"\u63d0\u51fa\u524d\u306e\u78ba\u8a8d\", \"\u90f5\u9001\u3067\u63d0\u51fa\", \"\u7a0e\u52d9\u7f72\u306b\u6301\u3063\u3066\u3044\u304f\", \"\u63d0\u51fa\u671f\u9650\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/submit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install submit"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "submit. This skill should be used when the user is ready to submit their tax return, needs a final review checklist, wants to know how to submit (e-Tax, mail, or in-person), or asks about common mistakes before submission. Trigger phrases include: \"\u63d0\u51fa\u6e96\u5099\", \"\u63d0\u51fa\u65b9\u6cd5\", \"e-Tax\u3067\u63d0\u51fa\", \"\u30c1\u30a7\u30c3\u30af\u30ea\u30b9\u30c8\", \"\u7533\u544a\u66f8\u306e\u78ba\u8a8d\", \"\u63d0\u51fa\u524d\u306e\u78ba\u8a8d\", \"\u90f5\u9001\u3067\u63d0\u51fa\", \"\u7a0e\u52d9\u7f72\u306b\u6301\u3063\u3066\u3044\u304f\", \"\u63d0\u51fa\u671f\u9650\". Platforms: claude_code."} {"id": "37d4466630154d0a69c9e2d7937015364081ce2a751bea3eb906d11fe3780e80", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "tax-ebookkeeping-context", "description": "Background context for the Electronic Bookkeeping Act (\u96fb\u5b50\u5e33\u7c3f\u4fdd\u5b58\u6cd5) in the shinkoku tax filing plugin. Contains requirements for electronic bookkeeping, scanner storage, mandatory electronic transaction data storage, and shinkoku's compliance status. This skill is not user-invocable \u2014 Claude loads it automatically when responding to electronic bookkeeping compliance questions.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/tax-ebookkeeping-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tax-ebookkeeping-context"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "tax-ebookkeeping-context. Background context for the Electronic Bookkeeping Act (\u96fb\u5b50\u5e33\u7c3f\u4fdd\u5b58\u6cd5) in the shinkoku tax filing plugin. Contains requirements for electronic bookkeeping, scanner storage, mandatory electronic transaction data storage, and shinkoku's compliance status. This skill is not user-invocable \u2014 Claude loads it automatically when responding to electronic bookkeeping compliance questions.\n Platforms: claude_code."} {"id": "616c36e8e472a8512ec83c3ba0a89d3a7f2146cbb105ab8aa6d1daa02a2ae43e", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "tax-housing-loan-context", "description": "Background context for housing loan tax credit (\u4f4f\u5b85\u30ed\u30fc\u30f3\u63a7\u9664) in the shinkoku tax filing plugin. Contains eligibility requirements, credit limits, calculation rules, and interaction with furusato-nozei for the current tax year. This skill is not user-invocable \u2014 Claude loads it automatically when responding to housing loan tax credit questions or calculations.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/tax-housing-loan-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tax-housing-loan-context"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "tax-housing-loan-context. Background context for housing loan tax credit (\u4f4f\u5b85\u30ed\u30fc\u30f3\u63a7\u9664) in the shinkoku tax filing plugin. Contains eligibility requirements, credit limits, calculation rules, and interaction with furusato-nozei for the current tax year. This skill is not user-invocable \u2014 Claude loads it automatically when responding to housing loan tax credit questions or calculations.\n Platforms: claude_code."} {"id": "3515e10ee7b4930f2f7dc1675b233660feaaf8409ba96560a5085fcfe776ab0e", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "tax-invoice-credit-context", "description": "Background context for invoice-system input tax credit rules (\u4ed5\u5165\u7a0e\u984d\u63a7\u9664) in the shinkoku tax filing plugin. Contains eligibility requirements, the 6 permanent exceptions (\u5e33\u7c3f\u306e\u307f\u4fdd\u5b58\u306e\u6052\u4e45\u7279\u4f8b), transitional measures for purchases from tax-exempt businesses, and storage requirements. This skill is not user-invocable \u2014 Claude loads it automatically when responding to input tax credit questions under the invoice system.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/tax-invoice-credit-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tax-invoice-credit-context"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "tax-invoice-credit-context. Background context for invoice-system input tax credit rules (\u4ed5\u5165\u7a0e\u984d\u63a7\u9664) in the shinkoku tax filing plugin. Contains eligibility requirements, the 6 permanent exceptions (\u5e33\u7c3f\u306e\u307f\u4fdd\u5b58\u306e\u6052\u4e45\u7279\u4f8b), transitional measures for purchases from tax-exempt businesses, and storage requirements. This skill is not user-invocable \u2014 Claude loads it automatically when responding to input tax credit questions under the invoice system.\n Platforms: claude_code."} {"id": "29255004b783bf647b841ef7265cefd81d3e16828585707c28a2a3c3d93be567", "repo_url": "https://github.com/kazukinagata/shinkoku", "name": "tax-legal-context", "description": "Background legal and regulatory context for the shinkoku tax filing plugin. Contains the standard disclaimer about the scope of tax information provided, the relationship to the Tax Accountant Act (\u7a0e\u7406\u58eb\u6cd5), and tool limitations. This skill is not user-invocable \u2014 Claude loads it automatically when generating tax-related responses that require a disclaimer.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kazukinagata/shinkoku/blob/main/skills/tax-legal-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tax-legal-context"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T00:56:44Z"}, "embedding_text": "tax-legal-context. Background legal and regulatory context for the shinkoku tax filing plugin. Contains the standard disclaimer about the scope of tax information provided, the relationship to the Tax Accountant Act (\u7a0e\u7406\u58eb\u6cd5), and tool limitations. This skill is not user-invocable \u2014 Claude loads it automatically when generating tax-related responses that require a disclaimer.\n Platforms: claude_code."} {"id": "745121d54a8f2964354fc60d64b7d35ff0d1fb877531c5bc305b443bafd4dde9", "repo_url": "https://github.com/marketingjuliancongdanh79-pixel/skill-generator", "name": "skill-creator-ultra", "description": "T\u1ea1o AI Skill m\u1edbi t\u1eeb \u00fd t\u01b0\u1edfng ho\u1eb7c quy tr\u00ecnh c\u00f4ng vi\u1ec7c. K\u1ebft h\u1ee3p ph\u1ecfng v\u1ea5n\nth\u00f4ng minh, pattern detection, v\u00e0 quantitative evaluation \u0111\u1ec3 t\u1ea1o skill\nch\u1ea5t l\u01b0\u1ee3ng production. D\u00f9ng khi user n\u00f3i \"t\u1ea1o skill\", \"bi\u1ebfn quy tr\u00ecnh\nth\u00e0nh skill\", \"make a new skill\", \"t\u1ef1 \u0111\u1ed9ng h\u00f3a c\u00f4ng vi\u1ec7c n\u00e0y\", ho\u1eb7c m\u00f4\nt\u1ea3 quy tr\u00ecnh l\u1eb7p l\u1ea1i m\u00e0 h\u1ecd mu\u1ed1n AI t\u1ef1 l\u00e0m. C\u0169ng d\u00f9ng khi user mu\u1ed1n\nc\u1ea3i thi\u1ec7n, test, ho\u1eb7c optimize skill hi\u1ec7n c\u00f3.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/marketingjuliancongdanh79-pixel/skill-generator/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator-ultra"}, "quality": {"stars": 289, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T12:45:26Z"}, "embedding_text": "skill-creator-ultra. T\u1ea1o AI Skill m\u1edbi t\u1eeb \u00fd t\u01b0\u1edfng ho\u1eb7c quy tr\u00ecnh c\u00f4ng vi\u1ec7c. K\u1ebft h\u1ee3p ph\u1ecfng v\u1ea5n\nth\u00f4ng minh, pattern detection, v\u00e0 quantitative evaluation \u0111\u1ec3 t\u1ea1o skill\nch\u1ea5t l\u01b0\u1ee3ng production. D\u00f9ng khi user n\u00f3i \"t\u1ea1o skill\", \"bi\u1ebfn quy tr\u00ecnh\nth\u00e0nh skill\", \"make a new skill\", \"t\u1ef1 \u0111\u1ed9ng h\u00f3a c\u00f4ng vi\u1ec7c n\u00e0y\", ho\u1eb7c m\u00f4\nt\u1ea3 quy tr\u00ecnh l\u1eb7p l\u1ea1i m\u00e0 h\u1ecd mu\u1ed1n AI t\u1ef1 l\u00e0m. C\u0169ng d\u00f9ng khi user mu\u1ed1n\nc\u1ea3i thi\u1ec7n, test, ho\u1eb7c optimize skill hi\u1ec7n c\u00f3. Platforms: claude_code."} -{"id": "d5fab512dfa8cf0de67a11875c12d43e3fab23585714c0de3c88cd9cdbaa66bf", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "Command Development", "description": "This skill should be used when the user asks to \"create a slash command\", \"add a command\", \"write a custom command\", \"define command arguments\", \"use command frontmatter\", \"organize commands\", \"create command with file references\", \"interactive command\", \"use AskUserQuestion in command\", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/.agents/skills/Command Development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Command Development"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "Command Development. This skill should be used when the user asks to \"create a slash command\", \"add a command\", \"write a custom command\", \"define command arguments\", \"use command frontmatter\", \"organize commands\", \"create command with file references\", \"interactive command\", \"use AskUserQuestion in command\", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} {"id": "75c0f62cbc40ee044035bbaa5833cc425eb8b3283ccc3c62d15dd1debb9239e2", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "Hook Development", "description": "This skill should be used when the user asks to \"create a hook\", \"add a PreToolUse/PostToolUse/Stop hook\", \"validate tool use\", \"implement prompt-based hooks\", \"use ${CLAUDE_PLUGIN_ROOT}\", \"set up event-driven automation\", \"block dangerous commands\", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/.agents/skills/Hook Development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Hook Development"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "Hook Development. This skill should be used when the user asks to \"create a hook\", \"add a PreToolUse/PostToolUse/Stop hook\", \"validate tool use\", \"implement prompt-based hooks\", \"use ${CLAUDE_PLUGIN_ROOT}\", \"set up event-driven automation\", \"block dangerous commands\", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} {"id": "3be6e1b8b06618a4fd985ab7fc6030f87cf84cd1acb903da9af9dd202bc41ea6", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "MCP Integration", "description": "This skill should be used when the user asks to \"add MCP server\", \"integrate MCP\", \"configure MCP in plugin\", \"use .mcp.json\", \"set up Model Context Protocol\", \"connect external service\", mentions \"${CLAUDE_PLUGIN_ROOT} with MCP\", or discusses MCP server types (SSE, stdio, HTTP, WebSocket). Provides comprehensive guidance for integrating Model Context Protocol servers into Claude Code plugins for external tool and service integration.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/.agents/skills/MCP Integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install MCP Integration"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "MCP Integration. This skill should be used when the user asks to \"add MCP server\", \"integrate MCP\", \"configure MCP in plugin\", \"use .mcp.json\", \"set up Model Context Protocol\", \"connect external service\", mentions \"${CLAUDE_PLUGIN_ROOT} with MCP\", or discusses MCP server types (SSE, stdio, HTTP, WebSocket). Provides comprehensive guidance for integrating Model Context Protocol servers into Claude Code plugins for external tool and service integration. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} {"id": "0145299bf7e532b7b91da1d387f552da55f92eafbfcf0c6ec9e62b2231519936", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "Plugin Settings", "description": "This skill should be used when the user asks about \"plugin settings\", \"store plugin configuration\", \"user-configurable plugin\", \".local.md files\", \"plugin state files\", \"read YAML frontmatter\", \"per-project plugin settings\", or wants to make plugin behavior configurable. Documents the .claude/plugin-name.local.md pattern for storing plugin-specific configuration with YAML frontmatter and markdown content.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/.agents/skills/Plugin Settings/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Plugin Settings"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "Plugin Settings. This skill should be used when the user asks about \"plugin settings\", \"store plugin configuration\", \"user-configurable plugin\", \".local.md files\", \"plugin state files\", \"read YAML frontmatter\", \"per-project plugin settings\", or wants to make plugin behavior configurable. Documents the .claude/plugin-name.local.md pattern for storing plugin-specific configuration with YAML frontmatter and markdown content. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} @@ -14484,13 +19187,9 @@ {"id": "23330bfcccde0cc5426c49804610e1eb9a07296548ce1d45772fe0fbcc19193e", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "ralph-specum", "description": "Use only when the user explicitly invokes `$ralph-specum`, requests Ralph Specum in Codex, asks Ralph Specum to handle a named phase, or explicitly requests autonomous or quick mode or continuation without pauses.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/platforms/codex/skills/ralph-specum/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ralph-specum"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "ralph-specum. Use only when the user explicitly invokes `$ralph-specum`, requests Ralph Specum in Codex, asks Ralph Specum to handle a named phase, or explicitly requests autonomous or quick mode or continuation without pauses. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} {"id": "d05534a0b787a2bf55511853cfb600e0a859e0e85184145375d41ec5219a3bf8", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "communication-style", "description": "Output rules for all agents - concise, scannable, actionable. Based on Matt Pocock's planning principles.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-speckit/skills/communication-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install communication-style"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "communication-style. Output rules for all agents - concise, scannable, actionable. Based on Matt Pocock's planning principles. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} {"id": "b7ff935de7d9a13238e9f88d6a804505f2c7582920b1e3b7338f6dc7e08db0eb", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "delegation-principle", "description": "Core principle that the main agent is a coordinator, not an implementer. All work must be delegated to subagents.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-speckit/skills/delegation-principle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install delegation-principle"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "delegation-principle. Core principle that the main agent is a coordinator, not an implementer. All work must be delegated to subagents. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} -{"id": "1aed6070e32461a33ffd8ab554490a31ba7cf7b5edeed7cf3a78e0aa6dbaf6d7", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "smart-ralph", "description": "Core Smart Ralph skill defining common arguments, execution modes, and shared behaviors across all Ralph plugins.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-speckit/skills/smart-ralph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install smart-ralph"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "smart-ralph. Core Smart Ralph skill defining common arguments, execution modes, and shared behaviors across all Ralph plugins. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} -{"id": "a4907807c5df474765d6bb4b06465bf3270699058ac25086f31645def25520ae", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "speckit-workflow", "description": "Comprehensive understanding of the spec-kit methodology. Constitution-driven feature development with specify, plan, tasks, and implement phases.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-speckit/skills/speckit-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install speckit-workflow"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "speckit-workflow. Comprehensive understanding of the spec-kit methodology. Constitution-driven feature development with specify, plan, tasks, and implement phases. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} {"id": "9f5ee21777329bf5cd6cd7050e5f73306cb435c584e35c4837c2456ad688e473", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "communication-style", "description": "This skill should be used when generating spec artifacts (research.md, requirements.md, design.md, tasks.md), formatting agent output, structuring phase results, or when any Ralph agent needs guidance on concise, scannable output formatting. Applies to all Ralph spec phase agents.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum/skills/communication-style/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install communication-style"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "communication-style. This skill should be used when generating spec artifacts (research.md, requirements.md, design.md, tasks.md), formatting agent output, structuring phase results, or when any Ralph agent needs guidance on concise, scannable output formatting. Applies to all Ralph spec phase agents. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} {"id": "d8ffa3addec06c13b4db91aa5f1bfd786a88b6c8459cb2a9f130003947fa4a54", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "interview-framework", "description": "This skill should be used when running an interactive interview before a spec phase, gathering requirements through dialogue, asking the user clarifying questions before delegating to a subagent, or when any Ralph phase command (research, requirements, design, tasks) needs adaptive brainstorming dialogue. Covers the 3-phase algorithm (Understand, Propose Approaches, Confirm and Store).", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum/skills/interview-framework/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install interview-framework"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "interview-framework. This skill should be used when running an interactive interview before a spec phase, gathering requirements through dialogue, asking the user clarifying questions before delegating to a subagent, or when any Ralph phase command (research, requirements, design, tasks) needs adaptive brainstorming dialogue. Covers the 3-phase algorithm (Understand, Propose Approaches, Confirm and Store). Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} -{"id": "229a7d9c5b242eab6c4cacf9876766c3bad006b6e470ec583d21f5ad30456e40", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "reality-verification", "description": "This skill should be used when the user asks to \"verify a fix\", \"reproduce failure\", \"diagnose issue\", \"check BEFORE/AFTER state\", \"VF task\", \"reality check\", \"check test quality\", \"mock-only tests\", or needs guidance on verifying fixes by reproducing failures before and after implementation, or detecting mock-heavy test anti-patterns.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum/skills/reality-verification/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reality-verification"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "reality-verification. This skill should be used when the user asks to \"verify a fix\", \"reproduce failure\", \"diagnose issue\", \"check BEFORE/AFTER state\", \"VF task\", \"reality check\", \"check test quality\", \"mock-only tests\", or needs guidance on verifying fixes by reproducing failures before and after implementation, or detecting mock-heavy test anti-patterns. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} {"id": "534ab7d83412ec418740016bb4760bc47b2784a055d11a24d9eb9711227357e9", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "smart-ralph", "description": "This skill should be used when the user asks about \"ralph arguments\", \"quick mode\", \"commit spec\", \"max iterations\", \"ralph state file\", \"execution modes\", \"ralph loop\", \"coordinator behavior\", \"delegate to subagent\", or needs guidance on Ralph plugin arguments, state management, delegation patterns, or execution loop behavior. Core behavioral skill for all Ralph Specum operations.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum/skills/smart-ralph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install smart-ralph"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "smart-ralph. This skill should be used when the user asks about \"ralph arguments\", \"quick mode\", \"commit spec\", \"max iterations\", \"ralph state file\", \"execution modes\", \"ralph loop\", \"coordinator behavior\", \"delegate to subagent\", or needs guidance on Ralph plugin arguments, state management, delegation patterns, or execution loop behavior. Core behavioral skill for all Ralph Specum operations. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} -{"id": "a6acd8be3b3a29ad80eebae04b6a84a5e553f40a5e37cd673c6fa6da34825184", "repo_url": "https://github.com/tzachbon/smart-ralph", "name": "spec-workflow", "description": "This skill should be used when the user asks to \"build a feature\", \"create a spec\", \"start spec-driven development\", \"run research phase\", \"generate requirements\", \"create design\", \"plan tasks\", \"implement spec\", \"check spec status\", \"triage a feature\", \"create an epic\", \"decompose a large feature\", or needs guidance on spec-driven development workflow, phase ordering, or epic orchestration.", "source": ["marketplace", "topic"], "categories": ["agentic-coding", "ai", "ai-agents", "autonomous-coding", "claude", "claude-code", "claude-code-plugin", "claude-code-skills", "claude-skills", "codex-skills", "coding-agent", "developer-tools", "llm", "productivity", "ralph-loop", "ralph-wiggum", "spec-driven-development", "workflow-automation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tzachbon/smart-ralph/blob/main/plugins/ralph-specum/skills/spec-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install spec-workflow"}, "quality": {"stars": 254, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T19:35:13Z"}, "embedding_text": "spec-workflow. This skill should be used when the user asks to \"build a feature\", \"create a spec\", \"start spec-driven development\", \"run research phase\", \"generate requirements\", \"create design\", \"plan tasks\", \"implement spec\", \"check spec status\", \"triage a feature\", \"create an epic\", \"decompose a large feature\", or needs guidance on spec-driven development workflow, phase ordering, or epic orchestration. Categories: agentic-coding, ai, ai-agents, autonomous-coding, claude, claude-code, claude-code-plugin, claude-code-skills, claude-skills, codex-skills, coding-agent, developer-tools, llm, productivity, ralph-loop, ralph-wiggum, spec-driven-development, workflow-automation. Platforms: claude_code."} {"id": "100178b710a8fef4c90152e241f26222cf2679cbdf1e55777713e296d4ba6e1e", "repo_url": "https://github.com/wondelai/skills", "name": "blue-ocean-strategy", "description": "Create uncontested market space using value innovation instead of competing head-to-head. Use when the user mentions \"blue ocean\", \"red ocean\", \"strategy canvas\", \"ERRC framework\", \"value innovation\", or \"non-customers\". Covers the Four Actions Framework, buyer utility map, and value-cost trade-offs. For tech adoption strategy, see crossing-the-chasm. For product positioning, see obviously-awesome.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/blue-ocean-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blue-ocean-strategy"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "blue-ocean-strategy. Create uncontested market space using value innovation instead of competing head-to-head. Use when the user mentions \"blue ocean\", \"red ocean\", \"strategy canvas\", \"ERRC framework\", \"value innovation\", or \"non-customers\". Covers the Four Actions Framework, buyer utility map, and value-cost trade-offs. For tech adoption strategy, see crossing-the-chasm. For product positioning, see obviously-awesome. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "bf91d3a4501722f8c8d2a314a472df82e54772fb555dead2e55eda2c15480ba4", "repo_url": "https://github.com/wondelai/skills", "name": "clean-architecture", "description": "Structure software around the Dependency Rule: source code dependencies point inward from frameworks to use cases to entities. Use when the user mentions \"architecture layers\", \"dependency rule\", \"ports and adapters\", \"hexagonal architecture\", or \"use case boundary\". Covers component principles, boundaries, and SOLID. For code quality, see clean-code. For domain modeling, see domain-driven-design.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/clean-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install clean-architecture"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "clean-architecture. Structure software around the Dependency Rule: source code dependencies point inward from frameworks to use cases to entities. Use when the user mentions \"architecture layers\", \"dependency rule\", \"ports and adapters\", \"hexagonal architecture\", or \"use case boundary\". Covers component principles, boundaries, and SOLID. For code quality, see clean-code. For domain modeling, see domain-driven-design. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "04cdd89a62203cf13a12d5efe1b9842ed43a54c6c5cca106f55d871dcee3608b", "repo_url": "https://github.com/wondelai/skills", "name": "clean-code", "description": "Write readable, maintainable code through disciplined naming, small functions, and clean error handling. Use when the user mentions \"code review\", \"naming conventions\", \"function too long\", \"code smells\", or \"readable code\". Covers SRP, comment discipline, formatting, and unit testing. For refactoring techniques, see refactoring-patterns. For architecture, see clean-architecture.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/clean-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install clean-code"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "clean-code. Write readable, maintainable code through disciplined naming, small functions, and clean error handling. Use when the user mentions \"code review\", \"naming conventions\", \"function too long\", \"code smells\", or \"readable code\". Covers SRP, comment discipline, formatting, and unit testing. For refactoring techniques, see refactoring-patterns. For architecture, see clean-architecture. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} @@ -14508,7 +19207,6 @@ {"id": "92a5a79551c20e13872f8c2449e359678e472c847dc1bc4ba170ef09fe12c795", "repo_url": "https://github.com/wondelai/skills", "name": "improve-retention", "description": "Diagnose and fix retention problems using behavior design (B=MAP). Use when the user mentions \"users drop off\", \"activation rate\", \"onboarding friction\", \"retention metrics\", or \"why users don't complete\". Covers the Ability Chain, prompt design, and tiny behaviors that compound. For habit loops and variable rewards, see hooked-ux. For intrinsic motivation, see drive-motivation.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/improve-retention/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install improve-retention"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "improve-retention. Diagnose and fix retention problems using behavior design (B=MAP). Use when the user mentions \"users drop off\", \"activation rate\", \"onboarding friction\", \"retention metrics\", or \"why users don't complete\". Covers the Ability Chain, prompt design, and tiny behaviors that compound. For habit loops and variable rewards, see hooked-ux. For intrinsic motivation, see drive-motivation. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "7c4b2730821710b222ffd591a6d2bc4e2382b4bc3328739096486a4c55cab9c8", "repo_url": "https://github.com/wondelai/skills", "name": "influence-psychology", "description": "Apply the six principles of ethical persuasion (reciprocity, commitment, social proof, authority, liking, scarcity) to product design, copy, and sales. Use when the user mentions \"social proof\", \"persuasive copy\", \"why users don't convert\", or \"ethical persuasion\". For deal negotiation tactics, see negotiation. For viral word-of-mouth, see contagious.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/influence-psychology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install influence-psychology"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "influence-psychology. Apply the six principles of ethical persuasion (reciprocity, commitment, social proof, authority, liking, scarcity) to product design, copy, and sales. Use when the user mentions \"social proof\", \"persuasive copy\", \"why users don't convert\", or \"ethical persuasion\". For deal negotiation tactics, see negotiation. For viral word-of-mouth, see contagious. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "cfcf993fbcea019316f9cf0c5a536493ab41e4c33630f0b2f78914ca4e805c7a", "repo_url": "https://github.com/wondelai/skills", "name": "inspired-product", "description": "Build empowered product teams using discovery and delivery dual-track. Use when the user mentions \"product discovery\", \"empowered teams\", \"feature factory\", \"product roadmap\", \"opportunity assessment\", or \"product vision\". Covers product discovery techniques, team structure, and continuous value delivery. For customer interviews, see mom-test. For ongoing discovery systems, see continuous-discovery.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/inspired-product/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install inspired-product"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "inspired-product. Build empowered product teams using discovery and delivery dual-track. Use when the user mentions \"product discovery\", \"empowered teams\", \"feature factory\", \"product roadmap\", \"opportunity assessment\", or \"product vision\". Covers product discovery techniques, team structure, and continuous value delivery. For customer interviews, see mom-test. For ongoing discovery systems, see continuous-discovery. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} -{"id": "62eae0296c8637b451feeedb916a904cf0235c2ff0ac9163ba818384f5f68cb7", "repo_url": "https://github.com/wondelai/skills", "name": "jobs-to-be-done", "description": "Discover what customers truly need by analyzing the \"job\" they hire your product to do. Use when the user mentions \"customer discovery\", \"why customers churn\", \"what job does this solve\", \"competing against luck\", or \"product-market fit\". Covers JTBD interviews, competition analysis, and jobs-oriented roadmaps. For product positioning, see obviously-awesome. For rapid validation, see design-sprint.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/jobs-to-be-done/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jobs-to-be-done"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "jobs-to-be-done. Discover what customers truly need by analyzing the \"job\" they hire your product to do. Use when the user mentions \"customer discovery\", \"why customers churn\", \"what job does this solve\", \"competing against luck\", or \"product-market fit\". Covers JTBD interviews, competition analysis, and jobs-oriented roadmaps. For product positioning, see obviously-awesome. For rapid validation, see design-sprint. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "c8b0233a78f833f359fbcfd1b2cf215ec15538160d686f06060b3ea05f8c48a1", "repo_url": "https://github.com/wondelai/skills", "name": "lean-startup", "description": "Design MVPs, validated learning experiments, and pivot-or-persevere decisions using Build-Measure-Learn. Use when the user mentions \"MVP scope\", \"validated learning\", \"pivot or persevere\", \"vanity metrics\", or \"test assumptions\". Covers innovation accounting and actionable metrics. For 5-day prototype testing, see design-sprint. For customer motivation analysis, see jobs-to-be-done.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/lean-startup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install lean-startup"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "lean-startup. Design MVPs, validated learning experiments, and pivot-or-persevere decisions using Build-Measure-Learn. Use when the user mentions \"MVP scope\", \"validated learning\", \"pivot or persevere\", \"vanity metrics\", or \"test assumptions\". Covers innovation accounting and actionable metrics. For 5-day prototype testing, see design-sprint. For customer motivation analysis, see jobs-to-be-done. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "4d7d914e541029d07fdfa8f94768a28cb2d9db0f63ad32ce82ef36a7dfe40c4a", "repo_url": "https://github.com/wondelai/skills", "name": "lean-ux", "description": "Apply lean thinking to UX: hypothesis-driven design, collaborative sketching, and rapid experiments instead of heavy deliverables. Use when the user mentions \"Lean UX\", \"design hypothesis\", \"UX experiment\", \"collaborative design\", or \"outcome over output\". Covers hypothesis statements, MVPs for UX, and cross-functional collaboration. For Build-Measure-Learn, see lean-startup. For usability audits, see ux-heuristics.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/lean-ux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install lean-ux"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "lean-ux. Apply lean thinking to UX: hypothesis-driven design, collaborative sketching, and rapid experiments instead of heavy deliverables. Use when the user mentions \"Lean UX\", \"design hypothesis\", \"UX experiment\", \"collaborative design\", or \"outcome over output\". Covers hypothesis statements, MVPs for UX, and cross-functional collaboration. For Build-Measure-Learn, see lean-startup. For usability audits, see ux-heuristics. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "044f6eb354e32d1065c7f0895375af337dc1bd6b754c3bfd0accd826dee2fd95", "repo_url": "https://github.com/wondelai/skills", "name": "made-to-stick", "description": "Craft messages that are understood, remembered, and drive action using the SUCCESs checklist (Simple, Unexpected, Concrete, Credible, Emotional, Stories). Use when the user mentions \"make it memorable\", \"sticky messaging\", \"tagline\", \"value proposition\", or \"why the message isn't landing\". For narrative brand frameworks, see storybrand-messaging. For viral sharing, see contagious.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/made-to-stick/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install made-to-stick"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "made-to-stick. Craft messages that are understood, remembered, and drive action using the SUCCESs checklist (Simple, Unexpected, Concrete, Credible, Emotional, Stories). Use when the user mentions \"make it memorable\", \"sticky messaging\", \"tagline\", \"value proposition\", or \"why the message isn't landing\". For narrative brand frameworks, see storybrand-messaging. For viral sharing, see contagious. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} @@ -14520,11 +19218,8 @@ {"id": "b7daadb3ae1cb8dc89ec245d1602bddf93f7e96d3a63e6abe738e68d7fdf322f", "repo_url": "https://github.com/wondelai/skills", "name": "pragmatic-programmer", "description": "Apply meta-principles of software craftsmanship: DRY, orthogonality, tracer bullets, and design by contract. Use when the user mentions \"best practices\", \"pragmatic approach\", \"broken windows\", \"tracer bullet\", or \"software craftsmanship\". Covers estimation, domain languages, and reversibility. For code-level quality, see clean-code. For refactoring techniques, see refactoring-patterns.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/pragmatic-programmer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pragmatic-programmer"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "pragmatic-programmer. Apply meta-principles of software craftsmanship: DRY, orthogonality, tracer bullets, and design by contract. Use when the user mentions \"best practices\", \"pragmatic approach\", \"broken windows\", \"tracer bullet\", or \"software craftsmanship\". Covers estimation, domain languages, and reversibility. For code-level quality, see clean-code. For refactoring techniques, see refactoring-patterns. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "0a8055a9af8c271e056d43c5b0f78eb6e104709e17aad54ffbdfae3bda0b647b", "repo_url": "https://github.com/wondelai/skills", "name": "predictable-revenue", "description": "Build a scalable outbound B2B sales process with specialized roles (SDR, AE, CSM). Use when the user mentions \"outbound sales\", \"Cold Calling 2.0\", \"prospecting emails\", \"sales pipeline\", \"SDR process\", or \"B2B SaaS sales\". Covers lead generation, qualification frameworks, and separating prospecting from closing. For offer design, see hundred-million-offers. For persuasion science, see influence-psychology.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/predictable-revenue/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install predictable-revenue"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "predictable-revenue. Build a scalable outbound B2B sales process with specialized roles (SDR, AE, CSM). Use when the user mentions \"outbound sales\", \"Cold Calling 2.0\", \"prospecting emails\", \"sales pipeline\", \"SDR process\", or \"B2B SaaS sales\". Covers lead generation, qualification frameworks, and separating prospecting from closing. For offer design, see hundred-million-offers. For persuasion science, see influence-psychology. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "96a39c05cce8d57f9d2f281245c2712e8405aee9faed6a321b9229aba72068ce", "repo_url": "https://github.com/wondelai/skills", "name": "refactoring-patterns", "description": "Apply named refactoring transformations to improve code structure without changing behavior. Use when the user mentions \"refactor this\", \"code smells\", \"extract method\", \"replace conditional\", or \"technical debt\". Covers smell-driven refactoring, safe transformation sequences, and testing guards. For code quality foundations, see clean-code. For managing complexity, see software-design-philosophy.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/refactoring-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refactoring-patterns"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "refactoring-patterns. Apply named refactoring transformations to improve code structure without changing behavior. Use when the user mentions \"refactor this\", \"code smells\", \"extract method\", \"replace conditional\", or \"technical debt\". Covers smell-driven refactoring, safe transformation sequences, and testing guards. For code quality foundations, see clean-code. For managing complexity, see software-design-philosophy. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} -{"id": "63c6a1fc6eaa3e0a16bddd98bf09dea06650f8bc3997dd88b515a0f9ea91d670", "repo_url": "https://github.com/wondelai/skills", "name": "refactoring-ui", "description": "Audit and fix visual hierarchy, spacing, color, and depth in web UIs. Use when the user mentions \"my UI looks off\", \"fix the design\", \"Tailwind styling\", \"color palette\", or \"visual hierarchy\". Covers grayscale-first workflow, constrained design scales, shadows, and component styling. For typeface selection, see web-typography. For usability audits, see ux-heuristics.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/refactoring-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refactoring-ui"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "refactoring-ui. Audit and fix visual hierarchy, spacing, color, and depth in web UIs. Use when the user mentions \"my UI looks off\", \"fix the design\", \"Tailwind styling\", \"color palette\", or \"visual hierarchy\". Covers grayscale-first workflow, constrained design scales, shadows, and component styling. For typeface selection, see web-typography. For usability audits, see ux-heuristics. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "9863ba0ef78f6f2417b1b6175d542bd6a7c3e4d02a41548047d6b5e25e8e2c07", "repo_url": "https://github.com/wondelai/skills", "name": "release-it", "description": "Build production-ready systems with stability patterns: circuit breakers, bulkheads, timeouts, and retry logic. Use when the user mentions \"production outage\", \"circuit breaker\", \"timeout strategy\", \"deployment pipeline\", or \"chaos engineering\". Covers capacity planning, health checks, and anti-fragility patterns. For data systems, see ddia-systems. For system architecture, see system-design.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/release-it/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install release-it"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "release-it. Build production-ready systems with stability patterns: circuit breakers, bulkheads, timeouts, and retry logic. Use when the user mentions \"production outage\", \"circuit breaker\", \"timeout strategy\", \"deployment pipeline\", or \"chaos engineering\". Covers capacity planning, health checks, and anti-fragility patterns. For data systems, see ddia-systems. For system architecture, see system-design. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} -{"id": "9f25417b1fd9304b2301a2d5aa49346727f9e9ad882c92fae7d99f37648e2c35", "repo_url": "https://github.com/wondelai/skills", "name": "scorecard-marketing", "description": "Build quiz and assessment funnels that generate qualified leads at 30-50% conversion. Use when the user mentions \"lead magnet\", \"quiz funnel\", \"assessment tool\", \"lead generation\", or \"score-based segmentation\". Covers question design, dynamic results by tier, and automated follow-up sequences. For landing page conversion, see cro-methodology. For full marketing plans, see one-page-marketing.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/scorecard-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scorecard-marketing"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "scorecard-marketing. Build quiz and assessment funnels that generate qualified leads at 30-50% conversion. Use when the user mentions \"lead magnet\", \"quiz funnel\", \"assessment tool\", \"lead generation\", or \"score-based segmentation\". Covers question design, dynamic results by tier, and automated follow-up sequences. For landing page conversion, see cro-methodology. For full marketing plans, see one-page-marketing. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "d1745bd095999efc55d2af24b17cf3280c30a02df39bb1a85804e8d8f7e3a9a5", "repo_url": "https://github.com/wondelai/skills", "name": "software-design-philosophy", "description": "Manage software complexity through deep modules, information hiding, and strategic programming. Use when the user mentions \"module design\", \"API too complex\", \"shallow class\", \"complexity budget\", or \"strategic vs tactical\". Covers deep vs shallow modules, red flags for complexity, and comments as design documentation. For code quality, see clean-code. For boundaries, see clean-architecture.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/software-design-philosophy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install software-design-philosophy"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "software-design-philosophy. Manage software complexity through deep modules, information hiding, and strategic programming. Use when the user mentions \"module design\", \"API too complex\", \"shallow class\", \"complexity budget\", or \"strategic vs tactical\". Covers deep vs shallow modules, red flags for complexity, and comments as design documentation. For code quality, see clean-code. For boundaries, see clean-architecture. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} -{"id": "bad4ef4c299d99442f8a4aebe9aea224ac192ab26261c6a38307b56d385cb03d", "repo_url": "https://github.com/wondelai/skills", "name": "storybrand-messaging", "description": "Clarify brand messaging using narrative structure that positions the customer as hero. Use when the user mentions \"brand message\", \"website copy\", \"elevator pitch\", \"one-liner\", \"messaging isn't resonating\", or \"brand script\". Covers landing page copy, marketing collateral, and consistent communication. For memorable messaging, see made-to-stick. For product positioning, see obviously-awesome.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/storybrand-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install storybrand-messaging"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "storybrand-messaging. Clarify brand messaging using narrative structure that positions the customer as hero. Use when the user mentions \"brand message\", \"website copy\", \"elevator pitch\", \"one-liner\", \"messaging isn't resonating\", or \"brand script\". Covers landing page copy, marketing collateral, and consistent communication. For memorable messaging, see made-to-stick. For product positioning, see obviously-awesome. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "be4c4bbec6fdf3e2893f56f34d09924c2777b4553c8b2528be2dcf8ee237c483", "repo_url": "https://github.com/wondelai/skills", "name": "system-design", "description": "Design scalable distributed systems using structured approaches for load balancing, caching, database scaling, and message queues. Use when the user mentions \"system design\", \"scale this\", \"high availability\", \"rate limiter\", or \"design a URL shortener\". Covers common system designs and back-of-the-envelope estimation. For data fundamentals, see ddia-systems. For resilience, see release-it.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/system-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install system-design"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "system-design. Design scalable distributed systems using structured approaches for load balancing, caching, database scaling, and message queues. Use when the user mentions \"system design\", \"scale this\", \"high availability\", \"rate limiter\", or \"design a URL shortener\". Covers common system designs and back-of-the-envelope estimation. For data fundamentals, see ddia-systems. For resilience, see release-it. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "d0a3d873cfbcfbc0b851d545bd837df0bb4b75ab6b9fd21db6ac632fc384a40a", "repo_url": "https://github.com/wondelai/skills", "name": "top-design", "description": "Create award-winning, immersive web experiences at the level of Awwwards-featured agencies. Use when the user mentions \"premium website\", \"portfolio site\", \"scroll animations\", \"Awwwards quality\", or \"brand experience\". Covers dramatic typography, purposeful motion, scroll-based composition, and performance-optimized animation. For foundational UI, see refactoring-ui. For type selection, see web-typography.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/top-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install top-design"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "top-design. Create award-winning, immersive web experiences at the level of Awwwards-featured agencies. Use when the user mentions \"premium website\", \"portfolio site\", \"scroll animations\", \"Awwwards quality\", or \"brand experience\". Covers dramatic typography, purposeful motion, scroll-based composition, and performance-optimized animation. For foundational UI, see refactoring-ui. For type selection, see web-typography. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} {"id": "e78b8ebff1bd3061f2a6e76924c71e2b4120936755cf82944ef6211127462815", "repo_url": "https://github.com/wondelai/skills", "name": "traction-eos", "description": "Implement the Entrepreneurial Operating System (EOS) to align vision and execution across a company. Use when the user mentions \"EOS\", \"V/TO\", \"quarterly rocks\", \"Level 10 meetings\", \"accountability chart\", or \"IDS process\". Covers the six EOS components: Vision, People, Data, Issues, Process, Traction. For team motivation design, see drive-motivation. For lean experimentation, see lean-startup.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-code-marketplace", "claude-code-plugin", "claude-code-skills", "claude-plugins", "claude-skills", "skill-md", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wondelai/skills/blob/main/traction-eos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install traction-eos"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T18:36:07Z"}, "embedding_text": "traction-eos. Implement the Entrepreneurial Operating System (EOS) to align vision and execution across a company. Use when the user mentions \"EOS\", \"V/TO\", \"quarterly rocks\", \"Level 10 meetings\", \"accountability chart\", or \"IDS process\". Covers the six EOS components: Vision, People, Data, Issues, Process, Traction. For team motivation design, see drive-motivation. For lean experimentation, see lean-startup. Categories: agent-skills, ai-skills, claude-code, claude-code-marketplace, claude-code-plugin, claude-code-skills, claude-plugins, claude-skills, skill-md, skillsmp. Platforms: claude_code."} @@ -14708,15 +19403,8 @@ {"id": "c6755f8d748388b12ed73ae4de5fdcd5ee316fd72f2a7bca697a70518c92e1f7", "repo_url": "https://github.com/giuseppe-trisciuoglio/developer-kit", "name": "turborepo-monorepo", "description": "Provides comprehensive Turborepo monorepo management guidance for TypeScript/JavaScript projects. Use when creating Turborepo workspaces, configuring turbo.json tasks, setting up Next.js/NestJS apps, managing test pipelines (Vitest/Jest), configuring CI/CD, implementing remote caching, or optimizing build performance in monorepos", "source": ["marketplace", "topic"], "categories": ["agentic-code", "agentic-coding", "agents", "aws", "aws-cloudformation", "claude-code", "claude-code-skill", "claude-code-skills", "claude-skills", "claude-skills-creator", "java", "langchain4j", "php", "python", "skills", "spring-boot", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/giuseppe-trisciuoglio/developer-kit/blob/main/plugins/developer-kit-typescript/skills/turborepo-monorepo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install turborepo-monorepo"}, "quality": {"stars": 164, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:19:35Z"}, "embedding_text": "turborepo-monorepo. Provides comprehensive Turborepo monorepo management guidance for TypeScript/JavaScript projects. Use when creating Turborepo workspaces, configuring turbo.json tasks, setting up Next.js/NestJS apps, managing test pipelines (Vitest/Jest), configuring CI/CD, implementing remote caching, or optimizing build performance in monorepos Categories: agentic-code, agentic-coding, agents, aws, aws-cloudformation, claude-code, claude-code-skill, claude-code-skills, claude-skills, claude-skills-creator, java, langchain4j, php, python, skills, spring-boot, typescript. Platforms: claude_code."} {"id": "5dd1b563e25a754edef3fd530e118e7f5ea7443e5f6fa4d69c26d25db57ee56d", "repo_url": "https://github.com/giuseppe-trisciuoglio/developer-kit", "name": "typescript-security-review", "description": "Provides comprehensive security review capability for TypeScript and Node.js applications, validates code against XSS, injection, CSRF, JWT/OAuth2 flaws, dependency CVEs, and secrets exposure. Use when performing security audits, before deployment, reviewing authentication/authorization implementations, or ensuring OWASP compliance for Express, NestJS, and Next.js. Triggers on \"security review\", \"check for security issues\", \"TypeScript security audit\".", "source": ["marketplace", "topic"], "categories": ["agentic-code", "agentic-coding", "agents", "aws", "aws-cloudformation", "claude-code", "claude-code-skill", "claude-code-skills", "claude-skills", "claude-skills-creator", "java", "langchain4j", "php", "python", "skills", "spring-boot", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/giuseppe-trisciuoglio/developer-kit/blob/main/plugins/developer-kit-typescript/skills/typescript-security-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install typescript-security-review"}, "quality": {"stars": 164, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:19:35Z"}, "embedding_text": "typescript-security-review. Provides comprehensive security review capability for TypeScript and Node.js applications, validates code against XSS, injection, CSRF, JWT/OAuth2 flaws, dependency CVEs, and secrets exposure. Use when performing security audits, before deployment, reviewing authentication/authorization implementations, or ensuring OWASP compliance for Express, NestJS, and Next.js. Triggers on \"security review\", \"check for security issues\", \"TypeScript security audit\". Categories: agentic-code, agentic-coding, agents, aws, aws-cloudformation, claude-code, claude-code-skill, claude-code-skills, claude-skills, claude-skills-creator, java, langchain4j, php, python, skills, spring-boot, typescript. Platforms: claude_code."} {"id": "420cd6f1878f695890491e17e3186ae2e04b9a1839c76351ac63eb90f2ecd25e", "repo_url": "https://github.com/giuseppe-trisciuoglio/developer-kit", "name": "zod-validation-utilities", "description": "Provides practical Zod v4 validation utilities and schema patterns for TypeScript applications. Use when designing validation layers for API payloads, forms, configuration, and domain input parsing with strong type inference.", "source": ["marketplace", "topic"], "categories": ["agentic-code", "agentic-coding", "agents", "aws", "aws-cloudformation", "claude-code", "claude-code-skill", "claude-code-skills", "claude-skills", "claude-skills-creator", "java", "langchain4j", "php", "python", "skills", "spring-boot", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/giuseppe-trisciuoglio/developer-kit/blob/main/plugins/developer-kit-typescript/skills/zod-validation-utilities/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zod-validation-utilities"}, "quality": {"stars": 164, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:19:35Z"}, "embedding_text": "zod-validation-utilities. Provides practical Zod v4 validation utilities and schema patterns for TypeScript applications. Use when designing validation layers for API payloads, forms, configuration, and domain input parsing with strong type inference. Categories: agentic-code, agentic-coding, agents, aws, aws-cloudformation, claude-code, claude-code-skill, claude-code-skills, claude-skills, claude-skills-creator, java, langchain4j, php, python, skills, spring-boot, typescript. Platforms: claude_code."} -{"id": "2231e2d3249a8d85cc33d00f1c2c03c85e2036e6b5815b1b7fc36168810dc0d7", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "ai-discoverability-audit", "description": "Audit how a brand appears in AI-powered search (ChatGPT, Perplexity, Claude, Gemini). Use when user mentions \"AI search,\" \"how do I show up in ChatGPT,\" \"AI discoverability,\" \"AEO,\" \"LLM visibility,\" or wants to understand their brand's AI presence.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/ai-discoverability-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-discoverability-audit"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "ai-discoverability-audit. Audit how a brand appears in AI-powered search (ChatGPT, Perplexity, Claude, Gemini). Use when user mentions \"AI search,\" \"how do I show up in ChatGPT,\" \"AI discoverability,\" \"AEO,\" \"LLM visibility,\" or wants to understand their brand's AI presence. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} -{"id": "939527db2a0a509b76a792b2dd1a5e512650d662719324351739f8eaec4bd78a", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "case-study-builder", "description": "Turn client wins into formatted case studies for proposals, social proof, and sales conversations. Use when someone needs to document results, build credibility, or create reusable proof assets.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/case-study-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install case-study-builder"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "case-study-builder. Turn client wins into formatted case studies for proposals, social proof, and sales conversations. Use when someone needs to document results, build credibility, or create reusable proof assets. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} -{"id": "3856fbd285ae05c4a3d7aaf547680e4c3925c4b1816f2c2486b3f7185cc9e9db", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "cold-outreach-sequence", "description": "Build personalized cold outreach sequences for LinkedIn and email. Use when someone needs to reach prospects, warm up cold leads, or build a systematic outreach engine. Covers research, connection requests, follow-ups, and conversion.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/cold-outreach-sequence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cold-outreach-sequence"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "cold-outreach-sequence. Build personalized cold outreach sequences for LinkedIn and email. Use when someone needs to reach prospects, warm up cold leads, or build a systematic outreach engine. Covers research, connection requests, follow-ups, and conversion. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} -{"id": "51aa831c90d761c3c900d56a1e58e348e23009db6cbc03438ab4f9da2709fe8f", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "daily-briefing-builder", "description": "Generate a clean morning brief in Claude Code \u2014 pulls today's priorities, unposted content, and weather from your vault.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/daily-briefing-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install daily-briefing-builder"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "daily-briefing-builder. Generate a clean morning brief in Claude Code \u2014 pulls today's priorities, unposted content, and weather from your vault. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "9ad090c579813122f734c7368ca8618e34ead0ef38df9ae01bfdec8a094dbcf2", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "de-ai-ify", "description": "Remove AI-generated jargon and restore human voice to text. Built from analyzing 1,000+ AI vs human content pieces.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/de-ai-ify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install de-ai-ify"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "de-ai-ify. Remove AI-generated jargon and restore human voice to text. Built from analyzing 1,000+ AI vs human content pieces. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} -{"id": "5751307286b06422dd4c9a7addb88a52c32f0d47693f2f48ab0bd3b62e9546c5", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "go-mode", "description": "Autonomous goal execution \u2014 give a goal, get a plan, confirm, execute, report. You steer, Claude drives.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/go-mode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install go-mode"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "go-mode. Autonomous goal execution \u2014 give a goal, get a plan, confirm, execute, report. You steer, Claude drives. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} -{"id": "20c3b9930c7afc83d20898a5e6c04e89b9a6f3af35aa969ffee87884c0344867", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "homepage-audit", "description": "Full conversion audit for any homepage or landing page. Use when someone asks to \"review my homepage,\" \"audit my landing page,\" \"why isn't my page converting,\" \"check my website,\" or wants feedback on their marketing page. Requires URL or screenshot before proceeding.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/homepage-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install homepage-audit"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "homepage-audit. Full conversion audit for any homepage or landing page. Use when someone asks to \"review my homepage,\" \"audit my landing page,\" \"why isn't my page converting,\" \"check my website,\" or wants feedback on their marketing page. Requires URL or screenshot before proceeding. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "2412c0bbdc4c2e45428b0af44e2a456f38d27e51828ad5173a7aa29e58d9acfb", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "last30days", "description": "Research any topic across Reddit, X, and web from the last 30 days. Get current trends, real community sentiment, and actionable insights in 7 minutes vs 2 hours manual research.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/last30days/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install last30days"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "last30days. Research any topic across Reddit, X, and web from the last 30 days. Get current trends, real community sentiment, and actionable insights in 7 minutes vs 2 hours manual research. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} -{"id": "954a09b7aa96f86f1616d9904191b0c1caea280e06adeb6b64321daa153e48e3", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "meeting-prep-cc", "description": "Generate a pre-meeting prep brief in Claude Code. Researches participants, pulls vault context, builds agenda, surfaces sharp questions. Use when user says \"prep for this meeting,\" \"I have a call with,\" \"meeting tomorrow with,\" or \"prep brief for [name/company].\"", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/meeting-prep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install meeting-prep-cc"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "meeting-prep-cc. Generate a pre-meeting prep brief in Claude Code. Researches participants, pulls vault context, builds agenda, surfaces sharp questions. Use when user says \"prep for this meeting,\" \"I have a call with,\" \"meeting tomorrow with,\" or \"prep brief for [name/company].\" Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "2f6dcb607c3ae6a07cdf985c8623f101061972c96aaab3353c1dfb2a3099e84f", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "newsletter-creation-curation", "description": "Industry-adaptive B2B newsletter creation with stage, role, and geography-aware workflows", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/newsletter-creation-curation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install newsletter-creation-curation"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "newsletter-creation-curation. Industry-adaptive B2B newsletter creation with stage, role, and geography-aware workflows Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "ff166954f7b9ede69eac03f7549df84dc5be1dcb9df985d5a95a3ed7800d8c45", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "plan-my-day", "description": "Generate an energy-optimized, time-blocked daily plan based on circadian rhythm research and GTD principles", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/plan-my-day/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install plan-my-day"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "plan-my-day. Generate an energy-optimized, time-blocked daily plan based on circadian rhythm research and GTD principles Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "2d4a417d5bceaefb7a98baebadaf14933729c33f454d542b2361e01dc67f4708", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "positioning-basics", "description": "Help founders and marketers nail their positioning. Use when someone mentions \"positioning,\" \"value proposition,\" \"who is this for,\" \"how do I describe my product,\" \"messaging,\" \"ICP,\" \"ideal customer,\" or is struggling to articulate what makes their product different.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/positioning-basics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install positioning-basics"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "positioning-basics. Help founders and marketers nail their positioning. Use when someone mentions \"positioning,\" \"value proposition,\" \"who is this for,\" \"how do I describe my product,\" \"messaging,\" \"ICP,\" \"ideal customer,\" or is struggling to articulate what makes their product different. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} @@ -14726,12 +19414,9 @@ {"id": "da7472fc6b4fbbeb5267eca3af6919bb4a604cc3071953c9bc11ddfa6566a542", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "competitor-intel-brief", "description": "Run a structured competitive teardown in 20 minutes. Covers positioning, ICP, offer analysis, moat assessment, vulnerability mapping, and a direct attack brief. Use when someone says \"analyze my competitor,\" \"competitive research,\" \"how do I differentiate from X,\" or \"what are my competitor's weaknesses.\"", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/pro/competitor-intel-brief/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install competitor-intel-brief"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "competitor-intel-brief. Run a structured competitive teardown in 20 minutes. Covers positioning, ICP, offer analysis, moat assessment, vulnerability mapping, and a direct attack brief. Use when someone says \"analyze my competitor,\" \"competitive research,\" \"how do I differentiate from X,\" or \"what are my competitor's weaknesses.\" Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "ded05e6142b7c2533597052ae1334733b0e7c3468397a77bca14b50ef60ae038", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "morning-brief-system", "description": "Generate a daily founder briefing that turns scattered context into clear execution priorities. Action-first format. Never lets high-leverage work get buried under low-leverage noise.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/pro/morning-brief-system/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install morning-brief-system"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "morning-brief-system. Generate a daily founder briefing that turns scattered context into clear execution priorities. Action-first format. Never lets high-leverage work get buried under low-leverage noise. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "9b653aaf15b79bd5160034ee4e2886c9bf9e3cdbafd16a201c251ea479031fbd", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "multi-agent-team-blueprint", "description": "A complete 10-agent team architecture with roles, model routing, cron templates, meeting system, and phased deployment guide. Build a team that works while you sleep \u2014 without burning your budget.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/pro/multi-agent-team-blueprint-v2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install multi-agent-team-blueprint"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "multi-agent-team-blueprint. A complete 10-agent team architecture with roles, model routing, cron templates, meeting system, and phased deployment guide. Build a team that works while you sleep \u2014 without burning your budget. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} -{"id": "b38f76a11f0732d80ff00b427bb92f1a4f06cf89679b7e9a48f51ccf512ea4c7", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "social-card-gen", "description": "Generate platform-specific social post variants (Twitter/X, LinkedIn, Reddit) from one source input. Works with or without Node.js script. Includes platform reasoning, quality review, and guardrails against cross-posting spam.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/social-card-gen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install social-card-gen"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "social-card-gen. Generate platform-specific social post variants (Twitter/X, LinkedIn, Reddit) from one source input. Works with or without Node.js script. Includes platform reasoning, quality review, and guardrails against cross-posting spam. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} -{"id": "0d51032668b215518fbf609df63af93b8ad14c674e3d91d675750d5d01bb437f", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "tweet-draft-reviewer", "description": "Review tweet drafts in Claude Code against 8 voice rules. Scores 1-10, breaks down every rule, and rewrites anything that scores below 7.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/tweet-draft-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tweet-draft-reviewer"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "tweet-draft-reviewer. Review tweet drafts in Claude Code against 8 voice rules. Scores 1-10, breaks down every rule, and rewrites anything that scores below 7. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "00b114d0452de48b964bcf7d9973025a1e8ef630259319b20bb76d703c9a6d38", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "vault-cleanup-auditor", "description": "Audit your Obsidian vault in Claude Code \u2014 finds stale drafts, empty folders, duplicate filenames, and incomplete files. Saves a dated report.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/vault-cleanup-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vault-cleanup-auditor"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "vault-cleanup-auditor. Audit your Obsidian vault in Claude Code \u2014 finds stale drafts, empty folders, duplicate filenames, and incomplete files. Saves a dated report. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "92142b70ccd20314b74b83084fbc24308851094f7e4f38b4c96003e017fd0a27", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "voice-extractor", "description": "Extract and document someone's authentic writing voice from samples. Use when someone needs a \"voice guide,\" wants to capture their writing DNA, or needs to train AI to write in their style. Also useful for ghostwriting, brand voice documentation, or onboarding writers.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/voice-extractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install voice-extractor"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "voice-extractor. Extract and document someone's authentic writing voice from samples. Use when someone needs a \"voice guide,\" wants to capture their writing DNA, or needs to train AI to write in their style. Also useful for ghostwriting, brand voice documentation, or onboarding writers. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} {"id": "12064432fbc5c65ce458d0b01d37cc2d0198e43910530bc8ef12fb2d3a583773", "repo_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills", "name": "youtube-summarizer", "description": "Automatically fetch YouTube video transcripts, generate structured summaries, and send full transcripts to messaging platforms. Detects YouTube URLs and provides metadata, key insights, and downloadable transcripts.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "branding", "claude", "claude-code", "claude-code-skills", "claude-skills", "marketing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/brianrwagner/ai-marketing-claude-code-skills/blob/main/youtube-summarizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-summarizer"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T03:16:01Z"}, "embedding_text": "youtube-summarizer. Automatically fetch YouTube video transcripts, generate structured summaries, and send full transcripts to messaging platforms. Detects YouTube URLs and provides metadata, key insights, and downloadable transcripts. Categories: ai, ai-agents, branding, claude, claude-code, claude-code-skills, claude-skills, marketing. Platforms: claude_code."} -{"id": "083d09b6f7cd7bdd2bd7028c9607be00214a4286557d27c87b9a6c7d0c5e532c", "repo_url": "https://github.com/weizhena/deep-research-skills", "name": "research-add-fields", "description": "Add field definitions to existing research outline.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/weizhena/deep-research-skills/blob/master/skills/research-codex-en/research-add-fields/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install research-add-fields"}, "quality": {"stars": 153, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T16:13:31Z"}, "embedding_text": "research-add-fields. Add field definitions to existing research outline. Platforms: claude_code."} {"id": "55a6ab1515c1557b65de8507a2729ec73bb30bfa30f46ad41ec4e0d97d02676c", "repo_url": "https://github.com/weizhena/deep-research-skills", "name": "research", "description": "Conduct preliminary research on a topic and generate research outline. For academic research, benchmark research, technology selection, etc.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/weizhena/deep-research-skills/blob/master/skills/research-codex-en/research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install research"}, "quality": {"stars": 153, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T16:13:31Z"}, "embedding_text": "research. Conduct preliminary research on a topic and generate research outline. For academic research, benchmark research, technology selection, etc. Platforms: claude_code."} {"id": "3f9090a1fdc666ade7ccb8dfe2efa26750c5485bc9988beec2b75bb8db2c6151", "repo_url": "https://github.com/weizhena/deep-research-skills", "name": "research-add-fields", "description": "Add field definitions to existing research outline.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/weizhena/deep-research-skills/blob/master/skills/research-codex-zh/research-add-fields/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install research-add-fields"}, "quality": {"stars": 153, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T16:13:31Z"}, "embedding_text": "research-add-fields. Add field definitions to existing research outline. Platforms: claude_code."} {"id": "2715c12f88a34c17e5a44203bf8fea56b9ab6ab1ee60433ced27c23c1ccc201d", "repo_url": "https://github.com/weizhena/deep-research-skills", "name": "research-add-items", "description": "Add items (research objects) to existing research outline.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/weizhena/deep-research-skills/blob/master/skills/research-codex-zh/research-add-items/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install research-add-items"}, "quality": {"stars": 153, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T16:13:31Z"}, "embedding_text": "research-add-items. Add items (research objects) to existing research outline. Platforms: claude_code."} @@ -14790,10 +19475,7 @@ {"id": "fb554a69b15f16dadc7ff88cf16ebd475d12e4c382a70baee799210043616df0", "repo_url": "https://github.com/mxyhi/ok-skills", "name": "vercel-react-best-practices", "description": "React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mxyhi/ok-skills/blob/main/vercel-react-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vercel-react-best-practices"}, "quality": {"stars": 115, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:04:51Z"}, "embedding_text": "vercel-react-best-practices. React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements. Platforms: claude_code."} {"id": "cda341c792b198df985ede242a4fb2eb9b5d4a43b26c405fe9bd32c7d4cd6ae7", "repo_url": "https://github.com/mxyhi/ok-skills", "name": "xlsx", "description": "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 \u2014 even casually (like \"the xlsx in my downloads\") \u2014 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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mxyhi/ok-skills/blob/main/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx"}, "quality": {"stars": 115, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:04:51Z"}, "embedding_text": "xlsx. 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 \u2014 even casually (like \"the xlsx in my downloads\") \u2014 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. Platforms: claude_code."} {"id": "ad5abb44c0408cd9e50785f6b6b980c71191a162bbaec195debe0b95a9a0a21d", "repo_url": "https://github.com/mxyhi/ok-skills", "name": "yeet", "description": "Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (`gh`).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mxyhi/ok-skills/blob/main/yeet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install yeet"}, "quality": {"stars": 115, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:04:51Z"}, "embedding_text": "yeet. Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (`gh`). Platforms: claude_code."} -{"id": "a28842a51df404cf265cbdd33a9667d8d70fcd2dc20da77aaa76e6fea0331242", "repo_url": "https://github.com/secondsky/claude-skills", "name": "Bun Test Coverage", "description": "Use for test coverage with Bun, --coverage flag, lcov reports, thresholds, and CI integration.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/bun/skills/bun-test-coverage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Bun Test Coverage"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "Bun Test Coverage. Use for test coverage with Bun, --coverage flag, lcov reports, thresholds, and CI integration. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} -{"id": "e433faf235f00e9eb14b6cc764014cb72657c16e1dc28acba508072f65ef5dfe", "repo_url": "https://github.com/secondsky/claude-skills", "name": "mobile-app-testing", "description": "Mobile app testing with unit tests, UI automation, performance testing. Use for test infrastructure, E2E tests, testing standards, or encountering test framework setup, device farms, flaky tests, platform-specific test errors.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/mobile-app-testing/skills/mobile-app-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mobile-app-testing"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "mobile-app-testing. Mobile app testing with unit tests, UI automation, performance testing. Use for test infrastructure, E2E tests, testing standards, or encountering test framework setup, device farms, flaky tests, platform-specific test errors. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} {"id": "e2f8287cbb4bd745021bce1742f852bf821c824c84ee15b41da4449e1fa9bd10", "repo_url": "https://github.com/secondsky/claude-skills", "name": "plan-interview", "description": "Adaptive interview-driven spec generation. Use when converting rough plans into comprehensive specifications, needing structured requirements gathering, or transforming ideas into implementation-ready documentation.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/plan-interview/skills/plan-interview/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install plan-interview"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "plan-interview. Adaptive interview-driven spec generation. Use when converting rough plans into comprehensive specifications, needing structured requirements gathering, or transforming ideas into implementation-ready documentation. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} -{"id": "04edd8b5d687925a3ef36b02db4918092bcf67ab5644717f2b5a002d50c82fd8", "repo_url": "https://github.com/secondsky/claude-skills", "name": "progressive-web-app", "description": "Progressive Web Apps with service workers, web manifest, offline support, installation prompts. Use for installable web apps, offline functionality, push notifications, or encountering service worker registration, cache strategy, manifest configuration errors.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/progressive-web-app/skills/progressive-web-app/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install progressive-web-app"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "progressive-web-app. Progressive Web Apps with service workers, web manifest, offline support, installation prompts. Use for installable web apps, offline functionality, push notifications, or encountering service worker registration, cache strategy, manifest configuration errors. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} {"id": "1a074a83d244a3ee56a8ecba9db56adc2e456989ee376d798f6d4445e145248b", "repo_url": "https://github.com/secondsky/claude-skills", "name": "vercel-react-best-practices", "description": "React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/react-best-practices/skills/react-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vercel-react-best-practices"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "vercel-react-best-practices. React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} {"id": "2381c11306e32adf2fef1185b19cc312986fbcf966822fa01b1ed90c94b7fda6", "repo_url": "https://github.com/secondsky/claude-skills", "name": "react-composition-patterns", "description": "React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/react-composition-patterns/skills/react-composition-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install react-composition-patterns"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "react-composition-patterns. React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} {"id": "52b46b38adbf9e8bbdd43a2c1e59eb68dc44a3860152f0ba43da66b66e259827", "repo_url": "https://github.com/secondsky/claude-skills", "name": "react-native-skills", "description": "React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/react-native-skills/skills/react-native-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install react-native-skills"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "react-native-skills. React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} @@ -14801,18 +19483,11 @@ {"id": "5f3b4f9dbdc21a94f478bea889fea190399cecd3c6f8a8fdbba1005135a0c1fd", "repo_url": "https://github.com/secondsky/claude-skills", "name": "threejs", "description": "Three.js 3D graphics library - scene setup, geometry, materials, lighting, textures, animation, loaders, shaders, postprocessing, interaction. Use when building 3D web experiences, creating WebGL visualizations, working with GLTF models, implementing custom shaders, or adding interactive 3D elements to web applications.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/threejs/skills/threejs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install threejs"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "threejs. Three.js 3D graphics library - scene setup, geometry, materials, lighting, textures, animation, loaders, shaders, postprocessing, interaction. Use when building 3D web experiences, creating WebGL visualizations, working with GLTF models, implementing custom shaders, or adding interactive 3D elements to web applications. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} {"id": "bd956c611dd413900a29343cd4c48ce31e9bdf34aa5a9aeee4830de7d5139e86", "repo_url": "https://github.com/secondsky/claude-skills", "name": "woocommerce-code-review", "description": "Review WooCommerce code changes for coding standards compliance. Use when reviewing code locally, performing automated PR reviews, or checking code quality in WooCommerce projects.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/woocommerce-code-review/skills/woocommerce-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install woocommerce-code-review"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "woocommerce-code-review. Review WooCommerce code changes for coding standards compliance. Use when reviewing code locally, performing automated PR reviews, or checking code quality in WooCommerce projects. Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} {"id": "b44fcf2184be663b1a315f738578c1e7e8e00d20325cf69b3e859398a3deaad5", "repo_url": "https://github.com/secondsky/claude-skills", "name": "zod", "description": "TypeScript-first schema validation and type inference. Use for validating API requests/responses, form data, env vars, configs, defining type-safe schemas with runtime validation, transforming data, generating JSON Schema for OpenAPI/AI, or encountering missing validation errors, type inference issues, validation error handling problems. Zero dependencies (2kb gzipped).", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-commands", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/secondsky/claude-skills/blob/main/plugins/zod/skills/zod/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zod"}, "quality": {"stars": 81, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T22:18:00Z"}, "embedding_text": "zod. TypeScript-first schema validation and type inference. Use for validating API requests/responses, form data, env vars, configs, defining type-safe schemas with runtime validation, transforming data, generating JSON Schema for OpenAPI/AI, or encountering missing validation errors, type inference issues, validation error handling problems. Zero dependencies (2kb gzipped). Categories: claude-code, claude-code-commands, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills. Platforms: claude_code."} -{"id": "2781bb37fe1cd7b1aab55946c1533f59bbf8b5cd1e577312cabeaaedbbaee8dc", "repo_url": "https://github.com/haddock-development/claude-reflect-system", "name": "python-project-creator", "description": "Creates Python projects with proper structure, virtual environments, and dependency management. Use when users request to create a new Python project, set up a Python development environment, or initialize a Python application with standard tooling.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/haddock-development/claude-reflect-system/blob/master/python-project-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-project-creator"}, "quality": {"stars": 77, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-17T09:53:59Z"}, "embedding_text": "python-project-creator. Creates Python projects with proper structure, virtual environments, and dependency management. Use when users request to create a new Python project, set up a Python development environment, or initialize a Python application with standard tooling. Platforms: claude_code."} {"id": "0f977a456ab9a77ce032a402e90d3dc72d6e1b18a7b17018b9eb03ee53b1ea1f", "repo_url": "https://github.com/haddock-development/claude-reflect-system", "name": "reflect", "description": "Analyzes conversation transcripts to extract user corrections, patterns, and preferences, then proposes skill improvements. Use this skill when users provide corrections, express preferences about code style, or when patterns emerge from successful approaches. Can be triggered manually with /reflect or automatically at session end when enabled.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/haddock-development/claude-reflect-system/blob/master/reflect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reflect"}, "quality": {"stars": 77, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-17T09:53:59Z"}, "embedding_text": "reflect. Analyzes conversation transcripts to extract user corrections, patterns, and preferences, then proposes skill improvements. Use this skill when users provide corrections, express preferences about code style, or when patterns emerge from successful approaches. Can be triggered manually with /reflect or automatically at session end when enabled. Platforms: claude_code."} -{"id": "f2a9af68658b222f6d1a89978083677a00ed31acac8b7e1f647bf5374fd13d98", "repo_url": "https://github.com/wrsmith108/linear-claude-skill", "name": "Linear", "description": "Managing Linear issues, projects, and teams. Use when working with Linear tasks, creating issues, updating status, querying projects, or managing team workflows.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-skills", "claude-skills", "linear", "project-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wrsmith108/linear-claude-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Linear"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T01:12:07Z"}, "embedding_text": "Linear. Managing Linear issues, projects, and teams. Use when working with Linear tasks, creating issues, updating status, querying projects, or managing team workflows. Categories: claude-code, claude-code-skills, claude-skills, linear, project-management. Platforms: claude_code."} {"id": "26b33aa65ba3698437c1eadeb7b98c4fa906c70f01a7af7f82685dcc6fff5a8b", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-crypto", "description": "Provides cryptography attack techniques for CTF challenges. Use when attacking encryption, hashing, signatures, ZKP, PRNG, or mathematical crypto problems involving RSA, AES, ECC, lattices, LWE, CVP, number theory, Coppersmith, Pollard, Wiener, padding oracle, GCM, key derivation, or stream/block cipher weaknesses.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-crypto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-crypto"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T21:29:32Z"}, "embedding_text": "ctf-crypto. Provides cryptography attack techniques for CTF challenges. Use when attacking encryption, hashing, signatures, ZKP, PRNG, or mathematical crypto problems involving RSA, AES, ECC, lattices, LWE, CVP, number theory, Coppersmith, Pollard, Wiener, padding oracle, GCM, key derivation, or stream/block cipher weaknesses. Platforms: claude_code."} -{"id": "8155d7e554843a3e869cf005909e371acf459903ff3239c5e3b398dc5d2f69bc", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-forensics", "description": "Provides digital forensics and signal analysis techniques for CTF challenges. Use when analyzing disk images, memory dumps, event logs, network captures, cryptocurrency transactions, steganography, PDF analysis, Windows registry, Volatility, PCAP, Docker images, coredumps, side-channel power traces, DTMF audio spectrograms, packet timing analysis, or recovering deleted files and credentials.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-forensics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-forensics"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T21:29:32Z"}, "embedding_text": "ctf-forensics. Provides digital forensics and signal analysis techniques for CTF challenges. Use when analyzing disk images, memory dumps, event logs, network captures, cryptocurrency transactions, steganography, PDF analysis, Windows registry, Volatility, PCAP, Docker images, coredumps, side-channel power traces, DTMF audio spectrograms, packet timing analysis, or recovering deleted files and credentials. Platforms: claude_code."} {"id": "979f2aa0b7be530625ba1f544c2fdba99cfb52cc98f9667b35f7ac651c4c3271", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-malware", "description": "Provides malware analysis and network traffic techniques for CTF challenges. Use when analyzing obfuscated scripts, malicious packages, custom crypto protocols, C2 traffic, PE/.NET binaries, RC4/AES encrypted communications, or extracting malware configurations and indicators of compromise.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-malware/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-malware"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T21:29:32Z"}, "embedding_text": "ctf-malware. Provides malware analysis and network traffic techniques for CTF challenges. Use when analyzing obfuscated scripts, malicious packages, custom crypto protocols, C2 traffic, PE/.NET binaries, RC4/AES encrypted communications, or extracting malware configurations and indicators of compromise. Platforms: claude_code."} -{"id": "eb232296014060b9ec0bcb60028246be6871ae4838e5d6bdfd18693baaacb90c", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-misc", "description": "Provides miscellaneous CTF challenge techniques. Use for encoding puzzles, RF/SDR signal processing, Python/bash jails, DNS exploitation, unicode steganography, floating-point tricks, QR codes, audio challenges, Z3 constraint solving, Kubernetes RBAC, WASM game patching, esoteric languages, game theory, commitment schemes, combinatorial games, or challenges that don't fit other categories.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-misc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-misc"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T21:29:32Z"}, "embedding_text": "ctf-misc. Provides miscellaneous CTF challenge techniques. Use for encoding puzzles, RF/SDR signal processing, Python/bash jails, DNS exploitation, unicode steganography, floating-point tricks, QR codes, audio challenges, Z3 constraint solving, Kubernetes RBAC, WASM game patching, esoteric languages, game theory, commitment schemes, combinatorial games, or challenges that don't fit other categories. Platforms: claude_code."} -{"id": "953bc5518b207db2634f7c4a8924e26e1df4997eb97a1ac733d942cb95023673", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-osint", "description": "Provides open source intelligence techniques for CTF challenges. Use when gathering information from public sources, social media, geolocation, DNS records, username enumeration, reverse image search, Google dorking, Wayback Machine, Tor relays, FEC filings, or identifying unknown data like hashes and coordinates.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-osint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-osint"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T21:29:32Z"}, "embedding_text": "ctf-osint. Provides open source intelligence techniques for CTF challenges. Use when gathering information from public sources, social media, geolocation, DNS records, username enumeration, reverse image search, Google dorking, Wayback Machine, Tor relays, FEC filings, or identifying unknown data like hashes and coordinates. Platforms: claude_code."} {"id": "e0e08a5b68b85b57869213cc265051a7174bf58f4e334af0cde86ca091fde7f2", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-pwn", "description": "Provides binary exploitation (pwn) techniques for CTF challenges. Use when exploiting buffer overflows, format strings, heap vulnerabilities, race conditions, kernel bugs, ROP chains, ret2libc, shellcode, GOT overwrite, use-after-free, seccomp bypass, FSOP, stack pivot, sandbox escape, or Linux kernel exploitation (modprobe_path, tty_struct, userfaultfd, KASLR bypass, SLUB heap spray).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-pwn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-pwn"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T21:29:32Z"}, "embedding_text": "ctf-pwn. Provides binary exploitation (pwn) techniques for CTF challenges. Use when exploiting buffer overflows, format strings, heap vulnerabilities, race conditions, kernel bugs, ROP chains, ret2libc, shellcode, GOT overwrite, use-after-free, seccomp bypass, FSOP, stack pivot, sandbox escape, or Linux kernel exploitation (modprobe_path, tty_struct, userfaultfd, KASLR bypass, SLUB heap spray). Platforms: claude_code."} -{"id": "a3b0d33819ba9153c3161d6bb8396c959506182161e2e5df1cd76d4ac2d22df9", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-reverse", "description": "Provides reverse engineering techniques for CTF challenges. Use when analyzing binaries, game clients, obfuscated code, esoteric languages, custom VMs, anti-debugging, WASM, .NET, APK, Python bytecode, Ghidra, GDB, radare2, or extracting flags from compiled executables.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-reverse/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-reverse"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T21:29:32Z"}, "embedding_text": "ctf-reverse. Provides reverse engineering techniques for CTF challenges. Use when analyzing binaries, game clients, obfuscated code, esoteric languages, custom VMs, anti-debugging, WASM, .NET, APK, Python bytecode, Ghidra, GDB, radare2, or extracting flags from compiled executables. Platforms: claude_code."} {"id": "bc72f280933e88b399b705a8816179bb2ab9c3583e17a4ddfd524faccf7e0009", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "ctf-web", "description": "Provides web exploitation techniques for CTF challenges. Use when solving web security challenges involving XSS, SQLi, SSTI, SSRF, CSRF, XXE, file upload bypasses, JWT attacks, prototype pollution, path traversal, command injection, request smuggling, DOM clobbering, Web3/blockchain, or authentication bypass.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/ctf-web/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctf-web"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T21:29:32Z"}, "embedding_text": "ctf-web. Provides web exploitation techniques for CTF challenges. Use when solving web security challenges involving XSS, SQLi, SSTI, SSRF, CSRF, XXE, file upload bypasses, JWT attacks, prototype pollution, path traversal, command injection, request smuggling, DOM clobbering, Web3/blockchain, or authentication bypass. Platforms: claude_code."} -{"id": "8e5e661b8021d9cf7b193357cdfafef79a635f324e016a3c955ae48d609944bb", "repo_url": "https://github.com/ljagiello/ctf-skills", "name": "solve-challenge", "description": "Solves CTF challenges by analyzing files, connecting to services, and applying exploitation techniques. Orchestrates category-specific CTF skills for pwn, crypto, web, reverse engineering, forensics, OSINT, malware analysis, and miscellaneous challenges.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ljagiello/ctf-skills/blob/main/solve-challenge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solve-challenge"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T21:29:32Z"}, "embedding_text": "solve-challenge. Solves CTF challenges by analyzing files, connecting to services, and applying exploitation techniques. Orchestrates category-specific CTF skills for pwn, crypto, web, reverse engineering, forensics, OSINT, malware analysis, and miscellaneous challenges. Platforms: claude_code."} {"id": "5b025a1c349a89e06e3891e0d0dd5c1106f66db33a36b1dd63d064762171bad8", "repo_url": "https://github.com/fvadicamo/dev-agent-skills", "name": "creating-skills", "description": "Guide for creating Claude Code skills following Anthropic's official best practices. Use when user wants to create a new skill, build a skill, write SKILL.md, update an existing skill, or needs skill creation guidelines. Provides structure, frontmatter fields, naming conventions, and new features like dynamic context injection and subagent execution.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fvadicamo/dev-agent-skills/blob/main/skills/creating-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install creating-skills"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T16:37:08Z"}, "embedding_text": "creating-skills. Guide for creating Claude Code skills following Anthropic's official best practices. Use when user wants to create a new skill, build a skill, write SKILL.md, update an existing skill, or needs skill creation guidelines. Provides structure, frontmatter fields, naming conventions, and new features like dynamic context injection and subagent execution. Platforms: claude_code."} {"id": "9a6652cd44760541f4a8dcbb6408a99ce63405604bf52b8c73d2974bc8f521f2", "repo_url": "https://github.com/fvadicamo/dev-agent-skills", "name": "git-commit", "description": "Creates git commits following Conventional Commits format with type/scope/subject. Use when user wants to commit changes, create commit, save work, or stage and commit. Enforces project-specific conventions from CLAUDE.md.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fvadicamo/dev-agent-skills/blob/main/skills/git-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-commit"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T16:37:08Z"}, "embedding_text": "git-commit. Creates git commits following Conventional Commits format with type/scope/subject. Use when user wants to commit changes, create commit, save work, or stage and commit. Enforces project-specific conventions from CLAUDE.md. Platforms: claude_code."} {"id": "f66bd7970fd5c56091c3bf3dadef4d2cd3b65a6df1b145c6b04ee6fcf64a167d", "repo_url": "https://github.com/fvadicamo/dev-agent-skills", "name": "github-pr-creation", "description": "Creates GitHub Pull Requests with automated validation and task tracking. Use when user wants to create PR, open pull request, submit for review, or check if ready for PR. Analyzes commits, validates task completion, generates Conventional Commits title and description, suggests labels. NOTE - for merging existing PRs, use github-pr-merge instead.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fvadicamo/dev-agent-skills/blob/main/skills/github-pr-creation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-pr-creation"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T16:37:08Z"}, "embedding_text": "github-pr-creation. Creates GitHub Pull Requests with automated validation and task tracking. Use when user wants to create PR, open pull request, submit for review, or check if ready for PR. Analyzes commits, validates task completion, generates Conventional Commits title and description, suggests labels. NOTE - for merging existing PRs, use github-pr-merge instead. Platforms: claude_code."} @@ -14831,14 +19506,7 @@ {"id": "a68e221436d6fce00fa51ad72a4eda5a63c56ca925cb9b5446b704cae7318465", "repo_url": "https://github.com/microsoft/power-platform-skills", "name": "setup-datamodel", "description": "This skill should be used when the user asks to \"create Dataverse tables\", \"set up the data model\", \"setup dataverse\", \"create tables for my site\", \"setup dataverse schema\", \"create the database\", \"build my data model\", or wants to create Dataverse tables, columns, and relationships for their Power Pages site based on a data model proposal.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/power-platform-skills/blob/main/plugins/power-pages/skills/setup-datamodel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install setup-datamodel"}, "quality": {"stars": 48, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T23:08:07Z"}, "embedding_text": "setup-datamodel. This skill should be used when the user asks to \"create Dataverse tables\", \"set up the data model\", \"setup dataverse\", \"create tables for my site\", \"setup dataverse schema\", \"create the database\", \"build my data model\", or wants to create Dataverse tables, columns, and relationships for their Power Pages site based on a data model proposal.\n Platforms: claude_code."} {"id": "df49a9af069807066f6026f03af2afc3579efb7f71766fd48f1b7ffea956551d", "repo_url": "https://github.com/microsoft/power-platform-skills", "name": "test-site", "description": "This skill should be used when the user asks to \"test my site\", \"test the site\", \"run site tests\", \"check if site is working\", \"verify site\", \"smoke test\", \"test pages\", \"check api calls\", \"test web api\", \"verify deployment works\", or wants to test a deployed, activated Power Pages site at runtime using browser-based navigation, page crawling, and API request verification.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/power-platform-skills/blob/main/plugins/power-pages/skills/test-site/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-site"}, "quality": {"stars": 48, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T23:08:07Z"}, "embedding_text": "test-site. This skill should be used when the user asks to \"test my site\", \"test the site\", \"run site tests\", \"check if site is working\", \"verify site\", \"smoke test\", \"test pages\", \"check api calls\", \"test web api\", \"verify deployment works\", or wants to test a deployed, activated Power Pages site at runtime using browser-based navigation, page crawling, and API request verification.\n Platforms: claude_code."} {"id": "c436a60893c14a5979edf4afd1f48d31b124eb12bfcf45b10cf9106877bcd54a", "repo_url": "https://github.com/lukasniessen/terrashark", "name": "terrashark", "description": "Prevent Terraform/OpenTofu hallucinations by diagnosing and fixing failure modes: identity churn, secret exposure, blast-radius mistakes, CI drift, and compliance gate gaps. Use when generating, reviewing, refactoring, or migrating IaC and when building delivery/testing pipelines.", "source": ["marketplace", "topic"], "categories": ["aws", "azure", "claude", "claude-code", "claude-code-skills", "claude-skills", "codex", "codex-skills", "devops", "gcp", "infrastructure-as-code", "modules", "opentofu", "skills", "terraform"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lukasniessen/terrashark/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terrashark"}, "quality": {"stars": 46, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:40:54Z"}, "embedding_text": "terrashark. Prevent Terraform/OpenTofu hallucinations by diagnosing and fixing failure modes: identity churn, secret exposure, blast-radius mistakes, CI drift, and compliance gate gaps. Use when generating, reviewing, refactoring, or migrating IaC and when building delivery/testing pipelines. Categories: aws, azure, claude, claude-code, claude-code-skills, claude-skills, codex, codex-skills, devops, gcp, infrastructure-as-code, modules, opentofu, skills, terraform. Platforms: claude_code."} -{"id": "019f43067520f9b37b3ebc5dc8d6376e0b4f9ed925c006759718944f0402f6e3", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "ai-collaboration-standards", "description": "Prevent AI hallucination and ensure evidence-based responses when analyzing code or making suggestions.\nUse when: analyzing code, making recommendations, providing options, or when user asks about confidence/certainty.\nKeywords: certainty, assumption, inference, evidence, source, \u78ba\u5b9a\u6027, \u63a8\u6e2c, \u5047\u8a2d, \u4f86\u6e90, \u8b49\u64da.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/ai-collaboration-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-collaboration-standards"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "ai-collaboration-standards. Prevent AI hallucination and ensure evidence-based responses when analyzing code or making suggestions.\nUse when: analyzing code, making recommendations, providing options, or when user asks about confidence/certainty.\nKeywords: certainty, assumption, inference, evidence, source, \u78ba\u5b9a\u6027, \u63a8\u6e2c, \u5047\u8a2d, \u4f86\u6e90, \u8b49\u64da. Platforms: claude_code."} -{"id": "8a0a1ff7beaf1521a84c9f9af6eb52b2d4e1c5e4471fd9a8325f85a2a44e9fa1", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "code-review-assistant", "description": "Systematic code review checklist and pre-commit quality gates for PRs.\nUse when: reviewing pull requests, checking code quality, before committing code.\nKeywords: review, PR, pull request, checklist, quality, commit, \u5be9\u67e5, \u6aa2\u67e5, \u7c3d\u5165.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/code-review-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-review-assistant"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "code-review-assistant. Systematic code review checklist and pre-commit quality gates for PRs.\nUse when: reviewing pull requests, checking code quality, before committing code.\nKeywords: review, PR, pull request, checklist, quality, commit, \u5be9\u67e5, \u6aa2\u67e5, \u7c3d\u5165. Platforms: claude_code."} -{"id": "e3a8403d68cb7bb8df85d375361eda473734ff3aed4694bed6c75539e16fca46", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "commit-standards", "description": "Format commit messages following conventional commits standard.\nUse when: writing commit messages, git commit, reviewing commit history.\nKeywords: commit, git, message, conventional, \u63d0\u4ea4, \u8a0a\u606f, feat, fix, refactor.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/commit-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit-standards"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "commit-standards. Format commit messages following conventional commits standard.\nUse when: writing commit messages, git commit, reviewing commit history.\nKeywords: commit, git, message, conventional, \u63d0\u4ea4, \u8a0a\u606f, feat, fix, refactor. Platforms: claude_code."} -{"id": "559f5d6029adcc1f6b18c729e6ec5ddae46be8cf8536ebeffb18eef981bb2f2e", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "documentation-guide", "description": "Guide documentation structure, README content, and project documentation best practices.\nUse when: creating README, documentation, docs folder, project setup.\nKeywords: README, docs, documentation, CONTRIBUTING, CHANGELOG, \u6587\u4ef6, \u8aaa\u660e\u6587\u4ef6.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/documentation-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install documentation-guide"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "documentation-guide. Guide documentation structure, README content, and project documentation best practices.\nUse when: creating README, documentation, docs folder, project setup.\nKeywords: README, docs, documentation, CONTRIBUTING, CHANGELOG, \u6587\u4ef6, \u8aaa\u660e\u6587\u4ef6. Platforms: claude_code."} -{"id": "9553d62d579a5ace9ea4b0ff7fac51e8428530b0ca65ff16669f6a71c84a072b", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "git-workflow-guide", "description": "Guide Git branching strategies, branch naming, and merge operations.\nUse when: creating branches, merging, pull requests, Git workflow questions.\nKeywords: branch, merge, PR, pull request, GitFlow, GitHub Flow, \u5206\u652f, \u5408\u4f75, \u5de5\u4f5c\u6d41\u7a0b.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/git-workflow-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-workflow-guide"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "git-workflow-guide. Guide Git branching strategies, branch naming, and merge operations.\nUse when: creating branches, merging, pull requests, Git workflow questions.\nKeywords: branch, merge, PR, pull request, GitFlow, GitHub Flow, \u5206\u652f, \u5408\u4f75, \u5de5\u4f5c\u6d41\u7a0b. Platforms: claude_code."} -{"id": "0aa5f30b1d56f67ac055831dfdbd0994b140caed23539754265c8c4bc9ade880", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "release-standards", "description": "Semantic versioning and changelog formatting for software releases.\nUse when: preparing releases, updating version numbers, writing changelogs.\nKeywords: version, release, changelog, semver, major, minor, patch, \u7248\u672c, \u767c\u5e03, \u8b8a\u66f4\u65e5\u8a8c.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/release-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install release-standards"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "release-standards. Semantic versioning and changelog formatting for software releases.\nUse when: preparing releases, updating version numbers, writing changelogs.\nKeywords: version, release, changelog, semver, major, minor, patch, \u7248\u672c, \u767c\u5e03, \u8b8a\u66f4\u65e5\u8a8c. Platforms: claude_code."} {"id": "02c7c67981a4e74df0d79483a8e9af8085d5cc679a485c8baec0bfd3d9da7bfb", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "requirement-assistant", "description": "Guide requirement writing, user story creation, and feature specification.\nUse when: writing requirements, user stories, issues, feature planning.\nKeywords: requirement, user story, issue, feature, specification, \u9700\u6c42, \u529f\u80fd\u898f\u5283, \u898f\u683c.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/requirement-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install requirement-assistant"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "requirement-assistant. Guide requirement writing, user story creation, and feature specification.\nUse when: writing requirements, user stories, issues, feature planning.\nKeywords: requirement, user story, issue, feature, specification, \u9700\u6c42, \u529f\u80fd\u898f\u5283, \u898f\u683c. Platforms: claude_code."} -{"id": "7398417c66dff16614c22a8fa75b8fcffc9023e8ff21ecedadd2567c1c04e483", "repo_url": "https://github.com/asiaostrich/universal-dev-skills", "name": "testing-guide", "description": "Testing pyramid and test writing standards for UT/IT/ST/E2E.\nUse when: writing tests, discussing test coverage, test strategy, or test naming.\nKeywords: test, unit, integration, e2e, coverage, mock, \u6e2c\u8a66, \u55ae\u5143, \u6574\u5408, \u7aef\u5c0d\u7aef.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/asiaostrich/universal-dev-skills/blob/main/skills/testing-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-guide"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-30T09:11:05Z"}, "embedding_text": "testing-guide. Testing pyramid and test writing standards for UT/IT/ST/E2E.\nUse when: writing tests, discussing test coverage, test strategy, or test naming.\nKeywords: test, unit, integration, e2e, coverage, mock, \u6e2c\u8a66, \u55ae\u5143, \u6574\u5408, \u7aef\u5c0d\u7aef. Platforms: claude_code."} {"id": "d7d1201ab2ac2f15a842bc96c38a24b8013c6ef255ea79740c90ca29befcb2ea", "repo_url": "https://github.com/ashad001/remotion-transitions", "name": "remotion-transitions", "description": "This skill should be used when the user asks to create custom Remotion transitions, asks about \"cool transitions\", \"cinematic transitions\", \"striped transitions\", \"glitch transitions\", \"custom TransitionPresentation\", or wants to build scene-to-scene transitions in Remotion beyond the built-in library. Also triggers for \"how to make transitions in Remotion\", \"custom transition\", \"high-energy transitions\", \"energy transitions\", \"branded transitions\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ashad001/remotion-transitions/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install remotion-transitions"}, "quality": {"stars": 45, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T20:19:25Z"}, "embedding_text": "remotion-transitions. This skill should be used when the user asks to create custom Remotion transitions, asks about \"cool transitions\", \"cinematic transitions\", \"striped transitions\", \"glitch transitions\", \"custom TransitionPresentation\", or wants to build scene-to-scene transitions in Remotion beyond the built-in library. Also triggers for \"how to make transitions in Remotion\", \"custom transition\", \"high-energy transitions\", \"energy transitions\", \"branded transitions\". Platforms: claude_code."} {"id": "eafba37dfe64bddcc42e58be1c5714ed73c619daa3ad2229cfdd7f9c8bd4aeaf", "repo_url": "https://github.com/xiaobei930/cc-best", "name": "api", "description": "RESTful API design patterns and best practices. Use when creating endpoints, designing APIs, or implementing routes.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xiaobei930/cc-best/blob/main/skills/api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api"}, "quality": {"stars": 34, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:02:03Z"}, "embedding_text": "api. RESTful API design patterns and best practices. Use when creating endpoints, designing APIs, or implementing routes. Platforms: claude_code."} {"id": "d626ace1c6de97848f7e2afb3d1568e5b1e5c718341e7ffc54bc10247951aff9", "repo_url": "https://github.com/xiaobei930/cc-best", "name": "architecture", "description": "Architecture design skill: ADR records, system design checklists, scalability assessment, architecture patterns. Use for complex system design and architecture decisions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xiaobei930/cc-best/blob/main/skills/architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install architecture"}, "quality": {"stars": 34, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:02:03Z"}, "embedding_text": "architecture. Architecture design skill: ADR records, system design checklists, scalability assessment, architecture patterns. Use for complex system design and architecture decisions. Platforms: claude_code."} @@ -14858,7 +19526,6 @@ {"id": "c678d36597b3dc60211c55abdaa23c9afe33a8d19c9c072e00610582ef15c386", "repo_url": "https://github.com/xiaobei930/cc-best", "name": "security", "description": "Security review skill: comprehensive security checklist and patterns. Use when adding authentication, handling user input, working with secrets, or creating API endpoints.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xiaobei930/cc-best/blob/main/skills/security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install security"}, "quality": {"stars": 34, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:02:03Z"}, "embedding_text": "security. Security review skill: comprehensive security checklist and patterns. Use when adding authentication, handling user input, working with secrets, or creating API endpoints. Platforms: claude_code."} {"id": "687dc15b47f311312a1a023baebcfdabe4786e0827dd3f75745fa1125d2995aa", "repo_url": "https://github.com/xiaobei930/cc-best", "name": "session", "description": "Session lifecycle management. Parent skill for session-related skills: learning (pattern extraction) and compact (context compression).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xiaobei930/cc-best/blob/main/skills/session/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install session"}, "quality": {"stars": 34, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:02:03Z"}, "embedding_text": "session. Session lifecycle management. Parent skill for session-related skills: learning (pattern extraction) and compact (context compression). Platforms: claude_code."} {"id": "cb2c6a4f286621d7849d4d424798d3c69dcabf302ec79a27977992d0a8dd5cc8", "repo_url": "https://github.com/xiaobei930/cc-best", "name": "testing", "description": "Testing strategies and methodologies including TDD and E2E testing. Use when writing tests, implementing TDD workflow, or setting up E2E test infrastructure.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xiaobei930/cc-best/blob/main/skills/testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing"}, "quality": {"stars": 34, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:02:03Z"}, "embedding_text": "testing. Testing strategies and methodologies including TDD and E2E testing. Use when writing tests, implementing TDD workflow, or setting up E2E test infrastructure. Platforms: claude_code."} -{"id": "1e06829b54dfc251b7326c0097f1d84d1110515a47d0f925d83d044d1e28ce52", "repo_url": "https://github.com/sheeki03/few-word", "name": "fewword", "description": "Use this skill when tool outputs exceed 2000 tokens, tasks span multiple conversation turns, sub-agents need to share state, context window is bloating, plans need to persist across summarization, terminal/log output needs selective querying, or when user mentions \"offload context\", \"dynamic context discovery\", \"filesystem memory\", \"scratch pad\", \"reduce context bloat\", or \"just-in-time context loading\".", "source": ["marketplace", "topic"], "categories": ["ai-agents", "claude-code", "claude-code-hooks", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "context-engineering", "token-optimization"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sheeki03/few-word/blob/main/plugins/fewword/skills/fewword/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install fewword"}, "quality": {"stars": 34, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-23T12:30:19Z"}, "embedding_text": "fewword. Use this skill when tool outputs exceed 2000 tokens, tasks span multiple conversation turns, sub-agents need to share state, context window is bloating, plans need to persist across summarization, terminal/log output needs selective querying, or when user mentions \"offload context\", \"dynamic context discovery\", \"filesystem memory\", \"scratch pad\", \"reduce context bloat\", or \"just-in-time context loading\". Categories: ai-agents, claude-code, claude-code-hooks, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, context-engineering, token-optimization. Platforms: claude_code."} {"id": "64634dee1bb83f63be938e60b061993ffaa4f0be3c8ac33b297a1b8b38c52abe", "repo_url": "https://github.com/saadshahd/moo.md", "name": "openspec-archive-change", "description": "Archive a completed change in the experimental workflow. Use when the user wants to finalize and archive a change after implementation is complete.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/saadshahd/moo.md/blob/main/.claude/skills/openspec-archive-change/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openspec-archive-change"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T20:18:44Z"}, "embedding_text": "openspec-archive-change. Archive a completed change in the experimental workflow. Use when the user wants to finalize and archive a change after implementation is complete. Platforms: claude_code."} {"id": "0fac5254b87a0e4fec5c34bb15fc1bea682ca6ca73f75d323f9f2e82901e7e32", "repo_url": "https://github.com/saadshahd/moo.md", "name": "openspec-explore", "description": "Enter explore mode - a thinking partner for exploring ideas, investigating problems, and clarifying requirements. Use when the user wants to think through something before or during a change.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/saadshahd/moo.md/blob/main/.claude/skills/openspec-explore/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openspec-explore"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T20:18:44Z"}, "embedding_text": "openspec-explore. Enter explore mode - a thinking partner for exploring ideas, investigating problems, and clarifying requirements. Use when the user wants to think through something before or during a change. Platforms: claude_code."} {"id": "8b31413562fea8fb6fd169c9e3b66d95bb442bf268e18aa3663f1d459c6c191d", "repo_url": "https://github.com/saadshahd/moo.md", "name": "openspec-propose", "description": "Propose a new change with all artifacts generated in one step. Use when the user wants to quickly describe what they want to build and get a complete proposal with design, specs, and tasks ready for implementation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/saadshahd/moo.md/blob/main/.claude/skills/openspec-propose/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openspec-propose"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T20:18:44Z"}, "embedding_text": "openspec-propose. Propose a new change with all artifacts generated in one step. Use when the user wants to quickly describe what they want to build and get a complete proposal with design, specs, and tasks ready for implementation. Platforms: claude_code."} @@ -14920,7 +19587,6 @@ {"id": "6560743fca74b463b7611840b699c24c077c8cd6463cd23043b2931b837f1365", "repo_url": "https://github.com/bitwize-music-studio/claude-ai-music-skills", "name": "tutorial", "description": "Provides interactive guided album creation for new users. Use when the user is new to the plugin or asks for a walkthrough of the album creation process.", "source": ["marketplace", "topic"], "categories": ["ai-music", "ai-music-tools", "audio-mastering", "claude", "claude-code", "claude-code-plugin", "claude-code-plugin-marketplace", "claude-code-plugins", "claude-code-plugins-marketplace", "claude-code-skills", "claude-skill", "claude-skills", "lyric-writer", "lyrics", "music", "music-mastering", "songwriting", "suno", "suno-ai", "sunoai"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bitwize-music-studio/claude-ai-music-skills/blob/main/skills/tutorial/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tutorial"}, "quality": {"stars": 27, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T14:59:35Z"}, "embedding_text": "tutorial. Provides interactive guided album creation for new users. Use when the user is new to the plugin or asks for a walkthrough of the album creation process. Categories: ai-music, ai-music-tools, audio-mastering, claude, claude-code, claude-code-plugin, claude-code-plugin-marketplace, claude-code-plugins, claude-code-plugins-marketplace, claude-code-skills, claude-skill, claude-skills, lyric-writer, lyrics, music, music-mastering, songwriting, suno, suno-ai, sunoai. Platforms: claude_code."} {"id": "d6a2a4ea36c2cba7cfbdbc908062bbebe0c55f4644a64cfe767636651cdf51e6", "repo_url": "https://github.com/bitwize-music-studio/claude-ai-music-skills", "name": "validate-album", "description": "Validates album directory structure, file locations, and content integrity. Use before release or whenever the user wants to check an album's structural health.", "source": ["marketplace", "topic"], "categories": ["ai-music", "ai-music-tools", "audio-mastering", "claude", "claude-code", "claude-code-plugin", "claude-code-plugin-marketplace", "claude-code-plugins", "claude-code-plugins-marketplace", "claude-code-skills", "claude-skill", "claude-skills", "lyric-writer", "lyrics", "music", "music-mastering", "songwriting", "suno", "suno-ai", "sunoai"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bitwize-music-studio/claude-ai-music-skills/blob/main/skills/validate-album/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install validate-album"}, "quality": {"stars": 27, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T14:59:35Z"}, "embedding_text": "validate-album. Validates album directory structure, file locations, and content integrity. Use before release or whenever the user wants to check an album's structural health. Categories: ai-music, ai-music-tools, audio-mastering, claude, claude-code, claude-code-plugin, claude-code-plugin-marketplace, claude-code-plugins, claude-code-plugins-marketplace, claude-code-skills, claude-skill, claude-skills, lyric-writer, lyrics, music, music-mastering, songwriting, suno, suno-ai, sunoai. Platforms: claude_code."} {"id": "67ffd8cbda2c2d5dcff7bad16c61e0390a0147f0f4cef08646df7557e8a600ab", "repo_url": "https://github.com/bitwize-music-studio/claude-ai-music-skills", "name": "verify-sources", "description": "Captures human source verification for tracks, timestamps it, and updates track files. Use when sources need human review before generation.", "source": ["marketplace", "topic"], "categories": ["ai-music", "ai-music-tools", "audio-mastering", "claude", "claude-code", "claude-code-plugin", "claude-code-plugin-marketplace", "claude-code-plugins", "claude-code-plugins-marketplace", "claude-code-skills", "claude-skill", "claude-skills", "lyric-writer", "lyrics", "music", "music-mastering", "songwriting", "suno", "suno-ai", "sunoai"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bitwize-music-studio/claude-ai-music-skills/blob/main/skills/verify-sources/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install verify-sources"}, "quality": {"stars": 27, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T14:59:35Z"}, "embedding_text": "verify-sources. Captures human source verification for tracks, timestamps it, and updates track files. Use when sources need human review before generation. Categories: ai-music, ai-music-tools, audio-mastering, claude, claude-code, claude-code-plugin, claude-code-plugin-marketplace, claude-code-plugins, claude-code-plugins-marketplace, claude-code-skills, claude-skill, claude-skills, lyric-writer, lyrics, music, music-mastering, songwriting, suno, suno-ai, sunoai. Platforms: claude_code."} -{"id": "416ebb2cc30c4b5631ff9c6d096f3174f3e20cb1189acd5a3c6f1428ec69aa13", "repo_url": "https://github.com/echovic/spec-flow", "name": "spec-flow", "description": "Spec-driven development workflow. Interactive phase-by-phase confirmation from proposal to implementation. Trigger: 'spec-flow', 'spec mode', 'need a plan', 'structured development', 'write a spec', 'feature spec', 'technical spec', '\u9700\u6c42\u6587\u6863', '\u6280\u672f\u65b9\u6848', '\u4efb\u52a1\u62c6\u89e3', '\u89c4\u683c\u9a71\u52a8', '\u5199\u4e2a\u65b9\u6848', '\u505a\u4e2a\u89c4\u5212', '\u7ed3\u6784\u5316\u5f00\u53d1', 'plan this feature', 'break this down', 'design doc'. Creates .spec-flow/ directory with proposal, requirements, design, and tasks.", "source": ["marketplace", "topic"], "categories": ["ai-skill", "claude", "claude-code", "claude-code-skills", "claude-skill", "development-workflow", "documentation", "project-planning", "requirements-engineering", "spec-driven-development", "workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/echovic/spec-flow/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install spec-flow"}, "quality": {"stars": 26, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-16T07:29:22Z"}, "embedding_text": "spec-flow. Spec-driven development workflow. Interactive phase-by-phase confirmation from proposal to implementation. Trigger: 'spec-flow', 'spec mode', 'need a plan', 'structured development', 'write a spec', 'feature spec', 'technical spec', '\u9700\u6c42\u6587\u6863', '\u6280\u672f\u65b9\u6848', '\u4efb\u52a1\u62c6\u89e3', '\u89c4\u683c\u9a71\u52a8', '\u5199\u4e2a\u65b9\u6848', '\u505a\u4e2a\u89c4\u5212', '\u7ed3\u6784\u5316\u5f00\u53d1', 'plan this feature', 'break this down', 'design doc'. Creates .spec-flow/ directory with proposal, requirements, design, and tasks. Categories: ai-skill, claude, claude-code, claude-code-skills, claude-skill, development-workflow, documentation, project-planning, requirements-engineering, spec-driven-development, workflow. Platforms: claude_code."} {"id": "2cf4367f02e729faa4efb03fabdce2b8a631e828dee5683c7d549059c3aa5926", "repo_url": "https://github.com/oprogramadorreal/optimus-claude", "name": "commit-message", "description": "This skill suggests conventional commit messages by analyzing staged, unstaged, and untracked git changes \u2014 read-only, never commits.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oprogramadorreal/optimus-claude/blob/master/skills/commit-message/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit-message"}, "quality": {"stars": 26, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T18:20:47Z"}, "embedding_text": "commit-message. This skill suggests conventional commit messages by analyzing staged, unstaged, and untracked git changes \u2014 read-only, never commits. Platforms: claude_code."} {"id": "b4ddce20077dfe485531543e319f9072bdcbaf479d35932a7ab691f5250ad1e8", "repo_url": "https://github.com/oprogramadorreal/optimus-claude", "name": "commit", "description": "This skill stages, commits, and optionally pushes local changes with a conventional commit message \u2014 analyzes diffs, generates the message, confirms with the user, and commits. On protected branches, offers to create a feature branch automatically. Multi-repo aware. Use when you want to commit your work in one step.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oprogramadorreal/optimus-claude/blob/master/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit"}, "quality": {"stars": 26, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T18:20:47Z"}, "embedding_text": "commit. This skill stages, commits, and optionally pushes local changes with a conventional commit message \u2014 analyzes diffs, generates the message, confirms with the user, and commits. On protected branches, offers to create a feature branch automatically. Multi-repo aware. Use when you want to commit your work in one step. Platforms: claude_code."} {"id": "ce386501e125b7ad6e619dae790f259449db41d0c1cf531518b4e55732312106", "repo_url": "https://github.com/oprogramadorreal/optimus-claude", "name": "dev-setup", "description": "Ensures the project has comprehensive, accurate development setup instructions in the README for human developers. Detects tech stack, external services, environment config, and generates step-by-step \"how to run everything in dev mode\" instructions. Audits existing instructions against actual project state. Use after /optimus:init or standalone when onboarding docs feel incomplete. Handles single projects, monorepos, and multi-repo workspaces.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oprogramadorreal/optimus-claude/blob/master/skills/dev-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-setup"}, "quality": {"stars": 26, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T18:20:47Z"}, "embedding_text": "dev-setup. Ensures the project has comprehensive, accurate development setup instructions in the README for human developers. Detects tech stack, external services, environment config, and generates step-by-step \"how to run everything in dev mode\" instructions. Audits existing instructions against actual project state. Use after /optimus:init or standalone when onboarding docs feel incomplete. Handles single projects, monorepos, and multi-repo workspaces. Platforms: claude_code."} @@ -14954,55 +19620,26 @@ {"id": "b7026e8a11176c17023fb85eeb60ef82dde453315b643d6fc30419cf2d52f4e7", "repo_url": "https://github.com/avibebuilder/claude-prime", "name": "docker", "description": "Docker containerization best practices and patterns. Use this skill when creating Dockerfiles, configuring Docker Compose, optimizing images, implementing container security, or deploying to production. Covers multi-stage builds, healthchecks, and resource limits.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "claude", "claude-code", "claude-code-skills", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avibebuilder/claude-prime/blob/main/.claude/starter-skills/docker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docker"}, "quality": {"stars": 35, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:48:22Z"}, "embedding_text": "docker. Docker containerization best practices and patterns. Use this skill when creating Dockerfiles, configuring Docker Compose, optimizing images, implementing container security, or deploying to production. Covers multi-stage builds, healthchecks, and resource limits. Categories: agent-skills, claude, claude-code, claude-code-skills, claude-skills. Platforms: claude_code."} {"id": "86c42077455225c372781f49dc470c271ff73f902eeb98fc12aa6d4df1db1255", "repo_url": "https://github.com/avibebuilder/claude-prime", "name": "frontend-development", "description": "Frontend implementation patterns, conventions, and tooling. Use this skill when creating components, building pages, implementing forms, fetching data, styling UI, organizing frontend code, or configuring frontend tooling (Biome, ESLint, Prettier, linting, formatting). Covers file structure, component patterns, state management, data fetching, and code quality tools.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "claude", "claude-code", "claude-code-skills", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avibebuilder/claude-prime/blob/main/.claude/starter-skills/frontend-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-development"}, "quality": {"stars": 35, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:48:22Z"}, "embedding_text": "frontend-development. Frontend implementation patterns, conventions, and tooling. Use this skill when creating components, building pages, implementing forms, fetching data, styling UI, organizing frontend code, or configuring frontend tooling (Biome, ESLint, Prettier, linting, formatting). Covers file structure, component patterns, state management, data fetching, and code quality tools. Categories: agent-skills, claude, claude-code, claude-code-skills, claude-skills. Platforms: claude_code."} {"id": "6a2f8f5cbdc0c8a5a66b1f07db084e4e7dfb27e318b72e938d99934a08aba4c9", "repo_url": "https://github.com/avibebuilder/claude-prime", "name": "monorepo", "description": "Monorepo development patterns for pnpm workspaces and Turborepo. Use this skill when configuring workspaces, setting up task pipelines, managing cross-package dependencies, or optimizing CI/CD with remote caching. Covers package organization and shared design systems.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "claude", "claude-code", "claude-code-skills", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/avibebuilder/claude-prime/blob/main/.claude/starter-skills/monorepo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install monorepo"}, "quality": {"stars": 35, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:48:22Z"}, "embedding_text": "monorepo. Monorepo development patterns for pnpm workspaces and Turborepo. Use this skill when configuring workspaces, setting up task pipelines, managing cross-package dependencies, or optimizing CI/CD with remote caching. Covers package organization and shared design systems. Categories: agent-skills, claude, claude-code, claude-code-skills, claude-skills. Platforms: claude_code."} -{"id": "df312893f5620b70e6cab0c7b699b5a70366fdc33e7758b7452a89b5e0a414a6", "repo_url": "https://github.com/fortescarlet/codex-kkp", "name": "codex-agent-collaboration", "description": "Delegate coding tasks to Codex AI for implementation, analysis, and alternative solutions. Use when you need a second AI perspective, want to explore different approaches, or need specialized Codex capabilities for complex coding tasks.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-code-skill", "claude-code-skills", "claude-plugin", "claude-skill", "claude-skills", "codex", "kotlin", "kotlin-multiplatform"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fortescarlet/codex-kkp/blob/main/claude-code-skills-template/codex-agent-collaboration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codex-agent-collaboration"}, "quality": {"stars": 24, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-20T08:57:21Z"}, "embedding_text": "codex-agent-collaboration. Delegate coding tasks to Codex AI for implementation, analysis, and alternative solutions. Use when you need a second AI perspective, want to explore different approaches, or need specialized Codex capabilities for complex coding tasks. Categories: claude, claude-code, claude-code-skill, claude-code-skills, claude-plugin, claude-skill, claude-skills, codex, kotlin, kotlin-multiplatform. Platforms: claude_code."} {"id": "087c267b26245c23096b3a7193a0f7856198d05b29bdf478d028db920dfb0cc2", "repo_url": "https://github.com/keysersoose/claude-agent-builder", "name": "agent-builder", "description": "Build custom AI agents in Claude Code from a user's problem statement. This skill analyzes the user's use case, asks smart clarifying questions, researches the internet for similar agents (GitHub repos, blogs, Claude Code community patterns), and then architects and builds production-ready Claude Code agents \u2014 including subagents, skills, hooks, slash commands, MCP integrations, and CLAUDE.md configuration. Use this skill whenever the user wants to create an agent, build an automation workflow, set up a Claude Code subagent, design a multi-agent system, or says things like 'build me an agent for...', 'automate this with Claude Code', 'I want a subagent that...', 'help me create a workflow', 'set up an agent pipeline', or any variation of wanting Claude Code to do something specialized. Also trigger when the user mentions agent architecture, agent SDK, agentic workflows, or task delegation in Claude Code \u2014 even if they don't use the word 'agent' explicitly.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/keysersoose/claude-agent-builder/blob/main/agent-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-builder"}, "quality": {"stars": 24, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T15:51:20Z"}, "embedding_text": "agent-builder. Build custom AI agents in Claude Code from a user's problem statement. This skill analyzes the user's use case, asks smart clarifying questions, researches the internet for similar agents (GitHub repos, blogs, Claude Code community patterns), and then architects and builds production-ready Claude Code agents \u2014 including subagents, skills, hooks, slash commands, MCP integrations, and CLAUDE.md configuration. Use this skill whenever the user wants to create an agent, build an automation workflow, set up a Claude Code subagent, design a multi-agent system, or says things like 'build me an agent for...', 'automate this with Claude Code', 'I want a subagent that...', 'help me create a workflow', 'set up an agent pipeline', or any variation of wanting Claude Code to do something specialized. Also trigger when the user mentions agent architecture, agent SDK, agentic workflows, or task delegation in Claude Code \u2014 even if they don't use the word 'agent' explicitly. Platforms: claude_code."} {"id": "e11f8c0ce2145cf1bb025af69ca462b13ebdaa65db82d39e4a7b7a435f4e7599", "repo_url": "https://github.com/mann1988/awesome-claude-skills", "name": "mckinsey-consultant", "description": "McKinsey\u987e\u95ee\u5f0f\u95ee\u9898\u89e3\u51b3\u7cfb\u7edf\u3002\u4ece\u5546\u4e1a\u95ee\u9898\u51fa\u53d1,\u901a\u8fc7\u5047\u8bbe\u9a71\u52a8\u7684\u7ed3\u6784\u5316\u5206\u6790\u65b9\u6cd5,\u751f\u6210McKinsey\u98ce\u683c\u7814\u7a76\u62a5\u544a\u548cPPT\u3002\u878d\u5408Problem Solving\u65b9\u6cd5\u8bba\u3001MECE\u539f\u5219\u3001Issue Tree\u62c6\u89e3\u3001Hypotheses\u5f62\u6210\u3001Dummy Page\u8bbe\u8ba1\u3001\u667a\u80fd\u6570\u636e\u6536\u96c6\u548c\u4e13\u4e1aPPT\u751f\u6210\u80fd\u529b\u3002", "source": ["marketplace", "topic"], "categories": ["anthropic", "anthropic-claude", "anthropic-skills", "awesome-claude-code", "claude-ai", "claude-api", "claude-code", "claude-code-skills", "claude-desktop", "claude-skills", "claude-skills-hub", "codex-cli", "gemini-cli", "llama", "openai", "productivity", "skills", "tdd"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mann1988/awesome-claude-skills/blob/main/mckinsey-consultant-11/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mckinsey-consultant"}, "quality": {"stars": 21, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:31:00Z"}, "embedding_text": "mckinsey-consultant. McKinsey\u987e\u95ee\u5f0f\u95ee\u9898\u89e3\u51b3\u7cfb\u7edf\u3002\u4ece\u5546\u4e1a\u95ee\u9898\u51fa\u53d1,\u901a\u8fc7\u5047\u8bbe\u9a71\u52a8\u7684\u7ed3\u6784\u5316\u5206\u6790\u65b9\u6cd5,\u751f\u6210McKinsey\u98ce\u683c\u7814\u7a76\u62a5\u544a\u548cPPT\u3002\u878d\u5408Problem Solving\u65b9\u6cd5\u8bba\u3001MECE\u539f\u5219\u3001Issue Tree\u62c6\u89e3\u3001Hypotheses\u5f62\u6210\u3001Dummy Page\u8bbe\u8ba1\u3001\u667a\u80fd\u6570\u636e\u6536\u96c6\u548c\u4e13\u4e1aPPT\u751f\u6210\u80fd\u529b\u3002 Categories: anthropic, anthropic-claude, anthropic-skills, awesome-claude-code, claude-ai, claude-api, claude-code, claude-code-skills, claude-desktop, claude-skills, claude-skills-hub, codex-cli, gemini-cli, llama, openai, productivity, skills, tdd. Platforms: claude_code."} {"id": "6a8a5e56c955d274c90840f2b5acdfe8ccb1259c5b0b84d9ed178c17bf7bad92", "repo_url": "https://github.com/mann1988/awesome-claude-skills", "name": "us-gov-shutdown-tracker", "description": "Track and analyze US government shutdown liquidity impacts by monitoring TGA (Treasury General Account), bank reserves, EFFR, and SOFR data from FRED API. Use when user wants to (1) analyze current or past government shutdown effects on financial markets, (2) track liquidity conditions during fiscal policy disruptions, (3) assess \"stealth tightening\" effects, (4) compare shutdown episodes across different monetary policy regimes (QE vs QT), or (5) generate liquidity stress reports with historical context. Recommended usage frequency is weekly on Wednesdays after TGA/reserve data releases.", "source": ["marketplace", "topic"], "categories": ["anthropic", "anthropic-claude", "anthropic-skills", "awesome-claude-code", "claude-ai", "claude-api", "claude-code", "claude-code-skills", "claude-desktop", "claude-skills", "claude-skills-hub", "codex-cli", "gemini-cli", "llama", "openai", "productivity", "skills", "tdd"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mann1988/awesome-claude-skills/blob/main/us-gov-shutdown-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install us-gov-shutdown-tracker"}, "quality": {"stars": 21, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:31:00Z"}, "embedding_text": "us-gov-shutdown-tracker. Track and analyze US government shutdown liquidity impacts by monitoring TGA (Treasury General Account), bank reserves, EFFR, and SOFR data from FRED API. Use when user wants to (1) analyze current or past government shutdown effects on financial markets, (2) track liquidity conditions during fiscal policy disruptions, (3) assess \"stealth tightening\" effects, (4) compare shutdown episodes across different monetary policy regimes (QE vs QT), or (5) generate liquidity stress reports with historical context. Recommended usage frequency is weekly on Wednesdays after TGA/reserve data releases. Categories: anthropic, anthropic-claude, anthropic-skills, awesome-claude-code, claude-ai, claude-api, claude-code, claude-code-skills, claude-desktop, claude-skills, claude-skills-hub, codex-cli, gemini-cli, llama, openai, productivity, skills, tdd. Platforms: claude_code."} {"id": "f337a18ff8706e62485771e18a0ceb1bb0cc012406f8269818088b06e2ee48b5", "repo_url": "https://github.com/samjhudson01/carmack-council", "name": "spec-writer", "description": "Generate structured software specifications for features, bug fixes, and products. Use when the user wants to create a spec, PRD, feature brief, requirements document, or when starting any new implementation that needs a specification first. Invoke via /spec-writer or when the user says \"write a spec\", \"spec this out\", \"create a spec\", \"I need a spec for...\", or describes a feature they want to build. Produces adaptive-complexity specs with Job Stories, Gherkin acceptance criteria, and three-tier boundaries. Output is a markdown file ready for agent execution or human review.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-coding", "ai-workflow", "anthropic", "autonomous-coding", "claude", "claude-code", "claude-code-skills", "claude-skills", "code-review", "developer-tools", "llm-tools", "multi-agent", "nextjs", "open-source", "prisma", "software-architecture", "subagents", "trpc", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/samjhudson01/carmack-council/blob/main/skills/spec-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install spec-writer"}, "quality": {"stars": 23, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:24:07Z"}, "embedding_text": "spec-writer. Generate structured software specifications for features, bug fixes, and products. Use when the user wants to create a spec, PRD, feature brief, requirements document, or when starting any new implementation that needs a specification first. Invoke via /spec-writer or when the user says \"write a spec\", \"spec this out\", \"create a spec\", \"I need a spec for...\", or describes a feature they want to build. Produces adaptive-complexity specs with Job Stories, Gherkin acceptance criteria, and three-tier boundaries. Output is a markdown file ready for agent execution or human review. Categories: ai-agents, ai-coding, ai-workflow, anthropic, autonomous-coding, claude, claude-code, claude-code-skills, claude-skills, code-review, developer-tools, llm-tools, multi-agent, nextjs, open-source, prisma, software-architecture, subagents, trpc, typescript. Platforms: claude_code."} {"id": "72e805e7fe3855040eca740de0952add832b245392987bfcf3c5dcf1876a0e02", "repo_url": "https://github.com/onsails/cc", "name": "review-loop", "description": "Use when code changes need multi-pass automated review before merge. Use when preparing branch for PR. Use when thorough code quality check needed.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onsails/cc/blob/master/review-loop/skills/review-loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install review-loop"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T08:49:56Z"}, "embedding_text": "review-loop. Use when code changes need multi-pass automated review before merge. Use when preparing branch for PR. Use when thorough code quality check needed. Platforms: claude_code."} -{"id": "066310ff0a547e7c2f866f24ebf5390696d80ac57395a6be7ea015251d441f0d", "repo_url": "https://github.com/onsails/cc", "name": "rust-dev", "description": "This skill should be used when working with Rust code, reviewing Rust code, managing Rust dependencies, creating Rust projects, or fixing Rust compilation errors. It provides strict coding standards (especially FAIL FAST error handling), workspace architecture guidance, dependency management automation, and common Rust patterns.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/onsails/cc/blob/master/rust-dev/skills/rust-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rust-dev"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T08:49:56Z"}, "embedding_text": "rust-dev. This skill should be used when working with Rust code, reviewing Rust code, managing Rust dependencies, creating Rust projects, or fixing Rust compilation errors. It provides strict coding standards (especially FAIL FAST error handling), workspace architecture guidance, dependency management automation, and common Rust patterns. Platforms: claude_code."} {"id": "507c46b05aea819b7253bab853f7c5641c5f5a1d7c6de4edb44adaec160af0ea", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "algorithmic-art", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install algorithmic-art"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "algorithmic-art. 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. Platforms: claude_code."} {"id": "953a7a4b2cb91e683ab9a80e997d913ea4927ce54e39a74b88e5f10b3102880d", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "artifacts-builder", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/artifacts-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install artifacts-builder"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "artifacts-builder. 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. Platforms: claude_code."} {"id": "4c472db250d8b78d628a0730a4d94714a72277481cf7fbc1b1bd6b00a6061a70", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "brand-guidelines", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-guidelines"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "brand-guidelines. 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. Platforms: claude_code."} {"id": "84f01fb7d32c32269e8f3202b6b97835bc9716c5db38be97c85ff5e4827148a3", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "canvas-design", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install canvas-design"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "canvas-design. 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. Platforms: claude_code."} -{"id": "f7c11f4339e1f3dff1839878ff66256aaf0599c74fa80d5beaaa08c80c6e1e3a", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/document-skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks Platforms: claude_code."} -{"id": "8693da485e999b2f305ba9fc2bbe197ded992ec535c699afb11d673b6d920304", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "pdf", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/document-skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "pdf. 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. Platforms: claude_code."} -{"id": "1c877a30bd20547a9af97bf4d200994c3edd56e10e90b864583a386d320f2a82", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/document-skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pptx"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks Platforms: claude_code."} -{"id": "0168b4d7163078e80a109d9b4f67ca59e6df5372145e243bb3131cddb64e9b6b", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/document-skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas Platforms: claude_code."} {"id": "df32bab0f281b4ce57a36bd2d7fe39e011bf6c69f486e40e1aa8913f70608b67", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "internal-comms", "description": "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.).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/internal-comms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install internal-comms"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "internal-comms. 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.). Platforms: claude_code."} {"id": "c6f918ae78f6faca8d5db71cafe09b6fd1ff4b38b8205f94a1b03abc45f5e7c9", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "mcp-builder", "description": "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).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-builder"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "mcp-builder. 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). Platforms: claude_code."} -{"id": "0866d8dbcf197549dd126c8d2d6e1abb9acda3c55ce80c52740605077a4ed855", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "skill-creator", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "skill-creator. 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. Platforms: claude_code."} {"id": "5552a40b85a252051f44c6c0bbc0b7edaa2b44670b7b7929a1bde302152751a1", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "slack-gif-creator", "description": "Toolkit for creating animated GIFs optimized for Slack, with validators for size constraints and composable animation primitives. This skill applies when users request animated GIFs or emoji animations for Slack from descriptions like \"make me a GIF for Slack of X doing Y\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/slack-gif-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install slack-gif-creator"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "slack-gif-creator. Toolkit for creating animated GIFs optimized for Slack, with validators for size constraints and composable animation primitives. This skill applies when users request animated GIFs or emoji animations for Slack from descriptions like \"make me a GIF for Slack of X doing Y\". Platforms: claude_code."} -{"id": "79e7136e15c3c1e88ffe733339a09f1e4dc5ebe8de9441457410cd3371fba08d", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "template-skill", "description": "Replace with description of the skill and when Claude should use it.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/template-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install template-skill"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Claude should use it. Platforms: claude_code."} {"id": "ca58f0bf8b8053259e8d4da59760afa6a10827eb75970fc76be9c1585430603d", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "theme-factory", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install theme-factory"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "theme-factory. 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. Platforms: claude_code."} -{"id": "654b09599b76f37cf2e667da5e8348686b5411f7862a0d1d5f4dbb5fc56e6fdc", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "ui-design", "description": "Use this to design a nice UI in single html as inspiration & UI exploration.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/ui-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ui-design"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "ui-design. Use this to design a nice UI in single html as inspiration & UI exploration. Platforms: claude_code."} -{"id": "295218b6f8e69334f69cb10f723db4144a99c421e94d6db664cd0871c1c813fe", "repo_url": "https://github.com/shajith003/awesome-claude-skills", "name": "webapp-testing", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shajith003/awesome-claude-skills/blob/main/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install webapp-testing"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T22:25:08Z"}, "embedding_text": "webapp-testing. 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. Platforms: claude_code."} -{"id": "63a370d4b1d07822d52233008d5966d9f0f2725c2edc83a9736938a2ce07017e", "repo_url": "https://github.com/massimodeluisa/recursive-decomposition-skill", "name": "recursive-decomposition", "description": "Based on the Recursive Language Models (RLM) research by Zhang, Kraska, and Khattab (2025), this skill provides strategies for handling tasks that exceed comfortable context limits through programmatic decomposition and recursive self-invocation. Triggers on phrases like \"analyze all files\", \"process this large document\", \"aggregate information from\", \"search across the codebase\", or tasks involving 10+ files or 50k+ tokens.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "claude-code-plugin", "claude-code-skill", "claude-code-skills", "claude-skills", "llm", "long-context", "recursive-decomposition", "rlm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/massimodeluisa/recursive-decomposition-skill/blob/main/plugins/recursive-decomposition/skills/recursive-decomposition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recursive-decomposition"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T17:09:27Z"}, "embedding_text": "recursive-decomposition. Based on the Recursive Language Models (RLM) research by Zhang, Kraska, and Khattab (2025), this skill provides strategies for handling tasks that exceed comfortable context limits through programmatic decomposition and recursive self-invocation. Triggers on phrases like \"analyze all files\", \"process this large document\", \"aggregate information from\", \"search across the codebase\", or tasks involving 10+ files or 50k+ tokens. Categories: ai-agents, claude-code-plugin, claude-code-skill, claude-code-skills, claude-skills, llm, long-context, recursive-decomposition, rlm. Platforms: claude_code."} {"id": "439ba072a43d6a9cdce997a9e4b1de8d83fca5de39919c1f33f0267bb27a3042", "repo_url": "https://github.com/shelpuk-ai-technology-consulting/agent-skill-tdd", "name": "tdd", "description": "Use for every coding task. Enforce strict TDD workflow: activate Serena, investigate first, clarify+confirm requirements, write per-task REQUIREMENTS.md in .requirements/_/, verify APIs via web search, then implement in tiny test-verified steps.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai", "ai-agents", "ai-skills", "antigravity", "antigravity-skills", "claude-code", "claude-code-skills", "claude-skills", "codex", "codex-skills", "cursor", "cursor-skills", "openclaw", "openclaw-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shelpuk-ai-technology-consulting/agent-skill-tdd/blob/main/skills/tdd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tdd"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T12:14:28Z"}, "embedding_text": "tdd. Use for every coding task. Enforce strict TDD workflow: activate Serena, investigate first, clarify+confirm requirements, write per-task REQUIREMENTS.md in .requirements/_/, verify APIs via web search, then implement in tiny test-verified steps. Categories: agent-skills, ai, ai-agents, ai-skills, antigravity, antigravity-skills, claude-code, claude-code-skills, claude-skills, codex, codex-skills, cursor, cursor-skills, openclaw, openclaw-skills, skills. Platforms: claude_code."} {"id": "03fadde1e846253aa9b4a4600c7c6f680298ab006244460e9a2a63378e84d394", "repo_url": "https://github.com/mikedemarais/grok-skill", "name": "grok-skill", "description": "Search and analyze X (Twitter) using xAI Grok 4 via OpenRouter with Live Search. Trigger on prompts that explicitly or implicitly ask to \"search Twitter/X\", \"what's trending\", \"tweets from @handle\", \"hashtag #\u2026\", \"what are people saying\", or that require tweet-level activity/engagement from X.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-skills", "claude-skills", "grok", "openrouter", "xai"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mikedemarais/grok-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install grok-skill"}, "quality": {"stars": 17, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-07T20:18:26Z"}, "embedding_text": "grok-skill. Search and analyze X (Twitter) using xAI Grok 4 via OpenRouter with Live Search. Trigger on prompts that explicitly or implicitly ask to \"search Twitter/X\", \"what's trending\", \"tweets from @handle\", \"hashtag #\u2026\", \"what are people saying\", or that require tweet-level activity/engagement from X. Categories: claude-code, claude-code-skills, claude-skills, grok, openrouter, xai. Platforms: claude_code."} -{"id": "1fe06ef625f9e28727a205b24229d9d8174379e183ed59911b88f81b29b12121", "repo_url": "https://github.com/zebbern/agent-skills-authoring", "name": "agent-skills-authoring", "description": "Guides agents through creating, validating, and optimizing Agent Skills (SKILL.md files) from user requests. Covers all YAML frontmatter fields, directory layout, progressive disclosure, scripts, quality patterns, and evaluation workflows. Use when a user asks you to create, edit, audit, or improve an Agent Skill, even if they don't use the word \"skill\" \u2014 any request about reusable agent instructions, workflow packaging, or capability extension should trigger this skill.", "source": ["marketplace", "topic"], "categories": ["agent-development-kit", "agent-framework", "agent-skill", "agent-skills", "agentic-ai", "agentic-workflow", "agents", "claude-code-skills", "claude-skills", "claude-skills-creator", "claude-skills-hub", "copilot-coding-agent", "copilot-instructions", "create-skills", "guide-skills", "how-to-create-skills", "skills", "skills-development", "skills-guide", "skills-system"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zebbern/agent-skills-authoring/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-skills-authoring"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-01T17:08:18Z"}, "embedding_text": "agent-skills-authoring. Guides agents through creating, validating, and optimizing Agent Skills (SKILL.md files) from user requests. Covers all YAML frontmatter fields, directory layout, progressive disclosure, scripts, quality patterns, and evaluation workflows. Use when a user asks you to create, edit, audit, or improve an Agent Skill, even if they don't use the word \"skill\" \u2014 any request about reusable agent instructions, workflow packaging, or capability extension should trigger this skill. Categories: agent-development-kit, agent-framework, agent-skill, agent-skills, agentic-ai, agentic-workflow, agents, claude-code-skills, claude-skills, claude-skills-creator, claude-skills-hub, copilot-coding-agent, copilot-instructions, create-skills, guide-skills, how-to-create-skills, skills, skills-development, skills-guide, skills-system. Platforms: claude_code."} {"id": "f348d153f7b15bd61be308b5d0fa81ad53e4a50cf26f0be69a262c97139c27da", "repo_url": "https://github.com/wrsmith108/varlock-claude-skill", "name": "varlock", "description": "Secure environment variable management with Varlock. Use when handling secrets, API keys, credentials, or any sensitive configuration. Ensures secrets are never exposed in terminals, logs, traces, or Claude's context. Trigger phrases include \"environment variables\", \"secrets\", \".env\", \"API key\", \"credentials\", \"sensitive\", \"Varlock\".", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-skills", "claude-skills", "environment-variables", "security"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wrsmith108/varlock-claude-skill/blob/main/skills/varlock/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install varlock"}, "quality": {"stars": 16, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T01:12:04Z"}, "embedding_text": "varlock. Secure environment variable management with Varlock. Use when handling secrets, API keys, credentials, or any sensitive configuration. Ensures secrets are never exposed in terminals, logs, traces, or Claude's context. Trigger phrases include \"environment variables\", \"secrets\", \".env\", \"API key\", \"credentials\", \"sensitive\", \"Varlock\". Categories: claude-code, claude-code-skills, claude-skills, environment-variables, security. Platforms: claude_code."} -{"id": "d0f26d3080e67ca89cfcdc8e3f700633ecf1444462b3c0b98bb5ddc73c95c12d", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "askme", "description": "Verbalized Sampling (VS) protocol for deep intent exploration before planning. Use when starting ambiguous or complex tasks, when multiple interpretations exist, or when you need to explore diverse intent hypotheses and ask maximum clarifying questions before committing to an approach.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/askme/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install askme"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "askme. Verbalized Sampling (VS) protocol for deep intent exploration before planning. Use when starting ambiguous or complex tasks, when multiple interpretations exist, or when you need to explore diverse intent hypotheses and ask maximum clarifying questions before committing to an approach. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "ddfd4afc925659f7a24c3eb4a5eefd8d321a1b406fd58f247a2eab2c6c99f2ba", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "ast-grep", "description": "Effective code search, analysis, and refactoring using ast-grep (sg). Use this skill for precise AST-based code modifications, structural search, and linting.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/ast-grep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ast-grep"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "ast-grep. Effective code search, analysis, and refactoring using ast-grep (sg). Use this skill for precise AST-based code modifications, structural search, and linting. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "cd19c6579bff6c10d37d393af7ff925869dbf2c632708954c53de273594d544c", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "contexts", "description": "Coordinate context sweep before coding - gather relevant files, patterns, and tooling summaries. Use when preparing to implement a feature, fix, or refactor and need comprehensive architecture, pattern, tooling, and dependency context gathered first.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/contexts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install contexts"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "contexts. Coordinate context sweep before coding - gather relevant files, patterns, and tooling summaries. Use when preparing to implement a feature, fix, or refactor and need comprehensive architecture, pattern, tooling, and dependency context gathered first. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} {"id": "4003aec5173aa638bf0c73a49739f8509f8ba54edee83c7d0e264c02dd55bc35", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "design-by-contract", "description": "Design-by-Contract (DbC) development - design contracts from requirements, then execute CREATE -> VERIFY -> TEST cycle. Use when implementing with formal preconditions, postconditions, and invariants using deal (Python), contracts (Rust), Zod (TypeScript), or Kotlin contracts.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/design-by-contract/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install design-by-contract"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "design-by-contract. Design-by-Contract (DbC) development - design contracts from requirements, then execute CREATE -> VERIFY -> TEST cycle. Use when implementing with formal preconditions, postconditions, and invariants using deal (Python), contracts (Rust), Zod (TypeScript), or Kotlin contracts. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "1c1422ee204eec43cad9adeaa8a813db86d8150588e8f8f68ed2abf9507f58d4", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "gh-address-comments", "description": "Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/gh-address-comments/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-address-comments"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "gh-address-comments. Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} {"id": "12ad363e51e90fda26a30da6e1b2d1f661cc450233f8ae8f8930e2b29ede4dde", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "gh-fix-ci", "description": "Inspect GitHub PR checks with gh, pull failing GitHub Actions logs, summarize failure context, then create a fix plan and implement after user approval. Use when a user asks to debug or fix failing PR CI/CD checks on GitHub Actions and wants a plan + code changes; for external checks (e.g., Buildkite), only report the details URL and mark them out of scope.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/gh-fix-ci/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-fix-ci"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "gh-fix-ci. Inspect GitHub PR checks with gh, pull failing GitHub Actions logs, summarize failure context, then create a fix plan and implement after user approval. Use when a user asks to debug or fix failing PR CI/CD checks on GitHub Actions and wants a plan + code changes; for external checks (e.g., Buildkite), only report the details URL and mark them out of scope. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "c11ae22d2dd6a7606fa3c6f84aa9b90621f0df58cea2f7de8c0aa54e767f70cf", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "inits", "description": "Analyze a codebase and create or improve an AGENTS.md file for future agent instances. Use when onboarding to a repository and capturing hard-to-rediscover conventions, constraints, and rationale.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/init/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install inits"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "inits. Analyze a codebase and create or improve an AGENTS.md file for future agent instances. Use when onboarding to a repository and capturing hard-to-rediscover conventions, constraints, and rationale. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "920ba72fdec05c265515b7a4c9ac3415579fef148699d29f056cd8bc1c01b082", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "parallel-launch", "description": "Decompose a task into independent concerns and execute them through aggressively parallel, specialized agent groups. Use when a request involves multiple independent sub-tasks, research across separate domains, or work that can be parallelized across files or modules.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/parallel-launch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install parallel-launch"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "parallel-launch. Decompose a task into independent concerns and execute them through aggressively parallel, specialized agent groups. Use when a request involves multiple independent sub-tasks, research across separate domains, or work that can be parallelized across files or modules. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "cd1d4a532f278a92521b8a7087c64054eb7ac22ce89f071a7702f410ac29a20f", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "plans", "description": "Software architect and planning specialist - conduct thorough read-only planning before any action. Use when exploring a codebase to design implementation plans, defining objectives, gathering relevant files, and summarizing available tools before coding begins.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install plans"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "plans. Software architect and planning specialist - conduct thorough read-only planning before any action. Use when exploring a codebase to design implementation plans, defining objectives, gathering relevant files, and summarizing available tools before coding begins. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "fa6ff87af38135b88f9d74bb81381942d014d69c09c73d96196fc65e23b94946", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "pr-merge-base", "description": "Merge one or more PRs into the base branch with queue-like sequencing and conflict resolution. Use when merging PRs that may conflict with each other or the base, requiring ordered application and intelligent conflict handling.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/pr-merge-base/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pr-merge-base"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "pr-merge-base. Merge one or more PRs into the base branch with queue-like sequencing and conflict resolution. Use when merging PRs that may conflict with each other or the base, requiring ordered application and intelligent conflict handling. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "602739e5a70f8da5f6fd5aa8775827224a7706a9747a666fb39136c6a37eb3c8", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "pr-merge-temporal", "description": "Merge multiple PRs into a temporal integration branch before merging to base, with ordered conflict resolution. Use when you want to validate a set of PRs together on a staging branch before advancing the base branch.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/pr-merge-temporal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pr-merge-temporal"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "pr-merge-temporal. Merge multiple PRs into a temporal integration branch before merging to base, with ordered conflict resolution. Use when you want to validate a set of PRs together on a staging branch before advancing the base branch. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "3c1788149b6f744275d17ee83f9c2e69c97d55fe75300a21478bc169ba94106d", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "pr-reviews", "description": "Review code changes on a given GitHub PR using gh CLI. Use when the user asks to review a pull request, analyze PR diffs, or provide feedback on open PRs with structured quality, security, and testing assessments.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/pr-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pr-reviews"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "pr-reviews. Review code changes on a given GitHub PR using gh CLI. Use when the user asks to review a pull request, analyze PR diffs, or provide feedback on open PRs with structured quality, security, and testing assessments. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "0967b22b5510963da999ca14a648d8d8eaf3b67b2b2a2567938d45292bc901d2", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "proceed", "description": "Execute an implementation plan with surgical precision. Use after a planning phase (plan-now or similar) has produced a step-by-step strategy and identified critical files. Focuses on precise code changes with verification at each step.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/proceed/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install proceed"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "proceed. Execute an implementation plan with surgical precision. Use after a planning phase (plan-now or similar) has produced a step-by-step strategy and identified critical files. Focuses on precise code changes with verification at each step. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "770ced148f84fbdda478096bbbebc5aff6bdfd69c63702702de28ba1d0c9e8b5", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "proof-driven", "description": "Proof-driven development with Lean 4 - design proofs from requirements, then execute CREATE -> VERIFY -> REMEDIATE cycle. Use when implementing with formal verification using Lean 4 theorems, lemmas, and proof tactics; zero-sorry policy enforced.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/proof-driven/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install proof-driven"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "proof-driven. Proof-driven development with Lean 4 - design proofs from requirements, then execute CREATE -> VERIFY -> REMEDIATE cycle. Use when implementing with formal verification using Lean 4 theorems, lemmas, and proof tactics; zero-sorry policy enforced. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "bb61c6db9d0fce5029e1de4d66e4cc32349766496c3dfe56f7b1c92095785b37", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "refactor-break-bw-compat", "description": "Refactor by removing backward compatibility and legacy layers.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/refactor-break-bw-compat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refactor-break-bw-compat"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "refactor-break-bw-compat. Refactor by removing backward compatibility and legacy layers. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "d95a7246c6812abb7cf797498df9bc77c810b44883a4f94116fd9c3d863ce504", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "resolve", "description": "Resolve code review comments by verifying their validity and proposing multiple solutions for confirmed issues. Use when addressing review feedback, analyzing whether review comments are valid, and generating architectural solutions (not naive fixes) for confirmed issues.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/resolve/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install resolve"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "resolve. Resolve code review comments by verifying their validity and proposing multiple solutions for confirmed issues. Use when addressing review feedback, analyzing whether review comments are valid, and generating architectural solutions (not naive fixes) for confirmed issues. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "cc92a0ddf7869e89c6fe575be785a5a24d17e16dfc75cfd7eb3e6254454c6856", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "reviews", "description": "Review the code changes on the current branch. Use when the user asks to review their current work, analyze recent commits, or get a code quality assessment of the active branch against the main branch.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reviews"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "reviews. Review the code changes on the current branch. Use when the user asks to review their current work, analyze recent commits, or get a code quality assessment of the active branch against the main branch. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} {"id": "f9a737d45cd22a769a7508312a9ef78d0d9300b42f9c03cac2f9221df546fafa", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "srgn-cli", "description": "Practical guide for building safe, syntax-aware srgn CLI commands for source-code search and transformation. Use when users ask for srgn commands, scoped refactors (comments/docstrings/imports/functions), multi-file rewrites with --glob, custom tree-sitter query usage, or CI-style checks with --fail-any/--fail-none.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/srgn-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install srgn-cli"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "srgn-cli. Practical guide for building safe, syntax-aware srgn CLI commands for source-code search and transformation. Use when users ask for srgn commands, scoped refactors (comments/docstrings/imports/functions), multi-file rewrites with --glob, custom tree-sitter query usage, or CI-style checks with --fail-any/--fail-none. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "f5a7fc4c0bea21e8ff2b9df7a855771403863eea04914d3d5ac0a00279ccb52e", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "test-driven", "description": "Test-Driven Development (TDD) - design tests from requirements, then execute RED -> GREEN -> REFACTOR cycle. Use when implementing features or fixes with TDD methodology, writing tests before code, or following XP-style development with pytest, vitest, cargo test, or go test.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/test-driven/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-driven"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "test-driven. Test-Driven Development (TDD) - design tests from requirements, then execute RED -> GREEN -> REFACTOR cycle. Use when implementing features or fixes with TDD methodology, writing tests before code, or following XP-style development with pytest, vitest, cargo test, or go test. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} {"id": "dfcbfa8653fd16b2750a5dab3e00f99950d383f31c2a6735e7763bfa336a1c7e", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "tests-adversarial", "description": "Write adversarial tests that intentionally stress failure paths.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/tests-adversarial/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tests-adversarial"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "tests-adversarial. Write adversarial tests that intentionally stress failure paths. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} -{"id": "8ba8f97a124aada36a90473dfceca8f68132c96feae628b619e4aef7c864dd81", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "type-driven", "description": "Type-driven development with Idris 2 - design type specifications from requirements, then execute CREATE -> VERIFY -> IMPLEMENT cycle. Use when developing with dependent types, refined types, or proof-carrying types in Idris 2; totality and exhaustive pattern matching enforced.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/type-driven/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install type-driven"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "type-driven. Type-driven development with Idris 2 - design type specifications from requirements, then execute CREATE -> VERIFY -> IMPLEMENT cycle. Use when developing with dependent types, refined types, or proof-carrying types in Idris 2; totality and exhaustive pattern matching enforced. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} {"id": "4ae49eedc997843a90291f92f0237be3748ba251fb8556b574696f162001d775", "repo_url": "https://github.com/outlinedriven/odin-claude-plugin", "name": "validation-first", "description": "Validation-first development with Quint - design specifications from requirements, then execute CREATE -> VERIFY -> IMPLEMENT cycle. Use when developing with formal state machine specifications, invariants, and temporal properties using Quint before writing implementation code.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-cli", "claude-code-plugin", "claude-code-plugins", "claude-code-skill", "claude-code-skills", "claude-marketplace", "claude-plugin", "claude-plugins", "claude-skill", "claude-skills", "claudeskills", "coding-paradigm", "context-engineering", "outline-driven", "outline-driven-development", "paradigms-of-programming"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/outlinedriven/odin-claude-plugin/blob/main/skills/validation-first/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install validation-first"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:53:47Z"}, "embedding_text": "validation-first. Validation-first development with Quint - design specifications from requirements, then execute CREATE -> VERIFY -> IMPLEMENT cycle. Use when developing with formal state machine specifications, invariants, and temporal properties using Quint before writing implementation code. Categories: claude-code, claude-code-cli, claude-code-plugin, claude-code-plugins, claude-code-skill, claude-code-skills, claude-marketplace, claude-plugin, claude-plugins, claude-skill, claude-skills, claudeskills, coding-paradigm, context-engineering, outline-driven, outline-driven-development, paradigms-of-programming. Platforms: claude_code."} {"id": "1393aa1d4fd6183c56447cb425353296d60b8a0b164295adef0f06c80ba76f04", "repo_url": "https://github.com/ijonis/geo-lint", "name": "content-creator", "description": "Self-configuring content creation pipeline with geo-lint validation. On first use, scans your project to learn its framework, content schema, categories, and authors, then creates SEO & GEO-optimized content matched to your brand voice. Validates every piece with geo-lint's 92 rules until zero violations. Triggers on: \"content-creator\", \"create content\", \"write blog\", \"new post\", \"content calendar\", \"brand voice\", \"content strategy\".\n", "source": ["marketplace", "topic"], "categories": ["aeo", "ai-agent", "ai-agent-tools", "ai-search", "ai-search-optimization", "claude", "claude-code", "claude-code-skills", "claude-skill", "cli", "cli-app", "cli-tool", "codex", "content", "generative-engine-optimization", "geo", "linter", "markdown", "mdx", "seo"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ijonis/geo-lint/blob/main/skills/content-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-creator"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-10T15:34:14Z"}, "embedding_text": "content-creator. Self-configuring content creation pipeline with geo-lint validation. On first use, scans your project to learn its framework, content schema, categories, and authors, then creates SEO & GEO-optimized content matched to your brand voice. Validates every piece with geo-lint's 92 rules until zero violations. Triggers on: \"content-creator\", \"create content\", \"write blog\", \"new post\", \"content calendar\", \"brand voice\", \"content strategy\".\n Categories: aeo, ai-agent, ai-agent-tools, ai-search, ai-search-optimization, claude, claude-code, claude-code-skills, claude-skill, cli, cli-app, cli-tool, codex, content, generative-engine-optimization, geo, linter, markdown, mdx, seo. Platforms: claude_code."} {"id": "ffa98953dba014ac080e3ebecc8aa33bfeb5a0d7e3d7554cbc7770dbd0c23ee1", "repo_url": "https://github.com/ijonis/geo-lint", "name": "geo-lint", "description": "SEO & GEO content linter \u2014 validates Markdown/MDX files for AI search visibility using 92 deterministic rules (35 GEO, 32 SEO, 14 content quality, 8 technical, 3 i18n). Runs an autonomous lint-fix loop: scan content, read structured violations, fix them, re-lint until clean. Use when optimizing content for AI citations, auditing SEO compliance, checking GEO readiness, or running pre-publish content validation. Triggers on: \"geo-lint\", \"lint content\", \"SEO audit\", \"GEO\", \"content optimization\", \"AI search\", \"citation readiness\".\n", "source": ["marketplace", "topic"], "categories": ["aeo", "ai-agent", "ai-agent-tools", "ai-search", "ai-search-optimization", "claude", "claude-code", "claude-code-skills", "claude-skill", "cli", "cli-app", "cli-tool", "codex", "content", "generative-engine-optimization", "geo", "linter", "markdown", "mdx", "seo"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ijonis/geo-lint/blob/main/skills/geo-lint/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install geo-lint"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-10T15:34:14Z"}, "embedding_text": "geo-lint. SEO & GEO content linter \u2014 validates Markdown/MDX files for AI search visibility using 92 deterministic rules (35 GEO, 32 SEO, 14 content quality, 8 technical, 3 i18n). Runs an autonomous lint-fix loop: scan content, read structured violations, fix them, re-lint until clean. Use when optimizing content for AI citations, auditing SEO compliance, checking GEO readiness, or running pre-publish content validation. Triggers on: \"geo-lint\", \"lint content\", \"SEO audit\", \"GEO\", \"content optimization\", \"AI search\", \"citation readiness\".\n Categories: aeo, ai-agent, ai-agent-tools, ai-search, ai-search-optimization, claude, claude-code, claude-code-skills, claude-skill, cli, cli-app, cli-tool, codex, content, generative-engine-optimization, geo, linter, markdown, mdx, seo. Platforms: claude_code."} @@ -15242,37 +19879,16 @@ {"id": "2a49c2968fa00811eef6d36b8ede61f5d1e39ab11375dc856335417865ed5494", "repo_url": "https://github.com/sequenzia/agent-alchemy", "name": "project-learnings", "description": "Captures project-specific patterns and anti-patterns into the project's CLAUDE.md. Loaded by other skills (bug-killer, feature-dev, etc.) when they discover project-specific knowledge worth encoding for future sessions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sequenzia/agent-alchemy/blob/main/ported/20260310/nested/dev-tools/skills/project-learnings/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install project-learnings"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T16:23:41Z"}, "embedding_text": "project-learnings. Captures project-specific patterns and anti-patterns into the project's CLAUDE.md. Loaded by other skills (bug-killer, feature-dev, etc.) when they discover project-specific knowledge worth encoding for future sessions. Platforms: claude_code."} {"id": "bdde09e81178987669909ab5650e4af3edae8b455a2600c8f2c2f46c86d07610", "repo_url": "https://github.com/sequenzia/agent-alchemy", "name": "release", "description": "Prepare and execute a Python package release with verification steps. Use for releasing Python packages with uv and ruff.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sequenzia/agent-alchemy/blob/main/ported/20260310/nested/dev-tools/skills/release-python-package/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install release"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T16:23:41Z"}, "embedding_text": "release. Prepare and execute a Python package release with verification steps. Use for releasing Python packages with uv and ruff. Platforms: claude_code."} {"id": "7fb980f7dbd82a7895259313520bbb1e3751dc466dfbcc44e746f76f959b6203", "repo_url": "https://github.com/sequenzia/agent-alchemy", "name": "git-commit", "description": "Commit staged changes with conventional commit message. Use when user says \"commit changes\", \"commit this\", \"save my changes\", or wants to create a git commit.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sequenzia/agent-alchemy/blob/main/ported/20260310/nested/git-tools/skills/git-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-commit"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T16:23:41Z"}, "embedding_text": "git-commit. Commit staged changes with conventional commit message. Use when user says \"commit changes\", \"commit this\", \"save my changes\", or wants to create a git commit. Platforms: claude_code."} -{"id": "81bd7838a298e1b17ef921ad684eb4d55f0367aa86a6ccbc5c753f777fba7c52", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "changelog-observer", "description": "Track development session events in a daily markdown changelog, including file changes, test results, and key decisions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/.claude/skills/changelog-observer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install changelog-observer"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "changelog-observer. Track development session events in a daily markdown changelog, including file changes, test results, and key decisions. Platforms: claude_code."} {"id": "931a1acc326cbbba888ca4ca77a5b47ea8842a40db2252b0ba4b17db75825202", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "agent-check", "description": "Validate custom agent file format and structure", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/agent-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-check"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "agent-check. Validate custom agent file format and structure Platforms: claude_code."} -{"id": "e25bfae3d662405c3490c32bf4790bfe46b71d753ac8a347ea55659143253f21", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "agent-template", "description": "Generate custom agent from template", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/agent-template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-template"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "agent-template. Generate custom agent from template Platforms: claude_code."} {"id": "bec361dd3072319aacf26b725df5b8699e3ae56c5c38120bef370a6ce54dd43a", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "agents", "description": "List all available agents (core + expert)", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agents"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "agents. List all available agents (core + expert) Platforms: claude_code."} -{"id": "b364a96d9a8cca0db34095c17555e595becdb13b98bed5493017fdfddc016ecf", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "auto-loop", "description": "TDD-based autonomous development loop with checkpoint recovery and observability changelog", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/auto-loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install auto-loop"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "auto-loop. TDD-based autonomous development loop with checkpoint recovery and observability changelog Platforms: claude_code."} {"id": "c0816a95261498d7664cea03e3c889e98247b216c2e76769f0f3d626df059ae2", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "changelog", "description": "View and manage the runtime changelog for observability", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/changelog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install changelog"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "changelog. View and manage the runtime changelog for observability Platforms: claude_code."} -{"id": "eea96413d01c314166c5131274cfebc02a91d340c95bf447493741bd77f6bd7c", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "check-environment", "description": "Verify development environment is ready", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/check-environment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install check-environment"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "check-environment. Verify development environment is ready Platforms: claude_code."} -{"id": "1e778434a2fe5d035c83f45ec0d22fccf6ef4c8978846fdb1c5e4a2f5908fb06", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "claude-md-check", "description": "Validate CLAUDE.md structure and completeness", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/claude-md-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-md-check"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "claude-md-check. Validate CLAUDE.md structure and completeness Platforms: claude_code."} -{"id": "f1219ee8eb9194495abcb2ae52a1608f23fb38b38c2643a98a4029335105b7f2", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "claude-md-template", "description": "Generate CLAUDE.md template for current project", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/claude-md-template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-md-template"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "claude-md-template. Generate CLAUDE.md template for current project Platforms: claude_code."} -{"id": "b3c203dc64c75b4db698da83c3567d0db2bb9af5627dee886b4e0d40a29e034a", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "code-reviewer", "description": "Code review specialist for quality, security, and best practices", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/code-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-reviewer"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "code-reviewer. Code review specialist for quality, security, and best practices Platforms: claude_code."} -{"id": "9d4596a1efdda73929fe4a74f26979945dc172dce2f46f9798c09cb0c73e1a91", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "debugger", "description": "Debugging specialist for root cause analysis and problem resolution", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/debugger/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debugger"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "debugger. Debugging specialist for root cause analysis and problem resolution Platforms: claude_code."} -{"id": "44d4c6ed662dba335b2fd805e88fe78ed7c6a8973a62460d1b63e9596d996f71", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "doc-writer", "description": "Documentation specialist for README, API docs, and code comments", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/doc-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install doc-writer"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "doc-writer. Documentation specialist for README, API docs, and code comments Platforms: claude_code."} {"id": "3bb61156fcaf28eb83aed40f552c2769089ac0a06bb36d3528f2d35853ce5552", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "evolving-loop", "description": "Self-Evolving Development Loop - Dynamic skill generation with learning and evolution", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/evolving-loop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install evolving-loop"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "evolving-loop. Self-Evolving Development Loop - Dynamic skill generation with learning and evolution Platforms: claude_code."} {"id": "65061c6c95b48674f86fc8bfd4d4ec48f32167c2949fd06b5d41722740768045", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "evolving-status", "description": "View Self-Evolving Loop session status, history, and memory metrics", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/evolving-status/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install evolving-status"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "evolving-status. View Self-Evolving Loop session status, history, and memory metrics Platforms: claude_code."} -{"id": "599e11e7067a540816518a6b9aeb4eb59c5cbf61cff90813a207dd71f0d1a7f9", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "focus-problem", "description": "Problem analysis using Explore agents", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/focus-problem/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install focus-problem"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "focus-problem. Problem analysis using Explore agents Platforms: claude_code."} -{"id": "83a87490861a22ad0fc51eb9fc8f78e8956c90b508a8e91abdfa8a4e5ae864da", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "handoff-codex", "description": "Delegate tasks to Codex CLI to save Claude context", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/handoff-codex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install handoff-codex"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "handoff-codex. Delegate tasks to Codex CLI to save Claude context Platforms: claude_code."} -{"id": "2201b0b999b3090a883f1a6705766e88ca2f6ff151eafb25b859936f200186a9", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "handoff-gemini", "description": "Delegate tasks to Gemini CLI to save Claude context", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/handoff-gemini/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install handoff-gemini"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "handoff-gemini. Delegate tasks to Gemini CLI to save Claude context Platforms: claude_code."} -{"id": "57d2ce505c9053891a27bd73ac5d25ca720fe9caabd13993b54b382bd2b68939", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "hook-template", "description": "Generate hook script from template", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/hook-template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hook-template"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "hook-template. Generate hook script from template Platforms: claude_code."} {"id": "83a0b6c4dd5660e2231975a0c1574f5f04efbb189399466d28986a2a7fddf36a", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "hooks-check", "description": "Validate hooks configuration and scripts", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/hooks-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hooks-check"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "hooks-check. Validate hooks configuration and scripts Platforms: claude_code."} {"id": "2d2bf39a749468eba317a995b5e5b6a581dd4ce1f6f18d1688eb85d80f2da73c", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "interop-router", "description": "Automatically routes tasks to external AI CLIs (Codex or Gemini) when more efficient. No manual commands needed - routing decisions are made automatically based on task type.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/interop-router/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install interop-router"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "interop-router. Automatically routes tasks to external AI CLIs (Codex or Gemini) when more efficient. No manual commands needed - routing decisions are made automatically based on task type.\n Platforms: claude_code."} -{"id": "4d67f9f80b06df5363a40a36e57fa2a16de165f560feb3a33a7945f35e6a91e0", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "mcp-check", "description": "Validate MCP configuration and suggest improvements", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/mcp-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-check"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "mcp-check. Validate MCP configuration and suggest improvements Platforms: claude_code."} -{"id": "bc527260b8ee67122d8de6c2ff289b689031fd47e1a6430009e96472081771ef", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "plan", "description": "Create detailed execution plan with task breakdown", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install plan"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "plan. Create detailed execution plan with task breakdown Platforms: claude_code."} {"id": "cf55373f85aa538f28d4ae3c7a5586196bbb449de2cc0e630b6bcf5a8b55f1ef", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "project-health-check", "description": "Complete project health audit (7 checks)", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/project-health-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install project-health-check"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "project-health-check. Complete project health audit (7 checks) Platforms: claude_code."} -{"id": "0b1a1278e6d4488fa63e1aafbf3cdafb992d9bbe4d2ccb6b2845fe4a18719494", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "project-init", "description": "Expert-guided project setup with 6 phases", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/project-init/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install project-init"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "project-init. Expert-guided project setup with 6 phases Platforms: claude_code."} -{"id": "dde8f6c4d7b6fb8ce36bc61c920e5dc8bd466438d8890f741e489f8ab5ca8402", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "skill-check", "description": "Validate skill/command file format and structure", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/skill-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-check"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "skill-check. Validate skill/command file format and structure Platforms: claude_code."} {"id": "c6bbf15721eada4c062b454ec9eb06eece46d138c1031e3e1c47e13298ae5191", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "skill-template", "description": "Generate custom skill/command from template", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/skill-template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-template"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "skill-template. Generate custom skill/command from template Platforms: claude_code."} -{"id": "d4021a67c255a4f981305f31b655a9e4d584991720aa92f055ed0eb35419631e", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "skills", "description": "List all available skills (core + custom)", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skills"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "skills. List all available skills (core + custom) Platforms: claude_code."} -{"id": "14a98e84c37127d5a2d2117f35325d2ec60034cb11cd2f8dc084072e58f101be", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "smart-commit", "description": "Conventional Commits with quality checks", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/smart-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install smart-commit"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "smart-commit. Conventional Commits with quality checks Platforms: claude_code."} {"id": "72613fffc4c50178db9ac7c2bea33849d31cb9c1916bbc94cd844e696638ec73", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "test-first", "description": "Test-Driven Development (TDD Red-Green-Refactor)", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/test-first/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-first"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "test-first. Test-Driven Development (TDD Red-Green-Refactor) Platforms: claude_code."} -{"id": "00421dd42179ef249331f5e5428970eaf4d3427f75064b92765939c15e156454", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "test-runner", "description": "Test automation specialist for running tests and ensuring coverage", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/test-runner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-runner"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "test-runner. Test automation specialist for running tests and ensuring coverage Platforms: claude_code."} -{"id": "5dcaa2d8819234fc5d354d078672e3c8ec30fb157dcdad7f170e6c9786a41b0c", "repo_url": "https://github.com/claude-world/director-mode-lite", "name": "workflow", "description": "Complete 5-step development workflow", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/claude-world/director-mode-lite/blob/main/skills/workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install workflow"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T21:08:06Z"}, "embedding_text": "workflow. Complete 5-step development workflow Platforms: claude_code."} {"id": "c7f11e89ff3a1f4a655e86439502eefbfbd0f0516414595f6e76b6e5b69cf106", "repo_url": "https://github.com/wxkingstar/specfusion", "name": "specfusion", "description": "\u4f01\u4e1a\u5fae\u4fe1 \u98de\u4e66 \u9489\u9489 \u6dd8\u5b9d \u5c0f\u7ea2\u4e66 \u6296\u97f3\u7535\u5546 \u5fae\u4fe1\u5c0f\u7a0b\u5e8f \u5fae\u4fe1\u5c0f\u5e97 \u62fc\u591a\u591a \u6709\u8d5e \u5fae\u4fe1\u652f\u4ed8 \u652f\u4ed8\u5b9d \u4eac\u4e1c SHEIN \u5f97\u7269 API\u6587\u6863\u641c\u7d22\u3002\nWeCom Feishu Lark DingTalk Taobao Xiaohongshu Douyin WeChat Pinduoduo Youzan Alipay JD SHEIN Dewu API docs search.\n26,000+ API docs across 15 Chinese open platforms with full-text search. \u641c\u7d2215\u4e2a\u5f00\u653e\u5e73\u53f0\u7684API\u5f00\u53d1\u6587\u6863\uff0c\u652f\u6301\u4e2d\u6587\u5168\u6587\u68c0\u7d22\u3002\nwecom feishu lark dingtalk taobao xiaohongshu xhs douyin jinritemai wechat miniprogram wechat-shop wechat-pay pinduoduo youzanyun alipay jd shein dewu poizon openapi webhook access_token\n\u6296\u5e97 \u5c0f\u7a0b\u5e8f \u5c0f\u5e97 pdd \u4eac\u4e1c\u5f00\u653e\u5e73\u53f0 \u5f97\u7269\u5f00\u653e\u5e73\u53f0 \u7535\u5546\u5f00\u653e\u5e73\u53f0 \u63a5\u53e3\u6587\u6863 \u5f00\u653e\u5e73\u53f0\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wxkingstar/specfusion/blob/main/specfusion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install specfusion"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T15:12:24Z"}, "embedding_text": "specfusion. \u4f01\u4e1a\u5fae\u4fe1 \u98de\u4e66 \u9489\u9489 \u6dd8\u5b9d \u5c0f\u7ea2\u4e66 \u6296\u97f3\u7535\u5546 \u5fae\u4fe1\u5c0f\u7a0b\u5e8f \u5fae\u4fe1\u5c0f\u5e97 \u62fc\u591a\u591a \u6709\u8d5e \u5fae\u4fe1\u652f\u4ed8 \u652f\u4ed8\u5b9d \u4eac\u4e1c SHEIN \u5f97\u7269 API\u6587\u6863\u641c\u7d22\u3002\nWeCom Feishu Lark DingTalk Taobao Xiaohongshu Douyin WeChat Pinduoduo Youzan Alipay JD SHEIN Dewu API docs search.\n26,000+ API docs across 15 Chinese open platforms with full-text search. \u641c\u7d2215\u4e2a\u5f00\u653e\u5e73\u53f0\u7684API\u5f00\u53d1\u6587\u6863\uff0c\u652f\u6301\u4e2d\u6587\u5168\u6587\u68c0\u7d22\u3002\nwecom feishu lark dingtalk taobao xiaohongshu xhs douyin jinritemai wechat miniprogram wechat-shop wechat-pay pinduoduo youzanyun alipay jd shein dewu poizon openapi webhook access_token\n\u6296\u5e97 \u5c0f\u7a0b\u5e8f \u5c0f\u5e97 pdd \u4eac\u4e1c\u5f00\u653e\u5e73\u53f0 \u5f97\u7269\u5f00\u653e\u5e73\u53f0 \u7535\u5546\u5f00\u653e\u5e73\u53f0 \u63a5\u53e3\u6587\u6863 \u5f00\u653e\u5e73\u53f0\n Platforms: claude_code."} {"id": "497c85fc5bf058353250c01771bfa50bc7491d5852541e9ea68fe2dd16bd0b34", "repo_url": "https://github.com/tdimino/claude-code-minoan", "name": "cloudflare", "description": "Cloudflare platform management via Wrangler CLI and Browser Rendering REST API. Deploy Pages sites, manage Workers, KV namespaces, R2 buckets, D1 databases, Queues, Vectorize indexes, Workflows, and Hyperdrive connections. Also provides budget web scraping, crawling, screenshots, and PDF generation via cf_browser.py (Browser Rendering API). Use when deploying to Cloudflare, managing CF infrastructure, configuring wrangler.toml, working with CF storage services, setting up Cloudflare Pages projects, or when you need cheap/free web scraping as an alternative to Firecrawl. Triggers on Cloudflare, wrangler, Pages deploy, KV namespace, R2 bucket, D1 database, CF Workers, Cloudflare DNS, Vectorize, Queues, Workflows, Hyperdrive, cf_browser, Browser Rendering, budget scrape.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tdimino/claude-code-minoan/blob/main/skills/cloudflare/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cloudflare"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T16:34:42Z"}, "embedding_text": "cloudflare. Cloudflare platform management via Wrangler CLI and Browser Rendering REST API. Deploy Pages sites, manage Workers, KV namespaces, R2 buckets, D1 databases, Queues, Vectorize indexes, Workflows, and Hyperdrive connections. Also provides budget web scraping, crawling, screenshots, and PDF generation via cf_browser.py (Browser Rendering API). Use when deploying to Cloudflare, managing CF infrastructure, configuring wrangler.toml, working with CF storage services, setting up Cloudflare Pages projects, or when you need cheap/free web scraping as an alternative to Firecrawl. Triggers on Cloudflare, wrangler, Pages deploy, KV namespace, R2 bucket, D1 database, CF Workers, Cloudflare DNS, Vectorize, Queues, Workflows, Hyperdrive, cf_browser, Browser Rendering, budget scrape. Platforms: claude_code."} {"id": "339e99d67a64b110ac36c399d2795043a71f9500c936309deb7f7f7acac66464", "repo_url": "https://github.com/tdimino/claude-code-minoan", "name": "agents-md-manager", "description": "This skill should be used when creating, auditing, or maintaining AGENTS.md files and Codex CLI configuration for any project\u2014including initializing AGENTS.md for cross-agent compatibility (Codex, Cursor, Copilot, Devin, Jules, Amp, Gemini CLI), generating config.toml or .rules files, scaffolding .agents/skills/, converting CLAUDE.md to AGENTS.md, or auditing existing agent configs for bloat and staleness. Complementary to codex-orchestrator (which executes subagents; this skill creates the config files they consume).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tdimino/claude-code-minoan/blob/main/skills/core-development/agents-md-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agents-md-manager"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T16:34:42Z"}, "embedding_text": "agents-md-manager. This skill should be used when creating, auditing, or maintaining AGENTS.md files and Codex CLI configuration for any project\u2014including initializing AGENTS.md for cross-agent compatibility (Codex, Cursor, Copilot, Devin, Jules, Amp, Gemini CLI), generating config.toml or .rules files, scaffolding .agents/skills/, converting CLAUDE.md to AGENTS.md, or auditing existing agent configs for bloat and staleness. Complementary to codex-orchestrator (which executes subagents; this skill creates the config files they consume). Platforms: claude_code."} @@ -15336,21 +19952,8 @@ {"id": "0a75b48fd3c3f98cbb60292bba065886d822a9130da9e09f870d143ddd31c59d", "repo_url": "https://github.com/inngest/inngest-skills", "name": "inngest-middleware", "description": "Create and use Inngest middleware for cross-cutting concerns. Covers the middleware lifecycle, creating custom middleware, dependency injection with dependencyInjectionMiddleware, encryption via @inngest/middleware-encryption, Sentry error tracking via @inngest/middleware-sentry, and custom middleware patterns.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inngest/inngest-skills/blob/main/skills/inngest-middleware/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install inngest-middleware"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-20T02:58:04Z"}, "embedding_text": "inngest-middleware. Create and use Inngest middleware for cross-cutting concerns. Covers the middleware lifecycle, creating custom middleware, dependency injection with dependencyInjectionMiddleware, encryption via @inngest/middleware-encryption, Sentry error tracking via @inngest/middleware-sentry, and custom middleware patterns. Platforms: claude_code."} {"id": "06ee792ebb1e4201dc517183ea3a816884dcc6952cfd2a3e59c2d4bd2c099b34", "repo_url": "https://github.com/inngest/inngest-skills", "name": "inngest-setup", "description": "Set up Inngest in a TypeScript project. Install the SDK, create a client, configure environment variables, serve endpoints or connect as a worker, and run the local dev server.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inngest/inngest-skills/blob/main/skills/inngest-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install inngest-setup"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-20T02:58:04Z"}, "embedding_text": "inngest-setup. Set up Inngest in a TypeScript project. Install the SDK, create a client, configure environment variables, serve endpoints or connect as a worker, and run the local dev server. Platforms: claude_code."} {"id": "723a7cfe159b6154f2d4bdb6524e186fce9a912bcc89c289183ad43ac28f3fdb", "repo_url": "https://github.com/inngest/inngest-skills", "name": "inngest-steps", "description": "Use Inngest step methods to build durable workflows. Covers step.run, step.sleep, step.waitForEvent, step.waitForSignal, step.sendEvent, step.invoke, step.ai, and patterns for loops and parallel execution.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/inngest/inngest-skills/blob/main/skills/inngest-steps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install inngest-steps"}, "quality": {"stars": 12, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-20T02:58:04Z"}, "embedding_text": "inngest-steps. Use Inngest step methods to build durable workflows. Covers step.run, step.sleep, step.waitForEvent, step.waitForSignal, step.sendEvent, step.invoke, step.ai, and patterns for loops and parallel execution. Platforms: claude_code."} -{"id": "242b60d32b237e6789067116f6e3e064e0d04d69e0757192897ca33df25bcdfb", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "branch-workflow", "description": "Git branch workflow for autonomous work. Apply when implementing features, fixes, or any code changes.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/branch-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install branch-workflow"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "branch-workflow. Git branch workflow for autonomous work. Apply when implementing features, fixes, or any code changes. Platforms: claude_code."} -{"id": "bcbc83bff1d68ef876731b0433999ea8baf66eb8fc6d66438603469f841efc85", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "cc-docs", "description": "Read Claude Code documentation to learn about features, capabilities, hooks, skills, MCP, subagents, and how to use Claude Code effectively.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/cc-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cc-docs"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "cc-docs. Read Claude Code documentation to learn about features, capabilities, hooks, skills, MCP, subagents, and how to use Claude Code effectively. Platforms: claude_code."} -{"id": "deb36b28a966cf0d73dbf92eb33f58d38a0941069d3a76c9d2f44d28bc471cd0", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "claude-code-mastery", "description": "Master Claude Code capabilities - subagents, skills, hooks, MCP. Use when optimizing workflows, creating automation, or improving how agents work.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/claude-code-mastery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-code-mastery"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "claude-code-mastery. Master Claude Code capabilities - subagents, skills, hooks, MCP. Use when optimizing workflows, creating automation, or improving how agents work. Platforms: claude_code."} -{"id": "f5e1886401e2dad02a66d348c4bf39fb5a6626b082d28bd9cb876a0495aed129", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-cycle", "description": "Start or resume a development session. Use when beginning feature work, implementing changes, or continuing previous work. Orchestrates discovery, planning, review, and build phases with Bob and Garry.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-cycle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-cycle"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-cycle. Start or resume a development session. Use when beginning feature work, implementing changes, or continuing previous work. Orchestrates discovery, planning, review, and build phases with Bob and Garry. Platforms: claude_code."} -{"id": "6b94ce9842cc36abe929da5d078d31d9a08a5c34728671121e008327913e60be", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-finish", "description": "Close a dev-cycle session, capture learnings, and optionally commit. Use when development work is complete and ready to wrap up.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-finish/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-finish"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-finish. Close a dev-cycle session, capture learnings, and optionally commit. Use when development work is complete and ready to wrap up. Platforms: claude_code."} -{"id": "3f6b9be5f1cd6afb0e9256a126d28f15ba4f6806638cb78d0a6594ef8926eead", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-full-auto", "description": "Fully autonomous development mode. Spec in, production-ready software out. Claude makes decisions, uses agents, commits locally. Only stops for hard blockers.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-full-auto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-full-auto"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-full-auto. Fully autonomous development mode. Spec in, production-ready software out. Claude makes decisions, uses agents, commits locally. Only stops for hard blockers. Platforms: claude_code."} -{"id": "f13c6ebb2f9f65c23f07efc4e3e62b9e3ab815ca46babf46e29f706a96c54227", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-qa", "description": "Run QA checks on current work. Tests, linting, type checking, build verification. Use during or after development to catch issues early.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-qa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-qa"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-qa. Run QA checks on current work. Tests, linting, type checking, build verification. Use during or after development to catch issues early. Platforms: claude_code."} -{"id": "32711623012b72ab8d281191e7afda21867aa3dc1ab99f2fd35363da67fefd53", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-rc", "description": "Release candidate preparation. Final checks before merge - QA, security, review, changelog. The last gate before shipping.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-rc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-rc"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-rc. Release candidate preparation. Final checks before merge - QA, security, review, changelog. The last gate before shipping. Platforms: claude_code."} -{"id": "7cd7cafbb9e3f95d525dfc56e44b440f6dd3757d347aa7656c0fb021ccc93b87", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "dev-security", "description": "Security audit with Sentinel. Checks for vulnerabilities, secrets, dependencies, and security best practices. Use before shipping or when working on auth/crypto/sensitive areas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/dev-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dev-security"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "dev-security. Security audit with Sentinel. Checks for vulnerabilities, secrets, dependencies, and security best practices. Use before shipping or when working on auth/crypto/sensitive areas. Platforms: claude_code."} -{"id": "3ff09b5c1d5b1724d3bd698d6db1e0d1d10733dc0929cd0ab4067b287cf88646", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "megg-learn", "description": "Capture a learning to megg knowledge", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/megg-learn/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install megg-learn"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "megg-learn. Capture a learning to megg knowledge Platforms: claude_code."} {"id": "b8150fa606bf3ad112bdd7dae504e2748d152e4604188521bb6ccf323f64b21b", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "megg-state", "description": "Manage session state for cross-session handoff", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/megg-state/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install megg-state"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "megg-state. Manage session state for cross-session handoff Platforms: claude_code."} -{"id": "afdfff94cd4b3e6fe09462e7735a73a608199444343529c7bd836e44ec7735ee", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "openspec-workflow", "description": "Use OpenSpec for specification-driven development. Apply when planning features, implementing changes, or managing project deliverables.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/openspec-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openspec-workflow"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "openspec-workflow. Use OpenSpec for specification-driven development. Apply when planning features, implementing changes, or managing project deliverables. Platforms: claude_code."} {"id": "64b0e994b44024237c6a0bf3074efa56037096279868d2d622400e97ec2d102c", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "scout", "description": "Explore codebase or research a question. Delegates to Scout agent for fast, thorough exploration.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/scout/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install scout"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "scout. Explore codebase or research a question. Delegates to Scout agent for fast, thorough exploration. Platforms: claude_code."} -{"id": "0c97c6d7392baf390215c139f0a2fd6710eb620edde55d2f727b027aaf8a89e2", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "self-improvement", "description": "Continuously improve AI workflows and capabilities. Use when reflecting on process, identifying friction, or after completing significant work.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/skills/self-improvement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install self-improvement"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "self-improvement. Continuously improve AI workflows and capabilities. Use when reflecting on process, identifying friction, or after completing significant work. Platforms: claude_code."} -{"id": "360e7f5c950348a8f97244d5c692b0939d43b9822d75655fc52b7974e969cb07", "repo_url": "https://github.com/toruai/toru-claude-agents", "name": "my-projects", "description": "Navigate your projects. Get context, paths, status. Use when needing project overview or finding specific work.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/toruai/toru-claude-agents/blob/main/templates/my-projects/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install my-projects"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T11:54:03Z"}, "embedding_text": "my-projects. Navigate your projects. Get context, paths, status. Use when needing project overview or finding specific work. Platforms: claude_code."} {"id": "552f1696a322c15f8b6023daf5750de28dd4e76f159be7e8afd62b2ab9a20207", "repo_url": "https://github.com/vulhunt-re/skills", "name": "btp-ba2-cli", "description": "Interact with the Binarly Transparency Platform (BTP) via CLI commands for uploading firmware, running scans, downloading BA2 archives, and pushing custom rules. Use when you need to interact with the Binarly Transparency Platform or working with BA2s.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vulhunt-re/skills/blob/main/plugins/vulhunt/skills/btp-ba2-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install btp-ba2-cli"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T18:45:24Z"}, "embedding_text": "btp-ba2-cli. Interact with the Binarly Transparency Platform (BTP) via CLI commands for uploading firmware, running scans, downloading BA2 archives, and pushing custom rules. Use when you need to interact with the Binarly Transparency Platform or working with BA2s. Platforms: claude_code."} {"id": "c50b61139de91e77b343c631ea69444590e3dc249ccfa2ffa4433d9166adfccd", "repo_url": "https://github.com/vulhunt-re/skills", "name": "byte-pattern-matching", "description": "Search for raw byte patterns (hex sequences, opcodes) in binary code. Use when looking for specific instruction sequences, machine code patterns, UEFI SMI handlers, or known vulnerability signatures by their byte representation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vulhunt-re/skills/blob/main/plugins/vulhunt/skills/byte-pattern-matching/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install byte-pattern-matching"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T18:45:24Z"}, "embedding_text": "byte-pattern-matching. Search for raw byte patterns (hex sequences, opcodes) in binary code. Use when looking for specific instruction sequences, machine code patterns, UEFI SMI handlers, or known vulnerability signatures by their byte representation. Platforms: claude_code."} {"id": "12432ffbb043bdf0d514d9ad5437252660cfee78136bf7859e6029d83ea5a749", "repo_url": "https://github.com/vulhunt-re/skills", "name": "call-sites", "description": "Find all locations where functions are called in a binary. Use when analyzing callers of a function, checking call relationships, or identifying which functions invoke a specific API.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vulhunt-re/skills/blob/main/plugins/vulhunt/skills/call-sites/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install call-sites"}, "quality": {"stars": 11, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T18:45:24Z"}, "embedding_text": "call-sites. Find all locations where functions are called in a binary. Use when analyzing callers of a function, checking call relationships, or identifying which functions invoke a specific API. Platforms: claude_code."} @@ -15473,16 +20076,8 @@ {"id": "b9a3e624c07bd30c9de51fcc3346e0e7716df4a3834b4063fbcfbb67c4498208", "repo_url": "https://github.com/k-dense-ai/claude-scientific-skills", "name": "timesfm-forecasting", "description": "Zero-shot time series forecasting with Google's TimesFM foundation model. Use for any univariate time series (sales, sensors, energy, vitals, weather) without training a custom model. Supports CSV/DataFrame/array inputs with point forecasts and prediction intervals. Includes a preflight system checker script to verify RAM/GPU before first use.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-scientist", "bioinformatics", "chemoinformatics", "claude", "claude-skills", "claudecode", "clinical-research", "computational-biology", "data-analysis", "drug-discovery", "genomics", "materials-science", "metabolomics", "proteomics", "scientific-computing", "scientific-visualization"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/k-dense-ai/claude-scientific-skills/blob/main/scientific-skills/timesfm-forecasting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install timesfm-forecasting"}, "quality": {"stars": 15134, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T16:59:08Z"}, "embedding_text": "timesfm-forecasting. Zero-shot time series forecasting with Google's TimesFM foundation model. Use for any univariate time series (sales, sensors, energy, vitals, weather) without training a custom model. Supports CSV/DataFrame/array inputs with point forecasts and prediction intervals. Includes a preflight system checker script to verify RAM/GPU before first use. Categories: agent-skills, ai-scientist, bioinformatics, chemoinformatics, claude, claude-skills, claudecode, clinical-research, computational-biology, data-analysis, drug-discovery, genomics, materials-science, metabolomics, proteomics, scientific-computing, scientific-visualization. Platforms: claude_code."} {"id": "8af07a4fddb2d624ab3b8f7e03d44207ef8d6421517b2cd49a2fca51565969b5", "repo_url": "https://github.com/k-dense-ai/claude-scientific-skills", "name": "usfiscaldata", "description": "Query the U.S. Treasury Fiscal Data API for federal financial data including national debt, government spending, revenue, interest rates, exchange rates, and savings bonds. Access 54 datasets and 182 data tables with no API key required. Use when working with U.S. federal fiscal data, national debt tracking (Debt to the Penny), Daily Treasury Statements, Monthly Treasury Statements, Treasury securities auctions, interest rates on Treasury securities, foreign exchange rates, savings bonds, or any U.S. government financial statistics.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-scientist", "bioinformatics", "chemoinformatics", "claude", "claude-skills", "claudecode", "clinical-research", "computational-biology", "data-analysis", "drug-discovery", "genomics", "materials-science", "metabolomics", "proteomics", "scientific-computing", "scientific-visualization"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/k-dense-ai/claude-scientific-skills/blob/main/scientific-skills/usfiscaldata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install usfiscaldata"}, "quality": {"stars": 15134, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T16:59:08Z"}, "embedding_text": "usfiscaldata. Query the U.S. Treasury Fiscal Data API for federal financial data including national debt, government spending, revenue, interest rates, exchange rates, and savings bonds. Access 54 datasets and 182 data tables with no API key required. Use when working with U.S. federal fiscal data, national debt tracking (Debt to the Penny), Daily Treasury Statements, Monthly Treasury Statements, Treasury securities auctions, interest rates on Treasury securities, foreign exchange rates, savings bonds, or any U.S. government financial statistics. Categories: agent-skills, ai-scientist, bioinformatics, chemoinformatics, claude, claude-skills, claudecode, clinical-research, computational-biology, data-analysis, drug-discovery, genomics, materials-science, metabolomics, proteomics, scientific-computing, scientific-visualization. Platforms: claude_code."} {"id": "93d01abc2c4670d2e7360c2042eeb2fca5cb303e91c6398c937ed81551c4c1d8", "repo_url": "https://github.com/k-dense-ai/claude-scientific-skills", "name": "what-if-oracle", "description": "Run structured What-If scenario analysis with multi-branch possibility exploration. Use this skill when the user asks speculative questions like \"what if...\", \"what would happen if...\", \"what are the possibilities\", \"explore scenarios\", \"scenario analysis\", \"possibility space\", \"what could go wrong\", \"best case / worst case\", \"risk analysis\", \"contingency planning\", \"strategic options\", or any question about uncertain futures. Also trigger when the user faces a fork-in-the-road decision, wants to stress-test an idea, or needs to think through consequences before committing.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-scientist", "bioinformatics", "chemoinformatics", "claude", "claude-skills", "claudecode", "clinical-research", "computational-biology", "data-analysis", "drug-discovery", "genomics", "materials-science", "metabolomics", "proteomics", "scientific-computing", "scientific-visualization"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/k-dense-ai/claude-scientific-skills/blob/main/scientific-skills/what-if-oracle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install what-if-oracle"}, "quality": {"stars": 15134, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T16:59:08Z"}, "embedding_text": "what-if-oracle. Run structured What-If scenario analysis with multi-branch possibility exploration. Use this skill when the user asks speculative questions like \"what if...\", \"what would happen if...\", \"what are the possibilities\", \"explore scenarios\", \"scenario analysis\", \"possibility space\", \"what could go wrong\", \"best case / worst case\", \"risk analysis\", \"contingency planning\", \"strategic options\", or any question about uncertain futures. Also trigger when the user faces a fork-in-the-road decision, wants to stress-test an idea, or needs to think through consequences before committing. Categories: agent-skills, ai-scientist, bioinformatics, chemoinformatics, claude, claude-skills, claudecode, clinical-research, computational-biology, data-analysis, drug-discovery, genomics, materials-science, metabolomics, proteomics, scientific-computing, scientific-visualization. Platforms: claude_code."} -{"id": "68b18c7f0687d10593ed1a8a939eb721b7c3b68e744ff58a558545d02ab47237", "repo_url": "https://github.com/jimliu/baoyu-skills", "name": "baoyu-post-to-weibo", "description": "Posts content to Weibo (\u5fae\u535a). Supports regular posts with text, images, and videos, and headline articles (\u5934\u6761\u6587\u7ae0) with Markdown input via Chrome CDP. Use when user asks to \"post to Weibo\", \"\u53d1\u5fae\u535a\", \"\u53d1\u5e03\u5fae\u535a\", \"publish to Weibo\", \"share on Weibo\", \"\u5199\u5fae\u535a\", or \"\u5fae\u535a\u5934\u6761\u6587\u7ae0\".", "source": ["marketplace", "topic"], "categories": ["agent-skills", "claude-skills", "codex-skills", "openclaw-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jimliu/baoyu-skills/blob/main/skills/baoyu-post-to-weibo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install baoyu-post-to-weibo"}, "quality": {"stars": 9146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T04:08:05Z"}, "embedding_text": "baoyu-post-to-weibo. Posts content to Weibo (\u5fae\u535a). Supports regular posts with text, images, and videos, and headline articles (\u5934\u6761\u6587\u7ae0) with Markdown input via Chrome CDP. Use when user asks to \"post to Weibo\", \"\u53d1\u5fae\u535a\", \"\u53d1\u5e03\u5fae\u535a\", \"publish to Weibo\", \"share on Weibo\", \"\u5199\u5fae\u535a\", or \"\u5fae\u535a\u5934\u6761\u6587\u7ae0\". Categories: agent-skills, claude-skills, codex-skills, openclaw-skills. Platforms: claude_code."} -{"id": "d4ca661d113c4f618c92250c61454d09325a3ab9e7fadf62486415a1aefdec71", "repo_url": "https://github.com/jimliu/baoyu-skills", "name": "baoyu-translate", "description": "Translates articles and documents between languages with three modes - quick (direct), normal (analyze then translate), and refined (analyze, translate, review, polish). Supports custom glossaries and terminology consistency via EXTEND.md. Use when user asks to \"translate\", \"\u7ffb\u8bd1\", \"\u7cbe\u7ffb\", \"translate article\", \"translate to Chinese/English\", \"\u6539\u6210\u4e2d\u6587\", \"\u6539\u6210\u82f1\u6587\", \"convert to Chinese\", \"localize\", \"\u672c\u5730\u5316\", or needs any document translation. Also triggers for \"refined translation\", \"\u7cbe\u7ec6\u7ffb\u8bd1\", \"proofread translation\", \"\u5feb\u901f\u7ffb\u8bd1\", \"\u5feb\u7ffb\", \"\u8fd9\u7bc7\u6587\u7ae0\u7ffb\u8bd1\u4e00\u4e0b\", or when a URL or file is provided with translation intent.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "claude-skills", "codex-skills", "openclaw-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jimliu/baoyu-skills/blob/main/skills/baoyu-translate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install baoyu-translate"}, "quality": {"stars": 9146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T04:08:05Z"}, "embedding_text": "baoyu-translate. Translates articles and documents between languages with three modes - quick (direct), normal (analyze then translate), and refined (analyze, translate, review, polish). Supports custom glossaries and terminology consistency via EXTEND.md. Use when user asks to \"translate\", \"\u7ffb\u8bd1\", \"\u7cbe\u7ffb\", \"translate article\", \"translate to Chinese/English\", \"\u6539\u6210\u4e2d\u6587\", \"\u6539\u6210\u82f1\u6587\", \"convert to Chinese\", \"localize\", \"\u672c\u5730\u5316\", or needs any document translation. Also triggers for \"refined translation\", \"\u7cbe\u7ec6\u7ffb\u8bd1\", \"proofread translation\", \"\u5feb\u901f\u7ffb\u8bd1\", \"\u5feb\u7ffb\", \"\u8fd9\u7bc7\u6587\u7ae0\u7ffb\u8bd1\u4e00\u4e0b\", or when a URL or file is provided with translation intent. Categories: agent-skills, claude-skills, codex-skills, openclaw-skills. Platforms: claude_code."} -{"id": "d4bca0c590564918cae2fab4a20d7ff2760378f0d44d21ce1cdc6c2d8e08dbd0", "repo_url": "https://github.com/jeffallan/claude-skills", "name": "code-documenter", "description": "Generates, formats, and validates technical documentation \u2014 including docstrings, OpenAPI/Swagger specs, JSDoc annotations, doc portals, and user guides. Use when adding docstrings to functions or classes, creating API documentation, building documentation sites, or writing tutorials and user guides. Invoke for OpenAPI/Swagger specs, JSDoc, doc portals, getting started guides.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "claude", "claude-code", "claude-marketplace", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffallan/claude-skills/blob/main/skills/code-documenter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-documenter"}, "quality": {"stars": 6837, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T21:29:39Z"}, "embedding_text": "code-documenter. Generates, formats, and validates technical documentation \u2014 including docstrings, OpenAPI/Swagger specs, JSDoc annotations, doc portals, and user guides. Use when adding docstrings to functions or classes, creating API documentation, building documentation sites, or writing tutorials and user guides. Invoke for OpenAPI/Swagger specs, JSDoc, doc portals, getting started guides. Categories: ai-agents, claude, claude-code, claude-marketplace, claude-skills. Platforms: claude_code."} -{"id": "85903c040a715aa8d75ee69f0516f2190a28b43761f0eae578a0ffb9b26e773f", "repo_url": "https://github.com/jeffallan/claude-skills", "name": "secure-code-guardian", "description": "Use when implementing authentication/authorization, securing user input, or preventing OWASP Top 10 vulnerabilities \u2014 including custom security implementations such as hashing passwords with bcrypt/argon2, sanitizing SQL queries with parameterized statements, configuring CORS/CSP headers, validating input with Zod, and setting up JWT tokens. Invoke for authentication, authorization, input validation, encryption, OWASP Top 10 prevention, secure session management, and security hardening. For pre-built OAuth/SSO integrations or standalone security audits, consider a more specialized skill.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "claude", "claude-code", "claude-marketplace", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffallan/claude-skills/blob/main/skills/secure-code-guardian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install secure-code-guardian"}, "quality": {"stars": 6837, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T21:29:39Z"}, "embedding_text": "secure-code-guardian. Use when implementing authentication/authorization, securing user input, or preventing OWASP Top 10 vulnerabilities \u2014 including custom security implementations such as hashing passwords with bcrypt/argon2, sanitizing SQL queries with parameterized statements, configuring CORS/CSP headers, validating input with Zod, and setting up JWT tokens. Invoke for authentication, authorization, input validation, encryption, OWASP Top 10 prevention, secure session management, and security hardening. For pre-built OAuth/SSO integrations or standalone security audits, consider a more specialized skill. Categories: ai-agents, claude, claude-code, claude-marketplace, claude-skills. Platforms: claude_code."} {"id": "fe0c16bc7d6e2645a03e0f3e48132da7868b36230da165b8859267b46d19cbf1", "repo_url": "https://github.com/jeffallan/claude-skills", "name": "the-fool", "description": "Use when challenging ideas, plans, decisions, or proposals using structured critical reasoning. Invoke to play devil's advocate, run a pre-mortem, red team, or audit evidence and assumptions.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "claude", "claude-code", "claude-marketplace", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffallan/claude-skills/blob/main/skills/the-fool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install the-fool"}, "quality": {"stars": 6837, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T21:29:39Z"}, "embedding_text": "the-fool. Use when challenging ideas, plans, decisions, or proposals using structured critical reasoning. Invoke to play devil's advocate, run a pre-mortem, red team, or audit evidence and assumptions. Categories: ai-agents, claude, claude-code, claude-marketplace, claude-skills. Platforms: claude_code."} {"id": "1c6f0dd1da3c03157b9af346cc8cb2cbe608cf87fc5e7218dc63953e90387e62", "repo_url": "https://github.com/jeffallan/claude-skills", "name": "vue-expert", "description": "Builds Vue 3 components with Composition API patterns, configures Nuxt 3 SSR/SSG projects, sets up Pinia stores, scaffolds Quasar/Capacitor mobile apps, implements PWA features, and optimises Vite builds. Use when creating Vue 3 applications with Composition API, writing reusable composables, managing state with Pinia, building hybrid mobile apps with Quasar or Capacitor, configuring service workers, or tuning Vite configuration and TypeScript integration.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "claude", "claude-code", "claude-marketplace", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jeffallan/claude-skills/blob/main/skills/vue-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vue-expert"}, "quality": {"stars": 6837, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T21:29:39Z"}, "embedding_text": "vue-expert. Builds Vue 3 components with Composition API patterns, configures Nuxt 3 SSR/SSG projects, sets up Pinia stores, scaffolds Quasar/Capacitor mobile apps, implements PWA features, and optimises Vite builds. Use when creating Vue 3 applications with Composition API, writing reusable composables, managing state with Pinia, building hybrid mobile apps with Quasar or Capacitor, configuring service workers, or tuning Vite configuration and TypeScript integration. Categories: ai-agents, claude, claude-code, claude-marketplace, claude-skills. Platforms: claude_code."} -{"id": "5e8e6532ae23c43c1bb3269f7a715e31a40009849911bee4d6522df314ecc61b", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "mamba-architecture", "description": "State-space model with O(n) complexity vs Transformers' O(n\u00b2). 5\u00d7 faster inference, million-token sequences, no KV cache. Selective SSM with hardware-aware design. Mamba-1 (d_state=16) and Mamba-2 (d_state=128, multi-head). Models 130M-2.8B on HuggingFace.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/01-model-architecture/mamba/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mamba-architecture"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "mamba-architecture. State-space model with O(n) complexity vs Transformers' O(n\u00b2). 5\u00d7 faster inference, million-token sequences, no KV cache. Selective SSM with hardware-aware design. Mamba-1 (d_state=16) and Mamba-2 (d_state=128, multi-head). Models 130M-2.8B on HuggingFace. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} -{"id": "8a86529d7b26b2e4d46054a696d472d6b7642db6891269ae8823a81b2080b0c6", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "nanogpt", "description": "Educational GPT implementation in ~300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture from scratch. Train on Shakespeare (CPU) or OpenWebText (multi-GPU).", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/01-model-architecture/nanogpt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nanogpt"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "nanogpt. Educational GPT implementation in ~300 lines. Reproduces GPT-2 (124M) on OpenWebText. Clean, hackable code for learning transformers. By Andrej Karpathy. Perfect for understanding GPT architecture from scratch. Train on Shakespeare (CPU) or OpenWebText (multi-GPU). Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} -{"id": "4c29e2410b8374e691966e6f3b7ca2e348554679581ed9f663e33f6d8dab2c43", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "huggingface-tokenizers", "description": "Fast tokenizers optimized for research and production. Rust-based implementation tokenizes 1GB in <20 seconds. Supports BPE, WordPiece, and Unigram algorithms. Train custom vocabularies, track alignments, handle padding/truncation. Integrates seamlessly with transformers. Use when you need high-performance tokenization or custom tokenizer training.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/02-tokenization/huggingface-tokenizers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install huggingface-tokenizers"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "huggingface-tokenizers. Fast tokenizers optimized for research and production. Rust-based implementation tokenizes 1GB in <20 seconds. Supports BPE, WordPiece, and Unigram algorithms. Train custom vocabularies, track alignments, handle padding/truncation. Integrates seamlessly with transformers. Use when you need high-performance tokenization or custom tokenizer training. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} -{"id": "774c03badc8bef0161a8fd0a9f886149bc642d3049092da61ee6bb8779f02eb9", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "sentencepiece", "description": "Language-independent tokenizer treating text as raw Unicode. Supports BPE and Unigram algorithms. Fast (50k sentences/sec), lightweight (6MB memory), deterministic vocabulary. Used by T5, ALBERT, XLNet, mBART. Train on raw text without pre-tokenization. Use when you need multilingual support, CJK languages, or reproducible tokenization.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/02-tokenization/sentencepiece/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sentencepiece"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "sentencepiece. Language-independent tokenizer treating text as raw Unicode. Supports BPE and Unigram algorithms. Fast (50k sentences/sec), lightweight (6MB memory), deterministic vocabulary. Used by T5, ALBERT, XLNet, mBART. Train on raw text without pre-tokenization. Use when you need multilingual support, CJK languages, or reproducible tokenization. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} {"id": "a5c33d5451d12644b34d790b7c6b89690f9cf40a704027ab85f04e609586a3b6", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "sparse-autoencoder-training", "description": "Provides guidance for training and analyzing Sparse Autoencoders (SAEs) using SAELens to decompose neural network activations into interpretable features. Use when discovering interpretable features, analyzing superposition, or studying monosemantic representations in language models.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/04-mechanistic-interpretability/saelens/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sparse-autoencoder-training"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "sparse-autoencoder-training. Provides guidance for training and analyzing Sparse Autoencoders (SAEs) using SAELens to decompose neural network activations into interpretable features. Use when discovering interpretable features, analyzing superposition, or studying monosemantic representations in language models. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} {"id": "b424d2c3ab017914a31ea9c1927f3e974604960c27af4d388387361211c1adad", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "transformer-lens-interpretability", "description": "Provides guidance for mechanistic interpretability research using TransformerLens to inspect and manipulate transformer internals via HookPoints and activation caching. Use when reverse-engineering model algorithms, studying attention patterns, or performing activation patching experiments.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/04-mechanistic-interpretability/transformer-lens/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install transformer-lens-interpretability"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "transformer-lens-interpretability. Provides guidance for mechanistic interpretability research using TransformerLens to inspect and manipulate transformer internals via HookPoints and activation caching. Use when reverse-engineering model algorithms, studying attention patterns, or performing activation patching experiments. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} {"id": "25e3e50977166517c7c967d9cf29ddc3d7819411bae97c9fd43a48bdefb6f201", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "fine-tuning-with-trl", "description": "Fine-tune LLMs using reinforcement learning with TRL - SFT for instruction tuning, DPO for preference alignment, PPO/GRPO for reward optimization, and reward model training. Use when need RLHF, align model with preferences, or train from human feedback. Works with HuggingFace Transformers.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/06-post-training/trl-fine-tuning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install fine-tuning-with-trl"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "fine-tuning-with-trl. Fine-tune LLMs using reinforcement learning with TRL - SFT for instruction tuning, DPO for preference alignment, PPO/GRPO for reward optimization, and reward model training. Use when need RLHF, align model with preferences, or train from human feedback. Works with HuggingFace Transformers. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} @@ -15496,15 +20091,10 @@ {"id": "fd82ee6a48a85bff13435fac0d902cd77f2c4ea2e0cbbb863ff20a05120c9e28", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "blip-2-vision-language", "description": "Vision-language pre-training framework bridging frozen image encoders and LLMs. Use when you need image captioning, visual question answering, image-text retrieval, or multimodal chat with state-of-the-art zero-shot performance.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/18-multimodal/blip-2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blip-2-vision-language"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "blip-2-vision-language. Vision-language pre-training framework bridging frozen image encoders and LLMs. Use when you need image captioning, visual question answering, image-text retrieval, or multimodal chat with state-of-the-art zero-shot performance. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} {"id": "cba8b50359c32edaa6f126f0a7b549c939edc46286aef1dbf9a6fa897deafe23", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "ml-paper-writing", "description": "Write publication-ready ML/AI/Systems papers for NeurIPS, ICML, ICLR, ACL, AAAI, COLM, OSDI, NSDI, ASPLOS, SOSP. Use when drafting papers from research repos, structuring arguments, verifying citations, or preparing camera-ready submissions. Includes LaTeX templates, reviewer guidelines, and citation verification workflows.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/20-ml-paper-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ml-paper-writing"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "ml-paper-writing. Write publication-ready ML/AI/Systems papers for NeurIPS, ICML, ICLR, ACL, AAAI, COLM, OSDI, NSDI, ASPLOS, SOSP. Use when drafting papers from research repos, structuring arguments, verifying citations, or preparing camera-ready submissions. Includes LaTeX templates, reviewer guidelines, and citation verification workflows. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} {"id": "c5c790bab74bb3b13ed98ac50e52d864bf77b874919b3351abd27ac2a8346f5f", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "brainstorming-research-ideas", "description": "Guides researchers through structured ideation frameworks to discover high-impact research directions. Use when exploring new problem spaces, pivoting between projects, or seeking novel angles on existing work.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/21-research-ideation/brainstorming-research-ideas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brainstorming-research-ideas"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "brainstorming-research-ideas. Guides researchers through structured ideation frameworks to discover high-impact research directions. Use when exploring new problem spaces, pivoting between projects, or seeking novel angles on existing work. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} -{"id": "c68ef81ce3d66ada1e380053d2706439db8c42fd055b89ead796934ba3cf8f4e", "repo_url": "https://github.com/orchestra-research/ai-research-skills", "name": "creative-thinking-for-research", "description": "Applies cognitive science frameworks for creative thinking to CS and AI research ideation. Use when seeking genuinely novel research directions by leveraging combinatorial creativity, analogical reasoning, constraint manipulation, and other empirically grounded creative strategies.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-research", "claude", "claude-code", "claude-skills", "codex", "gemini", "gpt-5", "grpo", "huggingface", "machine-leanring", "megatron", "skills", "vllm"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/orchestra-research/ai-research-skills/blob/main/21-research-ideation/creative-thinking-for-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install creative-thinking-for-research"}, "quality": {"stars": 5100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:01Z"}, "embedding_text": "creative-thinking-for-research. Applies cognitive science frameworks for creative thinking to CS and AI research ideation. Use when seeking genuinely novel research directions by leveraging combinatorial creativity, analogical reasoning, constraint manipulation, and other empirically grounded creative strategies. Categories: ai, ai-research, claude, claude-code, claude-skills, codex, gemini, gpt-5, grpo, huggingface, machine-leanring, megatron, skills, vllm. Platforms: claude_code."} {"id": "dd2f197edd8701a4a15866a3a0762a674978b53675f28c6d5a522994a38e3dff", "repo_url": "https://github.com/deanpeters/product-manager-skills", "name": "customer-journey-mapping-workshop", "description": "Run a customer journey mapping workshop with adaptive questions and outputs. Use when you need to map stages, actions, emotions, pain points, and opportunities for a persona and scenario.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-product-management", "claude-skills", "pm-frameworks", "product-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deanpeters/product-manager-skills/blob/main/skills/customer-journey-mapping-workshop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install customer-journey-mapping-workshop"}, "quality": {"stars": 1931, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T19:36:32Z"}, "embedding_text": "customer-journey-mapping-workshop. Run a customer journey mapping workshop with adaptive questions and outputs. Use when you need to map stages, actions, emotions, pain points, and opportunities for a persona and scenario. Categories: ai-agents, ai-product-management, claude-skills, pm-frameworks, product-management. Platforms: claude_code."} -{"id": "2854bcf0a8dc69657b92e48b29f0f52951dcf43c951542d1059ebb29c6b6a77e", "repo_url": "https://github.com/deanpeters/product-manager-skills", "name": "discovery-interview-prep", "description": "Plan customer discovery interviews with the right goal, segment, constraints, and method. Use when preparing interviews for problem validation, churn research, or new product ideas.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-product-management", "claude-skills", "pm-frameworks", "product-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deanpeters/product-manager-skills/blob/main/skills/discovery-interview-prep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install discovery-interview-prep"}, "quality": {"stars": 1931, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T19:36:32Z"}, "embedding_text": "discovery-interview-prep. Plan customer discovery interviews with the right goal, segment, constraints, and method. Use when preparing interviews for problem validation, churn research, or new product ideas. Categories: ai-agents, ai-product-management, claude-skills, pm-frameworks, product-management. Platforms: claude_code."} {"id": "d4b4b195ae884243a3af41f36a0acccbdb826705f1c2a18c4a9f579755506ac4", "repo_url": "https://github.com/deanpeters/product-manager-skills", "name": "pol-probe", "description": "Define a Proof of Life probe to test a risky hypothesis cheaply. Use when you need harsh truth before building real product.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-product-management", "claude-skills", "pm-frameworks", "product-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deanpeters/product-manager-skills/blob/main/skills/pol-probe/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pol-probe"}, "quality": {"stars": 1931, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T19:36:32Z"}, "embedding_text": "pol-probe. Define a Proof of Life probe to test a risky hypothesis cheaply. Use when you need harsh truth before building real product. Categories: ai-agents, ai-product-management, claude-skills, pm-frameworks, product-management. Platforms: claude_code."} -{"id": "79d53545e07ae3f7549e2028fe7eaa4356b775e4f8f450d087d12935df6114c2", "repo_url": "https://github.com/deanpeters/product-manager-skills", "name": "prioritization-advisor", "description": "Choose a prioritization framework based on stage, team context, and stakeholder needs. Use when deciding between RICE, ICE, value/effort, or another scoring approach.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-product-management", "claude-skills", "pm-frameworks", "product-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deanpeters/product-manager-skills/blob/main/skills/prioritization-advisor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install prioritization-advisor"}, "quality": {"stars": 1931, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T19:36:32Z"}, "embedding_text": "prioritization-advisor. Choose a prioritization framework based on stage, team context, and stakeholder needs. Use when deciding between RICE, ICE, value/effort, or another scoring approach. Categories: ai-agents, ai-product-management, claude-skills, pm-frameworks, product-management. Platforms: claude_code."} {"id": "852269782fb21c234ca07e7ea56520b701c4e74528c593bb743f41e34f458144", "repo_url": "https://github.com/deanpeters/product-manager-skills", "name": "user-story-mapping", "description": "Create a user story map that lays out activities, steps, tasks, and release slices. Use when planning a workflow, backlog, or MVP around the user journey.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-product-management", "claude-skills", "pm-frameworks", "product-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deanpeters/product-manager-skills/blob/main/skills/user-story-mapping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install user-story-mapping"}, "quality": {"stars": 1931, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T19:36:32Z"}, "embedding_text": "user-story-mapping. Create a user story map that lays out activities, steps, tasks, and release slices. Use when planning a workflow, backlog, or MVP around the user journey. Categories: ai-agents, ai-product-management, claude-skills, pm-frameworks, product-management. Platforms: claude_code."} {"id": "fbe42d9feffdc3a6be0cdc3f9a12c5eef0c043c3edbc652ce018ca6889f8425b", "repo_url": "https://github.com/deanpeters/product-manager-skills", "name": "user-story", "description": "Create user stories with Mike Cohn format and Gherkin acceptance criteria. Use when turning user needs into development-ready work with clear outcomes and testable conditions.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-product-management", "claude-skills", "pm-frameworks", "product-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/deanpeters/product-manager-skills/blob/main/skills/user-story/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install user-story"}, "quality": {"stars": 1931, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T19:36:32Z"}, "embedding_text": "user-story. Create user stories with Mike Cohn format and Gherkin acceptance criteria. Use when turning user needs into development-ready work with clear outcomes and testable conditions. Categories: ai-agents, ai-product-management, claude-skills, pm-frameworks, product-management. Platforms: claude_code."} -{"id": "a71d038571884a03add57a5c333edb2be2f2c7c0182aeef2be21deb49df18967", "repo_url": "https://github.com/timescale/pg-aiguide", "name": "find-hypertable-candidates", "description": "Use this skill to analyze an existing PostgreSQL database and identify which tables should be converted to Timescale/TimescaleDB hypertables.\n\n**Trigger when user asks to:**\n- Analyze database tables for hypertable conversion potential\n- Identify time-series or event tables in an existing schema\n- Evaluate if a table would benefit from Timescale/TimescaleDB\n- Audit PostgreSQL tables for migration to Timescale/TimescaleDB/TigerData\n- Score or rank tables for hypertable candidacy\n\n\n**Keywords:** hypertable candidate, table analysis, migration assessment, Timescale, TimescaleDB, time-series detection, insert-heavy tables, event logs, audit tables\n\nProvides SQL queries to analyze table statistics, index patterns, and query patterns. Includes scoring criteria (8+ points = good candidate) and pattern recognition for IoT, events, transactions, and sequential data.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "ai-coding", "claude-code-plugin", "claude-code-plugins", "claude-code-plugins-marketplace", "claude-marketplace", "claude-plugin", "claude-skills", "docs", "documentation", "mcp", "mcp-server", "postgres", "postgresql", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/timescale/pg-aiguide/blob/main/skills/find-hypertable-candidates/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install find-hypertable-candidates"}, "quality": {"stars": 1628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-26T19:02:27Z"}, "embedding_text": "find-hypertable-candidates. Use this skill to analyze an existing PostgreSQL database and identify which tables should be converted to Timescale/TimescaleDB hypertables.\n\n**Trigger when user asks to:**\n- Analyze database tables for hypertable conversion potential\n- Identify time-series or event tables in an existing schema\n- Evaluate if a table would benefit from Timescale/TimescaleDB\n- Audit PostgreSQL tables for migration to Timescale/TimescaleDB/TigerData\n- Score or rank tables for hypertable candidacy\n\n\n**Keywords:** hypertable candidate, table analysis, migration assessment, Timescale, TimescaleDB, time-series detection, insert-heavy tables, event logs, audit tables\n\nProvides SQL queries to analyze table statistics, index patterns, and query patterns. Includes scoring criteria (8+ points = good candidate) and pattern recognition for IoT, events, transactions, and sequential data. Categories: ai, ai-agents, ai-coding, claude-code-plugin, claude-code-plugins, claude-code-plugins-marketplace, claude-marketplace, claude-plugin, claude-skills, docs, documentation, mcp, mcp-server, postgres, postgresql, skills. Platforms: claude_code."} -{"id": "7d75c08f769df91441c65762ca607cb16bfc6a8009df3b24607ac6a1d2f8254d", "repo_url": "https://github.com/timescale/pg-aiguide", "name": "migrate-postgres-tables-to-hypertables", "description": "Use this skill to migrate identified PostgreSQL tables to Timescale/TimescaleDB hypertables with optimal configuration and validation.\n\n**Trigger when user asks to:**\n- Migrate or convert PostgreSQL tables to hypertables\n- Execute hypertable migration with minimal downtime\n- Plan blue-green migration for large tables\n- Validate hypertable migration success\n- Configure compression after migration\n\n**Prerequisites:** Tables already identified as candidates (use find-hypertable-candidates first if needed)\n\n**Keywords:** migrate to hypertable, convert table, Timescale, TimescaleDB, blue-green migration, in-place conversion, create_hypertable, migration validation, compression setup\n\nStep-by-step migration planning including: partition column selection, chunk interval calculation, PK/constraint handling, migration execution (in-place vs blue-green), and performance validation queries.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "ai-coding", "claude-code-plugin", "claude-code-plugins", "claude-code-plugins-marketplace", "claude-marketplace", "claude-plugin", "claude-skills", "docs", "documentation", "mcp", "mcp-server", "postgres", "postgresql", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/timescale/pg-aiguide/blob/main/skills/migrate-postgres-tables-to-hypertables/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install migrate-postgres-tables-to-hypertables"}, "quality": {"stars": 1628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-26T19:02:27Z"}, "embedding_text": "migrate-postgres-tables-to-hypertables. Use this skill to migrate identified PostgreSQL tables to Timescale/TimescaleDB hypertables with optimal configuration and validation.\n\n**Trigger when user asks to:**\n- Migrate or convert PostgreSQL tables to hypertables\n- Execute hypertable migration with minimal downtime\n- Plan blue-green migration for large tables\n- Validate hypertable migration success\n- Configure compression after migration\n\n**Prerequisites:** Tables already identified as candidates (use find-hypertable-candidates first if needed)\n\n**Keywords:** migrate to hypertable, convert table, Timescale, TimescaleDB, blue-green migration, in-place conversion, create_hypertable, migration validation, compression setup\n\nStep-by-step migration planning including: partition column selection, chunk interval calculation, PK/constraint handling, migration execution (in-place vs blue-green), and performance validation queries. Categories: ai, ai-agents, ai-coding, claude-code-plugin, claude-code-plugins, claude-code-plugins-marketplace, claude-marketplace, claude-plugin, claude-skills, docs, documentation, mcp, mcp-server, postgres, postgresql, skills. Platforms: claude_code."} {"id": "6eff040679e3c16f159792daeb187b347de295599defd883171b61ebaf51deb4", "repo_url": "https://github.com/antonbabenko/terraform-skill", "name": "terraform-skill", "description": "Use when working with Terraform or OpenTofu - creating modules, writing tests (native test framework, Terratest), setting up CI/CD pipelines, reviewing configurations, choosing between testing approaches, debugging state issues, implementing security scanning (trivy, checkov), or making infrastructure-as-code architecture decisions", "source": ["marketplace", "topic"], "categories": ["best-practices", "claude-code", "claude-skills", "devops", "infrastructure-as-code", "modules", "opentofu", "terraform", "testing"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antonbabenko/terraform-skill/blob/master/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-skill"}, "quality": {"stars": 1335, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-02T08:11:44Z"}, "embedding_text": "terraform-skill. Use when working with Terraform or OpenTofu - creating modules, writing tests (native test framework, Terratest), setting up CI/CD pipelines, reviewing configurations, choosing between testing approaches, debugging state issues, implementing security scanning (trivy, checkov), or making infrastructure-as-code architecture decisions Categories: best-practices, claude-code, claude-skills, devops, infrastructure-as-code, modules, opentofu, terraform, testing. Platforms: claude_code."} {"id": "ec592496cdf554d4692ba3523571c3287b15e3c4d1cb6805db3eb12f7f234ca4", "repo_url": "https://github.com/feiskyer/claude-code-settings", "name": "autonomous-skill", "description": "Execute long-running, multi-session tasks autonomously using Claude Code headless mode or in-session hook-based loops. Supports structured task decomposition (for complex projects) and lightweight Ralph-style iteration (for TDD, bug fixing, refactoring). Use this skill whenever the user says \"autonomous\", \"long-running task\", \"multi-session\", \"run this in the background\", \"keep working on this\", \"batch process\", \"iterate until done\", \"ralph loop\", or wants any task that requires sustained, unattended execution.", "source": ["marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "kiro", "litellm", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/claude-code-settings/blob/main/skills/autonomous-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install autonomous-skill"}, "quality": {"stars": 1306, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T01:38:43Z"}, "embedding_text": "autonomous-skill. Execute long-running, multi-session tasks autonomously using Claude Code headless mode or in-session hook-based loops. Supports structured task decomposition (for complex projects) and lightweight Ralph-style iteration (for TDD, bug fixing, refactoring). Use this skill whenever the user says \"autonomous\", \"long-running task\", \"multi-session\", \"run this in the background\", \"keep working on this\", \"batch process\", \"iterate until done\", \"ralph loop\", or wants any task that requires sustained, unattended execution. Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, kiro, litellm, spec-driven-development, vibe-coding. Platforms: claude_code."} {"id": "0f662a6db4069cc9f2b84e27b7ca45b1a0387c155a68709e662008b625e9cea8", "repo_url": "https://github.com/feiskyer/claude-code-settings", "name": "codex-skill", "description": "Leverage OpenAI Codex/GPT models for autonomous code implementation. Triggers: \"codex\", \"use gpt\", \"gpt-5\", \"let openai\", \"full-auto\", \"\u7528codex\", \"\u8ba9gpt\u5b9e\u73b0\". Use this skill whenever the user wants to delegate coding tasks to OpenAI models, run code reviews via codex, or execute tasks in a sandboxed environment.", "source": ["marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "kiro", "litellm", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/claude-code-settings/blob/main/skills/codex-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codex-skill"}, "quality": {"stars": 1306, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T01:38:43Z"}, "embedding_text": "codex-skill. Leverage OpenAI Codex/GPT models for autonomous code implementation. Triggers: \"codex\", \"use gpt\", \"gpt-5\", \"let openai\", \"full-auto\", \"\u7528codex\", \"\u8ba9gpt\u5b9e\u73b0\". Use this skill whenever the user wants to delegate coding tasks to OpenAI models, run code reviews via codex, or execute tasks in a sandboxed environment. Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, kiro, litellm, spec-driven-development, vibe-coding. Platforms: claude_code."} @@ -15569,9 +20159,7 @@ {"id": "b266c9ab94675e39869cc540ea380a410097f5e2fd746bb4e4138f54311d958c", "repo_url": "https://github.com/prat011/awesome-llm-skills", "name": "theme-factory", "description": "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.", "source": ["marketplace", "topic"], "categories": ["anthropic", "awesome-list", "awesome-lists", "claude-code", "claude-skills", "claude-skills-creator", "codex", "codex-cli", "gemini", "gemini-cli", "llama", "llms", "openai", "opencode", "qwen", "qwen-coder", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prat011/awesome-llm-skills/blob/master/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install theme-factory"}, "quality": {"stars": 1001, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-25T12:51:50Z"}, "embedding_text": "theme-factory. 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. Categories: anthropic, awesome-list, awesome-lists, claude-code, claude-skills, claude-skills-creator, codex, codex-cli, gemini, gemini-cli, llama, llms, openai, opencode, qwen, qwen-coder, skills. Platforms: claude_code."} {"id": "a96a135b8dade665f88d610fbf664595c7c2c2be8ef6ec7f31438ab3008a86e4", "repo_url": "https://github.com/prat011/awesome-llm-skills", "name": "video-downloader", "description": "Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.", "source": ["marketplace", "topic"], "categories": ["anthropic", "awesome-list", "awesome-lists", "claude-code", "claude-skills", "claude-skills-creator", "codex", "codex-cli", "gemini", "gemini-cli", "llama", "llms", "openai", "opencode", "qwen", "qwen-coder", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prat011/awesome-llm-skills/blob/master/video-downloader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install video-downloader"}, "quality": {"stars": 1001, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-25T12:51:50Z"}, "embedding_text": "video-downloader. Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options. Categories: anthropic, awesome-list, awesome-lists, claude-code, claude-skills, claude-skills-creator, codex, codex-cli, gemini, gemini-cli, llama, llms, openai, opencode, qwen, qwen-coder, skills. Platforms: claude_code."} {"id": "5d4a0c948dff9dc0da07958185b7113a17fe8d0561bb87f3440b000ac689cdcb", "repo_url": "https://github.com/prat011/awesome-llm-skills", "name": "webapp-testing", "description": "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.", "source": ["marketplace", "topic"], "categories": ["anthropic", "awesome-list", "awesome-lists", "claude-code", "claude-skills", "claude-skills-creator", "codex", "codex-cli", "gemini", "gemini-cli", "llama", "llms", "openai", "opencode", "qwen", "qwen-coder", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/prat011/awesome-llm-skills/blob/master/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install webapp-testing"}, "quality": {"stars": 1001, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-25T12:51:50Z"}, "embedding_text": "webapp-testing. 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. Categories: anthropic, awesome-list, awesome-lists, claude-code, claude-skills, claude-skills-creator, codex, codex-cli, gemini, gemini-cli, llama, llms, openai, opencode, qwen, qwen-coder, skills. Platforms: claude_code."} -{"id": "133b99112f1730d2bf46fe3ab09852fff4572a529c9927e5aec7eaa97c9be9de", "repo_url": "https://github.com/jezweb/claude-skills", "name": "d1-drizzle-schema", "description": "Generate Drizzle ORM schemas for Cloudflare D1 databases with correct D1-specific patterns. Produces schema files, migration commands, type exports, and DATABASE_SCHEMA.md documentation. Handles D1 quirks: foreign keys always enforced, no native BOOLEAN/DATETIME types, 100 bound parameter limit, JSON stored as TEXT. Use when creating a new database, adding tables, or scaffolding a D1 data layer.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/cloudflare/skills/d1-drizzle-schema/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install d1-drizzle-schema"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "d1-drizzle-schema. Generate Drizzle ORM schemas for Cloudflare D1 databases with correct D1-specific patterns. Produces schema files, migration commands, type exports, and DATABASE_SCHEMA.md documentation. Handles D1 quirks: foreign keys always enforced, no native BOOLEAN/DATETIME types, 100 bound parameter limit, JSON stored as TEXT. Use when creating a new database, adding tables, or scaffolding a D1 data layer. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "81d467c0ff520e8ffc3faafea2c82a6b0938689ad3b6143a1fb66f38b396978e", "repo_url": "https://github.com/jezweb/claude-skills", "name": "d1-migration", "description": "Cloudflare D1 migration workflow: generate with Drizzle, inspect SQL for gotchas, apply to local and remote, fix stuck migrations, handle partial failures. Use when running migrations, fixing migration errors, or setting up D1 schemas.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/cloudflare/skills/d1-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install d1-migration"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "d1-migration. Cloudflare D1 migration workflow: generate with Drizzle, inspect SQL for gotchas, apply to local and remote, fix stuck migrations, handle partial failures. Use when running migrations, fixing migration errors, or setting up D1 schemas. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} -{"id": "009be1cf982991acb1683ad3472443fb8ee3574403152737ed23a443eecd9213", "repo_url": "https://github.com/jezweb/claude-skills", "name": "db-seed", "description": "Generate database seed scripts with realistic sample data. Reads Drizzle schemas or SQL migrations, respects foreign key ordering, produces idempotent TypeScript or SQL seed files. Handles D1 batch limits, unique constraints, and domain-appropriate data. Use when populating dev/demo/test databases. Triggers: 'seed database', 'seed data', 'sample data', 'populate database', 'db seed', 'test data', 'demo data', 'generate fixtures'.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/cloudflare/skills/db-seed/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install db-seed"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "db-seed. Generate database seed scripts with realistic sample data. Reads Drizzle schemas or SQL migrations, respects foreign key ordering, produces idempotent TypeScript or SQL seed files. Handles D1 batch limits, unique constraints, and domain-appropriate data. Use when populating dev/demo/test databases. Triggers: 'seed database', 'seed data', 'sample data', 'populate database', 'db seed', 'test data', 'demo data', 'generate fixtures'. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "0b00f0879d0d4144eeba19c1d27e282506fffe49eb4e621f58abe035e8f010b4", "repo_url": "https://github.com/jezweb/claude-skills", "name": "agent-browser", "description": "Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/dev-tools/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-browser"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "agent-browser. Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "17b33d6b7e338935bf37f7453d2cf01788c501c1a793a5021b0f946119173912", "repo_url": "https://github.com/jezweb/claude-skills", "name": "brains-trust", "description": "Get a second opinion from leading AI models on code, architecture, strategy, prompting, or anything. Queries models via OpenRouter, Gemini, or OpenAI APIs. Supports single opinion, multi-model consensus, and devil's advocate patterns. Trigger with 'brains trust', 'second opinion', 'ask gemini', 'ask gpt', 'peer review', 'consult', 'challenge this', or 'devil's advocate'.\n", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/dev-tools/skills/brains-trust/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brains-trust"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "brains-trust. Get a second opinion from leading AI models on code, architecture, strategy, prompting, or anything. Queries models via OpenRouter, Gemini, or OpenAI APIs. Supports single opinion, multi-model consensus, and devil's advocate patterns. Trigger with 'brains trust', 'second opinion', 'ask gemini', 'ask gpt', 'peer review', 'consult', 'challenge this', or 'devil's advocate'.\n Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "5ce776843daf9dd8917491fa14b0154e1cae5573fff7c7d53b0cdf76b33bfbf4", "repo_url": "https://github.com/jezweb/claude-skills", "name": "git-workflow", "description": "Guided git workflows: prepare PRs, clean up branches, resolve merge conflicts, handle monorepo tags, squash-and-merge patterns. Use when asked to prepare a PR, clean branches, resolve conflicts, or tag a release.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/dev-tools/skills/git-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-workflow"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "git-workflow. Guided git workflows: prepare PRs, clean up branches, resolve merge conflicts, handle monorepo tags, squash-and-merge patterns. Use when asked to prepare a PR, clean branches, resolve conflicts, or tag a release. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} @@ -15579,20 +20167,12 @@ {"id": "31524debed69f48ae561e30122329fc83b775620f27d03eeeb8eca98d2d255a5", "repo_url": "https://github.com/jezweb/claude-skills", "name": "team-update", "description": "Post project updates to team chat, gather feedback, triage responses, and plan next steps. Adapts to available tools (chat, git, issues, tasks). First run discovers tools and saves a playbook; subsequent runs execute from the playbook. Trigger with 'team update', 'post update', 'sync with team', 'standup', 'check team chat', 'feedback loop', 'project update', 'what did the team say'.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/dev-tools/skills/team-update/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install team-update"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "team-update. Post project updates to team chat, gather feedback, triage responses, and plan next steps. Adapts to available tools (chat, git, issues, tasks). First run discovers tools and saves a playbook; subsequent runs execute from the playbook. Trigger with 'team update', 'post update', 'sync with team', 'standup', 'check team chat', 'feedback loop', 'project update', 'what did the team say'. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "246f9a2233c7a9b3745ee0479f9e48bf2aeed56099b5680770432a009fd9cee8", "repo_url": "https://github.com/jezweb/claude-skills", "name": "landing-page", "description": "Generate a complete, deployable landing page from a brief. Produces a single self-contained HTML file with Tailwind CSS (via CDN), responsive design, dark mode, semantic HTML, and OG meta tags. Sections: hero with CTA, features, social proof, pricing (optional), FAQ, footer. Use when building a marketing page, product launch page, coming soon page, or any standalone landing page. Triggers: 'landing page', 'create a page', 'marketing page', 'launch page', 'coming soon page', 'one-page site'.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/frontend/skills/landing-page/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install landing-page"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "landing-page. Generate a complete, deployable landing page from a brief. Produces a single self-contained HTML file with Tailwind CSS (via CDN), responsive design, dark mode, semantic HTML, and OG meta tags. Sections: hero with CTA, features, social proof, pricing (optional), FAQ, footer. Use when building a marketing page, product launch page, coming soon page, or any standalone landing page. Triggers: 'landing page', 'create a page', 'marketing page', 'launch page', 'coming soon page', 'one-page site'. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "5056d570ab3701bacde9b127d271e3f548f3cef9fe8ac329a1d2e1c63dbea8fb", "repo_url": "https://github.com/jezweb/claude-skills", "name": "gws-install", "description": "Quick install of the Google Workspace CLI (gws) on an additional machine using existing OAuth credentials. Requires client_secret.json from a previous gws-setup. Use when setting up gws on a new computer, reinstalling after a fresh OS, or configuring a second workstation. Triggers: \"install gws\", \"gws on new machine\", \"gws install\", \"set up gws again\".\n", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/integrations/skills/gws-install/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gws-install"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "gws-install. Quick install of the Google Workspace CLI (gws) on an additional machine using existing OAuth credentials. Requires client_secret.json from a previous gws-setup. Use when setting up gws on a new computer, reinstalling after a fresh OS, or configuring a second workstation. Triggers: \"install gws\", \"gws on new machine\", \"gws install\", \"set up gws again\".\n Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} -{"id": "2c0d80787ad291a7b446e6edc32a36d317b0347d4a237a494cbe2bba066b060c", "repo_url": "https://github.com/jezweb/claude-skills", "name": "gws-setup", "description": "Set up the Google Workspace CLI (gws) from scratch. Guides through GCP project creation, OAuth credentials, authentication, and installing 90+ agent skills for Claude Code. Use when setting up gws for the first time, configuring Google Workspace API access, or troubleshooting gws auth issues. Triggers: \"set up gws\", \"google workspace cli\", \"gws setup\", \"install gws\".\n", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/integrations/skills/gws-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gws-setup"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "gws-setup. Set up the Google Workspace CLI (gws) from scratch. Guides through GCP project creation, OAuth credentials, authentication, and installing 90+ agent skills for Claude Code. Use when setting up gws for the first time, configuring Google Workspace API access, or troubleshooting gws auth issues. Triggers: \"set up gws\", \"google workspace cli\", \"gws setup\", \"install gws\".\n Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} -{"id": "091804fbea7dfa5cbbcfecfcef6d895c16f9dac17cd18e81dfc8a75621cdd4b7", "repo_url": "https://github.com/jezweb/claude-skills", "name": "mcp-builder", "description": "Build MCP servers in Python with FastMCP. Workflow: define tools and resources, build server, test locally, deploy to FastMCP Cloud or Docker. Use when creating MCP servers, exposing tools/resources/prompts to LLMs, building Claude integrations, or troubleshooting FastMCP module-level server, storage, lifespan, middleware, OAuth, or deployment errors.\n", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/integrations/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-builder"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "mcp-builder. Build MCP servers in Python with FastMCP. Workflow: define tools and resources, build server, test locally, deploy to FastMCP Cloud or Docker. Use when creating MCP servers, exposing tools/resources/prompts to LLMs, building Claude integrations, or troubleshooting FastMCP module-level server, storage, lifespan, middleware, OAuth, or deployment errors.\n Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "d1331ba45872db953f4e22fcf3a9093a18779e7deb9648b96c1c26267c7928b9", "repo_url": "https://github.com/jezweb/claude-skills", "name": "cortex-mine", "description": "Mine Gmail history into a local flat-file knowledge base (~/.cortex/). Use when asked to \"run the cortex\", \"mine emails\", \"cortex run\", \"cortex dry run\", \"set up the cortex\", \"cortex from DATE\", or \"mine my inbox\". Extracts contacts, clients, communications and knowledge facts into portable JSONL/JSON files. Requires gws CLI and ANTHROPIC_API_KEY.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/knowledge-cortex/skills/cortex-mine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cortex-mine"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "cortex-mine. Mine Gmail history into a local flat-file knowledge base (~/.cortex/). Use when asked to \"run the cortex\", \"mine emails\", \"cortex run\", \"cortex dry run\", \"set up the cortex\", \"cortex from DATE\", or \"mine my inbox\". Extracts contacts, clients, communications and knowledge facts into portable JSONL/JSON files. Requires gws CLI and ANTHROPIC_API_KEY. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "6bbb54d0b9d21bbfb5dd54af6c04ac5be694457074b55fe58892104ea817753f", "repo_url": "https://github.com/jezweb/claude-skills", "name": "cortex-query", "description": "Search and query your Knowledge Cortex (~/.cortex/). Use when asked to \"cortex stats\", \"cortex search\", \"cortex client\", \"cortex contacts\", \"cortex export\", \"cortex prune\", \"search my knowledge base\", or \"what do I know about COMPANY\". Queries portable JSONL/JSON files for contacts, clients, communications, and facts.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/knowledge-cortex/skills/cortex-query/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cortex-query"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "cortex-query. Search and query your Knowledge Cortex (~/.cortex/). Use when asked to \"cortex stats\", \"cortex search\", \"cortex client\", \"cortex contacts\", \"cortex export\", \"cortex prune\", \"search my knowledge base\", or \"what do I know about COMPANY\". Queries portable JSONL/JSON files for contacts, clients, communications, and facts. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "ba4a0d8f4fec0adb6a213306b58b064ce4cc3419f9d1097115978dc21c75953c", "repo_url": "https://github.com/jezweb/claude-skills", "name": "social-media-posts", "description": "Create platform-specific social media posts for LinkedIn, Facebook, Instagram, and Reddit. Handles character limits, hashtag strategies, hook placement, and image specs per platform. Works from scratch, from existing content (blog, newsletter, announcement), or as a multi-platform campaign. Produces copy-paste-ready posts. Triggers: 'social media post', 'linkedin post', 'facebook post', 'instagram caption', 'reddit post', 'social posts', 'post to social', 'repurpose for social', 'social media campaign'.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/social-media/skills/social-media-posts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install social-media-posts"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "social-media-posts. Create platform-specific social media posts for LinkedIn, Facebook, Instagram, and Reddit. Handles character limits, hashtag strategies, hook placement, and image specs per platform. Works from scratch, from existing content (blog, newsletter, announcement), or as a multi-platform campaign. Produces copy-paste-ready posts. Triggers: 'social media post', 'linkedin post', 'facebook post', 'instagram caption', 'reddit post', 'social posts', 'post to social', 'repurpose for social', 'social media campaign'. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} -{"id": "b6d36ad54da6a4516fce2c2d8303d2d292dc2954ad9378708c8cf5cd141c920c", "repo_url": "https://github.com/jezweb/claude-skills", "name": "seo-local-business", "description": "Generate complete SEO setup for local business websites \u2014 HTML head tags, JSON-LD LocalBusiness schema, robots.txt, sitemap.xml. Australian-optimised with +61 phone, ABN, suburb patterns.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/web-design/skills/seo-local-business/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-local-business"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "seo-local-business. Generate complete SEO setup for local business websites \u2014 HTML head tags, JSON-LD LocalBusiness schema, robots.txt, sitemap.xml. Australian-optimised with +61 phone, ABN, suburb patterns. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} -{"id": "bbe208a17f85397b4798038291972bef7c9ad662fa74a0f741429ded891d7d49", "repo_url": "https://github.com/jezweb/claude-skills", "name": "award-application", "description": "Write compelling award submissions, grant applications, and competition entries. Maps achievements to selection criteria using evidence-based narratives. Handles business awards (Telstra, chamber of commerce), industry awards, and grant applications. Use when preparing any competitive submission where you need to demonstrate merit against defined criteria.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/award-application/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install award-application"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "award-application. Write compelling award submissions, grant applications, and competition entries. Maps achievements to selection criteria using evidence-based narratives. Handles business awards (Telstra, chamber of commerce), industry awards, and grant applications. Use when preparing any competitive submission where you need to demonstrate merit against defined criteria. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} -{"id": "28a24dea387e8fd9e71601cb5bf95917d4340c3178ae072181ee7a38fd5ca72c", "repo_url": "https://github.com/jezweb/claude-skills", "name": "nz-business-english", "description": "New Zealand business English writing style for professional communications. Warm, inclusive, EN-NZ spelling. Use when writing emails, chat messages, proposals, client communications, or any business writing for New Zealand SME audiences. Applies to drafting, editing, and tone-checking any professional text.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/nz-business-english/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nz-business-english"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "nz-business-english. New Zealand business English writing style for professional communications. Warm, inclusive, EN-NZ spelling. Use when writing emails, chat messages, proposals, client communications, or any business writing for New Zealand SME audiences. Applies to drafting, editing, and tone-checking any professional text. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} -{"id": "67db2e0142422c86b878932ad53f3a604d11910c25f832eb0d853dece6b1f763", "repo_url": "https://github.com/jezweb/claude-skills", "name": "proposal-writer", "description": "Write a client proposal or quote for a service business. Covers project understanding, scope, timeline, pricing presentation, and terms. Works for web development, consulting, trades, professional services, and any B2B service engagement. Triggers: proposal, quote, project proposal, client proposal, scope of work, SOW, engagement letter.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/proposal-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install proposal-writer"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "proposal-writer. Write a client proposal or quote for a service business. Covers project understanding, scope, timeline, pricing presentation, and terms. Works for web development, consulting, trades, professional services, and any B2B service engagement. Triggers: proposal, quote, project proposal, client proposal, scope of work, SOW, engagement letter. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "3fc5a2d65ab82339f030b358dd5f7bba705c7517b54060779358b3d54c85ee75", "repo_url": "https://github.com/jezweb/claude-skills", "name": "resume-cover-letter", "description": "Write a resume/CV or cover letter tailored to a specific role. Handles regional format differences (AU/NZ, US, UK), ATS-friendly formatting, achievement-focused bullets, and cover letter structure. Use when someone needs help with a job application, resume review, CV update, or cover letter draft. Triggers: resume, CV, cover letter, job application, career document.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/resume-cover-letter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install resume-cover-letter"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "resume-cover-letter. Write a resume/CV or cover letter tailored to a specific role. Handles regional format differences (AU/NZ, US, UK), ATS-friendly formatting, achievement-focused bullets, and cover letter structure. Use when someone needs help with a job application, resume review, CV update, or cover letter draft. Triggers: resume, CV, cover letter, job application, career document. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} -{"id": "ae86de5dff91b1edc3da530f57672ffb7e65da91dbf496cef113a5bb663738a9", "repo_url": "https://github.com/jezweb/claude-skills", "name": "strategy-document", "description": "Write structured strategic documents for small and medium businesses. Produces SWOT analyses, lean business plans, OKRs, and competitive analyses. Each mode has a defined structure and quality bar. Use when a business needs to articulate strategy, set goals, analyse competition, or plan for growth. Outputs actionable documents, not generic frameworks.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/strategy-document/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install strategy-document"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "strategy-document. Write structured strategic documents for small and medium businesses. Produces SWOT analyses, lean business plans, OKRs, and competitive analyses. Each mode has a defined structure and quality bar. Use when a business needs to articulate strategy, set goals, analyse competition, or plan for growth. Outputs actionable documents, not generic frameworks. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "37c65f7068d620af223b3e56ae97023cb4b7d707ce731ee7aa2dc507515790ee", "repo_url": "https://github.com/jezweb/claude-skills", "name": "uk-business-english", "description": "British business English writing style for professional communications. Polished, understated, EN-GB spelling. Use when writing emails, chat messages, proposals, client communications, or any business writing for British SME audiences. Applies to drafting, editing, and tone-checking any professional text.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/uk-business-english/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install uk-business-english"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "uk-business-english. British business English writing style for professional communications. Polished, understated, EN-GB spelling. Use when writing emails, chat messages, proposals, client communications, or any business writing for British SME audiences. Applies to drafting, editing, and tone-checking any professional text. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} {"id": "b34757a41869514d823f7d00654c9460bce60f5a6d81270ef5ee9445047424da", "repo_url": "https://github.com/jezweb/claude-skills", "name": "us-business-english", "description": "American business English writing style for professional communications. Direct, action-oriented, EN-US spelling. Use when writing emails, chat messages, proposals, client communications, or any business writing for American SME audiences. Applies to drafting, editing, and tone-checking any professional text.", "source": ["marketplace", "topic"], "categories": ["ai", "anthropic", "automation", "claude-code", "claude-skills", "cloudflare", "devtools", "productivity", "react", "skills", "tailwind", "vite"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jezweb/claude-skills/blob/main/plugins/writing/skills/us-business-english/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install us-business-english"}, "quality": {"stars": 611, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T11:40:36Z"}, "embedding_text": "us-business-english. American business English writing style for professional communications. Direct, action-oriented, EN-US spelling. Use when writing emails, chat messages, proposals, client communications, or any business writing for American SME audiences. Applies to drafting, editing, and tone-checking any professional text. Categories: ai, anthropic, automation, claude-code, claude-skills, cloudflare, devtools, productivity, react, skills, tailwind, vite. Platforms: claude_code."} -{"id": "7a0bf3e79f1950dd7a68c9ee4827069af0d9e546cd3896e1b91b9e39337a4b6d", "repo_url": "https://github.com/roundtable02/tutor-skills", "name": "tutor-setup", "description": "Transforms knowledge sources into an Obsidian StudyVault. Two modes: (1) Document Mode \u2014 PDF/text/web sources \u2192 study notes with practice questions. (2) Codebase Mode \u2014 source code project \u2192 onboarding vault for new developers. Mode is auto-detected based on project markers in CWD.\n", "source": ["marketplace", "topic"], "categories": ["agent-skills", "claude", "claude-code", "claude-skills", "skill", "skills", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/roundtable02/tutor-skills/blob/main/skills/tutor-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tutor-setup"}, "quality": {"stars": 492, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-28T14:41:09Z"}, "embedding_text": "tutor-setup. Transforms knowledge sources into an Obsidian StudyVault. Two modes: (1) Document Mode \u2014 PDF/text/web sources \u2192 study notes with practice questions. (2) Codebase Mode \u2014 source code project \u2192 onboarding vault for new developers. Mode is auto-detected based on project markers in CWD.\n Categories: agent-skills, claude, claude-code, claude-skills, skill, skills, skillsmp. Platforms: claude_code."} {"id": "213ddef3463aca7af13a2f24a2b263ead44b504fedce6b81b7327e0bd56c33aa", "repo_url": "https://github.com/roundtable02/tutor-skills", "name": "tutor", "description": "Interactive quiz tutor for Obsidian StudyVault learning. Use when the user wants to: (1) Take a diagnostic assessment of their knowledge, (2) Study or review specific sections/topics, (3) Drill weak areas identified in previous sessions, (4) Check their learning progress or dashboard, or says things like \"quiz me\", \"test me\", \"let's study\", \"/tutor\", \"\ud559\uc2b5\", \"\ud034\uc988\", \"\ud3c9\uac00\".", "source": ["marketplace", "topic"], "categories": ["agent-skills", "claude", "claude-code", "claude-skills", "skill", "skills", "skillsmp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/roundtable02/tutor-skills/blob/main/skills/tutor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tutor"}, "quality": {"stars": 492, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-28T14:41:09Z"}, "embedding_text": "tutor. Interactive quiz tutor for Obsidian StudyVault learning. Use when the user wants to: (1) Take a diagnostic assessment of their knowledge, (2) Study or review specific sections/topics, (3) Drill weak areas identified in previous sessions, (4) Check their learning progress or dashboard, or says things like \"quiz me\", \"test me\", \"let's study\", \"/tutor\", \"\ud559\uc2b5\", \"\ud034\uc988\", \"\ud3c9\uac00\". Categories: agent-skills, claude, claude-code, claude-skills, skill, skills, skillsmp. Platforms: claude_code."} {"id": "2412a88afa098b718835b9894928acc1421810d7eee89c5e7378900c5ce1427c", "repo_url": "https://github.com/fcakyon/claude-codex-settings", "name": "setup", "description": "This skill should be used when user encounters \"ccproxy not found\", \"LiteLLM connection failed\", \"localhost:4000 refused\", \"OAuth failed\", \"proxy not running\", or needs help configuring ccproxy/LiteLLM integration.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-tools", "claude-ai", "claude-code", "claude-code-plugin", "claude-skills", "claudecode", "claudecode-config", "codex", "codex-cli", "commit-message", "context7", "cursor", "gemini-cli", "github", "mcp", "mcp-server", "plugin", "pull-requests", "slack"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fcakyon/claude-codex-settings/blob/main/plugins/ccproxy-tools/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install setup"}, "quality": {"stars": 496, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T01:13:42Z"}, "embedding_text": "setup. This skill should be used when user encounters \"ccproxy not found\", \"LiteLLM connection failed\", \"localhost:4000 refused\", \"OAuth failed\", \"proxy not running\", or needs help configuring ccproxy/LiteLLM integration. Categories: ai-agents, ai-tools, claude-ai, claude-code, claude-code-plugin, claude-skills, claudecode, claudecode-config, codex, codex-cli, commit-message, context7, cursor, gemini-cli, github, mcp, mcp-server, plugin, pull-requests, slack. Platforms: claude_code."} {"id": "f26e4cc67929148916d12a3b165aff4cf554c6f317467b61fd19ff8dc97e59f6", "repo_url": "https://github.com/fcakyon/claude-codex-settings", "name": "setup", "description": "This skill should be used when user encounters \"ADC not found\", \"gcloud auth error\", \"GCloud MCP error\", \"Application Default Credentials\", \"project not set\", or needs help configuring GCloud integration.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-tools", "claude-ai", "claude-code", "claude-code-plugin", "claude-skills", "claudecode", "claudecode-config", "codex", "codex-cli", "commit-message", "context7", "cursor", "gemini-cli", "github", "mcp", "mcp-server", "plugin", "pull-requests", "slack"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fcakyon/claude-codex-settings/blob/main/plugins/gcloud-tools/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install setup"}, "quality": {"stars": 496, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T01:13:42Z"}, "embedding_text": "setup. This skill should be used when user encounters \"ADC not found\", \"gcloud auth error\", \"GCloud MCP error\", \"Application Default Credentials\", \"project not set\", or needs help configuring GCloud integration. Categories: ai-agents, ai-tools, claude-ai, claude-code, claude-code-plugin, claude-skills, claudecode, claudecode-config, codex, codex-cli, commit-message, context7, cursor, gemini-cli, github, mcp, mcp-server, plugin, pull-requests, slack. Platforms: claude_code."} @@ -15606,55 +20186,32 @@ {"id": "3ba15e85f4d8b258a2af411d52387b35cc1873c81f2581abb60b41659d5ecf06", "repo_url": "https://github.com/fcakyon/claude-codex-settings", "name": "setup", "description": "This skill should be used when user encounters \"Supabase MCP error\", \"Supabase auth failed\", \"Supabase OAuth error\", \"Supabase not working\", or needs help configuring Supabase integration.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-tools", "claude-ai", "claude-code", "claude-code-plugin", "claude-skills", "claudecode", "claudecode-config", "codex", "codex-cli", "commit-message", "context7", "cursor", "gemini-cli", "github", "mcp", "mcp-server", "plugin", "pull-requests", "slack"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fcakyon/claude-codex-settings/blob/main/plugins/supabase-tools/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install setup"}, "quality": {"stars": 496, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T01:13:42Z"}, "embedding_text": "setup. This skill should be used when user encounters \"Supabase MCP error\", \"Supabase auth failed\", \"Supabase OAuth error\", \"Supabase not working\", or needs help configuring Supabase integration. Categories: ai-agents, ai-tools, claude-ai, claude-code, claude-code-plugin, claude-skills, claudecode, claudecode-config, codex, codex-cli, commit-message, context7, cursor, gemini-cli, github, mcp, mcp-server, plugin, pull-requests, slack. Platforms: claude_code."} {"id": "f100968647a878e8c3b1a048a8480ea0156bd4ef62444a2a2c102da297617741", "repo_url": "https://github.com/fcakyon/claude-codex-settings", "name": "setup", "description": "This skill should be used when user encounters \"Tavily MCP error\", \"Tavily API key invalid\", \"web search not working\", \"Tavily failed\", or needs help configuring Tavily integration.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "ai-tools", "claude-ai", "claude-code", "claude-code-plugin", "claude-skills", "claudecode", "claudecode-config", "codex", "codex-cli", "commit-message", "context7", "cursor", "gemini-cli", "github", "mcp", "mcp-server", "plugin", "pull-requests", "slack"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fcakyon/claude-codex-settings/blob/main/plugins/tavily-tools/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install setup"}, "quality": {"stars": 496, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T01:13:42Z"}, "embedding_text": "setup. This skill should be used when user encounters \"Tavily MCP error\", \"Tavily API key invalid\", \"web search not working\", \"Tavily failed\", or needs help configuring Tavily integration. Categories: ai-agents, ai-tools, claude-ai, claude-code, claude-code-plugin, claude-skills, claudecode, claudecode-config, codex, codex-cli, commit-message, context7, cursor, gemini-cli, github, mcp, mcp-server, plugin, pull-requests, slack. Platforms: claude_code."} {"id": "9c572c885d96d5544b4a033d4a88707b092a884782a2d0f34549a4751dae89c8", "repo_url": "https://github.com/malob/nix-config", "name": "audit-permissions", "description": "This skill should be used when the user asks to \"audit claude permissions\", \"audit permissions\", \"review local claude settings\", \"promote permissions to global\", \"clean up claude settings\", \"find permission patterns\", or wants to identify project-local Claude Code permissions that should be added to global configuration.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/plugins/cc-maintenance/skills/audit-permissions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install audit-permissions"}, "quality": {"stars": 455, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:18:16Z"}, "embedding_text": "audit-permissions. This skill should be used when the user asks to \"audit claude permissions\", \"audit permissions\", \"review local claude settings\", \"promote permissions to global\", \"clean up claude settings\", \"find permission patterns\", or wants to identify project-local Claude Code permissions that should be added to global configuration. Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} -{"id": "42ec0609a173fe732b3cdc5c4ace773b078a0cfff12c9875b48c254198bd66c1", "repo_url": "https://github.com/malob/nix-config", "name": "cancel", "description": "Stop any currently playing text-to-speech audio", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/plugins/tts/skills/cancel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cancel"}, "quality": {"stars": 455, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:18:16Z"}, "embedding_text": "cancel. Stop any currently playing text-to-speech audio Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} -{"id": "fb5980ec36df11d25d104b17d91fc5565e3ee6c8e7000c7b1b24f847757020a9", "repo_url": "https://github.com/malob/nix-config", "name": "start", "description": "Enable auto TTS for this session", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/plugins/tts/skills/start/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install start"}, "quality": {"stars": 455, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:18:16Z"}, "embedding_text": "start. Enable auto TTS for this session Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} -{"id": "330e3192e46c537120328336ad0744820267b442a54b17c0071199c32ecfb2c2", "repo_url": "https://github.com/malob/nix-config", "name": "stop", "description": "Disable auto TTS for this session", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/plugins/tts/skills/stop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install stop"}, "quality": {"stars": 455, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:18:16Z"}, "embedding_text": "stop. Disable auto TTS for this session Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} -{"id": "37183ca9ad95dd27f95a54454846ceb189ae420599cdac934610c4fd7744cf1f", "repo_url": "https://github.com/malob/nix-config", "name": "docx", "description": "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.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx"}, "quality": {"stars": 455, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:18:16Z"}, "embedding_text": "docx. 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. Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} -{"id": "b6ff934c22540efe77f3fe35e0fc8b2a2daf1af93faed038e1cfe32eb2f96fbd", "repo_url": "https://github.com/malob/nix-config", "name": "malo-find-skills", "description": "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.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/skills/malo-find-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install malo-find-skills"}, "quality": {"stars": 455, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:18:16Z"}, "embedding_text": "malo-find-skills. 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. Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} {"id": "1c0b0fae371452af9592df759494217d7d6b985dadcd8e84e316254a64c54f9e", "repo_url": "https://github.com/malob/nix-config", "name": "mcp-builder", "description": "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).", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-builder"}, "quality": {"stars": 455, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:18:16Z"}, "embedding_text": "mcp-builder. 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). Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} {"id": "84c6bed14df69f1230058d2037415b7928c58c153ccb714bc438599a0a41e6ca", "repo_url": "https://github.com/malob/nix-config", "name": "pdf", "description": "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.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf"}, "quality": {"stars": 455, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:18:16Z"}, "embedding_text": "pdf. 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. Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} -{"id": "4929c247be9330a0b8343c7da574f0c3748402388926e0f6596a5d82105d2e99", "repo_url": "https://github.com/malob/nix-config", "name": "search-tips", "description": "This skill should be used when performing web research beyond a simple single search -- looking into topics, comparing options, investigating questions, finding recommendations, or any task where effective use of Exa, Firecrawl, and Reddit tools matters. Triggers on \"research\", \"look into\", \"investigate\", \"compare\", \"find out about\", \"search for\", \"find information\", \"what do people think about\", \"what are the best\", \"look up\", or multi-source search tasks. Also invocable explicitly by deep-research team members via the Skill tool.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills", "dotfiles", "home-manager", "neovim", "nix", "nix-configs", "nix-darwin", "nix-dotfiles", "nix-expressions", "nix-flake", "nixpkgs"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/malob/nix-config/blob/master/configs/claude/skills/search-tips/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install search-tips"}, "quality": {"stars": 455, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T01:18:16Z"}, "embedding_text": "search-tips. This skill should be used when performing web research beyond a simple single search -- looking into topics, comparing options, investigating questions, finding recommendations, or any task where effective use of Exa, Firecrawl, and Reddit tools matters. Triggers on \"research\", \"look into\", \"investigate\", \"compare\", \"find out about\", \"search for\", \"find information\", \"what do people think about\", \"what are the best\", \"look up\", or multi-source search tasks. Also invocable explicitly by deep-research team members via the Skill tool. Categories: claude-code, claude-code-plugins, claude-skills, dotfiles, home-manager, neovim, nix, nix-configs, nix-darwin, nix-dotfiles, nix-expressions, nix-flake, nixpkgs. Platforms: claude_code."} {"id": "e7fcfc74f25a93d1e749990bb7cc6437960decc3b1a973cb46b536d13dab7af6", "repo_url": "https://github.com/axtonliu/smart-illustrator", "name": "smart-illustrator", "description": "\u667a\u80fd\u914d\u56fe\u4e0e PPT \u4fe1\u606f\u56fe\u751f\u6210\u5668\u3002\u652f\u6301\u4e09\u79cd\u6a21\u5f0f\uff1a(1) \u6587\u7ae0\u914d\u56fe\u6a21\u5f0f - \u5206\u6790\u6587\u7ae0\u5185\u5bb9\uff0c\u751f\u6210\u63d2\u56fe\uff1b(2) PPT/Slides \u6a21\u5f0f - \u751f\u6210\u6279\u91cf\u4fe1\u606f\u56fe\uff1b(3) Cover \u6a21\u5f0f - \u751f\u6210\u5c01\u9762\u56fe\u3002\u6240\u6709\u6a21\u5f0f\u9ed8\u8ba4\u751f\u6210\u56fe\u7247\uff0c`--prompt-only` \u53ea\u8f93\u51fa prompt\u3002\u652f\u6301 Bento Grid \u529f\u80fd\u5c55\u793a\u56fe\u98ce\u683c\uff08--style bento\uff09\u3002\u89e6\u53d1\u8bcd\uff1a\u914d\u56fe\u3001\u63d2\u56fe\u3001PPT\u3001slides\u3001\u5c01\u9762\u56fe\u3001thumbnail\u3001cover\u3001bento grid\u3001\u529f\u80fd\u5c55\u793a\u56fe\u3001feature showcase\u3002", "source": ["marketplace", "topic"], "categories": ["ai-illustration", "best-effort", "claude-code", "claude-skills", "content-creation", "gemini-api", "mermaid", "youtube-thumbnails"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/axtonliu/smart-illustrator/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install smart-illustrator"}, "quality": {"stars": 413, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-24T01:19:25Z"}, "embedding_text": "smart-illustrator. \u667a\u80fd\u914d\u56fe\u4e0e PPT \u4fe1\u606f\u56fe\u751f\u6210\u5668\u3002\u652f\u6301\u4e09\u79cd\u6a21\u5f0f\uff1a(1) \u6587\u7ae0\u914d\u56fe\u6a21\u5f0f - \u5206\u6790\u6587\u7ae0\u5185\u5bb9\uff0c\u751f\u6210\u63d2\u56fe\uff1b(2) PPT/Slides \u6a21\u5f0f - \u751f\u6210\u6279\u91cf\u4fe1\u606f\u56fe\uff1b(3) Cover \u6a21\u5f0f - \u751f\u6210\u5c01\u9762\u56fe\u3002\u6240\u6709\u6a21\u5f0f\u9ed8\u8ba4\u751f\u6210\u56fe\u7247\uff0c`--prompt-only` \u53ea\u8f93\u51fa prompt\u3002\u652f\u6301 Bento Grid \u529f\u80fd\u5c55\u793a\u56fe\u98ce\u683c\uff08--style bento\uff09\u3002\u89e6\u53d1\u8bcd\uff1a\u914d\u56fe\u3001\u63d2\u56fe\u3001PPT\u3001slides\u3001\u5c01\u9762\u56fe\u3001thumbnail\u3001cover\u3001bento grid\u3001\u529f\u80fd\u5c55\u793a\u56fe\u3001feature showcase\u3002 Categories: ai-illustration, best-effort, claude-code, claude-skills, content-creation, gemini-api, mermaid, youtube-thumbnails. Platforms: claude_code."} {"id": "01efc9812dd5b455b2fe54338dd77711d03e4ca5259a9ceecfc73880a6c9d4ed", "repo_url": "https://github.com/aaron-he-zhu/seo-geo-claude-skills", "name": "content-quality-auditor", "description": "This skill should be used when the user asks to \"audit content quality\", \"EEAT score\", \"E-E-A-T audit\", \"content quality check\", \"CORE-EEAT audit\", \"helpful content assessment\", \"experience expertise authoritativeness trust\", \"how good is my content\", \"is my content AI-citation worthy\", \"content improvement plan\", \"helpful content update impact\", or \"GEO quality score\". Runs the full 80-item CORE-EEAT audit across 8 dimensions: Contextual Clarity, Organization, Referenceability, Exclusivity (CORE, GEO-focused) plus Experience, Expertise, Authoritativeness, Trust (EEAT, SEO-focused). Produces a GEO Score, SEO Score, content-type weighted total, per-item pass/partial/fail, and prioritized fix plan with veto item checks. For SEO page element audits, see on-page-seo-auditor. For domain-level authority, see domain-authority-auditor.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-skills", "content-optimization", "generative-engine-optimization", "geo", "marketing", "search-engine-optimization", "seo", "seo-tools"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/cross-cutting/content-quality-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-quality-auditor"}, "quality": {"stars": 399, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T16:00:20Z"}, "embedding_text": "content-quality-auditor. This skill should be used when the user asks to \"audit content quality\", \"EEAT score\", \"E-E-A-T audit\", \"content quality check\", \"CORE-EEAT audit\", \"helpful content assessment\", \"experience expertise authoritativeness trust\", \"how good is my content\", \"is my content AI-citation worthy\", \"content improvement plan\", \"helpful content update impact\", or \"GEO quality score\". Runs the full 80-item CORE-EEAT audit across 8 dimensions: Contextual Clarity, Organization, Referenceability, Exclusivity (CORE, GEO-focused) plus Experience, Expertise, Authoritativeness, Trust (EEAT, SEO-focused). Produces a GEO Score, SEO Score, content-type weighted total, per-item pass/partial/fail, and prioritized fix plan with veto item checks. For SEO page element audits, see on-page-seo-auditor. For domain-level authority, see domain-authority-auditor. Categories: agent-skills, ai-skills, claude-code, claude-skills, content-optimization, generative-engine-optimization, geo, marketing, search-engine-optimization, seo, seo-tools. Platforms: claude_code."} {"id": "53aff719f2a7c7fb924609da26b28883fd3cc08d8a367dd7b60ab3718a13a95f", "repo_url": "https://github.com/aaron-he-zhu/seo-geo-claude-skills", "name": "domain-authority-auditor", "description": "This skill should be used when the user asks to \"audit domain authority\", \"domain trust score\", \"CITE audit\", \"how authoritative is my site\", \"domain credibility check\", \"is my domain trustworthy\", or \"domain credibility score\". Runs a full CITE 40-item domain authority audit, scoring domains across 4 dimensions with weighted scoring by domain type. Produces a detailed report with per-item scores, dimension analysis, veto checks, and a prioritized action plan. For content-level assessment, see content-quality-auditor. For link profile details, see backlink-analyzer.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-skills", "content-optimization", "generative-engine-optimization", "geo", "marketing", "search-engine-optimization", "seo", "seo-tools"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/cross-cutting/domain-authority-auditor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install domain-authority-auditor"}, "quality": {"stars": 399, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T16:00:20Z"}, "embedding_text": "domain-authority-auditor. This skill should be used when the user asks to \"audit domain authority\", \"domain trust score\", \"CITE audit\", \"how authoritative is my site\", \"domain credibility check\", \"is my domain trustworthy\", or \"domain credibility score\". Runs a full CITE 40-item domain authority audit, scoring domains across 4 dimensions with weighted scoring by domain type. Produces a detailed report with per-item scores, dimension analysis, veto checks, and a prioritized action plan. For content-level assessment, see content-quality-auditor. For link profile details, see backlink-analyzer. Categories: agent-skills, ai-skills, claude-code, claude-skills, content-optimization, generative-engine-optimization, geo, marketing, search-engine-optimization, seo, seo-tools. Platforms: claude_code."} {"id": "062f884f3ed231f18f6c9c9e53122c280a99729c948cb70f131523e24cefc853", "repo_url": "https://github.com/aaron-he-zhu/seo-geo-claude-skills", "name": "entity-optimizer", "description": "This skill should be used when the user asks to \"optimize entity presence\", \"build knowledge graph\", \"improve knowledge panel\", \"entity audit\", \"establish brand entity\", \"Google does not know my brand\", \"no knowledge panel\", or \"establish my brand as an entity\". Works standalone with public search and AI query testing; supercharged when you connect ~~knowledge graph + ~~SEO tool + ~~AI monitor for automated entity analysis. For structured data implementation, see schema-markup-generator. For content-level AI optimization, see geo-content-optimizer.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-skills", "content-optimization", "generative-engine-optimization", "geo", "marketing", "search-engine-optimization", "seo", "seo-tools"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/cross-cutting/entity-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install entity-optimizer"}, "quality": {"stars": 399, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T16:00:20Z"}, "embedding_text": "entity-optimizer. This skill should be used when the user asks to \"optimize entity presence\", \"build knowledge graph\", \"improve knowledge panel\", \"entity audit\", \"establish brand entity\", \"Google does not know my brand\", \"no knowledge panel\", or \"establish my brand as an entity\". Works standalone with public search and AI query testing; supercharged when you connect ~~knowledge graph + ~~SEO tool + ~~AI monitor for automated entity analysis. For structured data implementation, see schema-markup-generator. For content-level AI optimization, see geo-content-optimizer. Categories: agent-skills, ai-skills, claude-code, claude-skills, content-optimization, generative-engine-optimization, geo, marketing, search-engine-optimization, seo, seo-tools. Platforms: claude_code."} {"id": "e1322e9de15203395962a193795bfcfe1dc8c8f4238020a868a6fe242b1f2d59", "repo_url": "https://github.com/aaron-he-zhu/seo-geo-claude-skills", "name": "memory-management", "description": "This skill should be used when the user asks to \"remember project context\", \"save SEO data\", \"track campaign progress\", \"store keyword data\", \"manage project memory\", \"remember this for next time\", \"save my keyword data\", or \"keep track of this campaign\". Manages a two-layer memory system (hot cache + cold storage) for SEO/GEO project context, tracking keywords, competitors, metrics, and campaign status with intelligent promotion/demotion.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "claude-code", "claude-skills", "content-optimization", "generative-engine-optimization", "geo", "marketing", "search-engine-optimization", "seo", "seo-tools"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaron-he-zhu/seo-geo-claude-skills/blob/main/cross-cutting/memory-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install memory-management"}, "quality": {"stars": 399, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T16:00:20Z"}, "embedding_text": "memory-management. This skill should be used when the user asks to \"remember project context\", \"save SEO data\", \"track campaign progress\", \"store keyword data\", \"manage project memory\", \"remember this for next time\", \"save my keyword data\", or \"keep track of this campaign\". Manages a two-layer memory system (hot cache + cold storage) for SEO/GEO project context, tracking keywords, competitors, metrics, and campaign status with intelligent promotion/demotion. Categories: agent-skills, ai-skills, claude-code, claude-skills, content-optimization, generative-engine-optimization, geo, marketing, search-engine-optimization, seo, seo-tools. Platforms: claude_code."} -{"id": "787e0ae4047c6adacb9760a7baaa9bcc27cbc3402e63d93f4880dd82ebabd800", "repo_url": "https://github.com/waynesutton/convexskills", "name": "convex-agents", "description": "Building AI agents with the Convex Agent component including thread management, tool integration, streaming responses, RAG patterns, and workflow orchestration", "source": ["marketplace", "topic"], "categories": ["ai", "backend", "claude", "claude-skills", "convex", "database", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/convexskills/blob/main/skills/convex-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install convex-agents"}, "quality": {"stars": 363, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T01:49:59Z"}, "embedding_text": "convex-agents. Building AI agents with the Convex Agent component including thread management, tool integration, streaming responses, RAG patterns, and workflow orchestration Categories: ai, backend, claude, claude-skills, convex, database, skills. Platforms: claude_code."} -{"id": "b4329a4e816f54993770c5f66d11c165eef55af0a9ebe65b2f51359b99ceb76e", "repo_url": "https://github.com/waynesutton/convexskills", "name": "convex-best-practices", "description": "Guidelines for building production-ready Convex apps covering function organization, query patterns, validation, TypeScript usage, error handling, and the Zen of Convex design philosophy", "source": ["marketplace", "topic"], "categories": ["ai", "backend", "claude", "claude-skills", "convex", "database", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/convexskills/blob/main/skills/convex-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install convex-best-practices"}, "quality": {"stars": 363, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T01:49:59Z"}, "embedding_text": "convex-best-practices. Guidelines for building production-ready Convex apps covering function organization, query patterns, validation, TypeScript usage, error handling, and the Zen of Convex design philosophy Categories: ai, backend, claude, claude-skills, convex, database, skills. Platforms: claude_code."} -{"id": "d1e110c6bc4edc96dc9ded1ea8cc242cce4759d343a7869bca6265117a43cdec", "repo_url": "https://github.com/waynesutton/convexskills", "name": "convex-file-storage", "description": "Complete file handling including upload flows, serving files via URL, storing generated files from actions, deletion, and accessing file metadata from system tables", "source": ["marketplace", "topic"], "categories": ["ai", "backend", "claude", "claude-skills", "convex", "database", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/convexskills/blob/main/skills/convex-file-storage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install convex-file-storage"}, "quality": {"stars": 363, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T01:49:59Z"}, "embedding_text": "convex-file-storage. Complete file handling including upload flows, serving files via URL, storing generated files from actions, deletion, and accessing file metadata from system tables Categories: ai, backend, claude, claude-skills, convex, database, skills. Platforms: claude_code."} {"id": "04f9de1c90f36d5abf9fd1bf1aff33794bf8e8f9f2a967fa7e933b01a786df7a", "repo_url": "https://github.com/waynesutton/convexskills", "name": "convex", "description": "Umbrella skill for all Convex development patterns. Routes to specific skills like convex-functions, convex-realtime, convex-agents, etc.", "source": ["marketplace", "topic"], "categories": ["ai", "backend", "claude", "claude-skills", "convex", "database", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/waynesutton/convexskills/blob/main/skills/convex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install convex"}, "quality": {"stars": 363, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T01:49:59Z"}, "embedding_text": "convex. Umbrella skill for all Convex development patterns. Routes to specific skills like convex-functions, convex-realtime, convex-agents, etc. Categories: ai, backend, claude, claude-skills, convex, database, skills. Platforms: claude_code."} {"id": "809ac58d93b475bf5ab8f57976c939f66342fe143ee9143b918b505704b0ae6d", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "building-ai-chat", "description": "Builds AI chat interfaces and conversational UI with streaming responses, context management, and multi-modal support. Use when creating ChatGPT-style interfaces, AI assistants, code copilots, or conversational agents. Handles streaming text, token limits, regeneration, feedback loops, tool usage visualization, and AI-specific error patterns. Provides battle-tested components from leading AI products with accessibility and performance built in.", "source": ["marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/building-ai-chat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install building-ai-chat"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "building-ai-chat. Builds AI chat interfaces and conversational UI with streaming responses, context management, and multi-modal support. Use when creating ChatGPT-style interfaces, AI assistants, code copilots, or conversational agents. Handles streaming text, token limits, regeneration, feedback loops, tool usage visualization, and AI-specific error patterns. Provides battle-tested components from leading AI products with accessibility and performance built in. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} -{"id": "12a69476062373fd2b9f5fe5eb6cc732350efe4f35fff8f28e6192461b89d541", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "building-forms", "description": "Builds form components and data collection interfaces including contact forms, registration flows, checkout processes, surveys, and settings pages. Includes 50+ input types, validation strategies, accessibility patterns (WCAG 2.1), multi-step wizards, and UX best practices. Provides decision trees from data type to component selection, validation timing guidance, and error handling patterns. Use when creating forms, collecting user input, building surveys, implementing validation, designing multi-step workflows, or ensuring form accessibility.", "source": ["marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/building-forms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install building-forms"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "building-forms. Builds form components and data collection interfaces including contact forms, registration flows, checkout processes, surveys, and settings pages. Includes 50+ input types, validation strategies, accessibility patterns (WCAG 2.1), multi-step wizards, and UX best practices. Provides decision trees from data type to component selection, validation timing guidance, and error handling patterns. Use when creating forms, collecting user input, building surveys, implementing validation, designing multi-step workflows, or ensuring form accessibility. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} {"id": "bd38c4d760bbf747a5f63a64154e84990a99f15c73d320f00510756e8f82226a", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "designing-apis", "description": "Design APIs that are secure, scalable, and maintainable using RESTful, GraphQL, and event-driven patterns. Use when designing new APIs, evolving existing APIs, or establishing API standards for teams.", "source": ["marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/designing-apis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install designing-apis"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "designing-apis. Design APIs that are secure, scalable, and maintainable using RESTful, GraphQL, and event-driven patterns. Use when designing new APIs, evolving existing APIs, or establishing API standards for teams. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} -{"id": "9b77942cebf2ad5fc5e27c47bd725c8ad914f846cfe4823783e08839f8cec3ab", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "managing-configuration", "description": "Guide users through creating, managing, and testing server configuration automation using Ansible. When automating server configurations, deploying applications with Ansible playbooks, managing dynamic inventories for cloud environments, or testing roles with Molecule, this skill provides idempotency patterns, secrets management with ansible-vault and HashiCorp Vault, and GitOps workflows for configuration as code.", "source": ["marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/managing-configuration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install managing-configuration"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "managing-configuration. Guide users through creating, managing, and testing server configuration automation using Ansible. When automating server configurations, deploying applications with Ansible playbooks, managing dynamic inventories for cloud environments, or testing roles with Molecule, this skill provides idempotency patterns, secrets management with ansible-vault and HashiCorp Vault, and GitOps workflows for configuration as code. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} -{"id": "3e5c35248384f24cff96520142cfb340af41c2240108039ce1a9dae32cb7ec83", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "managing-incidents", "description": "Guide incident response from detection to post-mortem using SRE principles, severity classification, on-call management, blameless culture, and communication protocols. Use when setting up incident processes, designing escalation policies, or conducting post-mortems.", "source": ["marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/managing-incidents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install managing-incidents"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "managing-incidents. Guide incident response from detection to post-mortem using SRE principles, severity classification, on-call management, blameless culture, and communication protocols. Use when setting up incident processes, designing escalation policies, or conducting post-mortems. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} {"id": "87bae4f115a6e1fd47fe0f8752ea593c8aaa07e44a00837a580ac6e4beae516a", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "managing-secrets", "description": "Managing secrets (API keys, database credentials, certificates) with Vault, cloud providers, and Kubernetes. Use when storing sensitive data, rotating credentials, syncing secrets to Kubernetes, implementing dynamic secrets, or scanning code for leaked secrets.", "source": ["marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/secret-management/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install managing-secrets"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "managing-secrets. Managing secrets (API keys, database credentials, certificates) with Vault, cloud providers, and Kubernetes. Use when storing sensitive data, rotating credentials, syncing secrets to Kubernetes, implementing dynamic secrets, or scanning code for leaked secrets. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} -{"id": "587a36d5f0d3fe63159edcd5eced471c80e03b3691e9ee42893d13eeb72864af", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "testing-strategies", "description": "Strategic guidance for choosing and implementing testing approaches across the test pyramid. Use when building comprehensive test suites that balance unit, integration, E2E, and contract testing for optimal speed and confidence. Covers multi-language patterns (TypeScript, Python, Go, Rust) and modern best practices including property-based testing, test data management, and CI/CD integration.", "source": ["marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/testing-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-strategies"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "testing-strategies. Strategic guidance for choosing and implementing testing approaches across the test pyramid. Use when building comprehensive test suites that balance unit, integration, E2E, and contract testing for optimal speed and confidence. Covers multi-language patterns (TypeScript, Python, Go, Rust) and modern best practices including property-based testing, test data management, and CI/CD integration. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} {"id": "ad0e8b2ea7cf194d042a3acad370ff55953129ea7e943799b03f87592936b52e", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "using-relational-databases", "description": "Relational database implementation across Python, Rust, Go, and TypeScript. Use when building CRUD applications, transactional systems, or structured data storage. Covers PostgreSQL (primary), MySQL, SQLite, ORMs (SQLAlchemy, Prisma, SeaORM, GORM), query builders (Drizzle, sqlc, SQLx), migrations, connection pooling, and serverless databases (Neon, PlanetScale, Turso).", "source": ["marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/using-relational-databases/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install using-relational-databases"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "using-relational-databases. Relational database implementation across Python, Rust, Go, and TypeScript. Use when building CRUD applications, transactional systems, or structured data storage. Covers PostgreSQL (primary), MySQL, SQLite, ORMs (SQLAlchemy, Prisma, SeaORM, GORM), query builders (Drizzle, sqlc, SQLx), migrations, connection pooling, and serverless databases (Neon, PlanetScale, Turso). Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} -{"id": "50f57bd0a4409595747f3d2ccbbadddd9f325571c22700df6f67ea45718a6748", "repo_url": "https://github.com/ancoleman/ai-design-components", "name": "writing-infrastructure-code", "description": "Managing cloud infrastructure using declarative and imperative IaC tools. Use when provisioning cloud resources (Terraform/OpenTofu for multi-cloud, Pulumi for developer-centric workflows, AWS CDK for AWS-native infrastructure), designing reusable modules, implementing state management patterns, or establishing infrastructure deployment workflows.", "source": ["marketplace", "topic"], "categories": ["ai-design", "anthropic", "claude", "claude-code", "claude-skills", "design-system", "full-stack", "react", "skills", "typescript", "ui-components"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ancoleman/ai-design-components/blob/main/skills/writing-infrastructure-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-infrastructure-code"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-11T00:50:33Z"}, "embedding_text": "writing-infrastructure-code. Managing cloud infrastructure using declarative and imperative IaC tools. Use when provisioning cloud resources (Terraform/OpenTofu for multi-cloud, Pulumi for developer-centric workflows, AWS CDK for AWS-native infrastructure), designing reusable modules, implementing state management patterns, or establishing infrastructure deployment workflows. Categories: ai-design, anthropic, claude, claude-code, claude-skills, design-system, full-stack, react, skills, typescript, ui-components. Platforms: claude_code."} -{"id": "cf17c1bdfe1df63372a65e634cb3c5fd38ae0a482e5f2e97a926cdb4901a8e2d", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "code-reviewing", "description": "Review code for quality, security, and best practices. Use when the user asks for code review, wants feedback on their code, mentions reviewing changes, or asks about code quality.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/00-basic-skill/.claude/skills/code-reviewing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-reviewing"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "code-reviewing. Review code for quality, security, and best practices. Use when the user asks for code review, wants feedback on their code, mentions reviewing changes, or asks about code quality. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "55a391305293c2bda1641edd4d8b2b25a98ccc64f6afebf291d7bdbfda962646", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "code-reviewing", "description": "Review code for quality, security, and best practices. Use when the user asks for code review, wants feedback on their code, mentions reviewing changes, or asks about code quality.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/00-basic-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-reviewing"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "code-reviewing. Review code for quality, security, and best practices. Use when the user asks for code review, wants feedback on their code, mentions reviewing changes, or asks about code quality. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "1caf3d2a0ecc0380e12c4a7725c81514a39596a7c17bb2f3059e20e6ac006b47", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "api-conventions", "description": "API design patterns and conventions for this project. Covers RESTful URL naming, response format standards, error handling, and authentication requirements. Use when writing or reviewing API endpoints, designing new APIs, or making decisions about request/response formats.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/01-reference-skill/.claude/skills/api-conventions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-conventions"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "api-conventions. API design patterns and conventions for this project. Covers RESTful URL naming, response format standards, error handling, and authentication requirements. Use when writing or reviewing API endpoints, designing new APIs, or making decisions about request/response formats. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "3f8ba5f2525003349f59e470dddaa371158ddbfee3ffb808c649decbd2b4bfc4", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "api-documenting", "description": "Generate API documentation from code. Use when the user wants to document APIs, create API reference, generate endpoint documentation, or needs help with OpenAPI/Swagger specs.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/02-progressive-skill/.claude/skills/api-documenting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-documenting"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "api-documenting. Generate API documentation from code. Use when the user wants to document APIs, create API reference, generate endpoint documentation, or needs help with OpenAPI/Swagger specs. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "81db9d9ef84076345abba56dfbacf6d2ad1fe94aed9447a2415007c8aaa270f2", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "api-documenting", "description": "Generate API documentation from code. Use when the user wants to document APIs, create API reference, generate endpoint documentation, or needs help with OpenAPI/Swagger specs.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/02-progressive-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-documenting"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "api-documenting. Generate API documentation from code. Use when the user wants to document APIs, create API reference, generate endpoint documentation, or needs help with OpenAPI/Swagger specs. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} -{"id": "18f224300b91700f1a1999cb10cb3254b2c302db9610770ed716ee132f319017", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "financial-analyzing", "description": "Analyze financial data, calculate financial ratios, and generate analysis reports. Use when the user asks about revenue, costs, profits, margins, ROI, financial metrics, or needs financial analysis of a company or project.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/03-financial-skill/.claude/skills/financial-analyzing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install financial-analyzing"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "financial-analyzing. Analyze financial data, calculate financial ratios, and generate analysis reports. Use when the user asks about revenue, costs, profits, margins, ROI, financial metrics, or needs financial analysis of a company or project. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "40418e00bee4fb4ef2c2bab37e9adb007e2c2648e88533833ffb35662018f9fd", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "financial-analyzing", "description": "Analyze financial data, calculate financial ratios, and generate analysis reports. Use when the user asks about revenue, costs, profits, margins, ROI, financial metrics, or needs financial analysis of a company or project.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/03-financial-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install financial-analyzing"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "financial-analyzing. Analyze financial data, calculate financial ratios, and generate analysis reports. Use when the user asks about revenue, costs, profits, margins, ROI, financial metrics, or needs financial analysis of a company or project. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} -{"id": "25bfd310b9cef0c4c1e48bf9c362900a5bb126fea008ed6217a449eb832dacc4", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "codebase-visualizer", "description": "Generate an interactive tree visualization of your codebase. Use when exploring a new repo or understanding project structure.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/04-codebase-visualizer/.claude/skills/codebase-visualizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codebase-visualizer"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "codebase-visualizer. Generate an interactive tree visualization of your codebase. Use when exploring a new repo or understanding project structure. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "a9450822c42643d9ab5cf0a7312fff621d1a249f136e833decfc0640227f2b61", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "codebase-visualizer", "description": "Generate an interactive tree visualization of your codebase. Use when exploring a new repo or understanding project structure.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/04-codebase-visualizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codebase-visualizer"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "codebase-visualizer. Generate an interactive tree visualization of your codebase. Use when exploring a new repo or understanding project structure. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} -{"id": "e988d28a5273e699162d25755299b3b78c5245bc351170d89eedc56ab2bf1312", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "api-generating", "description": "Generate API endpoint code and documentation from specifications. Use when the user wants to create new API endpoints, generate route handlers, scaffold REST APIs, or produce OpenAPI/Swagger specs from code.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/05-api-generator/.claude/skills/api-generating/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-generating"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "api-generating. Generate API endpoint code and documentation from specifications. Use when the user wants to create new API endpoints, generate route handlers, scaffold REST APIs, or produce OpenAPI/Swagger specs from code. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "8a18757083a528447d5b95d028848db5a0d5c6d55b446f97ca474ad9c5d99f74", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "api-generating", "description": "Generate API endpoint code and documentation from specifications. Use when the user wants to create new API endpoints, generate route handlers, scaffold REST APIs, or produce OpenAPI/Swagger specs from code.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/05-api-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-generating"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "api-generating. Generate API endpoint code and documentation from specifications. Use when the user wants to create new API endpoints, generate route handlers, scaffold REST APIs, or produce OpenAPI/Swagger specs from code. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "153592e8f7186cc077344da4473e1c4b00d146de421e8bf6a95dd48d532fcec3", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "api-generating", "description": "Generate API endpoint documentation from Express route files. Use when the user asks to generate, update, or review API docs for Express.js routes.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/06-agent-skill-combo/.claude/skills/api-generating/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-generating"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "api-generating. Generate API endpoint documentation from Express route files. Use when the user asks to generate, update, or review API docs for Express.js routes. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} -{"id": "5595f48d51da7a2ec7a6fa891d2192687210c962c1ffe6a2d0614f16187560fe", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "code-health-check", "description": "Perform a comprehensive code health check on a directory. Use when the user asks to analyze code quality, find issues, or get a health report.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/07-skill-fork-demo/.claude/skills/code-health-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-health-check"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "code-health-check. Perform a comprehensive code health check on a directory. Use when the user asks to analyze code quality, find issues, or get a health report. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "490d67259520b4cf2242ea0f97c8d24cc66162b285abdb3e51b5d58bf038a510", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "doc-writing", "description": "Generate API documentation from a route manifest. Use when you have a list of discovered routes and need to produce markdown documentation.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/08-skill-pipeline/.claude/skills/doc-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install doc-writing"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "doc-writing. Generate API documentation from a route manifest. Use when you have a list of discovered routes and need to produce markdown documentation. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} -{"id": "e158af548ba0a73fee98228c8fd8d8c735012fe4f32f379521c97f024558241e", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "quality-checking", "description": "Validate API documentation against quality standards. Use when you need to verify generated docs are complete and correct.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/08-skill-pipeline/.claude/skills/quality-checking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install quality-checking"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "quality-checking. Validate API documentation against quality standards. Use when you need to verify generated docs are complete and correct. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} -{"id": "d503bffcb22eb96b396e4c85ddca9d314b459660bc4fe98ef274954a78e07cac", "repo_url": "https://github.com/huangjia2019/claude-code-engineering", "name": "route-scanning", "description": "Scan Express.js source files to discover all API route definitions.", "source": ["marketplace", "topic"], "categories": ["agent", "agentic-ai", "ai", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huangjia2019/claude-code-engineering/blob/main/04-Skills/projects/08-skill-pipeline/.claude/skills/route-scanning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install route-scanning"}, "quality": {"stars": 239, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:21:33Z"}, "embedding_text": "route-scanning. Scan Express.js source files to discover all API route definitions. Categories: agent, agentic-ai, ai, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "e7c638aa866bdd76e11827e5e7d90368296f5375aa458c5cbcb561598862f55b", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "jira-safe", "description": "Implement SAFe methodology in Jira. Use when creating Epics, Features, Stories with proper hierarchy, acceptance criteria, and parent-child linking.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/01000001-01001110/jira-safe/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jira-safe"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "jira-safe. Implement SAFe methodology in Jira. Use when creating Epics, Features, Stories with proper hierarchy, acceptance criteria, and parent-child linking. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "89166998efab2243b29b6a1baed7772b50f856287b039fcbef39eb29a1fa8c75", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "jira-workflow", "description": "Orchestrate Jira workflows end-to-end. Use when building stories with approvals, transitioning items through lifecycle states, or syncing task completion with Jira.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/01000001-01001110/jira-safe/jira-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jira-workflow"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "jira-workflow. Orchestrate Jira workflows end-to-end. Use when building stories with approvals, transitioning items through lifecycle states, or syncing task completion with Jira. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "c47c8dded209ab9981324df44c0e516fc5886bca21f40f3ae539379ba66a636a", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "jira-workflow", "description": "Orchestrate Jira workflows end-to-end. Use when building stories with approvals, transitioning items through lifecycle states, or syncing task completion with Jira.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/01000001-01001110/jira-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jira-workflow"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "jira-workflow. Orchestrate Jira workflows end-to-end. Use when building stories with approvals, transitioning items through lifecycle states, or syncing task completion with Jira. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "40afa66499ba27689913909c3519dd5baedc9e90d5da06ec2ad0e94ff8f38f71", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "chinese-learning-assistant", "description": "HSK4\u7d1a\u30ec\u30d9\u30eb\u304b\u3089\u6d41\u66a2\u3055\u3092\u76ee\u6307\u3059\u5b66\u7fd2\u8005\u5411\u3051\u3002\u4e2d\u56fd\u8a9e\u8868\u73fe\u306e\u4f7f\u7528\u5834\u9762\u30fb\u81ea\u7136\u3055\u3092\u5206\u6790\u3057\u3001\u4f5c\u6587\u3092\u300c\u30cd\u30a4\u30c6\u30a3\u30d6\u3089\u3057\u3044\u6d41\u66a2\u306a\u8868\u73fe\u300d\u306b\u6539\u5584\u3002bilibili\u7b49\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u7406\u89e3\u3068\u30cd\u30a4\u30c6\u30a3\u30d6\u3068\u306e\u4f1a\u8a71\u3092\u30b5\u30dd\u30fc\u30c8\u3002\u5b9f\u969b\u306e\u7528\u4f8b\u3092Web\u691c\u7d22\u3067\u63d0\u793a", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0918nobita/chinese-learning-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install chinese-learning-assistant"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "chinese-learning-assistant. HSK4\u7d1a\u30ec\u30d9\u30eb\u304b\u3089\u6d41\u66a2\u3055\u3092\u76ee\u6307\u3059\u5b66\u7fd2\u8005\u5411\u3051\u3002\u4e2d\u56fd\u8a9e\u8868\u73fe\u306e\u4f7f\u7528\u5834\u9762\u30fb\u81ea\u7136\u3055\u3092\u5206\u6790\u3057\u3001\u4f5c\u6587\u3092\u300c\u30cd\u30a4\u30c6\u30a3\u30d6\u3089\u3057\u3044\u6d41\u66a2\u306a\u8868\u73fe\u300d\u306b\u6539\u5584\u3002bilibili\u7b49\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u7406\u89e3\u3068\u30cd\u30a4\u30c6\u30a3\u30d6\u3068\u306e\u4f1a\u8a71\u3092\u30b5\u30dd\u30fc\u30c8\u3002\u5b9f\u969b\u306e\u7528\u4f8b\u3092Web\u691c\u7d22\u3067\u63d0\u793a Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "ee8802790fdc721e365ae2b9c8397777aa5fe949725d4c20e4dc80cf18082fbb", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "frontend-dev-guidelines", "description": "Next.js 15 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc704\ud55c \ud504\ub860\ud2b8\uc5d4\ub4dc \uac1c\ubc1c \uac00\uc774\ub4dc\ub77c\uc778. React 19, TypeScript, Shadcn/ui, Tailwind CSS\ub97c \uc0ac\uc6a9\ud55c \ubaa8\ub358 \ud328\ud134. Server Components, Client Components, App Router, \ud30c\uc77c \uad6c\uc870, Shadcn/ui \ucef4\ud3ec\ub10c\ud2b8, \uc131\ub2a5 \ucd5c\uc801\ud654, TypeScript \ubaa8\ubc94 \uc0ac\ub840 \ud3ec\ud568. \ucef4\ud3ec\ub10c\ud2b8, \ud398\uc774\uc9c0, \uae30\ub2a5 \uc0dd\uc131, \ub370\uc774\ud130 \ud398\uce6d, \uc2a4\ud0c0\uc77c\ub9c1, \ub77c\uc6b0\ud305, \ud504\ub860\ud2b8\uc5d4\ub4dc \ucf54\ub4dc \uc791\uc5c5 \uc2dc \uc0ac\uc6a9.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0chan-smc/frontend-dev-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-dev-guidelines"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "frontend-dev-guidelines. Next.js 15 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc704\ud55c \ud504\ub860\ud2b8\uc5d4\ub4dc \uac1c\ubc1c \uac00\uc774\ub4dc\ub77c\uc778. React 19, TypeScript, Shadcn/ui, Tailwind CSS\ub97c \uc0ac\uc6a9\ud55c \ubaa8\ub358 \ud328\ud134. Server Components, Client Components, App Router, \ud30c\uc77c \uad6c\uc870, Shadcn/ui \ucef4\ud3ec\ub10c\ud2b8, \uc131\ub2a5 \ucd5c\uc801\ud654, TypeScript \ubaa8\ubc94 \uc0ac\ub840 \ud3ec\ud568. \ucef4\ud3ec\ub10c\ud2b8, \ud398\uc774\uc9c0, \uae30\ub2a5 \uc0dd\uc131, \ub370\uc774\ud130 \ud398\uce6d, \uc2a4\ud0c0\uc77c\ub9c1, \ub77c\uc6b0\ud305, \ud504\ub860\ud2b8\uc5d4\ub4dc \ucf54\ub4dc \uc791\uc5c5 \uc2dc \uc0ac\uc6a9. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "864cfe4bf6231344b6c825805dcd6deacfb5ee7305e1eca82982b5ed8e87c24c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "skill-developer", "description": "Claude Code \uc2a4\ud0ac, \ud6c5, \uc5d0\uc774\uc804\ud2b8, \uba85\ub839\uc5b4\ub97c \uc0dd\uc131\ud558\uace0 \uad00\ub9ac\ud558\uae30 \uc704\ud55c \uba54\ud0c0 \uc2a4\ud0ac. \uc0c8 \uc2a4\ud0ac \uc0dd\uc131, \uc2a4\ud0ac \ud2b8\ub9ac\uac70 \uc124\uc815, \ud6c5 \uc124\uc815, Claude Code \uc778\ud504\ub77c \uad00\ub9ac \uc2dc \uc0ac\uc6a9.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0chan-smc/skill-developer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-developer"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "skill-developer. Claude Code \uc2a4\ud0ac, \ud6c5, \uc5d0\uc774\uc804\ud2b8, \uba85\ub839\uc5b4\ub97c \uc0dd\uc131\ud558\uace0 \uad00\ub9ac\ud558\uae30 \uc704\ud55c \uba54\ud0c0 \uc2a4\ud0ac. \uc0c8 \uc2a4\ud0ac \uc0dd\uc131, \uc2a4\ud0ac \ud2b8\ub9ac\uac70 \uc124\uc815, \ud6c5 \uc124\uc815, Claude Code \uc778\ud504\ub77c \uad00\ub9ac \uc2dc \uc0ac\uc6a9. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "97e41800cd15f9035236c9d56c8d8ea116eb5f44ea0d70ef28bf355d9e50adef", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "create-pr", "description": "GitHub\u306e\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\uff08PR\uff09\u3092\u4f5c\u6210\u3059\u308b\u969b\u306b\u4f7f\u7528\u3057\u307e\u3059\u3002\u5909\u66f4\u306e\u30b3\u30df\u30c3\u30c8\u3001\u30d7\u30c3\u30b7\u30e5\u3001PR\u4f5c\u6210\u3092\u542b\u3080\u5b8c\u5168\u306a\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u3092\u65e5\u672c\u8a9e\u3067\u5b9f\u884c\u3057\u307e\u3059\u3002\u300cPR\u3092\u4f5c\u3063\u3066\u300d\u300c\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u4f5c\u6210\u300d\u300cpull request\u3092\u4f5c\u6210\u300d\u306a\u3069\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3067\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3057\u307e\u3059\u3002", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0tarof/create-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-pr"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "create-pr. GitHub\u306e\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\uff08PR\uff09\u3092\u4f5c\u6210\u3059\u308b\u969b\u306b\u4f7f\u7528\u3057\u307e\u3059\u3002\u5909\u66f4\u306e\u30b3\u30df\u30c3\u30c8\u3001\u30d7\u30c3\u30b7\u30e5\u3001PR\u4f5c\u6210\u3092\u542b\u3080\u5b8c\u5168\u306a\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u3092\u65e5\u672c\u8a9e\u3067\u5b9f\u884c\u3057\u307e\u3059\u3002\u300cPR\u3092\u4f5c\u3063\u3066\u300d\u300c\u30d7\u30eb\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u4f5c\u6210\u300d\u300cpull request\u3092\u4f5c\u6210\u300d\u306a\u3069\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3067\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3057\u307e\u3059\u3002 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "97699964d2881296e33759bd2889cf4ca2718e23d4f25ff4e715deab21577ad4", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "create-svg-from-prompt", "description": "Generate an SVG of a user-requested image or scene", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0x6a77/create-svg-from-prompt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-svg-from-prompt"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "create-svg-from-prompt. Generate an SVG of a user-requested image or scene Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "c6d9f49639e7c2b4d58f34f63bf38d720e21c8f9125defb2775bdf04f494d6cb", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "vibe-security", "description": "Security intelligence for code analysis. Detects SQL injection, XSS, CSRF, authentication issues, crypto failures, and more. Actions: scan, analyze, fix, audit, check, review, secure, validate, sanitize, protect. Languages: JavaScript, TypeScript, Python, PHP, Java, Go, Ruby. Frameworks: Express, Django, Flask, Laravel, Spring, Rails. Vulnerabilities: SQL injection, XSS, CSRF, authentication bypass, authorization issues, command injection, path traversal, insecure deserialization, weak crypto, sensitive data exposure. Topics: input validation, output encoding, parameterized queries, password hashing, session management, CORS, CSP, security headers, rate limiting, dependency scanning.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0x8506/vibe-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vibe-security"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "vibe-security. Security intelligence for code analysis. Detects SQL injection, XSS, CSRF, authentication issues, crypto failures, and more. Actions: scan, analyze, fix, audit, check, review, secure, validate, sanitize, protect. Languages: JavaScript, TypeScript, Python, PHP, Java, Go, Ruby. Frameworks: Express, Django, Flask, Laravel, Spring, Rails. Vulnerabilities: SQL injection, XSS, CSRF, authentication bypass, authorization issues, command injection, path traversal, insecure deserialization, weak crypto, sensitive data exposure. Topics: input validation, output encoding, parameterized queries, password hashing, session management, CORS, CSP, security headers, rate limiting, dependency scanning. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "59e3eefb60f953f01dd7ad40e2b07ed6c97a60b36d39190fbc2b9ebbb2c7b8ac", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "axe-ios-simulator", "description": "iOS Simulator automation using AXe CLI for touch gestures, text input, hardware buttons, screenshots, video recording, and accessibility inspection. Use when automating iOS Simulator interactions, writing UI tests, capturing screenshots/video, or inspecting accessibility elements. Triggers on iOS Simulator automation, AXe CLI usage, simulator tap/swipe/gesture commands, or accessibility testing tasks.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xbigboss/axe-ios-simulator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install axe-ios-simulator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "axe-ios-simulator. iOS Simulator automation using AXe CLI for touch gestures, text input, hardware buttons, screenshots, video recording, and accessibility inspection. Use when automating iOS Simulator interactions, writing UI tests, capturing screenshots/video, or inspecting accessibility elements. Triggers on iOS Simulator automation, AXe CLI usage, simulator tap/swipe/gesture commands, or accessibility testing tasks. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -15706,12 +20263,9 @@ {"id": "85e2429e2943ee26db97bcc4895ac74a43af613ac4ff29126980fa3e00889680", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "doc-writer", "description": "Create or update numbered task docs using repo context, DOC_TEMPLATE.md, and naming conventions.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xhiroki/doc-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install doc-writer"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "doc-writer. Create or update numbered task docs using repo context, DOC_TEMPLATE.md, and naming conventions. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "68e0908729180102e1d1614901c0730261d3c5207b78046d1def41c1461710ed", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "data-visualization", "description": "Create charts, graphs, and visualizations from data. Use when the user needs to visualize data, create charts, or generate reports with graphics.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xkynz/data-visualization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install data-visualization"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "data-visualization. Create charts, graphs, and visualizations from data. Use when the user needs to visualize data, create charts, or generate reports with graphics. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f38659caa118f9787355622e10b10eeb30d4204d911b4822a9a656ea4ff61097", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "memory-bank", "description": "Persistent project documentation system that maintains context across sessions. Creates structured Memory Bank files to preserve project knowledge, decisions, and progress.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xkynz/memory-bank/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install memory-bank"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "memory-bank. Persistent project documentation system that maintains context across sessions. Creates structured Memory Bank files to preserve project knowledge, decisions, and progress. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "bbdb806e514f2d4b2f442e9d88479c1d59b1354335db0b1108b3ec8d9c438bd3", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "pdf-processing", "description": "Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xkynz/pdf-processing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf-processing"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "pdf-processing. Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "fdf8f6c76354a2bcd00f7a0998f69cfdfc94c813446c41e79073d188174b6f3e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "python-fastapi", "description": "Python FastAPI development with uv package manager, modular project structure, SQLAlchemy ORM, and production-ready patterns.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xkynz/python-fastapi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install python-fastapi"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "python-fastapi. Python FastAPI development with uv package manager, modular project structure, SQLAlchemy ORM, and production-ready patterns. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f6bf0ff7107abbd51db7657ac9d07d86deae89f5a40afc3a379351a045238c00", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "commit", "description": "Helps write conventional commit messages, create atomic commits, and follow git best practices. Use when the agent needs to help with git commits, commit message writing, or git workflow guidance.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xmsc/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "commit. Helps write conventional commit messages, create atomic commits, and follow git best practices. Use when the agent needs to help with git commits, commit message writing, or git workflow guidance. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "e10444b94092fadb934355e64e3bb7985d391fa8156a2429532d2d5203ba700e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "create-skill", "description": "Guide for creating new Agent Skills. Use this skill when you need to create a new skill.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xmsc/create-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-skill"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "create-skill. Guide for creating new Agent Skills. Use this skill when you need to create a new skill. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "a46f5ed66384cc46d64b55d0180425f3d3bf3f57339e72c0f21867b136441e4f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "develop", "description": "General principles for exploring, developing, editing, and refactoring code. Use for codebase analysis, implementation tasks, and code quality improvements.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xmsc/develop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install develop"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "develop. General principles for exploring, developing, editing, and refactoring code. Use for codebase analysis, implementation tasks, and code quality improvements. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "2b0f213759984ea972a73dacf2e4018c9738c03b6ff288aaef28b08622dd8a58", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "plan", "description": "Guidelines for iteratively planning tasks and changes before implementation. Use this when the user requests a non-trivial task or when you need to align on a complex implementation strategy.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xmsc/plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install plan"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "plan. Guidelines for iteratively planning tasks and changes before implementation. Use this when the user requests a non-trivial task or when you need to align on a complex implementation strategy. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "8d0e6fdec46e1f49b17a2fe6f561b14959a0970c2562e7858dde0e271af75a3c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "review-code", "description": "Provides a structured workflow for planning and executing code reviews like a senior engineer. Use when asked to review code, PRs, or plan a code review task.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xmsc/review-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install review-code"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "review-code. Provides a structured workflow for planning and executing code reviews like a senior engineer. Use when asked to review code, PRs, or plan a code review task. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "5e16fe3911e6c3f89aedb669d835a23adec61579b206771ae54b20571813f288", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "skill-builder", "description": "Interactive skill creation assistant that guides users through building new Agent Skills for Claude Code. Use when creating new skills, building custom capabilities, or when the user runs /new-skill command. Helps design skill structure, craft descriptions, create scripts, and organize supporting files.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xraduan/skill-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-builder"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "skill-builder. Interactive skill creation assistant that guides users through building new Agent Skills for Claude Code. Use when creating new skills, building custom capabilities, or when the user runs /new-skill command. Helps design skill structure, craft descriptions, create scripts, and organize supporting files. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "11e58588094570da3945aa188115f7fb74ef1e268c87d38aca48461dfa3b3999", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "knowledge", "description": "Display knowledge base status and recent learnings", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xrdan/knowledge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install knowledge"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "knowledge. Display knowledge base status and recent learnings Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -15724,7 +20278,6 @@ {"id": "e8210d9c30cffa8fdd6a911761c29b7624494efb6454d942e7ba9b8d3dd667eb", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "api-skill", "description": "Updated API skill", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xsero/api-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-skill"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "api-skill. Updated API skill Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "888ed9bc765bcb9312a282a74f5653a4a80bf1c808fdb2725d8eabf88e40f35f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "architect", "description": "Design systems, plan implementations, review architecture decisions - Use when you need to plan a complex feature, design system architecture, or make high-level technical decisions.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xsero/architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install architect"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "architect. Design systems, plan implementations, review architecture decisions - Use when you need to plan a complex feature, design system architecture, or make high-level technical decisions. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "04fca52d9eaa4c02199008c6dfaa3dd1126764dd6ebed5c113ab36958f6ec825", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "coder", "description": "Write, edit, and refactor code with full tool access - Use when you need to actually write or modify code, create files, run commands, or implement features.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xsero/coder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coder"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "coder. Write, edit, and refactor code with full tool access - Use when you need to actually write or modify code, create files, run commands, or implement features. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "3193b534318013a8f8bbcd64a5fc2fa3ad0bba247804171e4d4d763fdc325deb", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "docs", "description": "Research documentation, find examples, explain APIs and libraries - Use when you need to look up official documentation, find code examples, understand library APIs, or research best practices.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xsero/docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docs"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "docs. Research documentation, find examples, explain APIs and libraries - Use when you need to look up official documentation, find code examples, understand library APIs, or research best practices. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "38b07ca6107ea253be5be1875c1c168c89b52575b3d3f2cb323574a0f7137b9c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "explorer", "description": "Quickly search and navigate the codebase - Use when you need to quickly find files, search for patterns, or locate specific code without deep analysis.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xsero/explorer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install explorer"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "explorer. Quickly search and navigate the codebase - Use when you need to quickly find files, search for patterns, or locate specific code without deep analysis. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "bf91fbb6cebac531c047b76ccd40f7b70b2984028e44d4cc48bf55ae638bd346", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "linear", "description": "Linear issue tracking integration - Create, update, and manage Linear issues and projects using the GraphQL API", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xsero/linear/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install linear"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "linear. Linear issue tracking integration - Create, update, and manage Linear issues and projects using the GraphQL API Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "2b7bf0e13684d2ffaac5f6a6706fd6096f663714e7343c7e04f59c093d69fa3b", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "tester", "description": "Updated skill", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/0xsero/tester/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tester"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "tester. Updated skill Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -15738,7 +20291,6 @@ {"id": "15f811b14b96473389801980e017719a6587aeadda6c60e85d88baadc4ac8ddd", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "implementing-code", "description": "Implements code changes and creates commits. Triggered when: implementation tasks, code changes, feature additions, bug fixes.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/1gy/implementing-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install implementing-code"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "implementing-code. Implements code changes and creates commits. Triggered when: implementation tasks, code changes, feature additions, bug fixes.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "a0aabb04db39cdf1eeb8b4da626b3e529bb10ea480f763b641317ef8a4312fd8", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "managing-branches", "description": "Investigates and creates Git branches. Triggered when: branch status check, new branch creation, branch-related errors.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/1gy/managing-branches/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install managing-branches"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "managing-branches. Investigates and creates Git branches. Triggered when: branch status check, new branch creation, branch-related errors.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "a0a1c0fe4a1793462cf2ab0f60da9b41680abf51d8dad66275093db89b91a487", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "running-tests", "description": "Runs tests and handles failures. Triggered when: test execution, verification, test failures, CI checks.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/1gy/running-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install running-tests"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "running-tests. Runs tests and handles failures. Triggered when: test execution, verification, test failures, CI checks.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "b47d25cd9d232c7b905adfe44a471253525742ab837532c2e189497939d3f959", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "firefox-browser", "description": "Control the user's Firefox browser with their logins and cookies intact. Use when you need to browse websites as the user, interact with authenticated pages, fill forms, click buttons, take screenshots, or get page content. (user)", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/1jehuang/firefox-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install firefox-browser"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "firefox-browser. Control the user's Firefox browser with their logins and cookies intact. Use when you need to browse websites as the user, interact with authenticated pages, fill forms, click buttons, take screenshots, or get page content. (user) Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "71baaba0e2f7e8ec0f5712a07c28c6b584a9f2184ae150c1c5e39c028ddba3b1", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "git-analysis", "description": "Analyze git repository changes, branch differences, and commit history. Use when analyzing branches, comparing changes, examining commit history, or preparing for PR/commit operations.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/1natsu172/git-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-analysis"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "git-analysis. Analyze git repository changes, branch differences, and commit history. Use when analyzing branches, comparing changes, examining commit history, or preparing for PR/commit operations. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "b123533673429e52e5912a69c591ec6fbe20790a5926095a79f6ab75c654cbe1", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "github-pr-best-practices", "description": "Best practices for creating GitHub pull requests including conventional commits, PR formatting, and multi-language support (en/ja). Use when creating PRs, writing PR descriptions, or formatting commit messages.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/1natsu172/github-pr-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-pr-best-practices"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "github-pr-best-practices. Best practices for creating GitHub pull requests including conventional commits, PR formatting, and multi-language support (en/ja). Use when creating PRs, writing PR descriptions, or formatting commit messages. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f41e20433771cd5b3e2b25069fd66e41fab8712ea6bb244111283aaefbf495f8", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "ccxt", "description": "CCXT cryptocurrency trading library. Use for cryptocurrency exchange APIs, trading, market data, order management, and crypto trading automation across 150+ exchanges. Supports JavaScript/Python/PHP.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/2025emma/ccxt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ccxt"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "ccxt. CCXT cryptocurrency trading library. Use for cryptocurrency exchange APIs, trading, market data, order management, and crypto trading automation across 150+ exchanges. Supports JavaScript/Python/PHP. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -15760,7 +20312,6 @@ {"id": "c0b09b3e2f1a041db6a475a280e052988cf8da529ca28c5b74c057c87ad7363e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "git-commit", "description": "Use this skill when user asks to \"commit changes\", \"create a commit\", \"stage and commit\", or wants help with git commit workflow.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/21pounder/git-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-commit"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "git-commit. Use this skill when user asks to \"commit changes\", \"create a commit\", \"stage and commit\", or wants help with git commit workflow. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f275140d4c2322b0886e156c4e17ddf688568f9a0caa528ef0f25fe199c6324c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "pdf-analyze", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/21pounder/pdf-analyze/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf-analyze"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "pdf-analyze. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "2a488962b962e1ab3ff8a9844aae58d1a2529b78d4daa9284461e3706ee44b92", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "web-scrape", "description": "Intelligent web scraper with content extraction, multiple output formats, and error handling", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/21pounder/web-scrape/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install web-scrape"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "web-scrape. Intelligent web scraper with content extraction, multiple output formats, and error handling Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "c0e0f4e6c196831cad2bd1e1ed5d3e817de4c8e1433dd9bc4bc532acdf81c676", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "binary-re-dynamic-analysis", "description": "Use when you need to run a binary, trace execution, or observe runtime behavior. Runtime analysis via QEMU emulation, GDB debugging, and Frida hooking - syscall tracing (strace), breakpoints, memory inspection, function interception. Keywords - \"run binary\", \"execute\", \"debug\", \"trace syscalls\", \"set breakpoint\", \"qemu\", \"gdb\", \"frida\", \"strace\", \"watch memory\"", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/2389-research/binary-re-dynamic-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install binary-re-dynamic-analysis"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "binary-re-dynamic-analysis. Use when you need to run a binary, trace execution, or observe runtime behavior. Runtime analysis via QEMU emulation, GDB debugging, and Frida hooking - syscall tracing (strace), breakpoints, memory inspection, function interception. Keywords - \"run binary\", \"execute\", \"debug\", \"trace syscalls\", \"set breakpoint\", \"qemu\", \"gdb\", \"frida\", \"strace\", \"watch memory\" Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "5e1594e99ca799a1dcd668898e6bafa9d733bce750383ac3839ecb3e744ed928", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "binary-re-static-analysis", "description": "Use when analyzing binary structure, disassembling code, or decompiling functions. Deep static analysis via radare2 (r2) and Ghidra headless - function enumeration, cross-references (xrefs), decompilation, control flow graphs. Keywords - \"disassemble\", \"decompile\", \"what does this function do\", \"find functions\", \"analyze code\", \"r2\", \"ghidra\", \"pdg\", \"afl\"", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/2389-research/binary-re-static-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install binary-re-static-analysis"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "binary-re-static-analysis. Use when analyzing binary structure, disassembling code, or decompiling functions. Deep static analysis via radare2 (r2) and Ghidra headless - function enumeration, cross-references (xrefs), decompilation, control flow graphs. Keywords - \"disassemble\", \"decompile\", \"what does this function do\", \"find functions\", \"analyze code\", \"r2\", \"ghidra\", \"pdg\", \"afl\" Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "19e281c530bfe1df2a5e8c6dfbd6a0d524112bf31e1d8d171a1baad984371518", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "binary-re-synthesis", "description": "Use when ready to document findings, generate a report, or summarize binary analysis results. Compiles analysis findings into structured reports - correlates facts from triage/static/dynamic phases, validates hypotheses, generates documentation with evidence chains. Keywords - \"summarize findings\", \"generate report\", \"document analysis\", \"what did we find\", \"write up results\", \"export findings\"", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/2389-research/binary-re-synthesis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install binary-re-synthesis"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "binary-re-synthesis. Use when ready to document findings, generate a report, or summarize binary analysis results. Compiles analysis findings into structured reports - correlates facts from triage/static/dynamic phases, validates hypotheses, generates documentation with evidence chains. Keywords - \"summarize findings\", \"generate report\", \"document analysis\", \"what did we find\", \"write up results\", \"export findings\" Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "b641e9ecb20f86ac13ccdc0ee1ec13b0a0156f8105164971dda6dec5c00b3814", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "binary-re-tool-setup", "description": "Use when reverse engineering tools are missing, not working, or need configuration. Installation guides for radare2 (r2), Ghidra, GDB, QEMU, Frida, binutils, and cross-compilation toolchains. Keywords - \"install radare2\", \"setup ghidra\", \"r2 not found\", \"qemu missing\", \"tool not installed\", \"configure gdb\", \"cross-compiler\"", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/2389-research/binary-re-tool-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install binary-re-tool-setup"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "binary-re-tool-setup. Use when reverse engineering tools are missing, not working, or need configuration. Installation guides for radare2 (r2), Ghidra, GDB, QEMU, Frida, binutils, and cross-compilation toolchains. Keywords - \"install radare2\", \"setup ghidra\", \"r2 not found\", \"qemu missing\", \"tool not installed\", \"configure gdb\", \"cross-compiler\" Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -15853,7 +20404,6 @@ {"id": "44d636719911e392c1f1cc4c32e57bf56b7dee88f84dd154ff8ff022b7089d36", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "ng-alain-component-development", "description": "Create components using ng-alain (@delon/abc) and ng-zorro-antd UI libraries. Use this skill when building enterprise UI features with ST (Simple Table), SF (Schema Form), ACL (Access Control), PageHeader, ReuseTab, and other @delon components. Ensures proper integration with ng-alain architecture, theming system, responsive layouts, and accessibility standards while following Angular 20 patterns.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/7spade/ng-alain-component-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ng-alain-component-development"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "ng-alain-component-development. Create components using ng-alain (@delon/abc) and ng-zorro-antd UI libraries. Use this skill when building enterprise UI features with ST (Simple Table), SF (Schema Form), ACL (Access Control), PageHeader, ReuseTab, and other @delon components. Ensures proper integration with ng-alain architecture, theming system, responsive layouts, and accessibility standards while following Angular 20 patterns. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "902a3a92aceacbae12947a7242e3f58fb283f14a469834ac79a6fc9d3192fdcf", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "rxjs-patterns-for-angular", "description": "Implement RxJS patterns for reactive programming in Angular. Use this skill when working with Observables, operators, subscriptions, async data flows, and error handling. Covers common patterns like combineLatest, switchMap, debounceTime, catchError, retry logic, and integration with Angular Signals using toSignal() and toObservable(). Ensures proper subscription cleanup with takeUntilDestroyed().", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/7spade/rxjs-patterns-for-angular/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rxjs-patterns-for-angular"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "rxjs-patterns-for-angular. Implement RxJS patterns for reactive programming in Angular. Use this skill when working with Observables, operators, subscriptions, async data flows, and error handling. Covers common patterns like combineLatest, switchMap, debounceTime, catchError, retry logic, and integration with Angular Signals using toSignal() and toObservable(). Ensures proper subscription cleanup with takeUntilDestroyed(). Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "987b775c7eaa1a27adec16dc36c144b1b5e94aca0185601482c4703c80ee3f6d", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "screenfull-fullscreen-api", "description": "Implement fullscreen functionality using screenfull library for cross-browser fullscreen support in ng-events project", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/7spade/screenfull-fullscreen-api/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install screenfull-fullscreen-api"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "screenfull-fullscreen-api. Implement fullscreen functionality using screenfull library for cross-browser fullscreen support in ng-events project Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "c18ae561848fcf47078819ccc23854411058f224e831b677de29a5b2732e86e2", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "skill-creator", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/7spade/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "skill-creator. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "75143c4961a0dbc541a4f4aabd86ea9622346a9d9aba5807effc3176524ece3d", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "theme-factory", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/7spade/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install theme-factory"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "theme-factory. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "75aac5661ae0ef70cdbcf0b64e189478760a230aa578cc885e7f022509a98a85", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "uuid", "description": "UUID generation skill - Universally Unique Identifiers v4 and v7 for entity IDs. For ng-events construction site progress tracking system.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/7spade/uuid/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install uuid"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "uuid. UUID generation skill - Universally Unique Identifiers v4 and v7 for entity IDs. For ng-events construction site progress tracking system. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "8425a9e66b997bb23defce0ad0af172462aca946aa847458ed3497a7b8417c95", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "webapp-testing", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/7spade/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install webapp-testing"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "webapp-testing. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -15904,9 +20454,7 @@ {"id": "9a8a714daa65a1a93d23841c052ee816dab81ed2bf08f45d232cd8b6efb22470", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "seo-analysis", "description": "SEO analysis and optimization specialist. Use when conducting technical SEO audits, optimizing meta tags, analyzing Core Web Vitals, or improving search engine rankings. Focuses on actionable recommendations.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/seo-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-analysis"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "seo-analysis. SEO analysis and optimization specialist. Use when conducting technical SEO audits, optimizing meta tags, analyzing Core Web Vitals, or improving search engine rankings. Focuses on actionable recommendations. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "ff98c0be76870e2f00fb2be45a62836ed9d614e4a22f3494fc2e01f4649c74c5", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "shell-scripting", "description": "Shell scripting best practices and patterns. Use when writing bash/zsh scripts, automating tasks, creating CLI tools, or debugging shell commands.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/shell-scripting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install shell-scripting"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "shell-scripting. Shell scripting best practices and patterns. Use when writing bash/zsh scripts, automating tasks, creating CLI tools, or debugging shell commands. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "eed9bbc54f4cae1ac0979b8e1c6f2a679c32df661f2bf1904c9b280cafb3db93", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "skill-creator", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "skill-creator. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "9b35721453096d1f1242c2158126aa5ae866dcfd8bba4ca20342df19009baff3", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "skill-share", "description": "A skill that creates new Claude skills and automatically shares them on Slack using Rube for seamless team collaboration and skill discovery.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/skill-share/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-share"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "skill-share. A skill that creates new Claude skills and automatically shares them on Slack using Rube for seamless team collaboration and skill discovery. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f1e2628b5337cde9b624781279c341d8e522c85f6ce2443ed8484fedebff1cf7", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "spec-driven-development", "description": "Spec-Driven Development (SDD) methodology based on GitHub's SpecKit. Use for structured AI-assisted development with constitutional governance, phased workflows, and multi-agent coordination. Implements 7-phase process from constitution to implementation.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/spec-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install spec-driven-development"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "spec-driven-development. Spec-Driven Development (SDD) methodology based on GitHub's SpecKit. Use for structured AI-assisted development with constitutional governance, phased workflows, and multi-agent coordination. Implements 7-phase process from constitution to implementation. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "ff7f46d8bc90df3a54778d1e4fc5aa11c7ef2b909d626c3bd3f7a307c106876d", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "tdd-pytest", "description": "Python/pytest TDD specialist for test-driven development workflows. Use when writing tests, auditing test quality, running pytest, or generating test reports. Integrates with uv and pyproject.toml configuration.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/tdd-pytest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tdd-pytest"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "tdd-pytest. Python/pytest TDD specialist for test-driven development workflows. Use when writing tests, auditing test quality, running pytest, or generating test reports. Integrates with uv and pyproject.toml configuration. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "fabd3bc366aac90c4d7860c8b4c1d905c63d83b20734ab4e3cf0d8e333af4cc4", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "technical-research", "description": "Technical spike and research investigation specialist. Use when exploring options for a technical decision, conducting timeboxed investigations, or evaluating technology choices.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/technical-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technical-research"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "technical-research. Technical spike and research investigation specialist. Use when exploring options for a technical decision, conducting timeboxed investigations, or evaluating technology choices. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "0be71880fd4ca95d541b175abb563548d339771ffe3b8f99a494d26bfc217d63", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "testing", "description": "Comprehensive testing specialization covering test strategy, automation, TDD methodology, test writing, and web app testing. Use when setting up test infrastructure, writing tests, implementing TDD workflows, analyzing coverage, integrating tests into CI/CD, or testing web applications with Playwright. Framework-agnostic approach with framework-specific guidance via reference files.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "testing. Comprehensive testing specialization covering test strategy, automation, TDD methodology, test writing, and web app testing. Use when setting up test infrastructure, writing tests, implementing TDD workflows, analyzing coverage, integrating tests into CI/CD, or testing web applications with Playwright. Framework-agnostic approach with framework-specific guidance via reference files. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "b46a021e7c87a05b22018b136bc8ae2db80a2cc4fafd3999300827f935c7d154", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "tool-presets", "description": "Standardized tool set definitions for Claude Code agents ensuring consistent tool access across similar agent types", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/89jobrien/tool-presets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tool-presets"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "tool-presets. Standardized tool set definitions for Claude Code agents ensuring consistent tool access across similar agent types Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -15929,14 +20477,12 @@ {"id": "bb46b2e1457f265603de45c6fe48fbc8e67bf24872373f6470fb9af2492b9571", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "exercise-designer", "description": "Designs deliberate practice exercises applying evidence-based learning strategies like retrieval\npractice, spaced repetition, and interleaving. Activate when educators need varied exercise types\n(fill-in-blank, debug-this, build-from-scratch, extend-code, AI-collaborative) targeting learning\nobjectives with appropriate difficulty progression. Creates exercise sets that apply cognitive\nscience principles to maximize retention and skill development. Use when designing practice\nactivities for Python concepts, creating homework assignments, generating problem sets, or\nevaluating exercise quality.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/exercise-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install exercise-designer"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "exercise-designer. Designs deliberate practice exercises applying evidence-based learning strategies like retrieval\npractice, spaced repetition, and interleaving. Activate when educators need varied exercise types\n(fill-in-blank, debug-this, build-from-scratch, extend-code, AI-collaborative) targeting learning\nobjectives with appropriate difficulty progression. Creates exercise sets that apply cognitive\nscience principles to maximize retention and skill development. Use when designing practice\nactivities for Python concepts, creating homework assignments, generating problem sets, or\nevaluating exercise quality.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "c61474f5523069c72f64b448ca3eb4a116002e7fe555ca746db0e95212d8cc3b", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-design"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "99659a5f379353cebb6d6a7557436d05c7cef3bb0dd885c4e7e105b2213de2da", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "helm-chart-architect", "description": "Design production-grade Helm charts through architectural reasoning rather than pattern\nretrieval. Activate when designing new Helm charts for Kubernetes deployments, evaluating\nchart architecture, making decisions about component packaging, or reviewing charts for\nextensibility and maintainability. Guides decision-making about dependencies, lifecycle\nhooks, configuration surface, and multi-environment deployment through context-specific\nreasoning rather than generic best practices.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/helm-chart-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install helm-chart-architect"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "helm-chart-architect. Design production-grade Helm charts through architectural reasoning rather than pattern\nretrieval. Activate when designing new Helm charts for Kubernetes deployments, evaluating\nchart architecture, making decisions about component packaging, or reviewing charts for\nextensibility and maintainability. Guides decision-making about dependencies, lifecycle\nhooks, configuration surface, and multi-environment deployment through context-specific\nreasoning rather than generic best practices.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "26f781d0a90b7ded8d1e9de47ff6a75dec8affa65c5732d861afde2417f1073d", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "image-generator", "description": "Generate professional visuals using Gemini via browser automation with 6-gate quality control.\nUse when creating chapter illustrations, diagrams, or teaching visuals.\nNOT for stock photos or decorative images.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/image-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install image-generator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "image-generator. Generate professional visuals using Gemini via browser automation with 6-gate quality control.\nUse when creating chapter illustrations, diagrams, or teaching visuals.\nNOT for stock photos or decorative images.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "421665b0cfffc22986d917b8886b5a19ed57d3f43f410414687c74b6fce3b3af", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "learning-objectives", "description": "Generate measurable learning outcomes aligned with Bloom's taxonomy and CEFR proficiency levels for educational content.\nUse this skill when educators need to define what students will achieve, create learning objectives\nfor curriculum planning, or ensure objectives are specific and testable rather than vague.\nThis skill helps break down complex topics into progressively building learning goals with clear\nassessment methods and success criteria.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/learning-objectives/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install learning-objectives"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "learning-objectives. Generate measurable learning outcomes aligned with Bloom's taxonomy and CEFR proficiency levels for educational content.\nUse this skill when educators need to define what students will achieve, create learning objectives\nfor curriculum planning, or ensure objectives are specific and testable rather than vague.\nThis skill helps break down complex topics into progressively building learning goals with clear\nassessment methods and success criteria.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f4289a120b1818f7246f581c563457333feca314a2bd2939a31118052160d9d4", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "mcp-builder", "description": "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).", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-builder"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "mcp-builder. 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). Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "c21fd5faed8390166a4a0fc6938832bf6d8ae2dc13ebe84fd61a5291c1fdf2ea", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "nextjs-devtools", "description": "Next.js development tooling via MCP. Inspect routes, components, build info, and debug Next.js apps.\nUse when working on Next.js applications, debugging routing, or inspecting app structure.\nNOT for general React or non-Next.js projects.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/nextjs-devtools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nextjs-devtools"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "nextjs-devtools. Next.js development tooling via MCP. Inspect routes, components, build info, and debug Next.js apps.\nUse when working on Next.js applications, debugging routing, or inspecting app structure.\nNOT for general React or non-Next.js projects. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "11f403eb266dbf99902136dc6d0683b5abe96dac470d215f62dd32b60fa83348", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "notebooklm-slides", "description": "Generate pedagogically-aligned slide decks from educational content using NotebookLM.\nUse when creating chapter slide presentations with proficiency-calibrated prompts.\nNOT for static slides or non-educational presentations.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/notebooklm-slides/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notebooklm-slides"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "notebooklm-slides. Generate pedagogically-aligned slide decks from educational content using NotebookLM.\nUse when creating chapter slide presentations with proficiency-calibrated prompts.\nNOT for static slides or non-educational presentations.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "bcde496ebac2629a1b91e7f71073eb022c70d34bc7a743784edce645479af01d", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "nx-monorepo", "description": "Nx monorepo management skill for AI-native development. This skill should be used when working with Nx workspaces, project graphs, affected detection, code generation, and caching. Use when: analyzing dependencies, running affected commands, generating code, configuring Nx Cloud, or optimizing build performance. Invoke nx-mcp tools for documentation queries.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/nx-monorepo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nx-monorepo"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "nx-monorepo. Nx monorepo management skill for AI-native development. This skill should be used when working with Nx workspaces, project graphs, affected detection, code generation, and caching. Use when: analyzing dependencies, running affected commands, generating code, configuring Nx Cloud, or optimizing build performance. Invoke nx-mcp tools for documentation queries.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "991ee8ed0365ed662ddbaad2b86e5f0f8f9a1f284ddc729ec8ab5e431faa45ab", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "pdf", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "pdf. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "a686eddbf48e813444cd4176841982b55870290efc09ad3ca0891053c06e932b", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "pptx", "description": "Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pptx"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "pptx. Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "5a66fd2e2ba9a2801baa7bc3ec413f61d29be6feda363bb68da4d0628d774f16", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "prompt-template-designer", "description": "Design reusable prompt templates that encode domain-specific patterns for recurring AI tasks.\nUse when you've executed similar prompts 2+ times and need to capture the pattern as reusable\nintelligence. NOT for one-off prompts or generic \"ask AI a question\" patterns.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/prompt-template-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install prompt-template-designer"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "prompt-template-designer. Design reusable prompt templates that encode domain-specific patterns for recurring AI tasks.\nUse when you've executed similar prompts 2+ times and need to capture the pattern as reusable\nintelligence. NOT for one-off prompts or generic \"ask AI a question\" patterns.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "a84ef8792b79882c4b9a4e8a0d5849859883647b7200537cf7666cf7473b339f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "quiz-generator", "description": "Generate 50-question interactive quizzes using the Quiz component with randomized batching.\nUse when creating end-of-chapter assessments. Displays 15-20 questions per session with\nimmediate feedback. NOT for static markdown quizzes.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/quiz-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install quiz-generator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "quiz-generator. Generate 50-question interactive quizzes using the Quiz component with randomized batching.\nUse when creating end-of-chapter assessments. Displays 15-20 questions per session with\nimmediate feedback. NOT for static markdown quizzes.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "e44b10a15ef37f0ea5ac4e466cc41e4aa7dad24924d05ddec4b419ed4987c76e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "session-intelligence-harvester", "description": "This skill should be used after productive sessions to extract learnings and route them to appropriate Reusable Intelligence Infrastructure (RII) components. Use when corrections were made, format drift was fixed, new patterns emerged, or the user explicitly asks to \"harvest learnings\" or \"capture session intelligence\". Transforms one-time fixes into permanent organizational knowledge by implementing updates across multiple files.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/92bilal26/session-intelligence-harvester/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install session-intelligence-harvester"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "session-intelligence-harvester. This skill should be used after productive sessions to extract learnings and route them to appropriate Reusable Intelligence Infrastructure (RII) components. Use when corrections were made, format drift was fixed, new patterns emerged, or the user explicitly asks to \"harvest learnings\" or \"capture session intelligence\". Transforms one-time fixes into permanent organizational knowledge by implementing updates across multiple files. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -16065,7 +20611,6 @@ {"id": "bb3a2e7838f015e89fb6e7f9b53787685ff32ef63999eb145f4bfbda07ccb832", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "recipe-manager", "description": "Helps add, edit, validate, and manage recipe data in recipes.js. Use this when the user wants to create new recipes, modify existing ones, fix recipe formatting, or validate recipe structure.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/adamfehse/recipe-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recipe-manager"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "recipe-manager. Helps add, edit, validate, and manage recipe data in recipes.js. Use this when the user wants to create new recipes, modify existing ones, fix recipe formatting, or validate recipe structure. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "b6190d87b2707613f838092f902d07bf4d7018367c1ed38432aec5b496cb8a29", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "architecture-patterns", "description": "AI-friendly architecture patterns for TypeScript projects including Domain-Driven Design, Clean Architecture, Hexagonal Architecture, and Page Object Model testing patterns", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/adammanuel-dev/architecture-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install architecture-patterns"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "architecture-patterns. AI-friendly architecture patterns for TypeScript projects including Domain-Driven Design, Clean Architecture, Hexagonal Architecture, and Page Object Model testing patterns Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "0984a63254dc850a7e918b6396b5779d1da9559667ebc27cceac7180a20e7fce", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "code-review", "description": "Battle-tested code review practices optimizing for codebase health and team velocity", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/adammanuel-dev/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-review"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "code-review. Battle-tested code review practices optimizing for codebase health and team velocity Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "ef9af2c4a8fba8b439ffe4436de7924ac683995315a09b20aef11b230b06e12e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "playwright-browser-automation", "description": "Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login flows, check links, automate any browser task. Use when user wants to test websites, automate browser interactions, validate web functionality, or perform any browser-based testing.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/adammanuel-dev/playwright-browser-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install playwright-browser-automation"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "playwright-browser-automation. Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login flows, check links, automate any browser task. Use when user wants to test websites, automate browser interactions, validate web functionality, or perform any browser-based testing. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "bdd7b31fe1bc035a850667e3c49ddae9e78e1769be15095df4fe84c280e6b815", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "router", "description": "Intelligent routing layer that analyzes requests and directs them to the most appropriate Skills, Agents, or Commands", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/adammanuel-dev/router/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install router"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "router. Intelligent routing layer that analyzes requests and directs them to the most appropriate Skills, Agents, or Commands Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "7708a8cae7a4afc0997744aa4034b512da763264ed9f5c9e736e2506ad3ae83e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "typescript-jsdoc", "description": "Write effective JSDoc comments for TypeScript code. Provides guidance on documentation format, strategic placement, best practices, and when to document versus when to keep code self-documenting. Helps maintain code clarity and IDE support.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/adammanuel-dev/typescript-jsdoc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install typescript-jsdoc"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "typescript-jsdoc. Write effective JSDoc comments for TypeScript code. Provides guidance on documentation format, strategic placement, best practices, and when to document versus when to keep code self-documenting. Helps maintain code clarity and IDE support. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "e67776fe800b0732227700acba18cfe91153d74ba67fa3de17ab26bbd566d79e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "vitest-testing", "description": "**AI-friendly comprehensive testing guidance for Vitest with practical patterns and behavior-driven development.**", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/adammanuel-dev/vitest-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vitest-testing"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "vitest-testing. **AI-friendly comprehensive testing guidance for Vitest with practical patterns and behavior-driven development.** Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -16192,7 +20737,6 @@ {"id": "653e70cc4972be5094689b599dec76a7c5ab871c10119f7d2cfccb203fe40417", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "planner", "description": "Create comprehensive, phased implementation plans with sprints and atomic tasks. Use when user says: \"make a plan\", \"create a plan\", \"plan this out\", \"plan the implementation\", \"help me plan\", \"design a plan\", \"draft a plan\", \"write a plan\", \"outline the steps\", \"break this down into tasks\", \"what's the plan for\", or any similar planning request. Also triggers on explicit \"/planner\" or \"/plan\" commands.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/am-will/planner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install planner"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "planner. Create comprehensive, phased implementation plans with sprints and atomic tasks. Use when user says: \"make a plan\", \"create a plan\", \"plan this out\", \"plan the implementation\", \"help me plan\", \"design a plan\", \"draft a plan\", \"write a plan\", \"outline the steps\", \"break this down into tasks\", \"what's the plan for\", or any similar planning request. Also triggers on explicit \"/planner\" or \"/plan\" commands. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "98f20d55903b09a4fc73957427881b2bfd227aa94b15904adcfaa46237291543", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "read-github", "description": "Read and search GitHub repository documentation via gitmcp.io MCP service.\n\n**WHEN TO USE:**\n- User provides a GitHub URL\n- User mentions a specific repo in owner/repo format\n- User asks \"what does this repo do?\", \"read the docs for X repo\", or similar\n- User wants to search code or docs within a repo", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/am-will/read-github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install read-github"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "read-github. Read and search GitHub repository documentation via gitmcp.io MCP service.\n\n**WHEN TO USE:**\n- User provides a GitHub URL\n- User mentions a specific repo in owner/repo format\n- User asks \"what does this repo do?\", \"read the docs for X repo\", or similar\n- User wants to search code or docs within a repo Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "058b0ed57d2c41090985e70ac448ae872dfbfc639f2368217b3b014827dcdc5c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "role-creator", "description": "Create and install Codex custom agent roles in ~/.codex/config.toml, generate role config files, enforce supported keys, and guide users through required role inputs (model, reasoning effort, developer_instructions).", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/am-will/role-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install role-creator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "role-creator. Create and install Codex custom agent roles in ~/.codex/config.toml, generate role config files, enforce supported keys, and guide users through required role inputs (model, reasoning effort, developer_instructions). Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "29386650d63f02bc8625e2b4b1c3674a38e2e2f83ef8ff82c4873845428e1a67", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "super-swarm-spark", "description": "Only to be triggered by explicit super-swarm-spark commands. ", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/am-will/super-swarm-spark/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install super-swarm-spark"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "super-swarm-spark. Only to be triggered by explicit super-swarm-spark commands. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "25a4c64608cd40c1729920b0fbde940fc02a7ceb8e160b06ee0bd390339cd1a8", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "swarm-planner", "description": "[EXPLICIT INVOCATION ONLY] Creates dependency-aware implementation plans optimized for parallel multi-agent execution.\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/am-will/swarm-planner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install swarm-planner"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "swarm-planner. [EXPLICIT INVOCATION ONLY] Creates dependency-aware implementation plans optimized for parallel multi-agent execution.\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "6fa28aed5f01cc4e010bc9d9e0a03eaec82eda46e1a26b8b8e7c8a6d8a2cd34e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "vercel-react-best-practices", "description": "React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/am-will/vercel-react-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vercel-react-best-practices"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "vercel-react-best-practices. React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "2f7ff08946f532236704c3cc5acc32e8d43e219586cc690b00f53b1b0df18ef9", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "grasshopper-workflow", "description": "Grasshopper \u53c3\u6578\u5316\u5efa\u6a21\u5de5\u4f5c\u6d41\u7a0b\u5de5\u5177\u3002\u7576\u9700\u8981\u901a\u904e MCP \u5354\u8b70\u8207 Grasshopper \u4ea4\u4e92\u3001\u5275\u5efa\u548c\u7ba1\u7406\u7d44\u4ef6\u3001\u5efa\u7acb\u9023\u63a5\u3001\u8a2d\u7f6e\u53c3\u6578\u3001\u57f7\u884c\u5b8c\u6574\u5efa\u6a21\u5de5\u4f5c\u6d41\u7a0b\u6642\u4f7f\u7528\u3002\u9069\u7528\u65bc\uff1a(1) \u5f9e MMD \u6587\u4ef6\u5275\u5efa Grasshopper \u5b9a\u7fa9, (2) \u57f7\u884c placement_info.json \u5de5\u4f5c\u6d41\u7a0b, (3) \u6279\u91cf\u7ba1\u7406\u7d44\u4ef6\u548c\u9023\u63a5, (4) \u53c3\u6578\u5316\u5efa\u6a21\u7684\u81ea\u52d5\u5316\u6d41\u7a0b, (5) \u89e3\u6790 component_info.mmd \u548c part_info.mmd \u6587\u4ef6", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/amemiyalai/grasshopper-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install grasshopper-workflow"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "grasshopper-workflow. Grasshopper \u53c3\u6578\u5316\u5efa\u6a21\u5de5\u4f5c\u6d41\u7a0b\u5de5\u5177\u3002\u7576\u9700\u8981\u901a\u904e MCP \u5354\u8b70\u8207 Grasshopper \u4ea4\u4e92\u3001\u5275\u5efa\u548c\u7ba1\u7406\u7d44\u4ef6\u3001\u5efa\u7acb\u9023\u63a5\u3001\u8a2d\u7f6e\u53c3\u6578\u3001\u57f7\u884c\u5b8c\u6574\u5efa\u6a21\u5de5\u4f5c\u6d41\u7a0b\u6642\u4f7f\u7528\u3002\u9069\u7528\u65bc\uff1a(1) \u5f9e MMD \u6587\u4ef6\u5275\u5efa Grasshopper \u5b9a\u7fa9, (2) \u57f7\u884c placement_info.json \u5de5\u4f5c\u6d41\u7a0b, (3) \u6279\u91cf\u7ba1\u7406\u7d44\u4ef6\u548c\u9023\u63a5, (4) \u53c3\u6578\u5316\u5efa\u6a21\u7684\u81ea\u52d5\u5316\u6d41\u7a0b, (5) \u89e3\u6790 component_info.mmd \u548c part_info.mmd \u6587\u4ef6 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -16311,7 +20855,6 @@ {"id": "963ec03f68079814ab61fa24ebddaf82b7df53bf94b067a46abcbf5ed883efb8", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "template-skill", "description": "Replace with description of the skill and when Claude should use it.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/artemisai/template-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install template-skill"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Claude should use it. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "a8024c0ef086f4b68f13443bbc322a46b3c0942afa87a6e2c06e0b67e329c064", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "theme-factory", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/artemisai/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install theme-factory"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "theme-factory. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f6910be82a58550e06c7798cd58bd855cb63571d90ee7b5b38ea98ee514669cb", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "webapp-testing", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/artemisai/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install webapp-testing"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "webapp-testing. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "e6192f2eaeaa8cb98e1aee9459f82cf948e7f762e85ec283476c8f6d88b9e8b5", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/artemisai/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "b9eddaee71b5aa0926f1ed65d1b10a4e886b74087e47dd55dff15b0df7c2cde0", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "bases", "description": "Query Obsidian Bases via the Bases Query plugin (RPC). Use when you need to read structured data from Obsidian bases.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/artemxtech/bases/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bases"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "bases. Query Obsidian Bases via the Bases Query plugin (RPC). Use when you need to read structured data from Obsidian bases. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "4a2032f30f161153bf55863643e2614ac2a1f1bde8e3951c99c8c14884ed3376", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "tasknotes", "description": "Manage tasks in Obsidian via TaskNotes plugin API. Use when user wants to create tasks, list tasks, query by status or project, update task status, delete tasks, or check what they need to do.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/artemxtech/tasknotes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tasknotes"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "tasknotes. Manage tasks in Obsidian via TaskNotes plugin API. Use when user wants to create tasks, list tasks, query by status or project, update task status, delete tasks, or check what they need to do. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "823a4c7421a4fa255dd9f358b26ce4785eff4c2c9088bbcec8ab33dcded75924", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "add-core-function", "description": "Add new core business logic functions to Catalyst-Relay. Use when creating pure functions, ADT operations, or library-consumable code.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/artisan-edge/add-core-function/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install add-core-function"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "add-core-function. Add new core business logic functions to Catalyst-Relay. Use when creating pure functions, ADT operations, or library-consumable code. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -16429,7 +20972,6 @@ {"id": "e43c8a2f71e5f3955e2dceba2623604bc5e8e006970d410a5b94de380bd5b456", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "aiops", "description": "Generic AIOps (AI for IT Operations) patterns and best practices for 2025. Provides comprehensive implementation strategies for intelligent monitoring, automation, incident response, and observability across any infrastructure. Framework-agnostic approach supporting multiple monitoring platforms, cloud providers, and automation tools.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/azeem-2/aiops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aiops"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "aiops. Generic AIOps (AI for IT Operations) patterns and best practices for 2025. Provides comprehensive implementation strategies for intelligent monitoring, automation, incident response, and observability across any infrastructure. Framework-agnostic approach supporting multiple monitoring platforms, cloud providers, and automation tools. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "174ee332d6fbbb6d0a075a6a4b641d0a3c1db47a2ead56c9d715cead2171a2ac", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "algorithmic-art", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/azeem-2/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install algorithmic-art"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "algorithmic-art. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "7d37d120413b4d3ae9b3ec95bd6b5e9dd34d0e08771766b383753fb7ea0f9112", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "api-dev", "description": "Modern API development patterns for building high-performance, scalable web services. Expert in async/await patterns, REST/GraphQL APIs, middleware, error handling, rate limiting, OpenAPI documentation, testing, and production optimizations. Framework-agnostic patterns that work with Python, Node.js, Go, and other languages.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/azeem-2/api-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-dev"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "api-dev. Modern API development patterns for building high-performance, scalable web services. Expert in async/await patterns, REST/GraphQL APIs, middleware, error handling, rate limiting, OpenAPI documentation, testing, and production optimizations. Framework-agnostic patterns that work with Python, Node.js, Go, and other languages. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "234f7730b855aedef89b18e8518067f55617743e05ba402c1d2add51fc4d8819", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "auth", "description": "Modern authentication and security patterns for web applications. Expert in JWT tokens, OAuth2 flows, session management, RBAC, MFA, API security, and zero-trust architectures. Framework-agnostic patterns that work with any tech stack.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/azeem-2/auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install auth"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "auth. Modern authentication and security patterns for web applications. Expert in JWT tokens, OAuth2 flows, session management, RBAC, MFA, API security, and zero-trust architectures. Framework-agnostic patterns that work with any tech stack. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "e244ab325c653dcb5527fa14fa62fd50c2786f801a6a548996c0abe9f1f2f20e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "brand-guidelines", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/azeem-2/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-guidelines"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "brand-guidelines. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "0d7061a5606acdecb9985ff452eeb36a38bffddbc13699e4edfe07ba9080d012", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "canvas-design", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/azeem-2/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install canvas-design"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "canvas-design. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "20cd785d58cac9af5201a2035eb939a654b63d23b4c9adcc62cd050a6ddfd4b2", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "cloud-native", "description": "Generic Cloud-Native Deployment and Infrastructure as Code patterns for 2025. Provides comprehensive implementation strategies for multi-cloud deployments, GitOps workflows, progressive delivery, and platform engineering. Framework-agnostic approach supporting any cloud provider, deployment tool, and orchestration platform.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/azeem-2/cloud-native/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cloud-native"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "cloud-native. Generic Cloud-Native Deployment and Infrastructure as Code patterns for 2025. Provides comprehensive implementation strategies for multi-cloud deployments, GitOps workflows, progressive delivery, and platform engineering. Framework-agnostic approach supporting any cloud provider, deployment tool, and orchestration platform. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -16515,9 +21057,7 @@ {"id": "dcbdf2f1313e3e2812f9175b229c6996d86123520f16f0a189dba40180d14c03", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "zod-validation-patterns", "description": "This skill provides comprehensive patterns for using Zod validation library in TypeScript applications. It ensures input validation is done correctly, securely, and consistently across the codebase.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/barnhardt-enterprises-inc/zod-validation-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zod-validation-patterns"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "zod-validation-patterns. This skill provides comprehensive patterns for using Zod validation library in TypeScript applications. It ensures input validation is done correctly, securely, and consistently across the codebase. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "6d037de5604f0a933cb1d39b740278b73f0d8e67c1718a52b705e0f721f199e4", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "creating-bauplan-pipelines", "description": "Creates bauplan data pipeline projects with SQL and Python models. Use when starting a new pipeline, defining DAG transformations, writing models, or setting up bauplan project structure from scratch.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bauplanlabs/creating-bauplan-pipelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install creating-bauplan-pipelines"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "creating-bauplan-pipelines. Creates bauplan data pipeline projects with SQL and Python models. Use when starting a new pipeline, defining DAG transformations, writing models, or setting up bauplan project structure from scratch. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "8098df08cdb27a6ac42613b20dcb9111bb0525f9b564640cdd31c9705707b77a", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "wap-ingestion", "description": "Ingest data from S3 into bauplan using the Write-Audit-Publish pattern for safe data loading. Use when loading new data from S3, performing safe data ingestion, or when the user mentions WAP, data ingestion, importing parquet/csv/jsonl files, or needs to safely load data with quality checks.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bauplanlabs/wap-ingestion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wap-ingestion"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "wap-ingestion. Ingest data from S3 into bauplan using the Write-Audit-Publish pattern for safe data loading. Use when loading new data from S3, performing safe data ingestion, or when the user mentions WAP, data ingestion, importing parquet/csv/jsonl files, or needs to safely load data with quality checks. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "05625b7de23d02cead70efde76a885ee4df2fa12c3e993316f240e68c618138c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "2026-coach", "description": "Executive coaching skill that helps you plan your 2026 using research-backed process goals. Guides you through discovery questions, creates outcome goals, converts them to daily behaviors, and sets up accountability systems. Use when you want to plan your year, set goals, or need a coach to help you stay focused.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bayramannakov/2026-coach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install 2026-coach"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "2026-coach. Executive coaching skill that helps you plan your 2026 using research-backed process goals. Guides you through discovery questions, creates outcome goals, converts them to daily behaviors, and sets up accountability systems. Use when you want to plan your year, set goals, or need a coach to help you stay focused. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "0c68e052bc0e465fac251d0abc74439d3ac5334c216755b7fed2815978003d28", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "chatgpt-app-builder", "description": "Build ChatGPT Apps using the Apps SDK and MCP. Use when users want to:\n(1) Evaluate if their product should become a ChatGPT App\n(2) Design and implement MCP servers with widgets\n(3) Test apps locally and in ChatGPT\n(4) Prepare for App Store submission\nTriggers: \"ChatGPT app\", \"Apps SDK\", \"build for ChatGPT\",\n\"ChatGPT integration\", \"MCP server for ChatGPT\", \"submit to ChatGPT\"\n", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bayramannakov/chatgpt-app-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install chatgpt-app-builder"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "chatgpt-app-builder. Build ChatGPT Apps using the Apps SDK and MCP. Use when users want to:\n(1) Evaluate if their product should become a ChatGPT App\n(2) Design and implement MCP servers with widgets\n(3) Test apps locally and in ChatGPT\n(4) Prepare for App Store submission\nTriggers: \"ChatGPT app\", \"Apps SDK\", \"build for ChatGPT\",\n\"ChatGPT integration\", \"MCP server for ChatGPT\", \"submit to ChatGPT\"\n Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "c9affc70fdf04048ef05809992ae51b812984ff6ff3347e61c168882f1ed25d6", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "claude-reflect", "description": "Self-learning system that captures corrections during sessions and reminds users to run /reflect to update CLAUDE.md. Use when discussing learnings, corrections, or when the user mentions remembering something for future sessions.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bayramannakov/claude-reflect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-reflect"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "claude-reflect. Self-learning system that captures corrections during sessions and reminds users to run /reflect to update CLAUDE.md. Use when discussing learnings, corrections, or when the user mentions remembering something for future sessions. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "95bf22857a6d279833a48ac0a9bf1003c0a50e29aea5c5dff94623618781ddfd", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "ux-waiting-audit", "description": "Audit UX waiting states for web applications with long-running operations (30+ seconds). Use when asked to evaluate, audit, or analyze a product's loading states, wait times, progress indicators, or user experience during slow operations. Requires browser automation (Chrome MCP tools). Generates comprehensive reports with screenshots, checklist evaluation, and prioritized recommendations.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bayramannakov/ux-waiting-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ux-waiting-audit"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "ux-waiting-audit. Audit UX waiting states for web applications with long-running operations (30+ seconds). Use when asked to evaluate, audit, or analyze a product's loading states, wait times, progress indicators, or user experience during slow operations. Requires browser automation (Chrome MCP tools). Generates comprehensive reports with screenshots, checklist evaluation, and prioritized recommendations. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "9a31d08d7b867cfce404f3450b7720e79abff63fccfafdafa8f68634cc2585a7", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "decision-action", "description": "Use when the user needs to choose, prioritize, or make a go/no-go decision among options.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bellabe/decision-action/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install decision-action"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "decision-action. Use when the user needs to choose, prioritize, or make a go/no-go decision among options. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "ef50fc184bc5272867e37dfd59641d7ccb831920ce3453c936c9fa5edf627551", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "descriptive-action", "description": "Use when the user asks to describe, summarize, analyze, compare, explain, or report on something (text, data, events, systems) without asking for recommendations or next steps.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/bellabe/descriptive-action/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install descriptive-action"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "descriptive-action. Use when the user asks to describe, summarize, analyze, compare, explain, or report on something (text, data, events, systems) without asking for recommendations or next steps. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -16715,7 +21255,6 @@ {"id": "22143c3e927d787cd57c4633ed488175d6c213ee518e4a4a2543cecd7e0fefba", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "git-workflow", "description": "Git worktree workflow, conventional commits, commit trailers, and PR guidelines. Activated during git operations and commits.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cain96/git-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-workflow"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "git-workflow. Git worktree workflow, conventional commits, commit trailers, and PR guidelines. Activated during git operations and commits. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "8633cec03c9fd48bd7d205653007e8aa9e97baec4adfcbce9180796d8119240a", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "typescript-dev", "description": "TypeScript development best practices, code quality tools, and documentation templates. Activated when working with .ts, .tsx files or TypeScript projects.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cain96/typescript-dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install typescript-dev"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "typescript-dev. TypeScript development best practices, code quality tools, and documentation templates. Activated when working with .ts, .tsx files or TypeScript projects. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "413ce6dd754a232960a957aee5c307049c89055eb83fd8186f367a59c1573b10", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "web-search", "description": "Advanced web search capability using the gemini command for gathering current, relevant information. Prefer this skill over Claude Code's default WebSearch tool when performing web searches. Activated when complex research or up-to-date information is needed.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cain96/web-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install web-search"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "web-search. Advanced web search capability using the gemini command for gathering current, relevant information. Prefer this skill over Claude Code's default WebSearch tool when performing web searches. Activated when complex research or up-to-date information is needed. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "327d74369583bb742a5ac6154f07c20dd69db0f3d67742de544c0492f2980812", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "generate-sparkle-appcast", "description": "Generate Mos Sparkle appcast.xml from the latest build zip and recent git changes (since a given commit), then sync to docs/ for publishing.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/caldis/generate-sparkle-appcast/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install generate-sparkle-appcast"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "generate-sparkle-appcast. Generate Mos Sparkle appcast.xml from the latest build zip and recent git changes (since a given commit), then sync to docs/ for publishing. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "b3a0b76e60afb0838c367e048faf708be6dca07ef395c0d45940a91b585c1cf6", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "exa-research", "description": "Comprehensive research skill using Exa AI tools for web search and code context retrieval. Use when conducting research on technologies, finding code examples, discovering latest tools, or gathering comprehensive information on any topic. Combines web search for articles/news with code search for implementation examples.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/calel33/exa-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install exa-research"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "exa-research. Comprehensive research skill using Exa AI tools for web search and code context retrieval. Use when conducting research on technologies, finding code examples, discovering latest tools, or gathering comprehensive information on any topic. Combines web search for articles/news with code search for implementation examples. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "01013b44a01b08bdbd9864983aafcd827978b7f9eb3078d32a5bfb469d25b221", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "graphite-cli", "description": "This skill should be used to answer questions and guide workflows related to the Graphite CLI. It assists with creating, managing, submitting, and synchronizing stacked code changes (diffs).", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/calel33/graphite-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install graphite-cli"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "graphite-cli. This skill should be used to answer questions and guide workflows related to the Graphite CLI. It assists with creating, managing, submitting, and synchronizing stacked code changes (diffs). Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "c694fed307570604a8441a3890bb85f0f646a20b515831573ffeb29edeadd8b2", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "next-js-16-launchpad", "description": "Next.js 16 with Turbopack, Cache Components, and proxy.ts. Use for bootstrapping, migrating, and building with App Router and React 19.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/calel33/next-js-16-launchpad/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install next-js-16-launchpad"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "next-js-16-launchpad. Next.js 16 with Turbopack, Cache Components, and proxy.ts. Use for bootstrapping, migrating, and building with App Router and React 19. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -16750,7 +21289,6 @@ {"id": "67cb31ade2721ef56bf8a8fe92c6463fafaecd1c0a71ba59b52e2485cf780968", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "aippt", "description": "AIPPT - \u57fa\u4e8e\u6a21\u677f\u5b9a\u5236\u5316\u751f\u6210 PPT\u3002\u57ab\u56fe\u7ea6\u675f\u98ce\u683c \u2192 \u63d0\u793a\u8bcd\u66ff\u6362\u5185\u5bb9 \u2192 AI \u751f\u56fe \u2192 \u6253\u5305 PPTX\u3002", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/ceeon/aippt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aippt"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "aippt. AIPPT - \u57fa\u4e8e\u6a21\u677f\u5b9a\u5236\u5316\u751f\u6210 PPT\u3002\u57ab\u56fe\u7ea6\u675f\u98ce\u683c \u2192 \u63d0\u793a\u8bcd\u66ff\u6362\u5185\u5bb9 \u2192 AI \u751f\u56fe \u2192 \u6253\u5305 PPTX\u3002 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "a91c811453f0ae710d66002b6c1727dc238ba2fb4833f8278f1f30d66c958c01", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "gemini-image", "description": "\u5f53\u7528\u6237\u60f3\u8981\u751f\u6210\u56fe\u7247\u3001\u753b\u56fe\u3001\u7ed8\u753b\u3001\u521b\u5efa\u56fe\u50cf\u3001AI\u4f5c\u753b\u65f6\u4f7f\u7528\u6b64 Skill\u3002\u652f\u6301\u6587\u751f\u56fe\u548c\u56fe\u751f\u56fe\u3002", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/ceeon/gemini-image/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gemini-image"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "gemini-image. \u5f53\u7528\u6237\u60f3\u8981\u751f\u6210\u56fe\u7247\u3001\u753b\u56fe\u3001\u7ed8\u753b\u3001\u521b\u5efa\u56fe\u50cf\u3001AI\u4f5c\u753b\u65f6\u4f7f\u7528\u6b64 Skill\u3002\u652f\u6301\u6587\u751f\u56fe\u548c\u56fe\u751f\u56fe\u3002 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "2f79d315ebebc4196f68ec2cd225f2ea2fe9623a020012a362228474c8ad859c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "videocut", "description": "\u6267\u884c\u89c6\u9891\u526a\u8f91\u3002\u6839\u636e\u786e\u8ba4\u7684\u5220\u9664\u4efb\u52a1\u6267\u884cFFmpeg\u526a\u8f91\uff0c\u5faa\u73af\u76f4\u5230\u96f6\u53e3\u8bef\uff0c\u751f\u6210\u5b57\u5e55\u3002\u89e6\u53d1\u8bcd\uff1a\u6267\u884c\u526a\u8f91\u3001\u5f00\u59cb\u526a\u3001\u786e\u8ba4\u526a\u8f91", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/ceeon/videocut/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install videocut"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "videocut. \u6267\u884c\u89c6\u9891\u526a\u8f91\u3002\u6839\u636e\u786e\u8ba4\u7684\u5220\u9664\u4efb\u52a1\u6267\u884cFFmpeg\u526a\u8f91\uff0c\u5faa\u73af\u76f4\u5230\u96f6\u53e3\u8bef\uff0c\u751f\u6210\u5b57\u5e55\u3002\u89e6\u53d1\u8bcd\uff1a\u6267\u884c\u526a\u8f91\u3001\u5f00\u59cb\u526a\u3001\u786e\u8ba4\u526a\u8f91 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "b31f7b80ff1d4dac26c8bdf09a209f39700c40f2a034b313850f773157171490", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "writing-assistant", "description": "\u81ea\u5a92\u4f53\u5199\u4f5c\u4ea4\u4e92\u5f0f\u52a9\u624b\u3002\u5e2e\u52a9\u5b8c\u6210\u4ece\u9009\u9898\u5230\u53d1\u5e03\u7684\u5b8c\u6574\u6d41\u7a0b\u3002\u9002\u7528\u4e8e\uff1a\u5f00\u59cb\u5199\u65b0\u6587\u7ae0\u3001\u68c0\u67e5\u8349\u7a3f\u8d28\u91cf\u3001\u8bca\u65ad\u53d1\u5e03\u540e\u6570\u636e\u4e0d\u4f73\u7684\u539f\u56e0\u3002", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/ceeon/writing-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-assistant"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "writing-assistant. \u81ea\u5a92\u4f53\u5199\u4f5c\u4ea4\u4e92\u5f0f\u52a9\u624b\u3002\u5e2e\u52a9\u5b8c\u6210\u4ece\u9009\u9898\u5230\u53d1\u5e03\u7684\u5b8c\u6574\u6d41\u7a0b\u3002\u9002\u7528\u4e8e\uff1a\u5f00\u59cb\u5199\u65b0\u6587\u7ae0\u3001\u68c0\u67e5\u8349\u7a3f\u8d28\u91cf\u3001\u8bca\u65ad\u53d1\u5e03\u540e\u6570\u636e\u4e0d\u4f73\u7684\u539f\u56e0\u3002 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "ae87fe3441c094636df30ab17bea785846babe9fe731074282058cbe987bc9e1", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "art-style-creator", "description": "Create and define visual art styles for projects. Use when user wants to establish an art direction, create a style guide, define visual language, document aesthetic choices, or create consistent artwork guidelines for games, illustrations, animations, or other visual media.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cesaraugustusgrob/art-style-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install art-style-creator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "art-style-creator. Create and define visual art styles for projects. Use when user wants to establish an art direction, create a style guide, define visual language, document aesthetic choices, or create consistent artwork guidelines for games, illustrations, animations, or other visual media. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "91caa7b2a5ac73a024e59a117c817b5a8a24efe79d4930bb05a68f6f5dd2dae1", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "combat-system-creator", "description": "Create and modify combat system components for SHINOBI WAY game following the dual-system architecture (CombatCalculationSystem + CombatWorkflowSystem). Use when user wants to add new combat mechanics, damage formulas, status effects, mitigation logic, turn phases, or refactor existing combat code. Guides through proper separation of pure calculations vs state management.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cesaraugustusgrob/combat-system-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install combat-system-creator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "combat-system-creator. Create and modify combat system components for SHINOBI WAY game following the dual-system architecture (CombatCalculationSystem + CombatWorkflowSystem). Use when user wants to add new combat mechanics, damage formulas, status effects, mitigation logic, turn phases, or refactor existing combat code. Guides through proper separation of pure calculations vs state management. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "afbb5b35f64a35f0aebf2606cb343608e0b9797e78b6cafbe924af0a8b78ac4f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "combat-ui-pattern-a", "description": "Implement Split-Panel Combat UI (Pattern A) for SHINOBI WAY game. Use when user wants to create the horizontal confrontation combat layout, character panels, action dock, phase header, VS divider, or any component from the Pattern A combat UI system. Guides through component creation following the established architecture.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cesaraugustusgrob/combat-ui-pattern-a/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install combat-ui-pattern-a"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "combat-ui-pattern-a. Implement Split-Panel Combat UI (Pattern A) for SHINOBI WAY game. Use when user wants to create the horizontal confrontation combat layout, character panels, action dock, phase header, VS divider, or any component from the Pattern A combat UI system. Guides through component creation following the established architecture. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -16763,7 +21301,6 @@ {"id": "3aef63f6ec974321c181d28119cd4179175e21ed4fd07231cd524986d0ed8058", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "using-argc-argcfile", "description": "Create and modify Argcfiles using the special syntax required. Use this when editing Argcfile.sh, @argc, or any shell script that contains `argc --argc-eval`.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cgamesplay/using-argc-argcfile/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install using-argc-argcfile"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "using-argc-argcfile. Create and modify Argcfiles using the special syntax required. Use this when editing Argcfile.sh, @argc, or any shell script that contains `argc --argc-eval`. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "82a460b25adb22040a217dd69e9ad524998c4be7f692edf3bb3fdc5a8924c4e0", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "2agent", "description": "Configures 2-Agent workflow between PM and implementation roles. Use when user mentions 2-Agent, 2\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8, PM\u9023\u643a\u8a2d\u5b9a, Cursor\u8a2d\u5b9a, Cursor\u9023\u643a, 2-agent\u904b\u7528. Do NOT load for: \u5358\u72ec\u904b\u7528, \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u5b9f\u884c, \u30cf\u30f3\u30c9\u30aa\u30d5\u51e6\u7406.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/2agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install 2agent"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "2agent. Configures 2-Agent workflow between PM and implementation roles. Use when user mentions 2-Agent, 2\u30a8\u30fc\u30b8\u30a7\u30f3\u30c8, PM\u9023\u643a\u8a2d\u5b9a, Cursor\u8a2d\u5b9a, Cursor\u9023\u643a, 2-agent\u904b\u7528. Do NOT load for: \u5358\u72ec\u904b\u7528, \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u5b9f\u884c, \u30cf\u30f3\u30c9\u30aa\u30d5\u51e6\u7406. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "173075f6440529b7509f7064f040366378dda1b267faf40c0dee7f163bc27282", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "auth", "description": "Implements authentication and payment features using Clerk, Supabase Auth, or Stripe. Use when user mentions \u30ed\u30b0\u30a4\u30f3, \u8a8d\u8a3c, auth, authentication, Clerk, Supabase, \u6c7a\u6e08, payment, Stripe, \u8ab2\u91d1, \u30b5\u30d6\u30b9\u30af\u30ea\u30d7\u30b7\u30e7\u30f3. Do NOT load for: \u4e00\u822c\u7684\u306aUI\u4f5c\u6210, \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u8a2d\u8a08, \u975e\u8a8d\u8a3c\u6a5f\u80fd.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install auth"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "auth. Implements authentication and payment features using Clerk, Supabase Auth, or Stripe. Use when user mentions \u30ed\u30b0\u30a4\u30f3, \u8a8d\u8a3c, auth, authentication, Clerk, Supabase, \u6c7a\u6e08, payment, Stripe, \u8ab2\u91d1, \u30b5\u30d6\u30b9\u30af\u30ea\u30d7\u30b7\u30e7\u30f3. Do NOT load for: \u4e00\u822c\u7684\u306aUI\u4f5c\u6210, \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u8a2d\u8a08, \u975e\u8a8d\u8a3c\u6a5f\u80fd. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "26d9d7cc880b40e40e9256be0c14b4236f6c25a485f4424171eb9895c2336a62", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "ci", "description": "Diagnoses and fixes CI/CD pipeline failures. Use when user mentions 'CI', 'GitHub Actions', 'GitLab CI', '\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc', '\u30c6\u30b9\u30c8\u5931\u6557', '\u30d1\u30a4\u30d7\u30e9\u30a4\u30f3', 'CI\u304c\u843d\u3061\u305f', or asks to analyze build/test failures. Do NOT load for: \u30ed\u30fc\u30ab\u30eb\u30d3\u30eb\u30c9, \u901a\u5e38\u306e\u5b9f\u88c5\u4f5c\u696d, \u30ec\u30d3\u30e5\u30fc, \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/ci/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ci"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "ci. Diagnoses and fixes CI/CD pipeline failures. Use when user mentions 'CI', 'GitHub Actions', 'GitLab CI', '\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc', '\u30c6\u30b9\u30c8\u5931\u6557', '\u30d1\u30a4\u30d7\u30e9\u30a4\u30f3', 'CI\u304c\u843d\u3061\u305f', or asks to analyze build/test failures. Do NOT load for: \u30ed\u30fc\u30ab\u30eb\u30d3\u30eb\u30c9, \u901a\u5e38\u306e\u5b9f\u88c5\u4f5c\u696d, \u30ec\u30d3\u30e5\u30fc, \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "72720d3a21b5cd15fefb0195be0f376851181841863096a8e044fb8e75fed2ed", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "cursor-mem", "description": "Cursor\u3067claude-mem\u306eMCP\u30b5\u30fc\u30d0\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3001\u904e\u53bb\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u8a18\u9332\u3092\u691c\u7d22\u30fb\u65b0\u3057\u3044\u89b3\u6e2c\u3092\u8a18\u9332\u3002\u30c8\u30ea\u30ac\u30fc: '\u30e1\u30e2\u30ea\u691c\u7d22', 'claude-mem', '\u904e\u53bb\u306e\u5224\u65ad', '\u8a18\u9332\u3057\u3066', 'memory search', 'past decisions'. Do NOT load for: \u901a\u5e38\u306e\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3001\u4e00\u6642\u7684\u306a\u30e1\u30e2\u3001\u5b9f\u88c5\u4f5c\u696d\u3002", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/cursor-mem/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cursor-mem"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "cursor-mem. Cursor\u3067claude-mem\u306eMCP\u30b5\u30fc\u30d0\u30fc\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3001\u904e\u53bb\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u8a18\u9332\u3092\u691c\u7d22\u30fb\u65b0\u3057\u3044\u89b3\u6e2c\u3092\u8a18\u9332\u3002\u30c8\u30ea\u30ac\u30fc: '\u30e1\u30e2\u30ea\u691c\u7d22', 'claude-mem', '\u904e\u53bb\u306e\u5224\u65ad', '\u8a18\u9332\u3057\u3066', 'memory search', 'past decisions'. Do NOT load for: \u901a\u5e38\u306e\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3001\u4e00\u6642\u7684\u306a\u30e1\u30e2\u3001\u5b9f\u88c5\u4f5c\u696d\u3002 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "25ac51bd48cd7899cde4bb868f0efc45c6c4c6881ca481198ca33b5d69b149db", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "deploy", "description": "Sets up deployment, analytics, and health monitoring for projects. Use when user mentions \u30c7\u30d7\u30ed\u30a4, deploy, Vercel, Netlify, \u516c\u958b, \u30a2\u30ca\u30ea\u30c6\u30a3\u30af\u30b9, analytics, GA, Google Analytics, \u74b0\u5883\u8a3a\u65ad, health check. Do NOT load for: \u5b9f\u88c5\u4f5c\u696d, \u30ed\u30fc\u30ab\u30eb\u958b\u767a, \u30ec\u30d3\u30e5\u30fc, \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deploy"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "deploy. Sets up deployment, analytics, and health monitoring for projects. Use when user mentions \u30c7\u30d7\u30ed\u30a4, deploy, Vercel, Netlify, \u516c\u958b, \u30a2\u30ca\u30ea\u30c6\u30a3\u30af\u30b9, analytics, GA, Google Analytics, \u74b0\u5883\u8a3a\u65ad, health check. Do NOT load for: \u5b9f\u88c5\u4f5c\u696d, \u30ed\u30fc\u30ab\u30eb\u958b\u767a, \u30ec\u30d3\u30e5\u30fc, \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "d35a0aff350a089d9f4a5a43b3e47034d8fa4e8a6e603224bef6aac5e2d22fc0", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "docs", "description": "Generates documentation files including NotebookLM YAML and slide content. Use when user mentions \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8, document, YAML, NotebookLM, \u30b9\u30e9\u30a4\u30c9, slide, \u30d7\u30ec\u30bc\u30f3. Do NOT load for: \u5b9f\u88c5\u4f5c\u696d, \u30b3\u30fc\u30c9\u4fee\u6b63, \u30ec\u30d3\u30e5\u30fc, \u30c7\u30d7\u30ed\u30a4.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docs"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "docs. Generates documentation files including NotebookLM YAML and slide content. Use when user mentions \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8, document, YAML, NotebookLM, \u30b9\u30e9\u30a4\u30c9, slide, \u30d7\u30ec\u30bc\u30f3. Do NOT load for: \u5b9f\u88c5\u4f5c\u696d, \u30b3\u30fc\u30c9\u4fee\u6b63, \u30ec\u30d3\u30e5\u30fc, \u30c7\u30d7\u30ed\u30a4. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -16782,7 +21319,6 @@ {"id": "542e6defb9080d3583d581e143c07110656afef870d938cc5e767ae9f8cf7192", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "verify", "description": "Verifies builds, recovers from errors, and applies review fixes. Use when user mentions \u30d3\u30eb\u30c9, build, \u691c\u8a3c, verify, \u30a8\u30e9\u30fc\u5fa9\u65e7, error recovery, \u6307\u6458\u3092\u9069\u7528, apply fixes, \u30c6\u30b9\u30c8\u5b9f\u884c, tests fail, lint errors occur, CI breaks, \u30c6\u30b9\u30c8\u5931\u6557, lint\u30a8\u30e9\u30fc, \u578b\u30a8\u30e9\u30fc, \u30d3\u30eb\u30c9\u30a8\u30e9\u30fc, CI\u304c\u843d\u3061\u305f. Do NOT load for: \u5b9f\u88c5\u4f5c\u696d, \u30ec\u30d3\u30e5\u30fc, \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7, \u65b0\u6a5f\u80fd\u958b\u767a.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install verify"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "verify. Verifies builds, recovers from errors, and applies review fixes. Use when user mentions \u30d3\u30eb\u30c9, build, \u691c\u8a3c, verify, \u30a8\u30e9\u30fc\u5fa9\u65e7, error recovery, \u6307\u6458\u3092\u9069\u7528, apply fixes, \u30c6\u30b9\u30c8\u5b9f\u884c, tests fail, lint errors occur, CI breaks, \u30c6\u30b9\u30c8\u5931\u6557, lint\u30a8\u30e9\u30fc, \u578b\u30a8\u30e9\u30fc, \u30d3\u30eb\u30c9\u30a8\u30e9\u30fc, CI\u304c\u843d\u3061\u305f. Do NOT load for: \u5b9f\u88c5\u4f5c\u696d, \u30ec\u30d3\u30e5\u30fc, \u30bb\u30c3\u30c8\u30a2\u30c3\u30d7, \u65b0\u6a5f\u80fd\u958b\u767a. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "80da7793169b99c7b38b40a167f401219e623ba64afaeb4a62ea4dc81642b420", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "vibecoder-guide-legacy", "description": "Guides VibeCoder (non-technical users) through natural language development (legacy). Use when user mentions \u3069\u3046\u3059\u308c\u3070\u3044\u3044, \u6b21\u306f\u4f55, \u4f7f\u3044\u65b9, \u56f0\u3063\u305f, help, what should I do. Do NOT load for: \u6280\u8853\u8005\u5411\u3051\u4f5c\u696d, \u76f4\u63a5\u7684\u306a\u5b9f\u88c5\u6307\u793a, \u30ec\u30d3\u30e5\u30fc.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/vibecoder-guide-legacy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vibecoder-guide-legacy"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "vibecoder-guide-legacy. Guides VibeCoder (non-technical users) through natural language development (legacy). Use when user mentions \u3069\u3046\u3059\u308c\u3070\u3044\u3044, \u6b21\u306f\u4f55, \u4f7f\u3044\u65b9, \u56f0\u3063\u305f, help, what should I do. Do NOT load for: \u6280\u8853\u8005\u5411\u3051\u4f5c\u696d, \u76f4\u63a5\u7684\u306a\u5b9f\u88c5\u6307\u793a, \u30ec\u30d3\u30e5\u30fc. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "e7886581fb36e6f920c75405c318e8efa9875dbc10e469a41faff74ce1582ceb", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "workflow-guide", "description": "Provides guidance on Cursor \u2194 Claude Code 2-agent workflow. Use when user mentions \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u306b\u3064\u3044\u3066, Cursor\u3068\u306e\u9023\u643a, \u4f5c\u696d\u306e\u6d41\u308c, 2-agent workflow, collaboration. Do NOT load for: \u5b9f\u88c5\u4f5c\u696d, \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u8a2d\u5b9a, \u30cf\u30f3\u30c9\u30aa\u30d5\u5b9f\u884c.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chachamaru127/workflow-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install workflow-guide"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "workflow-guide. Provides guidance on Cursor \u2194 Claude Code 2-agent workflow. Use when user mentions \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u306b\u3064\u3044\u3066, Cursor\u3068\u306e\u9023\u643a, \u4f5c\u696d\u306e\u6d41\u308c, 2-agent workflow, collaboration. Do NOT load for: \u5b9f\u88c5\u4f5c\u696d, \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u8a2d\u5b9a, \u30cf\u30f3\u30c9\u30aa\u30d5\u5b9f\u884c. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "57b677f424b78b371a7ef74bc3b95d3585915c6bd570aa107fe436f1cb0d9900", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "happyflow-generator", "description": "Automatically generate and execute Python test scripts from OpenAPI specifications and GraphQL schemas with enhanced features", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chaim12345/happyflow-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install happyflow-generator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "happyflow-generator. Automatically generate and execute Python test scripts from OpenAPI specifications and GraphQL schemas with enhanced features Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "c5efd2bad13feffcc9bcc03e7d51e98df85050c02bf817e7455ce91051b3332c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "code-review-preferences", "description": "Use when reviewing code, PRs, or discussing code quality standards. Applies team coding standards and review methodology.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chaiwithjai/code-review-preferences/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-review-preferences"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "code-review-preferences. Use when reviewing code, PRs, or discussing code quality standards. Applies team coding standards and review methodology. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "b6b9f24047a4a530a1f431cdb66ae90634fcecedb6670acd5561188b0e155616", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "domain-expertise-template", "description": "Template for creating domain expertise skills. Copy and customize for your specific domain.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chaiwithjai/domain-expertise-template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install domain-expertise-template"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "domain-expertise-template. Template for creating domain expertise skills. Copy and customize for your specific domain. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "71b3821bd5a7fe5478192d6488a4661870d041fefd0e0f2b842087c1f3001c35", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "example-skill", "description": "An example skill demonstrating the basic structure. Use when user asks about examples or templates.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/chaiwithjai/example-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install example-skill"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "example-skill. An example skill demonstrating the basic structure. Use when user asks about examples or templates. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -17006,7 +21542,6 @@ {"id": "a61d45b95739f044c1a92da58dddf93db3f8d02c894225582e1ba9a70cd58407", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "theme-factory", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/composiohq/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install theme-factory"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "theme-factory. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "bc68c849455c471f8b2f96c27ebc2162932ee55abcbde95e2b78e27c02f9d479", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "webapp-testing", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/composiohq/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install webapp-testing"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "webapp-testing. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "6ab7ad41ff9996944b81c4b8d7d58f5034cb3b860936638875c9765ecab75fe3", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/composiohq/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "ea484783dbad993eafef3bc42b3861e5d75bb057b7b66ec35b20a3d8eafdf188", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "youtube-downloader", "description": "Download YouTube videos with customizable quality and format options. Use this skill when the user asks to download, save, or grab YouTube videos. Supports various quality settings (best, 1080p, 720p, 480p, 360p), multiple formats (mp4, webm, mkv), and audio-only downloads as MP3.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/composiohq/youtube-downloader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-downloader"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "youtube-downloader. Download YouTube videos with customizable quality and format options. Use this skill when the user asks to download, save, or grab YouTube videos. Supports various quality settings (best, 1080p, 720p, 480p, 360p), multiple formats (mp4, webm, mkv), and audio-only downloads as MP3. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "ddfbfb4ef835be284715573d9f34c23fc9d4607de80341d6cd153e87089c777c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "baml-integration", "description": "Generic BAML patterns for type-safe LLM prompting. Covers schema design, DTO generation, client wrappers, and cross-language codegen. Framework-agnostic.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/consiliency/baml-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install baml-integration"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "baml-integration. Generic BAML patterns for type-safe LLM prompting. Covers schema design, DTO generation, client wrappers, and cross-language codegen. Framework-agnostic. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "c0f2b82f194b9470f4d5cbb8b43865ee24c8d61ff6d5eca422449269eb1578ec", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "browser-discovery", "description": "Browser automation for documentation discovery. Use when curl fails on JS-rendered sites, when detecting available browser tools, or when configuring browser-based documentation collection.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/consiliency/browser-discovery/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install browser-discovery"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "browser-discovery. Browser automation for documentation discovery. Use when curl fails on JS-rendered sites, when detecting available browser tools, or when configuring browser-based documentation collection. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "a3fcd75d314afe0726b573c5968a9cf4b1824a6ee6173e3ad64abdc759aa7fc7", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "c4-modeling", "description": "C4 architectural modeling for documenting software architecture. Use when creating architecture diagrams, planning new systems, communicating with stakeholders, or conducting architecture reviews.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/consiliency/c4-modeling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install c4-modeling"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "c4-modeling. C4 architectural modeling for documenting software architecture. Use when creating architecture diagrams, planning new systems, communicating with stakeholders, or conducting architecture reviews. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -17181,7 +21716,6 @@ {"id": "cf1e1ea0a17e129b92275a69d41ffd02c71c6bfd03d83dc7e52adb51f0b8caf7", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "dispatching-parallel-agents", "description": "Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cycleaddict/dispatching-parallel-agents/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dispatching-parallel-agents"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "dispatching-parallel-agents. Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "a5119f35b67a3b290be4485b50770c34a22daf05099d1d9db50059e9d377cd92", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "executing-plans", "description": "Use when you have a written implementation plan to execute in a separate session with review checkpoints", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cycleaddict/executing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install executing-plans"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "executing-plans. Use when you have a written implementation plan to execute in a separate session with review checkpoints Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "82274aac0d75438605439c9db20e4c3673136ce0b8f1250daba9429e3c90b542", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "finishing-a-development-branch", "description": "Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cycleaddict/finishing-a-development-branch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install finishing-a-development-branch"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "finishing-a-development-branch. Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "328ceb6f9238dfbf215ba51cc10595ae802bc71897a52fb912ec0bd59499501f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "parametric-scribe", "description": "Enables \"Time Machine\" coding. Records tasks as a Recipe and allows intelligent replay/modification of history.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cycleaddict/parametric-scribe/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install parametric-scribe"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "parametric-scribe. Enables \"Time Machine\" coding. Records tasks as a Recipe and allows intelligent replay/modification of history. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "faf3a71bb25c0848f5f30bb7d16c5111a1e8dafe68741ba5b605751ebc4816e2", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "receiving-code-review", "description": "Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cycleaddict/receiving-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install receiving-code-review"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "receiving-code-review. Use when receiving code review feedback, before implementing suggestions, especially if feedback seems unclear or technically questionable - requires technical rigor and verification, not performative agreement or blind implementation Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f450d6bd72fb6f245181cdd4284740bfbfb0c46fe8b3e17eb35f1256763b1c91", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "requesting-code-review", "description": "Use when completing tasks, implementing major features, or before merging to verify work meets requirements", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cycleaddict/requesting-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install requesting-code-review"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "requesting-code-review. Use when completing tasks, implementing major features, or before merging to verify work meets requirements Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "cf58134070716cfbf6608dd2a82038393ce8c2507357005c2a61cf8c2b7dbc56", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "subagent-driven-development", "description": "Use when executing implementation plans with independent tasks in the current session", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/cycleaddict/subagent-driven-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install subagent-driven-development"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "subagent-driven-development. Use when executing implementation plans with independent tasks in the current session Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -17267,7 +21801,6 @@ {"id": "ca175221f8a3c2849aac2b81423bd73d64fdfc02616294ecfd32c666936e7991", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "star-story-extraction", "description": "Auto-invoke after task completion to extract interview-ready STAR stories from completed work.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/danielpodolsky/star-story-extraction/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install star-story-extraction"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "star-story-extraction. Auto-invoke after task completion to extract interview-ready STAR stories from completed work. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "51b5a7981054e785ac2d9f0561ed3ee2ee8817e4de7854d2654ecb399edbcca9", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "testing-fundamentals", "description": "Auto-invoke when reviewing test files or discussing testing strategy. Enforces testing pyramid, strategic coverage, and stack-appropriate frameworks.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/danielpodolsky/testing-fundamentals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-fundamentals"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "testing-fundamentals. Auto-invoke when reviewing test files or discussing testing strategy. Enforces testing pyramid, strategic coverage, and stack-appropriate frameworks. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f79fb03443b14684813dc8f4dd59234a1f9c50712c008b3398175fe5e29d936d", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "testing-gate", "description": "Gate 6 - Verify tests exist and cover critical paths. Issues result in WARNINGS (encourages tests, doesn't block).", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/danielpodolsky/testing-gate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-gate"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "testing-gate. Gate 6 - Verify tests exist and cover critical paths. Issues result in WARNINGS (encourages tests, doesn't block). Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "17dd6e6387742f257f71a84028d1227f252e142bbf3a5518f7cbb1649075e136", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "raindrop-io", "description": "Manage Raindrop.io bookmarks with AI assistance. Save and organize bookmarks, search your collection, manage reading lists, and organize research materials. Use when working with bookmarks, web research, reading lists, or when user mentions Raindrop.io.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/dansega1/raindrop-io/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install raindrop-io"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "raindrop-io. Manage Raindrop.io bookmarks with AI assistance. Save and organize bookmarks, search your collection, manage reading lists, and organize research materials. Use when working with bookmarks, web research, reading lists, or when user mentions Raindrop.io. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "874fc98290a972d5cdea9d8284ad7ad20bc815c12ee850f4b7c38b5934f39c4b", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "documentation", "description": "Enforces documentation standards and structure for this project. This skill should be used when creating, updating, or organizing documentation to ensure compliance with project rules, prevent redundancy, and maintain screen-based organization. Activates when user asks to create/update docs or when documentation needs to be generated.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/daothihuong2111/documentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install documentation"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "documentation. Enforces documentation standards and structure for this project. This skill should be used when creating, updating, or organizing documentation to ensure compliance with project rules, prevent redundancy, and maintain screen-based organization. Activates when user asks to create/update docs or when documentation needs to be generated. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "8dfc4fcf8e311f7b85104a7795882e49b49af294021e99651816d231a64e61a4", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "skill-creator", "description": "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.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/daothihuong2111/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "skill-creator. 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. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "9433aba64abe7c5c2ed15c51b2f6039df35bd91800d224f83eff35b0037bd152", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "darkit-gin", "description": "\u57fa\u4e8e gin-gonic/gin \u7684\u4f01\u4e1a\u7ea7 Web \u6846\u67b6\u589e\u5f3a\u7248\uff0c\u63d0\u4f9b\u5f00\u7bb1\u5373\u7528\u7684 JWT \u8ba4\u8bc1\u3001SSE \u5b9e\u65f6\u901a\u4fe1\u3001\u7f13\u5b58\u7ba1\u7406\u3001OpenAPI \u6587\u6863\u751f\u6210\u7b49\u4f01\u4e1a\u7ea7\u529f\u80fd\u3002\u6db5\u76d6\u9009\u9879\u5f0f\u8def\u7531\u914d\u7f6e\u3001\u7edf\u4e00\u54cd\u5e94\u683c\u5f0f\u3001\u4e2d\u95f4\u4ef6\u7ba1\u7406\u3001\u5b89\u5168\u52a0\u56fa\u3001\u6027\u80fd\u4f18\u5316\u7b49\u5b8c\u6574\u5f00\u53d1\u80fd\u529b\u3002", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/darkit/darkit-gin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install darkit-gin"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "darkit-gin. \u57fa\u4e8e gin-gonic/gin \u7684\u4f01\u4e1a\u7ea7 Web \u6846\u67b6\u589e\u5f3a\u7248\uff0c\u63d0\u4f9b\u5f00\u7bb1\u5373\u7528\u7684 JWT \u8ba4\u8bc1\u3001SSE \u5b9e\u65f6\u901a\u4fe1\u3001\u7f13\u5b58\u7ba1\u7406\u3001OpenAPI \u6587\u6863\u751f\u6210\u7b49\u4f01\u4e1a\u7ea7\u529f\u80fd\u3002\u6db5\u76d6\u9009\u9879\u5f0f\u8def\u7531\u914d\u7f6e\u3001\u7edf\u4e00\u54cd\u5e94\u683c\u5f0f\u3001\u4e2d\u95f4\u4ef6\u7ba1\u7406\u3001\u5b89\u5168\u52a0\u56fa\u3001\u6027\u80fd\u4f18\u5316\u7b49\u5b8c\u6574\u5f00\u53d1\u80fd\u529b\u3002 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -17358,7 +21891,6 @@ {"id": "fd3197ee55e43db119eddaf28d95aa1c39d739910e6d08be3e2881a70ee3ee04", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "deepchem", "description": "Molecular machine learning toolkit. Property prediction (ADMET, toxicity), GNNs (GCN, MPNN), MoleculeNet benchmarks, pretrained models, featurization, for drug discovery ML.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/deepchem/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deepchem"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "deepchem. Molecular machine learning toolkit. Property prediction (ADMET, toxicity), GNNs (GCN, MPNN), MoleculeNet benchmarks, pretrained models, featurization, for drug discovery ML. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "df7714ac313d20cd7e98ed56d0d0d317c8c8e57029ecef412d7a97f1a6943bba", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "deeptools", "description": "NGS analysis toolkit. BAM to bigWig conversion, QC (correlation, PCA, fingerprints), heatmaps/profiles (TSS, peaks), for ChIP-seq, RNA-seq, ATAC-seq visualization.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/deeptools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deeptools"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "deeptools. NGS analysis toolkit. BAM to bigWig conversion, QC (correlation, PCA, fingerprints), heatmaps/profiles (TSS, peaks), for ChIP-seq, RNA-seq, ATAC-seq visualization. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "85bf3560de277274a8c9e3596d188afa1dad9a42d6173ad1fe585bff46ef1721", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "denario", "description": "Multiagent AI system for scientific research assistance that automates research workflows from data analysis to publication. This skill should be used when generating research ideas from datasets, developing research methodologies, executing computational experiments, performing literature searches, or generating publication-ready papers in LaTeX format. Supports end-to-end research pipelines with customizable agent orchestration.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/denario/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install denario"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "denario. Multiagent AI system for scientific research assistance that automates research workflows from data analysis to publication. This skill should be used when generating research ideas from datasets, developing research methodologies, executing computational experiments, performing literature searches, or generating publication-ready papers in LaTeX format. Supports end-to-end research pipelines with customizable agent orchestration. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "28839b6935f33165e6d822a2d7c999146b98c860df92ecc133e703d9e5b67a96", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "deslop", "description": "Remove AI-generated code slop from a branch. Use when cleaning up AI-generated code, removing unnecessary comments, defensive checks, or type casts. Checks diff against main and fixes style inconsistencies.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/deslop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deslop"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "deslop. Remove AI-generated code slop from a branch. Use when cleaning up AI-generated code, removing unnecessary comments, defensive checks, or type casts. Checks diff against main and fixes style inconsistencies. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "dcf283a948e3b62db1416d84a22da16cf37c483700e1bae5afbb4b63cf28a99b", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "developer-growth-analysis", "description": "Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a personalized growth report to your Slack DMs.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/developer-growth-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install developer-growth-analysis"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "developer-growth-analysis. Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a personalized growth report to your Slack DMs. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "bf8d2893300fb226e1f3187c685cddcfcfd9dbc07134b908f45f2879f774be61", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "devops-iac-engineer", "description": "Implements infrastructure as code using Terraform, Kubernetes, and cloud platforms. Designs scalable architectures, CI/CD pipelines, and observability solutions. Provides security-first DevOps practices and site reliability engineering guidance.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/devops-iac-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install devops-iac-engineer"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "devops-iac-engineer. Implements infrastructure as code using Terraform, Kubernetes, and cloud platforms. Designs scalable architectures, CI/CD pipelines, and observability solutions. Provides security-first DevOps practices and site reliability engineering guidance. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "1d61c26a106564e251c11ad850ac29834af4a6377d12866dc4e9878c46efeb2c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "diffdock", "description": "Diffusion-based molecular docking. Predict protein-ligand binding poses from PDB/SMILES, confidence scores, virtual screening, for structure-based drug design. Not for affinity prediction.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/diffdock/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install diffdock"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "diffdock. Diffusion-based molecular docking. Predict protein-ligand binding poses from PDB/SMILES, confidence scores, virtual screening, for structure-based drug design. Not for affinity prediction. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -17560,7 +22092,6 @@ {"id": "af0bbde642770796e0f3909a6c86bbf3e93e332d4c0b73a23064942fedc1a334", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "zapier-workflows", "description": "Manage and trigger pre-built Zapier workflows and MCP tool orchestration. Use when user mentions workflows, Zaps, automations, daily digest, research, search, lead tracking, expenses, or asks to \"run\" any process. Also handles Perplexity-based research and Google Sheets data tracking.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/zapier-workflows/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zapier-workflows"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "zapier-workflows. Manage and trigger pre-built Zapier workflows and MCP tool orchestration. Use when user mentions workflows, Zaps, automations, daily digest, research, search, lead tracking, expenses, or asks to \"run\" any process. Also handles Perplexity-based research and Google Sheets data tracking. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "1e7c443821cab43c18d152e46d8c8fe66f3d4869cd667b839057e05ea096a6db", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "zarr-python", "description": "Chunked N-D arrays for cloud storage. Compressed arrays, parallel I/O, S3/GCS integration, NumPy/Dask/Xarray compatible, for large-scale scientific computing pipelines.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/zarr-python/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zarr-python"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "zarr-python. Chunked N-D arrays for cloud storage. Compressed arrays, parallel I/O, S3/GCS integration, NumPy/Dask/Xarray compatible, for large-scale scientific computing pipelines. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "9f4a288861d596f54f71c8eec474647972046512fc61d306c89521e928f06ebb", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "zinc-database", "description": "Access ZINC (230M+ purchasable compounds). Search by ZINC ID/SMILES, similarity searches, 3D-ready structures for docking, analog discovery, for virtual screening and drug discovery.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/davila7/zinc-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zinc-database"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "zinc-database. Access ZINC (230M+ purchasable compounds). Search by ZINC ID/SMILES, similarity searches, 3D-ready structures for docking, analog discovery, for virtual screening and drug discovery. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "53c1b1d93d24c3b57cc69e50bf88eba297e4a2a30b92b2dd391fb2337dcff85c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "ai-tools", "description": "Reference for all AI tools available in DBX Studio's AI chat system. Use when adding, modifying, or debugging AI tool definitions, tool execution, or provider integrations.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/dbxstudio/ai-tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-tools"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "ai-tools. Reference for all AI tools available in DBX Studio's AI chat system. Use when adding, modifying, or debugging AI tool definitions, tool execution, or provider integrations. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "d834fdf7b3a9e80b465457af61249fe23ee66e6551d19a1000ebecc870155ebd", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "data-exploration-tool", "description": "Systematic database and table profiling for DBX Studio. Use when a user wants to understand their data, explore schema structure, or profile a dataset.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/dbxstudio/data-exploration-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install data-exploration-tool"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "data-exploration-tool. Systematic database and table profiling for DBX Studio. Use when a user wants to understand their data, explore schema structure, or profile a dataset. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "eaa4a75084134db16c590d7367d94f2a4ec0bc7c5baae2e64e13d6f4a1db4ba0", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "data-exploration", "description": "Systematic database and table profiling for DBX Studio. Use when a user wants to understand their data, explore schema structure, or profile a dataset.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/dbxstudio/data-exploration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install data-exploration"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "data-exploration. Systematic database and table profiling for DBX Studio. Use when a user wants to understand their data, explore schema structure, or profile a dataset. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "84b260a075b5f06b7c334b79e881174d23e6fb0fb8ed5280a40c80eef679608f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "data-visualization-tool", "description": "Chart and visualization generation for DBX Studio. Use when a user wants to visualize data \u2014 bar charts, line graphs, pie charts, scatter plots, etc.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/dbxstudio/data-visualization-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install data-visualization-tool"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "data-visualization-tool. Chart and visualization generation for DBX Studio. Use when a user wants to visualize data \u2014 bar charts, line graphs, pie charts, scatter plots, etc. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -17868,7 +22399,6 @@ {"id": "cf1eefe47426cd638a104cdb85913a290502b96baa238cfe8a942db15207791f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "using-git-worktrees", "description": "Create isolated git worktrees with smart directory selection and safety verification. Use this when starting feature work that needs isolation, parallel development, or safe experimentation.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/doyajin174/using-git-worktrees/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install using-git-worktrees"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "using-git-worktrees. Create isolated git worktrees with smart directory selection and safety verification. Use this when starting feature work that needs isolation, parallel development, or safe experimentation. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f0722577fd2ea9134cc97a9eef791924616b546bd28456e0a0fb7cdea40508e9", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "virtual-environment", "description": "Check and create virtual environments for projects that need them. Use when starting Python/Node projects, or when dependency isolation is needed. Activates for Python, Node.js, and similar ecosystems.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/doyajin174/virtual-environment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install virtual-environment"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "virtual-environment. Check and create virtual environments for projects that need them. Use when starting Python/Node projects, or when dependency isolation is needed. Activates for Python, Node.js, and similar ecosystems. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "661e5b2f4c86ba7ab8251ae705f54e8cbe481d0939b003f7aa2e925ac465e93a", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "youtube-transcript", "description": "Download and process YouTube video transcripts using yt-dlp. Use this when extracting subtitles, creating summaries from videos, or processing video content.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/doyajin174/youtube-transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-transcript"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "youtube-transcript. Download and process YouTube video transcripts using yt-dlp. Use this when extracting subtitles, creating summaries from videos, or processing video content. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "d5968ea99be3b4a0c745ca244d25de60156fde50e73d7199b043870ff2a486b6", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "htmx-skill", "description": "Documentation for the htmx JavaScript library (attributes, events, headers, API, extensions, examples, migration guides, server examples). Use when you need accurate htmx syntax/behavior or to locate the right reference page for an htmx question.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/drzoot/htmx-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install htmx-skill"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "htmx-skill. Documentation for the htmx JavaScript library (attributes, events, headers, API, extensions, examples, migration guides, server examples). Use when you need accurate htmx syntax/behavior or to locate the right reference page for an htmx question. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "a65d5ec5dfcdf2164038e2933ed32ec2273d88377cd51495d352d7888acba3d2", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "htmx-skill", "description": "Documentation for the htmx JavaScript library (attributes, events, headers, API, extensions, examples, migration guides, server examples). Use when you need accurate htmx syntax/behavior or to locate the right reference page for an htmx question.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/drzoot/htmx-skill/_pre_SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install htmx-skill"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "htmx-skill. Documentation for the htmx JavaScript library (attributes, events, headers, API, extensions, examples, migration guides, server examples). Use when you need accurate htmx syntax/behavior or to locate the right reference page for an htmx question. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "4684a7268ae24954e0bc65c64736b90c0bff01ec552f61b4208adc6abc3381e2", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "ai-runtime-memory", "description": "AI Runtime\u5206\u5c42\u8bb0\u5fc6\u7cfb\u7edf\uff0c\u652f\u6301SQL\u98ce\u683c\u7684\u4e8b\u4ef6\u67e5\u8be2\u3001\u65f6\u95f4\u7ebf\u7ba1\u7406\uff0c\u4ee5\u53ca\u8bb0\u5fc6\u7684\u667a\u80fd\u56fa\u5316\u548c\u68c0\u7d22\uff0c\u7528\u4e8e\u9879\u76ee\u5386\u53f2\u8ffd\u8e2a\u548c\u7ecf\u9a8c\u4f20\u627f", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/dwsy/ai-runtime-memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-runtime-memory"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "ai-runtime-memory. AI Runtime\u5206\u5c42\u8bb0\u5fc6\u7cfb\u7edf\uff0c\u652f\u6301SQL\u98ce\u683c\u7684\u4e8b\u4ef6\u67e5\u8be2\u3001\u65f6\u95f4\u7ebf\u7ba1\u7406\uff0c\u4ee5\u53ca\u8bb0\u5fc6\u7684\u667a\u80fd\u56fa\u5316\u548c\u68c0\u7d22\uff0c\u7528\u4e8e\u9879\u76ee\u5386\u53f2\u8ffd\u8e2a\u548c\u7ecf\u9a8c\u4f20\u627f Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "ab4b20da561dfa3899fbf6b5ca5189056d0ab3e854bf72968fb962225dea09a3", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "external-tools-skill", "description": "\u5916\u90e8CLI\u5de5\u5177\u88c5\u5907\u7cfb\u7edf\uff0c\u652f\u630110+\u4e2a\u6210\u719fCLI\u5de5\u5177\u7684\u6df1\u5ea6\u6574\u5408\uff0c\u5305\u62ecfzf\u3001ripgrep\u3001jq\u7b49\uff0c\u63d0\u4f9b\u6a21\u7cca\u641c\u7d22\u3001\u4ee3\u7801\u67e5\u627e\u3001JSON\u5904\u7406\u7b49\u9ad8\u7ea7\u529f\u80fd", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/dwsy/ai-runtime-toolkit/EXTERNAL-TOOLS-SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install external-tools-skill"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "external-tools-skill. \u5916\u90e8CLI\u5de5\u5177\u88c5\u5907\u7cfb\u7edf\uff0c\u652f\u630110+\u4e2a\u6210\u719fCLI\u5de5\u5177\u7684\u6df1\u5ea6\u6574\u5408\uff0c\u5305\u62ecfzf\u3001ripgrep\u3001jq\u7b49\uff0c\u63d0\u4f9b\u6a21\u7cca\u641c\u7d22\u3001\u4ee3\u7801\u67e5\u627e\u3001JSON\u5904\u7406\u7b49\u9ad8\u7ea7\u529f\u80fd Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -18080,7 +22610,6 @@ {"id": "3ecb36f3f342b4d8801558e3c78ba767f43346e6231b7da835acdcefb87b2263", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "deslop", "description": "Remove AI-generated code slop from a branch. Use when cleaning up AI-generated code, removing unnecessary comments, defensive checks, or type casts. Checks diff against main and fixes style inconsistencies.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/getsentry/deslop/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deslop"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "deslop. Remove AI-generated code slop from a branch. Use when cleaning up AI-generated code, removing unnecessary comments, defensive checks, or type casts. Checks diff against main and fixes style inconsistencies. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "e3a7758f7393b822c6b77bdd195d1afccba139ee334c994cd426048d0a54fb76", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "find-bugs", "description": "Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/getsentry/find-bugs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install find-bugs"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "find-bugs. Find bugs, security vulnerabilities, and code quality issues in local branch changes. Use when asked to review changes, find bugs, security review, or audit code on the current branch. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "2dfd12eb87724471423e71708e5a4d67408876cd1c578fce1ab7933dfa7496e1", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "iterate-pr", "description": "Iterate on a PR until CI passes. Use when you need to fix CI failures, address review feedback, or continuously push fixes until all checks are green. Automates the feedback-fix-push-wait cycle.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/getsentry/iterate-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install iterate-pr"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "iterate-pr. Iterate on a PR until CI passes. Use when you need to fix CI failures, address review feedback, or continuously push fixes until all checks are green. Automates the feedback-fix-push-wait cycle. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "b4107684fb9780904722a6b44b5d29208119e1f7987657415458b0b54a397523", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "gh-cli", "description": "GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/github/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "gh-cli. GitHub CLI (gh) comprehensive reference for repositories, issues, pull requests, Actions, projects, releases, gists, codespaces, organizations, extensions, and all GitHub operations from the command line. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "47996f7550ffd27fd0b6af47a39279ec306665fb20a765f8739c234202b9648f", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "git-commit", "description": "Execute git commit with conventional commit message analysis, intelligent staging, and message generation. Use when user asks to commit changes, create a git commit, or mentions \"/commit\". Supports: (1) Auto-detecting type and scope from changes, (2) Generating conventional commit messages from diff, (3) Interactive commit with optional type/scope/description overrides, (4) Intelligent file staging for logical grouping", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/github/git-commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-commit"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "git-commit. Execute git commit with conventional commit message analysis, intelligent staging, and message generation. Use when user asks to commit changes, create a git commit, or mentions \"/commit\". Supports: (1) Auto-detecting type and scope from changes, (2) Generating conventional commit messages from diff, (3) Interactive commit with optional type/scope/description overrides, (4) Intelligent file staging for logical grouping Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "1311bac8adbeaf5f5cbda2c75a036b24da77788f0c7136bd23421c4f6de976fa", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "shadcn-ui", "description": "Complete shadcn/ui component library guide including installation, configuration, and implementation of accessible React components. Use when setting up shadcn/ui, installing components, building forms with React Hook Form and Zod, customizing themes with Tailwind CSS, or implementing UI patterns like buttons, dialogs, dropdowns, tables, and complex form layouts.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/giuseppe-trisciuoglio/shadcn-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install shadcn-ui"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "shadcn-ui. Complete shadcn/ui component library guide including installation, configuration, and implementation of accessible React components. Use when setting up shadcn/ui, installing components, building forms with React Hook Form and Zod, customizing themes with Tailwind CSS, or implementing UI patterns like buttons, dialogs, dropdowns, tables, and complex form layouts. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "6e8b783aaeb413f297bd688305a6f3e598bb031df17711d622cd3f8dee0a9ee5", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "code-reviewer", "description": "Use this skill to review code. It supports both local changes (staged or working tree) and remote Pull Requests (by ID or URL). It focuses on correctness, maintainability, and adherence to project standards.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/google-gemini/code-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-reviewer"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "code-reviewer. Use this skill to review code. It supports both local changes (staged or working tree) and remote Pull Requests (by ID or URL). It focuses on correctness, maintainability, and adherence to project standards. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -18384,7 +22913,6 @@ {"id": "61845ff37f5159bc20910b4f11e2a91cddb95e767276fe65b078274be92c45be", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "zinc-database", "description": "Access ZINC (230M+ purchasable compounds). Search by ZINC ID/SMILES, similarity searches, 3D-ready structures for docking, analog discovery, for virtual screening and drug discovery.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/k-dense-ai/zinc-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zinc-database"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "zinc-database. Access ZINC (230M+ purchasable compounds). Search by ZINC ID/SMILES, similarity searches, 3D-ready structures for docking, analog discovery, for virtual screening and drug discovery. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "f71487d6b0dbfdd5342fc21115f9a6fcc9f427cc4cae9dbc0521e80f48bbdb72", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "x-collect", "description": "Collect and research materials for X (Twitter) content creation using multi-round web search strategy. Use when user wants to gather trending topics, research subjects for X posts, or mentions \"collect materials\", \"research topic\", \"find content for X\", \"x-collect\". Performs 4-round deep research mimicking human research workflow.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/kangarooking/x-collect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install x-collect"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "x-collect. Collect and research materials for X (Twitter) content creation using multi-round web search strategy. Use when user wants to gather trending topics, research subjects for X posts, or mentions \"collect materials\", \"research topic\", \"find content for X\", \"x-collect\". Performs 4-round deep research mimicking human research workflow. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "26cf7539515469799985552b263b1d2901c7ac6e14264ef3d6501c1ea74a888a", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "x-create", "description": "Create viral X (Twitter) posts including short tweets, threads, and replies. Use when user wants to write X content, create posts, or mentions \"create tweet\", \"write thread\", \"x-create\", \"\u5199\u63a8\u6587\", \"\u521b\u4f5c\u63a8\u6587\". Supports 5 post styles with customizable templates. First-time users go through onboarding to set up profile.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/kangarooking/x-create/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install x-create"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "x-create. Create viral X (Twitter) posts including short tweets, threads, and replies. Use when user wants to write X content, create posts, or mentions \"create tweet\", \"write thread\", \"x-create\", \"\u5199\u63a8\u6587\", \"\u521b\u4f5c\u63a8\u6587\". Supports 5 post styles with customizable templates. First-time users go through onboarding to set up profile. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "63f7e005cbabd2a6d10b10f77def554f9ded5089e054a958e7f7bba445055c2e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "x-filter", "description": "Score and filter topics for X content creation using weighted criteria. Use when user wants to evaluate collected materials, filter topics by score, or mentions \"filter topics\", \"score materials\", \"x-filter\", \"\u9009\u9898\u7b5b\u9009\". Applies 10-point scoring system with customizable weights.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/kangarooking/x-filter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install x-filter"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "x-filter. Score and filter topics for X content creation using weighted criteria. Use when user wants to evaluate collected materials, filter topics by score, or mentions \"filter topics\", \"score materials\", \"x-filter\", \"\u9009\u9898\u7b5b\u9009\". Applies 10-point scoring system with customizable weights. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "67bf9f922a0f14ea928908043d2d68b6bd7618f1a620dd0c81b48c70a98bd002", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "x-publish", "description": "Publish tweets and threads to X (Twitter) draft using browser automation. Use when user wants to publish content to X, save to drafts, or mentions \"publish to X\", \"post tweet\", \"x-publish\", \"\u53d1\u5e03\u63a8\u6587\". Supports short tweets and threads. NEVER auto-publish, always saves to draft.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/kangarooking/x-publish/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install x-publish"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "x-publish. Publish tweets and threads to X (Twitter) draft using browser automation. Use when user wants to publish content to X, save to drafts, or mentions \"publish to X\", \"post tweet\", \"x-publish\", \"\u53d1\u5e03\u63a8\u6587\". Supports short tweets and threads. NEVER auto-publish, always saves to draft. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "4861de313119e42ccc151f36b84769b95c6146944704cf8e8f657c8168e5e696", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "picture-book-wizard", "description": "A specialized skill for generating high-quality, consistent children's bilingual picture books using 'banana nano'. Supports 18 visual styles across 4 categories (7 core children's book styles, 5 atmospheric styles, 5 Chinese cultural styles, 1 specialized), 12 scenes (5 nature + 7 cultural), age-driven dynamic content system (ages 3-12), and expanded learning domains (science, math, history, psychology, etc.). Use when the user wants to create picture book stories, prompts, or learning materials.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/kart-io/picture-book-wizard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install picture-book-wizard"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "picture-book-wizard. A specialized skill for generating high-quality, consistent children's bilingual picture books using 'banana nano'. Supports 18 visual styles across 4 categories (7 core children's book styles, 5 atmospheric styles, 5 Chinese cultural styles, 1 specialized), 12 scenes (5 nature + 7 cultural), age-driven dynamic content system (ages 3-12), and expanded learning domains (science, math, history, psychology, etc.). Use when the user wants to create picture book stories, prompts, or learning materials. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "ce0c14adc65cf7231fc9cd9e9810b2f17a051a68a8406304c540045336a90b0e", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "defuddle", "description": "Extract clean markdown content from web pages using Defuddle CLI, removing clutter and navigation to save tokens. Use instead of WebFetch when the user provides a URL to read or analyze, for online documentation, articles, blog posts, or any standard web page.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/kepano/defuddle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install defuddle"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "defuddle. Extract clean markdown content from web pages using Defuddle CLI, removing clutter and navigation to save tokens. Use instead of WebFetch when the user provides a URL to read or analyze, for online documentation, articles, blog posts, or any standard web page. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -19192,7 +23720,6 @@ {"id": "09da9c147408d4e04d8dcd5fc141b8f5570f9c4ad8e0a418a761a2c6dc6aeb68", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "nodejs-backend-patterns", "description": "Build production-ready Node.js backend services with Express/Fastify, implementing middleware patterns, error handling, authentication, database integration, and API design best practices. Use when creating Node.js servers, REST APIs, GraphQL backends, or microservices architectures.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/sickn33/nodejs-backend-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nodejs-backend-patterns"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "nodejs-backend-patterns. Build production-ready Node.js backend services with Express/Fastify, implementing middleware patterns, error handling, authentication, database integration, and API design best practices. Use when creating Node.js servers, REST APIs, GraphQL backends, or microservices architectures. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "0022cf7a7ada8bb802ba2ba908b26f04f140c8e8baf039ac26040b66f93ce412", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "nodejs-best-practices", "description": "Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/sickn33/nodejs-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nodejs-best-practices"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "nodejs-best-practices. Node.js development principles and decision-making. Framework selection, async patterns, security, and architecture. Teaches thinking, not copying. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "74b01b52ccbdfd7d9e1869989b71c50903747010eea1668a1fe68a8e7ccbb52b", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "nosql-expert", "description": "Expert guidance for distributed NoSQL databases (Cassandra, DynamoDB). Focuses on mental models, query-first modeling, single-table design, and avoiding hot partitions in high-scale systems.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/sickn33/nosql-expert/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nosql-expert"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "nosql-expert. Expert guidance for distributed NoSQL databases (Cassandra, DynamoDB). Focuses on mental models, query-first modeling, single-table design, and avoiding hot partitions in high-scale systems. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "16d7da77a4ca42b5ba90b1e222d7481733f1033bdee23def2e7a380e76a35399", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "notebooklm", "description": "Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/sickn33/notebooklm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notebooklm"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "notebooklm. Use this skill to query your Google NotebookLM notebooks directly from Claude Code for source-grounded, citation-backed answers from Gemini. Browser automation, library management, persistent auth. Drastically reduced hallucinations through document-only responses. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "88083ddc8f5a54a56ffda8e83e0dd36ed964e82e4420ea8e1f7a22297433e1f0", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "notion-automation", "description": "Automate Notion tasks via Rube MCP (Composio): pages, databases, blocks, comments, users. Always search tools first for current schemas.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/sickn33/notion-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-automation"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "notion-automation. Automate Notion tasks via Rube MCP (Composio): pages, databases, blocks, comments, users. Always search tools first for current schemas. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "ba7303f5151f22946b9e302d3a7045f6dc49911b7255c06f9ed55e3d505f538b", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "notion-template-business", "description": "Expert in building and selling Notion templates as a business - not just making templates, but building a sustainable digital product business. Covers template design, pricing, marketplaces, marketing, and scaling to real revenue. Use when: notion template, sell templates, digital product, notion business, gumroad.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/sickn33/notion-template-business/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-template-business"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "notion-template-business. Expert in building and selling Notion templates as a business - not just making templates, but building a sustainable digital product business. Covers template design, pricing, marketplaces, marketing, and scaling to real revenue. Use when: notion template, sell templates, digital product, notion business, gumroad. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "2d93d8d5141ea672fcc14c1b55166988a63b4978663986e6d916bc310a2fc283", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "nx-workspace-patterns", "description": "Configure and optimize Nx monorepo workspaces. Use when setting up Nx, configuring project boundaries, optimizing build caching, or implementing affected commands.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/sickn33/nx-workspace-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nx-workspace-patterns"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "nx-workspace-patterns. Configure and optimize Nx monorepo workspaces. Use when setting up Nx, configuring project boundaries, optimizing build caching, or implementing affected commands. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -19518,7 +24045,6 @@ {"id": "1b9650f1a8b8b2d221c53efc90bf816997cb31ffa8edc898644d6ce67e2f4a2a", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "slack-gif-creator", "description": "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.\"", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/slack-gif-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install slack-gif-creator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "slack-gif-creator. 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.\" Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "eb85c9849d03a591272b3dbbbe0f6cb088966833266a46ab1597af974df8587c", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "sleek-design-mobile-apps", "description": "Use when the user wants to design a mobile app, create screens, build UI, or interact with their Sleek projects. Covers high-level requests (\"design an app that does X\") and specific ones (\"list my projects\", \"create a new project\", \"screenshot that screen\").", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/sleekdotdesign/sleek-design-mobile-apps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sleek-design-mobile-apps"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "sleek-design-mobile-apps. Use when the user wants to design a mobile app, create screens, build UI, or interact with their Sleek projects. Covers high-level requests (\"design an app that does X\") and specific ones (\"list my projects\", \"create a new project\", \"screenshot that screen\"). Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "383fff4017d638423fb0199e7f7557319edf2c9c331a004dc06e3961a3930074", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "crawl4ai", "description": "This skill should be used when users need to scrape websites, extract structured data, handle JavaScript-heavy pages, crawl multiple URLs, or build automated web data pipelines. Includes optimized extraction patterns with schema generation for efficient, LLM-free extraction.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/smallnest/crawl4ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install crawl4ai"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "crawl4ai. This skill should be used when users need to scrape websites, extract structured data, handle JavaScript-heavy pages, crawl multiple URLs, or build automated web data pipelines. Includes optimized extraction patterns with schema generation for efficient, LLM-free extraction. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} -{"id": "e2ca2565c06d2fa7817219fc2e233c7659014a79b5ac06176b74308fb8260791", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "patchright-skill", "description": "Patchright-based browser automation with bot detection bypass. Use when Claude needs to interact with local web applications, test localhost/dev servers, take screenshots, or perform UI interactions on private networks. Ideal for QA automation, frontend debugging, E2E testing, and pre-deployment verification on local development environments.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/smallnest/patchright-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install patchright-skill"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "patchright-skill. Patchright-based browser automation with bot detection bypass. Use when Claude needs to interact with local web applications, test localhost/dev servers, take screenshots, or perform UI interactions on private networks. Ideal for QA automation, frontend debugging, E2E testing, and pre-deployment verification on local development environments. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "bfc646ba51514de779f7a5644f24e92c7fab63e0199c650d8c449df6084a8d28", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "game-test-case-generator", "description": "\u57fa\u4e8e\u9700\u6c42\u6587\u6863\uff08xls/csv\uff09\u751f\u6210\u4e13\u4e1a\u6e38\u620f\u6d4b\u8bd5\u7528\u4f8b\uff0c\u652f\u6301\u5b8c\u6574\u7528\u4f8b\u548c\u5feb\u901f\u6d4b\u8bd5\u70b9\u4e24\u79cd\u6a21\u5f0f\u3002\u5f53\u7528\u6237\u63d0\u5230\"\u6e38\u620f\u6d4b\u8bd5\"\u3001\"\u6d4b\u8bd5\u7528\u4f8b\u751f\u6210\"\u3001\"\u9700\u6c42\u8f6c\u6d4b\u8bd5\u7528\u4f8b\"\u3001\u4e0a\u4f20\u9700\u6c42\u6587\u6863\u6216\u539f\u578b\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/snake-mustang/game-test-case-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install game-test-case-generator"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "game-test-case-generator. \u57fa\u4e8e\u9700\u6c42\u6587\u6863\uff08xls/csv\uff09\u751f\u6210\u4e13\u4e1a\u6e38\u620f\u6d4b\u8bd5\u7528\u4f8b\uff0c\u652f\u6301\u5b8c\u6574\u7528\u4f8b\u548c\u5feb\u901f\u6d4b\u8bd5\u70b9\u4e24\u79cd\u6a21\u5f0f\u3002\u5f53\u7528\u6237\u63d0\u5230\"\u6e38\u620f\u6d4b\u8bd5\"\u3001\"\u6d4b\u8bd5\u7528\u4f8b\u751f\u6210\"\u3001\"\u9700\u6c42\u8f6c\u6d4b\u8bd5\u7528\u4f8b\"\u3001\u4e0a\u4f20\u9700\u6c42\u6587\u6863\u6216\u539f\u578b\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002 Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "38b5e1d123b2c63a283d0d813b7e9014750d425ad672a1d277a971f43a2b65e1", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "agent-md-refactor", "description": "Refactor bloated AGENTS.md, CLAUDE.md, or similar agent instruction files to follow progressive disclosure principles. Splits monolithic files into organized, linked documentation.", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/softaworks/agent-md-refactor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-md-refactor"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "agent-md-refactor. Refactor bloated AGENTS.md, CLAUDE.md, or similar agent instruction files to follow progressive disclosure principles. Splits monolithic files into organized, linked documentation. Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} {"id": "bea374ae7829f1da1a0703cb1d0f57d791c3a3d5bd6638bae266b7ab9a61ec0d", "repo_url": "https://github.com/aiskillstore/marketplace", "name": "c4-architecture", "description": "Generate architecture documentation using C4 model Mermaid diagrams. Use when asked to create architecture diagrams, document system architecture, visualize software structure, create C4 diagrams, or generate context/container/component/deployment diagrams. Triggers include \"architecture diagram\", \"C4 diagram\", \"system context\", \"container diagram\", \"component diagram\", \"deployment diagram\", \"document architecture\", \"visualize architecture\".", "source": ["marketplace", "topic"], "categories": ["ai-skills", "claude", "claude-code", "claude-skills", "codex", "codex-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aiskillstore/marketplace/blob/main/skills/softaworks/c4-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install c4-architecture"}, "quality": {"stars": 216, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:55:30Z"}, "embedding_text": "c4-architecture. Generate architecture documentation using C4 model Mermaid diagrams. Use when asked to create architecture diagrams, document system architecture, visualize software structure, create C4 diagrams, or generate context/container/component/deployment diagrams. Triggers include \"architecture diagram\", \"C4 diagram\", \"system context\", \"container diagram\", \"component diagram\", \"deployment diagram\", \"document architecture\", \"visualize architecture\". Categories: ai-skills, claude, claude-code, claude-skills, codex, codex-skills, skills. Platforms: claude_code."} @@ -20111,11 +24637,7 @@ {"id": "bdb045150a9f53ff0512c7402958a7a10e172359c22935801c48e833887e5edb", "repo_url": "https://github.com/athina-ai/goose-skills", "name": "outbound-prospecting-engine", "description": "End-to-end outbound prospecting: detect intent signals, research companies, find decision-maker contacts, personalize messaging, launch campaign.\n", "source": ["marketplace", "topic"], "categories": ["claude", "claude-skills", "claudecode", "claudecode-skills", "codex", "cursor", "gtm", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athina-ai/goose-skills/blob/main/skills/playbooks/outbound-prospecting-engine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install outbound-prospecting-engine"}, "quality": {"stars": 215, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T22:12:19Z"}, "embedding_text": "outbound-prospecting-engine. End-to-end outbound prospecting: detect intent signals, research companies, find decision-maker contacts, personalize messaging, launch campaign.\n Categories: claude, claude-skills, claudecode, claudecode-skills, codex, cursor, gtm, skills. Platforms: claude_code."} {"id": "00e410ce7dbc05694f1dac8c4818dbe3b8880e09ecb2ed535deb76f46b088335", "repo_url": "https://github.com/athina-ai/goose-skills", "name": "seo-content-engine", "description": "Build and run an SEO content engine: audit current state, identify gaps, build keyword architecture, generate content calendar, draft content.\n", "source": ["marketplace", "topic"], "categories": ["claude", "claude-skills", "claudecode", "claudecode-skills", "codex", "cursor", "gtm", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athina-ai/goose-skills/blob/main/skills/playbooks/seo-content-engine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-content-engine"}, "quality": {"stars": 215, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T22:12:19Z"}, "embedding_text": "seo-content-engine. Build and run an SEO content engine: audit current state, identify gaps, build keyword architecture, generate content calendar, draft content.\n Categories: claude, claude-skills, claudecode, claudecode-skills, codex, cursor, gtm, skills. Platforms: claude_code."} {"id": "9d6f445e7e287208d4e1db854b6a5f66a2f4bccc9a326de2ec1c69a39a688865", "repo_url": "https://github.com/athina-ai/goose-skills", "name": "signal-detection-pipeline", "description": "Detect buying signals from multiple sources, qualify leads, and generate outreach context", "source": ["marketplace", "topic"], "categories": ["claude", "claude-skills", "claudecode", "claudecode-skills", "codex", "cursor", "gtm", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athina-ai/goose-skills/blob/main/skills/playbooks/signal-detection-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install signal-detection-pipeline"}, "quality": {"stars": 215, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T22:12:19Z"}, "embedding_text": "signal-detection-pipeline. Detect buying signals from multiple sources, qualify leads, and generate outreach context Categories: claude, claude-skills, claudecode, claudecode-skills, codex, cursor, gtm, skills. Platforms: claude_code."} -{"id": "f1285e9b6a1b9e0e68f3d01f0ee9390e8cf6b90c8f48f8739401cbd6cea380dc", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-agentic-ai", "description": "AWS Bedrock AgentCore comprehensive expert for deploying and managing all AgentCore services. Use when working with Gateway, Runtime, Memory, Identity, or any AgentCore component. Covers MCP target deployment, credential management, schema optimization, runtime configuration, memory management, and identity services.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "aws", "aws-agentc", "aws-agentcore", "aws-cdk", "aws-serverless-architecture", "claude-code", "claude-plugin", "claude-skills", "event-driven-architecture"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/aws-agentic-ai/skills/aws-agentic-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-agentic-ai"}, "quality": {"stars": 209, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T13:51:05Z"}, "embedding_text": "aws-agentic-ai. AWS Bedrock AgentCore comprehensive expert for deploying and managing all AgentCore services. Use when working with Gateway, Runtime, Memory, Identity, or any AgentCore component. Covers MCP target deployment, credential management, schema optimization, runtime configuration, memory management, and identity services. Categories: agent-skills, aws, aws-agentc, aws-agentcore, aws-cdk, aws-serverless-architecture, claude-code, claude-plugin, claude-skills, event-driven-architecture. Platforms: claude_code."} {"id": "908f27366c4e3df7079aad20e780820c30280ba5697e17a93f1cdf81308b3b57", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-cdk-development", "description": "AWS Cloud Development Kit (CDK) expert for building cloud infrastructure with TypeScript/Python. Use when creating CDK stacks, defining CDK constructs, implementing infrastructure as code, or when the user mentions CDK, CloudFormation, IaC, cdk synth, cdk deploy, or wants to define AWS infrastructure programmatically. Covers CDK app structure, construct patterns, stack composition, and deployment workflows.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "aws", "aws-agentc", "aws-agentcore", "aws-cdk", "aws-serverless-architecture", "claude-code", "claude-plugin", "claude-skills", "event-driven-architecture"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/aws-cdk/skills/aws-cdk-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-cdk-development"}, "quality": {"stars": 209, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T13:51:05Z"}, "embedding_text": "aws-cdk-development. AWS Cloud Development Kit (CDK) expert for building cloud infrastructure with TypeScript/Python. Use when creating CDK stacks, defining CDK constructs, implementing infrastructure as code, or when the user mentions CDK, CloudFormation, IaC, cdk synth, cdk deploy, or wants to define AWS infrastructure programmatically. Covers CDK app structure, construct patterns, stack composition, and deployment workflows. Categories: agent-skills, aws, aws-agentc, aws-agentcore, aws-cdk, aws-serverless-architecture, claude-code, claude-plugin, claude-skills, event-driven-architecture. Platforms: claude_code."} -{"id": "c21919bee7f41fdaf2f727b929c684f3cb4a1f8bfee51eff9bd3552ddbd0ac7d", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-mcp-setup", "description": "Configure AWS MCP servers for documentation search and API access. Use when setting up AWS MCP, configuring AWS documentation tools, troubleshooting MCP connectivity, or when user mentions aws-mcp, awsdocs, uvx setup, or MCP server configuration. Covers both Full AWS MCP Server (with uvx + credentials) and lightweight Documentation MCP (no auth required).", "source": ["marketplace", "topic"], "categories": ["agent-skills", "aws", "aws-agentc", "aws-agentcore", "aws-cdk", "aws-serverless-architecture", "claude-code", "claude-plugin", "claude-skills", "event-driven-architecture"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/aws-common/skills/aws-mcp-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-mcp-setup"}, "quality": {"stars": 209, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T13:51:05Z"}, "embedding_text": "aws-mcp-setup. Configure AWS MCP servers for documentation search and API access. Use when setting up AWS MCP, configuring AWS documentation tools, troubleshooting MCP connectivity, or when user mentions aws-mcp, awsdocs, uvx setup, or MCP server configuration. Covers both Full AWS MCP Server (with uvx + credentials) and lightweight Documentation MCP (no auth required). Categories: agent-skills, aws, aws-agentc, aws-agentcore, aws-cdk, aws-serverless-architecture, claude-code, claude-plugin, claude-skills, event-driven-architecture. Platforms: claude_code."} -{"id": "6ea52ace3ff61066e8bf5da5d66cabba3035a4568a2fb49f2cbd4d69b0d3569c", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-cost-operations", "description": "AWS cost optimization, monitoring, and operational excellence expert. Use when analyzing AWS bills, estimating costs, setting up CloudWatch alarms, querying logs, auditing CloudTrail activity, or assessing security posture. Essential when user mentions AWS costs, spending, billing, budget, pricing, CloudWatch, observability, monitoring, alerting, CloudTrail, audit, or wants to optimize AWS infrastructure costs and operational efficiency.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "aws", "aws-agentc", "aws-agentcore", "aws-cdk", "aws-serverless-architecture", "claude-code", "claude-plugin", "claude-skills", "event-driven-architecture"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/aws-cost-ops/skills/aws-cost-operations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-cost-operations"}, "quality": {"stars": 209, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T13:51:05Z"}, "embedding_text": "aws-cost-operations. AWS cost optimization, monitoring, and operational excellence expert. Use when analyzing AWS bills, estimating costs, setting up CloudWatch alarms, querying logs, auditing CloudTrail activity, or assessing security posture. Essential when user mentions AWS costs, spending, billing, budget, pricing, CloudWatch, observability, monitoring, alerting, CloudTrail, audit, or wants to optimize AWS infrastructure costs and operational efficiency. Categories: agent-skills, aws, aws-agentc, aws-agentcore, aws-cdk, aws-serverless-architecture, claude-code, claude-plugin, claude-skills, event-driven-architecture. Platforms: claude_code."} -{"id": "91e4ff83729acfcc7d8e7aef2f08d71393bd1de907e0bb6ae590330e9b747127", "repo_url": "https://github.com/zxkane/aws-skills", "name": "aws-serverless-eda", "description": "AWS serverless and event-driven architecture expert based on Well-Architected Framework. Use when building serverless APIs, Lambda functions, REST APIs, microservices, or async workflows. Covers Lambda with TypeScript/Python, API Gateway (REST/HTTP), DynamoDB, Step Functions, EventBridge, SQS, SNS, and serverless patterns. Essential when user mentions serverless, Lambda, API Gateway, event-driven, async processing, queues, pub/sub, or wants to build scalable serverless applications with AWS best practices.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "aws", "aws-agentc", "aws-agentcore", "aws-cdk", "aws-serverless-architecture", "claude-code", "claude-plugin", "claude-skills", "event-driven-architecture"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zxkane/aws-skills/blob/main/plugins/serverless-eda/skills/aws-serverless-eda/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-serverless-eda"}, "quality": {"stars": 209, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T13:51:05Z"}, "embedding_text": "aws-serverless-eda. AWS serverless and event-driven architecture expert based on Well-Architected Framework. Use when building serverless APIs, Lambda functions, REST APIs, microservices, or async workflows. Covers Lambda with TypeScript/Python, API Gateway (REST/HTTP), DynamoDB, Step Functions, EventBridge, SQS, SNS, and serverless patterns. Essential when user mentions serverless, Lambda, API Gateway, event-driven, async processing, queues, pub/sub, or wants to build scalable serverless applications with AWS best practices. Categories: agent-skills, aws, aws-agentc, aws-agentcore, aws-cdk, aws-serverless-architecture, claude-code, claude-plugin, claude-skills, event-driven-architecture. Platforms: claude_code."} {"id": "6bbc872448e3ee59fd1f3c463240eefd873aa113a3ee69c73fdee321e3d7c3b5", "repo_url": "https://github.com/posit-dev/skills", "name": "brand-yml", "description": "Create and use brand.yml files for consistent branding across Shiny apps and Quarto documents. Use when working with brand styling, colors, fonts, logos, or corporate identity in Shiny or Quarto projects. Covers: (1) Creating new _brand.yml files from brand guidelines, (2) Applying brand.yml to Shiny for R apps with bslib, (3) Applying brand.yml to Shiny for Python apps with ui.Theme, (4) Using brand.yml in Quarto documents, presentations, dashboards, and PDFs, (5) Modifying existing brand.yml files, (6) Troubleshooting brand integration issues. Includes complete specifications and framework-specific integration guides.\n", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugin", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/posit-dev/skills/blob/main/brand-yml/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-yml"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T18:42:49Z"}, "embedding_text": "brand-yml. Create and use brand.yml files for consistent branding across Shiny apps and Quarto documents. Use when working with brand styling, colors, fonts, logos, or corporate identity in Shiny or Quarto projects. Covers: (1) Creating new _brand.yml files from brand guidelines, (2) Applying brand.yml to Shiny for R apps with bslib, (3) Applying brand.yml to Shiny for Python apps with ui.Theme, (4) Using brand.yml in Quarto documents, presentations, dashboards, and PDFs, (5) Modifying existing brand.yml files, (6) Troubleshooting brand integration issues. Includes complete specifications and framework-specific integration guides.\n Categories: claude-code, claude-code-plugin, claude-skills. Platforms: claude_code."} {"id": "8657dd8d3ca1a0a2fc91540a7e264499c288e01ba40750cee134310fcf77ad83", "repo_url": "https://github.com/posit-dev/skills", "name": "pr-create", "description": "Creates a pull request from current changes, monitors GitHub CI, and debugs any failures until CI passes. Use this when the user says \"create pr\", \"make a pr\", \"open pull request\", \"submit pr\", \"pr for these changes\", or wants to get their current work into a reviewable PR. Assumes the project uses git, is hosted on GitHub, and has GitHub Actions CI with automated checks (lint, build, tests, etc.). Does NOT merge - stops when CI passes and provides the PR link.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugin", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/posit-dev/skills/blob/main/github/pr-create/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pr-create"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T18:42:49Z"}, "embedding_text": "pr-create. Creates a pull request from current changes, monitors GitHub CI, and debugs any failures until CI passes. Use this when the user says \"create pr\", \"make a pr\", \"open pull request\", \"submit pr\", \"pr for these changes\", or wants to get their current work into a reviewable PR. Assumes the project uses git, is hosted on GitHub, and has GitHub Actions CI with automated checks (lint, build, tests, etc.). Does NOT merge - stops when CI passes and provides the PR link. Categories: claude-code, claude-code-plugin, claude-skills. Platforms: claude_code."} {"id": "65b75c6c39868456ba1c8ed4626257bd80881233d14b2548ea625a5e33548a3b", "repo_url": "https://github.com/posit-dev/skills", "name": "pr-threads-address", "description": "Review all unresolved PR review threads, address them by making necessary code changes, and commit the changes appropriately.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugin", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/posit-dev/skills/blob/main/github/pr-threads-address/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pr-threads-address"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T18:42:49Z"}, "embedding_text": "pr-threads-address. Review all unresolved PR review threads, address them by making necessary code changes, and commit the changes appropriately. Categories: claude-code, claude-code-plugin, claude-skills. Platforms: claude_code."} @@ -20137,20 +24659,13 @@ {"id": "c74d0ff9e47dbeee98d37fa8e1b868399fe1a24a37c59bfe91f123b2832b910d", "repo_url": "https://github.com/posit-dev/skills", "name": "shiny-bslib", "description": "Build modern Shiny dashboards and applications using bslib (Bootstrap 5). Use when creating new Shiny apps, modernizing legacy apps (fluidPage, fluidRow/column, tabsetPanel, wellPanel, shinythemes), or working with bslib page layouts, grid systems, cards, value boxes, navigation, sidebars, filling layouts, theming, accordions, tooltips, popovers, toasts, or bslib inputs. Assumes familiarity with basic Shiny.", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-code-plugin", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/posit-dev/skills/blob/main/shiny/shiny-bslib/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install shiny-bslib"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T18:42:49Z"}, "embedding_text": "shiny-bslib. Build modern Shiny dashboards and applications using bslib (Bootstrap 5). Use when creating new Shiny apps, modernizing legacy apps (fluidPage, fluidRow/column, tabsetPanel, wellPanel, shinythemes), or working with bslib page layouts, grid systems, cards, value boxes, navigation, sidebars, filling layouts, theming, accordions, tooltips, popovers, toasts, or bslib inputs. Assumes familiarity with basic Shiny. Categories: claude-code, claude-code-plugin, claude-skills. Platforms: claude_code."} {"id": "00de104889c7c35a42ce631be310ed343ec531ccc669933378ffa01564c72d36", "repo_url": "https://github.com/lukerenton/explore-claude-code", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lukerenton/explore-claude-code/blob/main/.claude/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-design"}, "quality": {"stars": 182, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T12:36:25Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics. Categories: claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "a4a8fb79b6c235d95f9d287ac9aca922eb265ef8007101dd69623c921cc267c2", "repo_url": "https://github.com/lukerenton/explore-claude-code", "name": "my-skill", "description": "What this skill does and when to use it. Claude reads this to decide relevance. Include keywords users would naturally say.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lukerenton/explore-claude-code/blob/main/site/content/.claude/skills/my-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install my-skill"}, "quality": {"stars": 182, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T12:36:25Z"}, "embedding_text": "my-skill. What this skill does and when to use it. Claude reads this to decide relevance. Include keywords users would naturally say. Categories: claude, claude-code, claude-skills. Platforms: claude_code."} -{"id": "0023769161d9f8ac010f0487cacaf89baf9c3c1bf204ce406e0ec501208f2650", "repo_url": "https://github.com/feiskyer/codex-settings", "name": "autonomous-skill", "description": "Use when work must continue across multiple Codex sessions with `.autonomous/` tracking, resumable execution, or autonomous handoff. Use for long-running, multi-session, or resume-later tasks.", "source": ["marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "litellm", "openai", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/codex-settings/blob/main/skills/autonomous-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install autonomous-skill"}, "quality": {"stars": 161, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T01:37:32Z"}, "embedding_text": "autonomous-skill. Use when work must continue across multiple Codex sessions with `.autonomous/` tracking, resumable execution, or autonomous handoff. Use for long-running, multi-session, or resume-later tasks. Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, litellm, openai, spec-driven-development, vibe-coding. Platforms: claude_code."} -{"id": "dae61c8dfc485677afc6bbe2856beab84ee3eed6b90c324019c2c37e11e2e532", "repo_url": "https://github.com/feiskyer/codex-settings", "name": "claude-skill", "description": "Use when work should be delegated to Claude Code CLI, especially headless `claude -p` runs, automation scripts, CI jobs, resumable sessions, or requests to use Claude/Claude Code for a task.", "source": ["marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "litellm", "openai", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/codex-settings/blob/main/skills/claude-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-skill"}, "quality": {"stars": 161, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T01:37:32Z"}, "embedding_text": "claude-skill. Use when work should be delegated to Claude Code CLI, especially headless `claude -p` runs, automation scripts, CI jobs, resumable sessions, or requests to use Claude/Claude Code for a task. Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, litellm, openai, spec-driven-development, vibe-coding. Platforms: claude_code."} {"id": "40fc93c99310369c77a152c60d5ef63e33feccb90245d6834c075ddbd637056a", "repo_url": "https://github.com/feiskyer/codex-settings", "name": "deep-research", "description": "\u6df1\u5ea6\u8c03\u7814\u7684\u591a\u5b9e\u4f8b\uff08\u591a Agent\uff09\u7f16\u6392\u5de5\u4f5c\u6d41\uff1a\u628a\u4e00\u4e2a\u8c03\u7814\u76ee\u6807\u62c6\u6210\u53ef\u5e76\u884c\u5b50\u76ee\u6807\uff0c\u7528 Codex CLI\uff08`codex exec`\uff09\u5728\u9ed8\u8ba4 `workspace-write` \u6c99\u7bb1\u5185\u8fd0\u884c\u5b50\u8fdb\u7a0b\uff1b\u8054\u7f51\u4e0e\u91c7\u96c6\u4f18\u5148\u4f7f\u7528\u5df2\u5b89\u88c5\u7684 skills\uff0c\u5176\u6b21\u4f7f\u7528 MCP \u5de5\u5177\uff1b\u7528\u811a\u672c\u805a\u5408\u5b50\u7ed3\u679c\u5e76\u5206\u7ae0\u7cbe\u4fee\uff0c\u6700\u7ec8\u4ea4\u4ed8\u201c\u6210\u54c1\u62a5\u544a\u6587\u4ef6\u8def\u5f84 + \u5173\u952e\u7ed3\u8bba/\u5efa\u8bae\u6458\u8981\u201d\u3002\u7528\u4e8e\uff1a\u7cfb\u7edf\u6027\u7f51\u9875/\u8d44\u6599\u8c03\u7814\u3001\u7ade\u54c1/\u884c\u4e1a\u5206\u6790\u3001\u6279\u91cf\u94fe\u63a5/\u6570\u636e\u96c6\u5206\u7247\u68c0\u7d22\u3001\u957f\u6587\u5199\u4f5c\u4e0e\u8bc1\u636e\u6574\u5408\uff0c\u6216\u7528\u6237\u63d0\u53ca\u201c\u6df1\u5ea6\u8c03\u7814/Deep Research/Wide Research/\u591a Agent \u5e76\u884c\u8c03\u7814/\u591a\u8fdb\u7a0b\u8c03\u7814\u201d\u7b49\u573a\u666f\u3002", "source": ["marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "litellm", "openai", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/codex-settings/blob/main/skills/deep-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deep-research"}, "quality": {"stars": 161, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T01:37:32Z"}, "embedding_text": "deep-research. \u6df1\u5ea6\u8c03\u7814\u7684\u591a\u5b9e\u4f8b\uff08\u591a Agent\uff09\u7f16\u6392\u5de5\u4f5c\u6d41\uff1a\u628a\u4e00\u4e2a\u8c03\u7814\u76ee\u6807\u62c6\u6210\u53ef\u5e76\u884c\u5b50\u76ee\u6807\uff0c\u7528 Codex CLI\uff08`codex exec`\uff09\u5728\u9ed8\u8ba4 `workspace-write` \u6c99\u7bb1\u5185\u8fd0\u884c\u5b50\u8fdb\u7a0b\uff1b\u8054\u7f51\u4e0e\u91c7\u96c6\u4f18\u5148\u4f7f\u7528\u5df2\u5b89\u88c5\u7684 skills\uff0c\u5176\u6b21\u4f7f\u7528 MCP \u5de5\u5177\uff1b\u7528\u811a\u672c\u805a\u5408\u5b50\u7ed3\u679c\u5e76\u5206\u7ae0\u7cbe\u4fee\uff0c\u6700\u7ec8\u4ea4\u4ed8\u201c\u6210\u54c1\u62a5\u544a\u6587\u4ef6\u8def\u5f84 + \u5173\u952e\u7ed3\u8bba/\u5efa\u8bae\u6458\u8981\u201d\u3002\u7528\u4e8e\uff1a\u7cfb\u7edf\u6027\u7f51\u9875/\u8d44\u6599\u8c03\u7814\u3001\u7ade\u54c1/\u884c\u4e1a\u5206\u6790\u3001\u6279\u91cf\u94fe\u63a5/\u6570\u636e\u96c6\u5206\u7247\u68c0\u7d22\u3001\u957f\u6587\u5199\u4f5c\u4e0e\u8bc1\u636e\u6574\u5408\uff0c\u6216\u7528\u6237\u63d0\u53ca\u201c\u6df1\u5ea6\u8c03\u7814/Deep Research/Wide Research/\u591a Agent \u5e76\u884c\u8c03\u7814/\u591a\u8fdb\u7a0b\u8c03\u7814\u201d\u7b49\u573a\u666f\u3002 Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, litellm, openai, spec-driven-development, vibe-coding. Platforms: claude_code."} {"id": "c0cb1825a2fcaf61e7313e43603c62a8b44e06cd8170d52643a353851d46da4f", "repo_url": "https://github.com/feiskyer/codex-settings", "name": "kiro-skill", "description": "Interactive feature development workflow from idea to implementation. Creates requirements (EARS format), design documents, and implementation task lists. Use when creating feature specs, requirements documents, design documents, or implementation plans. Triggered by \"kiro\" or references to .kiro/specs/ directory.", "source": ["marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "litellm", "openai", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/codex-settings/blob/main/skills/kiro-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install kiro-skill"}, "quality": {"stars": 161, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T01:37:32Z"}, "embedding_text": "kiro-skill. Interactive feature development workflow from idea to implementation. Creates requirements (EARS format), design documents, and implementation task lists. Use when creating feature specs, requirements documents, design documents, or implementation plans. Triggered by \"kiro\" or references to .kiro/specs/ directory. Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, litellm, openai, spec-driven-development, vibe-coding. Platforms: claude_code."} -{"id": "0b709fd2609046f836862298bf9f37115137d0f811531880fc32282c0564423f", "repo_url": "https://github.com/feiskyer/codex-settings", "name": "spec-kit-skill", "description": "GitHub Spec-Kit integration for constitution-based spec-driven development. 7-phase workflow (constitution, specify, clarify, plan, tasks, analyze, implement). Use when working with spec-kit CLI, .specify/ directories, or creating specifications with constitution-driven development. Triggered by \"spec-kit\", \"speckit\", \"constitution\", \"specify\", references to .specify/ directory, or spec-kit commands.", "source": ["marketplace", "topic"], "categories": ["agentic-ai", "agents", "ai", "claude-code", "claude-skills", "codex", "copilot", "litellm", "openai", "spec-driven-development", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/feiskyer/codex-settings/blob/main/skills/spec-kit-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install spec-kit-skill"}, "quality": {"stars": 161, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T01:37:32Z"}, "embedding_text": "spec-kit-skill. GitHub Spec-Kit integration for constitution-based spec-driven development. 7-phase workflow (constitution, specify, clarify, plan, tasks, analyze, implement). Use when working with spec-kit CLI, .specify/ directories, or creating specifications with constitution-driven development. Triggered by \"spec-kit\", \"speckit\", \"constitution\", \"specify\", references to .specify/ directory, or spec-kit commands. Categories: agentic-ai, agents, ai, claude-code, claude-skills, codex, copilot, litellm, openai, spec-driven-development, vibe-coding. Platforms: claude_code."} {"id": "4eb76203ed7d90920f495c7015775f63d1889638c70603592be10efeecf40e8f", "repo_url": "https://github.com/bhanunamikaze/agentic-seo-skill", "name": "seo", "description": "Deterministic LLM-first SEO audits for websites, blog posts, and GitHub repositories. Use this when the user asks to \"perform SEO analysis\", \"run SEO audit\", \"analyze SEO\", \"check technical SEO\", \"review schema\", \"Core Web Vitals\", \"E-E-A-T\", \"hreflang\", \"GEO\", \"AEO\", or GitHub repository SEO optimization. For full/page/repo audits, run bundled scripts for evidence and return prioritized, confidence-labeled fixes.", "source": ["marketplace", "topic"], "categories": ["ai-skill", "ai-skills", "antigravity-ai", "antigravity-skills", "antigravity-tools", "claude-skill", "claude-skills", "codex-skill", "codex-skills", "seo", "seo-optimization", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bhanunamikaze/agentic-seo-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo"}, "quality": {"stars": 159, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T15:34:25Z"}, "embedding_text": "seo. Deterministic LLM-first SEO audits for websites, blog posts, and GitHub repositories. Use this when the user asks to \"perform SEO analysis\", \"run SEO audit\", \"analyze SEO\", \"check technical SEO\", \"review schema\", \"Core Web Vitals\", \"E-E-A-T\", \"hreflang\", \"GEO\", \"AEO\", or GitHub repository SEO optimization. For full/page/repo audits, run bundled scripts for evidence and return prioritized, confidence-labeled fixes. Categories: ai-skill, ai-skills, antigravity-ai, antigravity-skills, antigravity-tools, claude-skill, claude-skills, codex-skill, codex-skills, seo, seo-optimization, skills. Platforms: claude_code."} {"id": "867dd7b00fcb87a2ab7d5336e68caa43f761bac32b5885a78b92454e566affa3", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "doctor", "description": "Run health checks on Claude Code configuration and sessions. Use when troubleshooting Claude Code issues.", "source": ["marketplace", "topic"], "categories": ["agent-teams", "claude-code", "claude-skills", "cli", "context", "context-management", "jsonl", "llm-tools", "pruning", "python", "session-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruya-ai/cozempic/blob/main/plugin/skills/doctor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install doctor"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:38:45Z"}, "embedding_text": "doctor. Run health checks on Claude Code configuration and sessions. Use when troubleshooting Claude Code issues. Categories: agent-teams, claude-code, claude-skills, cli, context, context-management, jsonl, llm-tools, pruning, python, session-management. Platforms: claude_code."} -{"id": "1967974b5790f27aff77a6da734f227fdc7b43eee0e00ecff5f1c748b99fbc8e", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "guard", "description": "Start a background sentinel that monitors session size and auto-prunes before compaction triggers.", "source": ["marketplace", "topic"], "categories": ["agent-teams", "claude-code", "claude-skills", "cli", "context", "context-management", "jsonl", "llm-tools", "pruning", "python", "session-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruya-ai/cozempic/blob/main/plugin/skills/guard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install guard"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:38:45Z"}, "embedding_text": "guard. Start a background sentinel that monitors session size and auto-prunes before compaction triggers. Categories: agent-teams, claude-code, claude-skills, cli, context, context-management, jsonl, llm-tools, pruning, python, session-management. Platforms: claude_code."} -{"id": "de24ce52579c1d213040ff94c68a2252e1157f0e944dd2f0791cb8a567b7dc76", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "reload", "description": "Treat the current session and auto-resume in a new terminal window.", "source": ["marketplace", "topic"], "categories": ["agent-teams", "claude-code", "claude-skills", "cli", "context", "context-management", "jsonl", "llm-tools", "pruning", "python", "session-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruya-ai/cozempic/blob/main/plugin/skills/reload/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reload"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:38:45Z"}, "embedding_text": "reload. Treat the current session and auto-resume in a new terminal window. Categories: agent-teams, claude-code, claude-skills, cli, context, context-management, jsonl, llm-tools, pruning, python, session-management. Platforms: claude_code."} -{"id": "08437c24337fcca19177bcfc2e0fef1fecfe8d035c3b13020eb0c7bd5a879e2e", "repo_url": "https://github.com/ruya-ai/cozempic", "name": "treat", "description": "Prune bloated session with a prescription. Removes progress ticks, stale reads, duplicate content, and more.", "source": ["marketplace", "topic"], "categories": ["agent-teams", "claude-code", "claude-skills", "cli", "context", "context-management", "jsonl", "llm-tools", "pruning", "python", "session-management"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ruya-ai/cozempic/blob/main/plugin/skills/treat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install treat"}, "quality": {"stars": 155, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:38:45Z"}, "embedding_text": "treat. Prune bloated session with a prescription. Removes progress ticks, stale reads, duplicate content, and more. Categories: agent-teams, claude-code, claude-skills, cli, context, context-management, jsonl, llm-tools, pruning, python, session-management. Platforms: claude_code."} {"id": "30430c86c0d06ff60262a4b78db9ddedee1bbbb9e4a410fea473275f15cae52a", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "atlassian", "description": "Manage Jira issues and Confluence wiki pages in Atlassian Cloud.\nUse when: (1) searching/creating/updating Jira issues with JQL, (2) searching/reading/creating Confluence pages\nwith CQL, (3) managing Jira workflows, transitions, and comments, (4) browsing Confluence spaces and page\nhierarchies. Supports OAuth 2.1 via MCP server (recommended) or API token authentication (fallback).", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/atlassian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install atlassian"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "atlassian. Manage Jira issues and Confluence wiki pages in Atlassian Cloud.\nUse when: (1) searching/creating/updating Jira issues with JQL, (2) searching/reading/creating Confluence pages\nwith CQL, (3) managing Jira workflows, transitions, and comments, (4) browsing Confluence spaces and page\nhierarchies. Supports OAuth 2.1 via MCP server (recommended) or API token authentication (fallback). Categories: agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code."} {"id": "3d0eb07ef4ae4f271be4721c310477d2ea42df981c54eaf425a5bbc0564e675f", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "azure-devops", "description": "Manage Azure DevOps projects, work items, repos, PRs, pipelines, wikis, test plans, security alerts,\nvariable groups, environments/approvals, branch policies, and attachments. Use when user asks to: manage\nsprints, create/update work items, list repos, create PRs, run pipelines, search code, manage wiki pages,\ncheck security alerts, manage variable groups, approve deployments, or configure branch policies.\nCovers 13 domains with 99 tools via REST API.\n", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/azure-devops/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-devops"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "azure-devops. Manage Azure DevOps projects, work items, repos, PRs, pipelines, wikis, test plans, security alerts,\nvariable groups, environments/approvals, branch policies, and attachments. Use when user asks to: manage\nsprints, create/update work items, list repos, create PRs, run pipelines, search code, manage wiki pages,\ncheck security alerts, manage variable groups, approve deployments, or configure branch policies.\nCovers 13 domains with 99 tools via REST API.\n Categories: agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code."} {"id": "395beb8bf377b17546ecf2eca515207cc1ecef5e417f76d61f5bc67ad9472447", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "elevenlabs", "description": "Convert documents and text to audio using ElevenLabs text-to-speech.\nUse this skill when the user wants to create a podcast, narrate a document,\nread aloud text, generate audio from a file, or convert text to speech.\n", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/elevenlabs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install elevenlabs"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "elevenlabs. Convert documents and text to audio using ElevenLabs text-to-speech.\nUse this skill when the user wants to create a podcast, narrate a document,\nread aloud text, generate audio from a file, or convert text to speech.\n Categories: agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code."} -{"id": "6f9efcb1af9f3867d3624ed51a733163f125813709e65e5e80451e834f42cbf1", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "gmail", "description": "Interact with Gmail - search emails, read messages, send emails, create drafts, and manage labels.\nUse when user asks to: search email, read email, send email, create email draft, mark as read,\narchive email, star email, or manage Gmail labels. Lightweight alternative to full Google\nWorkspace MCP server with standalone OAuth authentication.\n", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/gmail/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gmail"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "gmail. Interact with Gmail - search emails, read messages, send emails, create drafts, and manage labels.\nUse when user asks to: search email, read email, send email, create email draft, mark as read,\narchive email, star email, or manage Gmail labels. Lightweight alternative to full Google\nWorkspace MCP server with standalone OAuth authentication.\n Categories: agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code."} {"id": "cc92480559bfdafa8af0982b9369e5b31d958939364ccb09123abc5a47e1951c", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "google-calendar", "description": "Interact with Google Calendar - list calendars, view events, create/update/delete events, and find free time.\nUse when user asks to: check calendar, schedule a meeting, create an event, find available time, list upcoming events,\ndelete or update a calendar event, or respond to meeting invitations. Lightweight alternative to full\nGoogle Workspace MCP server with standalone OAuth authentication.\n", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/google-calendar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install google-calendar"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "google-calendar. Interact with Google Calendar - list calendars, view events, create/update/delete events, and find free time.\nUse when user asks to: check calendar, schedule a meeting, create an event, find available time, list upcoming events,\ndelete or update a calendar event, or respond to meeting invitations. Lightweight alternative to full\nGoogle Workspace MCP server with standalone OAuth authentication.\n Categories: agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code."} {"id": "b1c56c7325a39e927eb2fc5379b4574189dd2a25671e013027e76fa852146e26", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "google-chat", "description": "Interact with Google Chat - list spaces, send messages, read conversations, and manage DMs.\nUse when user asks to: send a message on Google Chat, read chat messages, list chat spaces,\nfind a chat room, send a DM, or create a new chat space. Lightweight alternative to full\nGoogle Workspace MCP server with standalone OAuth authentication.\n", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/google-chat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install google-chat"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "google-chat. Interact with Google Chat - list spaces, send messages, read conversations, and manage DMs.\nUse when user asks to: send a message on Google Chat, read chat messages, list chat spaces,\nfind a chat room, send a DM, or create a new chat space. Lightweight alternative to full\nGoogle Workspace MCP server with standalone OAuth authentication.\n Categories: agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code."} {"id": "ecda964df6707ab191a008e5a3b0e3e162393e82bd6bb6570520e3c28a3083c3", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "google-docs", "description": "Interact with Google Docs - create documents, search by title, read content, and edit text.\nUse when user asks to: create a Google Doc, find a document, read doc content, add text to a doc,\nor replace text in a document. Lightweight alternative to full Google Workspace MCP server with\nstandalone OAuth authentication.\n", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/google-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install google-docs"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "google-docs. Interact with Google Docs - create documents, search by title, read content, and edit text.\nUse when user asks to: create a Google Doc, find a document, read doc content, add text to a doc,\nor replace text in a document. Lightweight alternative to full Google Workspace MCP server with\nstandalone OAuth authentication.\n Categories: agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code."} @@ -20164,28 +24679,15 @@ {"id": "6a1e28929bc940971e98b08a9e7c0ab1f648b9dbe8199890be290baae63468d2", "repo_url": "https://github.com/sanjay3290/ai-skills", "name": "notebooklm", "description": "Query and manage Google NotebookLM notebooks with persistent profile auth, source sync, batch/multi queries, and structured exports. Use when user asks to query NotebookLM, 'ask my notebook', shares NotebookLM notebook URLs, wants to list/create notebooks, manage sources, do bulk folder sync, dedupe, or audit exports.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-skills", "atlassian", "azure-devops", "claude-code", "claude-skills", "confluence", "deep-research", "elevenlabs", "gmail", "google-calendar", "google-drive", "google-workspace", "imagen", "jira", "mcp", "mysql", "notebooklm", "postgresql", "text-to-speech"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sanjay3290/ai-skills/blob/main/skills/notebooklm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notebooklm"}, "quality": {"stars": 152, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T17:05:52Z"}, "embedding_text": "notebooklm. Query and manage Google NotebookLM notebooks with persistent profile auth, source sync, batch/multi queries, and structured exports. Use when user asks to query NotebookLM, 'ask my notebook', shares NotebookLM notebook URLs, wants to list/create notebooks, manage sources, do bulk folder sync, dedupe, or audit exports. Categories: agent-skills, ai-skills, atlassian, azure-devops, claude-code, claude-skills, confluence, deep-research, elevenlabs, gmail, google-calendar, google-drive, google-workspace, imagen, jira, mcp, mysql, notebooklm, postgresql, text-to-speech. Platforms: claude_code."} {"id": "f9038cc9e127dda87737723b993664c2ad330177c895bf340d8882c32623ec19", "repo_url": "https://github.com/anombyte93/prd-taskmaster", "name": "prd-taskmaster", "description": "Smart PRD generator with TaskMaster integration. Detects existing PRDs and offers execute/update/replace options. Generates comprehensive technical PRDs optimized for task breakdown, validates with 13 automated checks, and optionally executes tasks autonomously with datetime tracking and rollback support. Use when user requests \"PRD\", \"product requirements\", or mentions task-driven development. Defaults to PRD generation with handoff to TaskMaster. Optionally supports autonomous execution with 4 modes.", "source": ["marketplace", "topic"], "categories": ["ai-development", "claude-code", "claude-skills", "prd", "product-management", "product-requirements", "requirements-engineering", "taskmaster"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anombyte93/prd-taskmaster/blob/master/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install prd-taskmaster"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-16T23:44:07Z"}, "embedding_text": "prd-taskmaster. Smart PRD generator with TaskMaster integration. Detects existing PRDs and offers execute/update/replace options. Generates comprehensive technical PRDs optimized for task breakdown, validates with 13 automated checks, and optionally executes tasks autonomously with datetime tracking and rollback support. Use when user requests \"PRD\", \"product requirements\", or mentions task-driven development. Defaults to PRD generation with handoff to TaskMaster. Optionally supports autonomous execution with 4 modes. Categories: ai-development, claude-code, claude-skills, prd, product-management, product-requirements, requirements-engineering, taskmaster. Platforms: claude_code."} {"id": "c1872315fb696d41b4205d2b25667842cfbf17bdc91896d525da10d8a3f2187b", "repo_url": "https://github.com/anombyte93/prd-taskmaster", "name": "expand-tasks", "description": "Expand all TaskMaster tasks with deep research via Perplexity before coding begins. Reads tasks.json, launches parallel research agents per task, writes findings back. Part of the prd-taskmaster toolkit. Use after PRD is parsed into tasks and before implementation begins. Invoke with /expand-tasks or when user says \"expand tasks\", \"research all tasks\", or \"research before coding for all tasks\".", "source": ["marketplace", "topic"], "categories": ["ai-development", "claude-code", "claude-skills", "prd", "product-management", "product-requirements", "requirements-engineering", "taskmaster"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anombyte93/prd-taskmaster/blob/master/companion-skills/expand-tasks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install expand-tasks"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-16T23:44:07Z"}, "embedding_text": "expand-tasks. Expand all TaskMaster tasks with deep research via Perplexity before coding begins. Reads tasks.json, launches parallel research agents per task, writes findings back. Part of the prd-taskmaster toolkit. Use after PRD is parsed into tasks and before implementation begins. Invoke with /expand-tasks or when user says \"expand tasks\", \"research all tasks\", or \"research before coding for all tasks\". Categories: ai-development, claude-code, claude-skills, prd, product-management, product-requirements, requirements-engineering, taskmaster. Platforms: claude_code."} -{"id": "f0821ab0bdd064254440476760b126b05943fbd8cc491c6464c54d67db730e23", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-gladiator", "description": "Continuous learning \u2014 hooks observe failures and prompt reflection, sibling synergy deepens analysis with history and tool discovery", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-gladiator/skills/claude-gladiator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-gladiator"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-gladiator. Continuous learning \u2014 hooks observe failures and prompt reflection, sibling synergy deepens analysis with history and tool discovery Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} {"id": "2e795d198eede6fdf44a81f907a9d0c209cc974f3b934425e174c8ce5a288649", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-historian", "description": "Automatic history search \u2014 checks past sessions before web research, planning, and debugging, siblings deepen coverage", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-historian/skills/claude-historian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-historian"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-historian. Automatic history search \u2014 checks past sessions before web research, planning, and debugging, siblings deepen coverage Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} -{"id": "5d11bccb3792ee53294081aa7515abfd5fd21c1e58870b11796a44b7c1395ec5", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-oracle", "description": "Automatic tool discovery across 17 sources \u2014 hooks search before planning and after errors, siblings avoid redundant searches", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-oracle/skills/claude-oracle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-oracle"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-oracle. Automatic tool discovery across 17 sources \u2014 hooks search before planning and after errors, siblings avoid redundant searches Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} -{"id": "33ff166f8e7ef10061812400117c04058e724161df41dc165da8c846b31658b7", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-orator", "description": "Prompt rhetoric coach \u2014 deterministic scoring and restructuring using Anthropic best practices", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-orator/skills/claude-orator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-orator"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-orator. Prompt rhetoric coach \u2014 deterministic scoring and restructuring using Anthropic best practices Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} -{"id": "f5b9fbc798cb8fb88b965d50d53ce5c27d96651d6518d076a59ff89d33090d1b", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-praetorian", "description": "Context preservation with cross-session memory \u2014 hooks prompt compaction at high-impact moments, siblings enrich what gets saved", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-praetorian/skills/claude-praetorian/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-praetorian"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-praetorian. Context preservation with cross-session memory \u2014 hooks prompt compaction at high-impact moments, siblings enrich what gets saved Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} {"id": "bdbaf9a6ba74d60261c39bfb8530717e9f20a40e7b5b0ccc8821b68c44a5e28c", "repo_url": "https://github.com/vvkmnn/claude-emporium", "name": "claude-vigil", "description": "File checkpoint and recovery \u2014 auto-quicksaves before destructive commands, manual checkpoints for safe rollback", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "anthropic", "automation", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "hooks", "llm", "marketplace", "mcp", "mcp-server", "model-context-protocol", "nodejs", "plugin", "typescript", "workflow", "zero-config"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vvkmnn/claude-emporium/blob/main/plugins/claude-vigil/skills/claude-vigil/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-vigil"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T11:21:32Z"}, "embedding_text": "claude-vigil. File checkpoint and recovery \u2014 auto-quicksaves before destructive commands, manual checkpoints for safe rollback Categories: ai, ai-agents, anthropic, automation, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, hooks, llm, marketplace, mcp, mcp-server, model-context-protocol, nodejs, plugin, typescript, workflow, zero-config. Platforms: claude_code."} -{"id": "37b816ce07d63203d0b10696c148a9b54297dd06f8a50ee5477db1dec88013bf", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "docker-ros2-development", "description": "Best practices for Docker-based ROS2 development including multi-stage Dockerfiles, docker-compose for multi-container robotic systems, DDS discovery across containers, GPU passthrough for perception, and dev-vs-deploy container patterns. Use this skill when containerizing ROS2 workspaces, setting up docker-compose for robot software stacks, debugging DDS communication between containers, configuring NVIDIA Container Toolkit for GPU workloads, forwarding X11/Wayland for rviz2 and GUI tools, or managing USB device passthrough for cameras and serial devices. Trigger whenever the user mentions Docker with ROS2, docker-compose for robots, Dockerfile for colcon workspaces, container networking for DDS, GPU containers for perception, devcontainer for ROS2, multi-stage builds for ROS2, or deploying ROS2 in containers. Also trigger for CI/CD with Docker-based ROS2 builds, CycloneDDS or FastDDS configuration in containers, shared memory in Docker, or X11 forwarding for rviz2. Covers Humble, Iron, Jazzy, and Rolling distributions across Ubuntu 22.04 and 24.04 base images.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/docker-ros2-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docker-ros2-development"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "docker-ros2-development. Best practices for Docker-based ROS2 development including multi-stage Dockerfiles, docker-compose for multi-container robotic systems, DDS discovery across containers, GPU passthrough for perception, and dev-vs-deploy container patterns. Use this skill when containerizing ROS2 workspaces, setting up docker-compose for robot software stacks, debugging DDS communication between containers, configuring NVIDIA Container Toolkit for GPU workloads, forwarding X11/Wayland for rviz2 and GUI tools, or managing USB device passthrough for cameras and serial devices. Trigger whenever the user mentions Docker with ROS2, docker-compose for robots, Dockerfile for colcon workspaces, container networking for DDS, GPU containers for perception, devcontainer for ROS2, multi-stage builds for ROS2, or deploying ROS2 in containers. Also trigger for CI/CD with Docker-based ROS2 builds, CycloneDDS or FastDDS configuration in containers, shared memory in Docker, or X11 forwarding for rviz2. Covers Humble, Iron, Jazzy, and Rolling distributions across Ubuntu 22.04 and 24.04 base images. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} {"id": "8e67c74d75848eb8c2f5f28c8c207e8c8b0a9084e4c8ba8d12370239c6251dc2", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robot-bringup", "description": "Patterns and best practices for bringing up a complete ROS2-based robotics system on a robot's onboard computer, including systemd services, launch file composition, ordered startup, and production monitoring. Use this skill when configuring a robot to start ROS2 nodes on boot, writing systemd unit files for ROS2 launch, composing layered launch files for full robot stacks, setting up watchdog monitoring, configuring udev rules for deterministic device naming, or debugging boot-time race conditions. Trigger whenever the user mentions robot bringup, robot startup, systemd for ROS2, ROS2 on boot, launch file composition, robot boot sequence, udev rules for cameras or serial ports, watchdog for robot systems, automatic restart for ROS2 nodes, network configuration for multi-machine ROS2, log rotation for robots, graceful shutdown of robot stacks, or SSH-based remote debugging of robots. Also trigger for environment setup in systemd (sourcing workspaces), ordered startup with health checks, deterministic device naming, or any discussion of running ROS2 systems as long-running production services. Covers systemd on Ubuntu 22.04/24.04 with ROS2 Humble, Iron, and Jazzy.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robot-bringup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robot-bringup"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "robot-bringup. Patterns and best practices for bringing up a complete ROS2-based robotics system on a robot's onboard computer, including systemd services, launch file composition, ordered startup, and production monitoring. Use this skill when configuring a robot to start ROS2 nodes on boot, writing systemd unit files for ROS2 launch, composing layered launch files for full robot stacks, setting up watchdog monitoring, configuring udev rules for deterministic device naming, or debugging boot-time race conditions. Trigger whenever the user mentions robot bringup, robot startup, systemd for ROS2, ROS2 on boot, launch file composition, robot boot sequence, udev rules for cameras or serial ports, watchdog for robot systems, automatic restart for ROS2 nodes, network configuration for multi-machine ROS2, log rotation for robots, graceful shutdown of robot stacks, or SSH-based remote debugging of robots. Also trigger for environment setup in systemd (sourcing workspaces), ordered startup with health checks, deterministic device naming, or any discussion of running ROS2 systems as long-running production services. Covers systemd on Ubuntu 22.04/24.04 with ROS2 Humble, Iron, and Jazzy. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} -{"id": "ba1ee88db32242454979b5be14dfa5ae8bf92e0e9b3b56bdd8f65cafba28984d", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robot-perception", "description": "Comprehensive best practices for robot perception systems covering cameras, LiDARs, depth sensors, IMUs, and multi-sensor setups. Use this skill when working with RGB image processing, depth maps, point clouds, sensor calibration (intrinsic, extrinsic, hand-eye), object detection, semantic segmentation, 3D reconstruction, visual servoing, or perception pipeline optimization. Trigger whenever the user mentions OpenCV, Open3D, PCL, RealSense, ZED, OAK-D, camera calibration, AprilTags, ArUco markers, stereo vision, RGBD, point cloud filtering, ICP registration, coordinate transforms, camera intrinsics, distortion correction, image undistortion, sensor streaming, frame synchronization, or any computer vision task in a robotics context. Also covers multi-camera rigs, time synchronization across sensors, perception latency budgets, and production deployment of perception pipelines.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robot-perception/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robot-perception"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "robot-perception. Comprehensive best practices for robot perception systems covering cameras, LiDARs, depth sensors, IMUs, and multi-sensor setups. Use this skill when working with RGB image processing, depth maps, point clouds, sensor calibration (intrinsic, extrinsic, hand-eye), object detection, semantic segmentation, 3D reconstruction, visual servoing, or perception pipeline optimization. Trigger whenever the user mentions OpenCV, Open3D, PCL, RealSense, ZED, OAK-D, camera calibration, AprilTags, ArUco markers, stereo vision, RGBD, point cloud filtering, ICP registration, coordinate transforms, camera intrinsics, distortion correction, image undistortion, sensor streaming, frame synchronization, or any computer vision task in a robotics context. Also covers multi-camera rigs, time synchronization across sensors, perception latency budgets, and production deployment of perception pipelines. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} -{"id": "a28a969179bc28ef6bee986d83531ce788b1ced94c00b5b9f56781b3e6cfb43d", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robotics-design-patterns", "description": "Architecture patterns, design principles, and proven recipes for building robust robotics software. Use this skill when designing robot software architectures, choosing between behavioral frameworks, structuring perception-planning-control pipelines, implementing state machines, designing safety systems, or architecting multi-robot systems. Trigger whenever the user mentions behavior trees, finite state machines, subsumption architecture, sensor fusion, robot safety, watchdogs, heartbeats, graceful degradation, hardware abstraction layers, real-time constraints, or software architecture for robots. Also applies to sim-to-real transfer, digital twins, and robot fleet management.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robotics-design-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robotics-design-patterns"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "robotics-design-patterns. Architecture patterns, design principles, and proven recipes for building robust robotics software. Use this skill when designing robot software architectures, choosing between behavioral frameworks, structuring perception-planning-control pipelines, implementing state machines, designing safety systems, or architecting multi-robot systems. Trigger whenever the user mentions behavior trees, finite state machines, subsumption architecture, sensor fusion, robot safety, watchdogs, heartbeats, graceful degradation, hardware abstraction layers, real-time constraints, or software architecture for robots. Also applies to sim-to-real transfer, digital twins, and robot fleet management. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} -{"id": "7f0e35d58227d25ff5aa587acf926a4457a501ddeeca79af33dc3caac73a57d9", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robotics-security", "description": "Security hardening and best practices for robotic systems, covering SROS2 DDS security, network segmentation, secrets management, secure boot, and the physical-cyber safety intersection. Use this skill when securing ROS2 communications, configuring DDS encryption and access control, hardening robot onboard computers, managing certificates and credentials, setting up network segmentation for robot fleets, or addressing the unique security challenges where cyber vulnerabilities become physical safety risks. Trigger whenever the user mentions SROS2, DDS security, robot security, robot hardening, ROS2 encryption, ROS2 access control, robot network security, secure robot deployment, robot certificates, keystore generation, robot firewall, e-stop security, safety controller isolation, or IEC 62443 for robotics.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robotics-security/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robotics-security"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "robotics-security. Security hardening and best practices for robotic systems, covering SROS2 DDS security, network segmentation, secrets management, secure boot, and the physical-cyber safety intersection. Use this skill when securing ROS2 communications, configuring DDS encryption and access control, hardening robot onboard computers, managing certificates and credentials, setting up network segmentation for robot fleets, or addressing the unique security challenges where cyber vulnerabilities become physical safety risks. Trigger whenever the user mentions SROS2, DDS security, robot security, robot hardening, ROS2 encryption, ROS2 access control, robot network security, secure robot deployment, robot certificates, keystore generation, robot firewall, e-stop security, safety controller isolation, or IEC 62443 for robotics. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} -{"id": "2598619869c8db5d498617be37c601f70e1f035614aff23c1c86daad418f0898", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robotics-software-principles", "description": "Foundational software design principles applied specifically to robotics module development. Use this skill when designing robot software modules, structuring codebases, making architecture decisions, reviewing robotics code, or building reusable robotics libraries. Trigger whenever the user mentions SOLID principles for robots, modular robotics software, clean architecture for robots, dependency injection in robotics, interface design for hardware, real-time design constraints, error handling strategies for robots, configuration management, separation of concerns in perception-planning- control, composability of robot behaviors, or any discussion of software craftsmanship in a robotics context. Also trigger for code reviews of robotics code, refactoring robot software, or designing APIs for robotics libraries.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robotics-software-principles/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robotics-software-principles"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "robotics-software-principles. Foundational software design principles applied specifically to robotics module development. Use this skill when designing robot software modules, structuring codebases, making architecture decisions, reviewing robotics code, or building reusable robotics libraries. Trigger whenever the user mentions SOLID principles for robots, modular robotics software, clean architecture for robots, dependency injection in robotics, interface design for hardware, real-time design constraints, error handling strategies for robots, configuration management, separation of concerns in perception-planning- control, composability of robot behaviors, or any discussion of software craftsmanship in a robotics context. Also trigger for code reviews of robotics code, refactoring robot software, or designing APIs for robotics libraries. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} -{"id": "477bf80f3eb2ea43663a68f96f91f044e088b1374ab5bcf4f595eca56725d706", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "robotics-testing", "description": "Testing strategies, patterns, and tools for robotics software. Use this skill when writing unit tests, integration tests, simulation tests, or hardware-in-the-loop tests for robot systems. Trigger whenever the user mentions testing ROS nodes, pytest with ROS, launch_testing, simulation testing, CI/CD for robotics, test fixtures for sensors, mock hardware, deterministic replay, regression testing for robot behaviors, or validating perception/planning/control pipelines. Also covers property-based testing for kinematics, fuzz testing for message handlers, and golden-file testing for trajectories.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/robotics-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robotics-testing"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "robotics-testing. Testing strategies, patterns, and tools for robotics software. Use this skill when writing unit tests, integration tests, simulation tests, or hardware-in-the-loop tests for robot systems. Trigger whenever the user mentions testing ROS nodes, pytest with ROS, launch_testing, simulation testing, CI/CD for robotics, test fixtures for sensors, mock hardware, deterministic replay, regression testing for robot behaviors, or validating perception/planning/control pipelines. Also covers property-based testing for kinematics, fuzz testing for message handlers, and golden-file testing for trajectories. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} -{"id": "dbf967c52e3e0e5afa18122ff2955a580fccddb77e95bfbb213db49773f5f17f", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "ros1-development", "description": "Best practices, design patterns, and common pitfalls for ROS1 (Robot Operating System 1) development. Use this skill when building ROS1 nodes, packages, launch files, or debugging ROS1 systems. Trigger whenever the user mentions ROS1, catkin, rospy, roscpp, roslaunch, roscore, rostopic, tf, actionlib, message types, services, or any ROS1-era robotics middleware. Also trigger for migrating ROS1 code to ROS2, maintaining legacy ROS1 systems, or building ROS1-ROS2 bridges. Covers catkin workspaces, nodelets, dynamic reconfigure, pluginlib, and the full ROS1 ecosystem.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/ros1/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ros1-development"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "ros1-development. Best practices, design patterns, and common pitfalls for ROS1 (Robot Operating System 1) development. Use this skill when building ROS1 nodes, packages, launch files, or debugging ROS1 systems. Trigger whenever the user mentions ROS1, catkin, rospy, roscpp, roslaunch, roscore, rostopic, tf, actionlib, message types, services, or any ROS1-era robotics middleware. Also trigger for migrating ROS1 code to ROS2, maintaining legacy ROS1 systems, or building ROS1-ROS2 bridges. Covers catkin workspaces, nodelets, dynamic reconfigure, pluginlib, and the full ROS1 ecosystem. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} {"id": "1547945551813e8d3d76b6b429f07f53bf1bd0f1807f45813e480878a0f42702", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "ros2-web-integration", "description": "Patterns and best practices for integrating ROS2 systems with web technologies including REST APIs, WebSocket bridges, and browser-based robot interfaces. Use this skill when building web dashboards for robots, streaming camera feeds to browsers, exposing ROS2 services as REST endpoints, or implementing bidirectional WebSocket communication between web UIs and ROS2 nodes. Trigger whenever the user mentions rosbridge, rosbridge_suite, roslibjs, FastAPI with ROS2, Flask with rclpy, WebSocket for robot telemetry, MJPEG streaming, WebRTC for robots, REST API wrapping ROS2 services, web-based robot control, browser robot interface, robot dashboard, CORS configuration for robots, or any web-to-ROS2 bridge pattern. Also trigger for authentication on robot web interfaces, rate limiting sensor streams, video streaming from robot cameras to browsers, or running async web frameworks alongside the ROS2 executor. Covers rosbridge_suite, FastAPI, Flask, WebSocket, and WebRTC approaches.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/ros2-web-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ros2-web-integration"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "ros2-web-integration. Patterns and best practices for integrating ROS2 systems with web technologies including REST APIs, WebSocket bridges, and browser-based robot interfaces. Use this skill when building web dashboards for robots, streaming camera feeds to browsers, exposing ROS2 services as REST endpoints, or implementing bidirectional WebSocket communication between web UIs and ROS2 nodes. Trigger whenever the user mentions rosbridge, rosbridge_suite, roslibjs, FastAPI with ROS2, Flask with rclpy, WebSocket for robot telemetry, MJPEG streaming, WebRTC for robots, REST API wrapping ROS2 services, web-based robot control, browser robot interface, robot dashboard, CORS configuration for robots, or any web-to-ROS2 bridge pattern. Also trigger for authentication on robot web interfaces, rate limiting sensor streams, video streaming from robot cameras to browsers, or running async web frameworks alongside the ROS2 executor. Covers rosbridge_suite, FastAPI, Flask, WebSocket, and WebRTC approaches. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} {"id": "138b56e2ccf10a0a3bac07351d5b4449275835deaed2e2fcb47fa085e3a6224f", "repo_url": "https://github.com/arpitg1304/robotics-agent-skills", "name": "ros2-development", "description": "Comprehensive best practices, design patterns, and common pitfalls for ROS2 (Robot Operating System 2) development. Use this skill when building ROS2 nodes, packages, launch files, components, or debugging ROS2 systems. Trigger whenever the user mentions ROS2, colcon, rclpy, rclcpp, DDS, QoS, lifecycle nodes, managed nodes, ROS2 launch, ROS2 parameters, ROS2 actions, nav2, MoveIt2, micro-ROS, or any ROS2-era robotics middleware. Also trigger for ROS2 workspace setup, DDS tuning, intra-process communication, ROS2 security, or deploying ROS2 in production. Also trigger for colcon build issues, ament_cmake, ament_python, CMakeLists.txt for ROS2, package.xml dependencies, rosdep, workspace overlays, custom message generation, or ROS2 build troubleshooting. Covers Humble, Iron, Jazzy, and Rolling distributions.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-coding-assistant", "claude-skills", "robotics"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/arpitg1304/robotics-agent-skills/blob/main/skills/ros2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ros2-development"}, "quality": {"stars": 149, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T04:39:57Z"}, "embedding_text": "ros2-development. Comprehensive best practices, design patterns, and common pitfalls for ROS2 (Robot Operating System 2) development. Use this skill when building ROS2 nodes, packages, launch files, components, or debugging ROS2 systems. Trigger whenever the user mentions ROS2, colcon, rclpy, rclcpp, DDS, QoS, lifecycle nodes, managed nodes, ROS2 launch, ROS2 parameters, ROS2 actions, nav2, MoveIt2, micro-ROS, or any ROS2-era robotics middleware. Also trigger for ROS2 workspace setup, DDS tuning, intra-process communication, ROS2 security, or deploying ROS2 in production. Also trigger for colcon build issues, ament_cmake, ament_python, CMakeLists.txt for ROS2, package.xml dependencies, rosdep, workspace overlays, custom message generation, or ROS2 build troubleshooting. Covers Humble, Iron, Jazzy, and Rolling distributions. Categories: agent-skills, ai-coding-assistant, claude-skills, robotics. Platforms: claude_code."} {"id": "676a0eb84ff6cb9624fd695ba19e3fc4115e055dd4e48530cf837b95fd2dbfa1", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "add-uint-support", "description": "Add unsigned integer (uint) type support to PyTorch operators by updating AT_DISPATCH macros. Use when adding support for uint16, uint32, uint64 types to operators, kernels, or when user mentions enabling unsigned types, barebones unsigned types, or uint support.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/add-uint-support/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install add-uint-support"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "add-uint-support. Add unsigned integer (uint) type support to PyTorch operators by updating AT_DISPATCH macros. Use when adding support for uint16, uint32, uint64 types to operators, kernels, or when user mentions enabling unsigned types, barebones unsigned types, or uint support. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "a906957cd1976e9b3309b5d7af31582bb4c4dabb35ef581a6f2420b70a11b356", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "Agent Development", "description": "This skill should be used when the user asks to \"create an agent\", \"add an agent\", \"write a subagent\", \"agent frontmatter\", \"when to use description\", \"agent examples\", \"agent tools\", \"agent colors\", \"autonomous agent\", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/agent-identifier/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Agent Development"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "Agent Development. This skill should be used when the user asks to \"create an agent\", \"add an agent\", \"write a subagent\", \"agent frontmatter\", \"when to use description\", \"agent examples\", \"agent tools\", \"agent colors\", \"autonomous agent\", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} -{"id": "00e7388e9959cb19b37116003a862b72a4f16267b4afc90cfe6814b2d7621613", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "andrew-kane-gem-writer", "description": "Write Ruby gems following Andrew Kane's proven patterns and philosophy. Use when creating new Ruby gems, refactoring existing gems, designing gem APIs, or when the user wants clean, minimal, production-ready Ruby library code. Triggers on requests like \"create a gem\", \"write a Ruby library\", \"design a gem API\", or mentions of Andrew Kane's style.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/andrew-kane-gem-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install andrew-kane-gem-writer"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "andrew-kane-gem-writer. Write Ruby gems following Andrew Kane's proven patterns and philosophy. Use when creating new Ruby gems, refactoring existing gems, designing gem APIs, or when the user wants clean, minimal, production-ready Ruby library code. Triggers on requests like \"create a gem\", \"write a Ruby library\", \"design a gem API\", or mentions of Andrew Kane's style. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "589721a2c81131bb53452c58c5eae41d31e5434ab3cc9cbd6ec83f0f133fb075", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "aws-cdk-development", "description": "AWS Cloud Development Kit (CDK) expert for building cloud infrastructure with TypeScript/Python. Use when creating CDK stacks, defining CDK constructs, implementing infrastructure as code, or when the user mentions CDK, CloudFormation, IaC, cdk synth, cdk deploy, or wants to define AWS infrastructure programmatically. Covers CDK app structure, construct patterns, stack composition, and deployment workflows.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/aws-skills/skills/aws-cdk-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-cdk-development"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "aws-cdk-development. AWS Cloud Development Kit (CDK) expert for building cloud infrastructure with TypeScript/Python. Use when creating CDK stacks, defining CDK constructs, implementing infrastructure as code, or when the user mentions CDK, CloudFormation, IaC, cdk synth, cdk deploy, or wants to define AWS infrastructure programmatically. Covers CDK app structure, construct patterns, stack composition, and deployment workflows. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "28d2dad0a4733d395eacf78f9e4e02d53bccf3a5ab8f8a40cefbb9fea06b559e", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "better-auth", "description": "Implement authentication and authorization with Better Auth - a framework-agnostic TypeScript authentication framework. Features include email/password authentication with verification, OAuth providers (Google, GitHub, Discord, etc.), two-factor authentication (TOTP, SMS), passkeys/WebAuthn support, session management, role-based access control (RBAC), rate limiting, and database adapters. Use when adding authentication to applications, implementing OAuth flows, setting up 2FA/MFA, managing user sessions, configuring authorization rules, or building secure authentication systems for web applications.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/better-auth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install better-auth"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "better-auth. Implement authentication and authorization with Better Auth - a framework-agnostic TypeScript authentication framework. Features include email/password authentication with verification, OAuth providers (Google, GitHub, Discord, etc.), two-factor authentication (TOTP, SMS), passkeys/WebAuthn support, session management, role-based access control (RBAC), rate limiting, and database adapters. Use when adding authentication to applications, implementing OAuth flows, setting up 2FA/MFA, managing user sessions, configuring authorization rules, or building secure authentication systems for web applications. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} -{"id": "dd033ea331a8b58037545b2e31e8d841d37c93039073cd8cf81eba31da1917bf", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "biomni", "description": "Autonomous biomedical AI agent framework for executing complex research tasks across genomics, drug discovery, molecular biology, and clinical analysis. Use this skill when conducting multi-step biomedical research including CRISPR screening design, single-cell RNA-seq analysis, ADMET prediction, GWAS interpretation, rare disease diagnosis, or lab protocol optimization. Leverages LLM reasoning with code execution and integrated biomedical databases.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/biomni/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install biomni"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "biomni. Autonomous biomedical AI agent framework for executing complex research tasks across genomics, drug discovery, molecular biology, and clinical analysis. Use this skill when conducting multi-step biomedical research including CRISPR screening design, single-cell RNA-seq analysis, ADMET prediction, GWAS interpretation, rare disease diagnosis, or lab protocol optimization. Leverages LLM reasoning with code execution and integrated biomedical databases. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "bd2d1abb8a59f0bf9036e8d3d2de007d4fd117e8e8e2dabe8ad174208b3d8ffc", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "brand-guidelines", "description": "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.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-guidelines"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "brand-guidelines. 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. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "28cde68bdc3eeca379db8d84b40725e1a86887625c8ead110b579889680f0b4f", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "adaptyv", "description": "Cloud laboratory platform for automated protein testing and validation. Use when designing proteins and needing experimental validation including binding assays, expression testing, thermostability measurements, enzyme activity assays, or protein sequence optimization. Also use for submitting experiments via API, tracking experiment status, downloading results, optimizing protein sequences for better expression using computational tools (NetSolP, SoluProt, SolubleMPNN, ESM), or managing protein design workflows with wet-lab validation.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/claude-scientific-skills/scientific-skills/adaptyv/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install adaptyv"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "adaptyv. Cloud laboratory platform for automated protein testing and validation. Use when designing proteins and needing experimental validation including binding assays, expression testing, thermostability measurements, enzyme activity assays, or protein sequence optimization. Also use for submitting experiments via API, tracking experiment status, downloading results, optimizing protein sequences for better expression using computational tools (NetSolP, SoluProt, SolubleMPNN, ESM), or managing protein design workflows with wet-lab validation. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "c8f1d226efe99fa5a8ce7bb54c445c1256ae6450e282321a2142953047da226f", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "alphafold-database", "description": "Access AlphaFold's 200M+ AI-predicted protein structures. Retrieve structures by UniProt ID, download PDB/mmCIF files, analyze confidence metrics (pLDDT, PAE), for drug discovery and structural biology.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/claude-scientific-skills/scientific-skills/alphafold-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphafold-database"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "alphafold-database. Access AlphaFold's 200M+ AI-predicted protein structures. Retrieve structures by UniProt ID, download PDB/mmCIF files, analyze confidence metrics (pLDDT, PAE), for drug discovery and structural biology. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} @@ -20199,7 +24701,6 @@ {"id": "7e927fccc8973655b3ef28732c9873c5677aa0f30f8c9173f103b1dda5688b1c", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "cellxgene-census", "description": "Query CZ CELLxGENE Census (61M+ cells). Filter by cell type/tissue/disease, retrieve expression data, integrate with scanpy/PyTorch, for population-scale single-cell analysis.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/claude-scientific-skills/scientific-skills/cellxgene-census/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cellxgene-census"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "cellxgene-census. Query CZ CELLxGENE Census (61M+ cells). Filter by cell type/tissue/disease, retrieve expression data, integrate with scanpy/PyTorch, for population-scale single-cell analysis. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "9c691d8806a7ac523c4311ad9d40a1759eebcaecd8fd2d16c9f2d4fb08cc62e9", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "chembl-database", "description": "Query ChEMBL's bioactive molecules and drug discovery data. Search compounds by structure/properties, retrieve bioactivity data (IC50, Ki), find inhibitors, perform SAR studies, for medicinal chemistry.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/claude-scientific-skills/scientific-skills/chembl-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install chembl-database"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "chembl-database. Query ChEMBL's bioactive molecules and drug discovery data. Search compounds by structure/properties, retrieve bioactivity data (IC50, Ki), find inhibitors, perform SAR studies, for medicinal chemistry. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "177dd09504966ff503d2d19a76232e5e0d79c059774911dbd215231b16e940f6", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "cirq", "description": "Quantum computing framework for building, simulating, optimizing, and executing quantum circuits. Use this skill when working with quantum algorithms, quantum circuit design, quantum simulation (noiseless or noisy), running on quantum hardware (Google, IonQ, AQT, Pasqal), circuit optimization and compilation, noise modeling and characterization, or quantum experiments and benchmarking (VQE, QAOA, QPE, randomized benchmarking).", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/claude-scientific-skills/scientific-skills/cirq/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cirq"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "cirq. Quantum computing framework for building, simulating, optimizing, and executing quantum circuits. Use this skill when working with quantum algorithms, quantum circuit design, quantum simulation (noiseless or noisy), running on quantum hardware (Google, IonQ, AQT, Pasqal), circuit optimization and compilation, noise modeling and characterization, or quantum experiments and benchmarking (VQE, QAOA, QPE, randomized benchmarking). Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} -{"id": "62442c35db06a200dacd68ca665aa42ae91a6a1b9ec2e7e5d2a96b49fb61b28c", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "cosmic-database", "description": "Access COSMIC cancer mutation database. Query somatic mutations, Cancer Gene Census, mutational signatures, gene fusions, for cancer research and precision oncology. Requires authentication.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/claude-scientific-skills/scientific-skills/cosmic-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cosmic-database"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "cosmic-database. Access COSMIC cancer mutation database. Query somatic mutations, Cancer Gene Census, mutational signatures, gene fusions, for cancer research and precision oncology. Requires authentication. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "991061c6d29b54c9457b60dc63d06e25e3ad0dedef3cb3f4c26b14511925bf14", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "modal", "description": "Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/claude-scientific-skills/scientific-skills/modal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install modal"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "modal. Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "7459d58b19f798b486f5f8bc34b25302a977dfc56056a9fea5ba851153283948", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "clinicaltrials-database", "description": "Query ClinicalTrials.gov via API v2. Search trials by condition, drug, location, status, or phase. Retrieve trial details by NCT ID, export data, for clinical research and patient matching.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/clinicaltrials-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install clinicaltrials-database"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "clinicaltrials-database. Query ClinicalTrials.gov via API v2. Search trials by condition, drug, location, status, or phase. Retrieve trial details by NCT ID, export data, for clinical research and patient matching. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} {"id": "df30f3a277a9c575284847f258aa7d7ff373b7ee3b4960344142e16b9a44faa8", "repo_url": "https://github.com/microck/ordinary-claude-skills", "name": "clinpgx-database", "description": "Access ClinPGx pharmacogenomics data (successor to PharmGKB). Query gene-drug interactions, CPIC guidelines, allele functions, for precision medicine and genotype-guided dosing decisions.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills", "collection", "list"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microck/ordinary-claude-skills/blob/main/skills_all/clinpgx-database/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install clinpgx-database"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-04T22:14:19Z"}, "embedding_text": "clinpgx-database. Access ClinPGx pharmacogenomics data (successor to PharmGKB). Query gene-drug interactions, CPIC guidelines, allele functions, for precision medicine and genotype-guided dosing decisions. Categories: claude, claude-code, claude-skills, collection, list. Platforms: claude_code."} @@ -21786,26 +26287,16 @@ {"id": "9eeee5d6a240f0bff9dd542a0c66a88ce6bceebc5c383e5b5f4b929afcb55493", "repo_url": "https://github.com/ferdinandobons/startup-skill", "name": "startup-competitors", "description": "Deep competitive intelligence for any market. Analyzes competitors' products, pricing, customer sentiment, GTM strategy, and growth signals using real web data. Produces battle cards, pricing landscape, and feature matrix. Use when the user wants to understand their competitive landscape, analyze competitors, compare products in a market, or research who they're competing against. Triggers for \"who are my competitors\", \"competitive analysis\", \"competitor research\", \"battle cards\", \"pricing comparison\", \"competitor pricing\", \"market players\", \"competitive intelligence\", \"competitive landscape\", \"who else is in this space\", \"competitive moat\", or any request to profile, compare, or map competitors in a category. Works standalone \u2014 no prior startup-design session needed.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "battle-cards", "claude-code", "claude-skills", "competitive-analysis", "competitive-intelligence", "market-research", "pricing-analysis", "startup", "startup-validation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ferdinandobons/startup-skill/blob/main/startup-competitors/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install startup-competitors"}, "quality": {"stars": 109, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:02:14Z"}, "embedding_text": "startup-competitors. Deep competitive intelligence for any market. Analyzes competitors' products, pricing, customer sentiment, GTM strategy, and growth signals using real web data. Produces battle cards, pricing landscape, and feature matrix. Use when the user wants to understand their competitive landscape, analyze competitors, compare products in a market, or research who they're competing against. Triggers for \"who are my competitors\", \"competitive analysis\", \"competitor research\", \"battle cards\", \"pricing comparison\", \"competitor pricing\", \"market players\", \"competitive intelligence\", \"competitive landscape\", \"who else is in this space\", \"competitive moat\", or any request to profile, compare, or map competitors in a category. Works standalone \u2014 no prior startup-design session needed. Categories: ai-agents, battle-cards, claude-code, claude-skills, competitive-analysis, competitive-intelligence, market-research, pricing-analysis, startup, startup-validation. Platforms: claude_code."} {"id": "9eb407151dc7e6cdd09aeeb2e6ffbd6ce34d19ec078f05c59c5a484250ade102", "repo_url": "https://github.com/ferdinandobons/startup-skill", "name": "startup-design", "description": "Design, validate, and plan a startup from scratch. Covers market research, competitive analysis, business model, brand identity, product definition, financial projections, and validation experiments. Trigger when the user has a startup idea to explore, wants to validate a business concept, needs a business plan or lean canvas, asks for market sizing or competitive landscape, wants brand positioning or go-to-market strategy, or says anything like \"I have an idea for...\" or \"is this idea worth pursuing\". Also handles resuming from a previous checkpoint.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "battle-cards", "claude-code", "claude-skills", "competitive-analysis", "competitive-intelligence", "market-research", "pricing-analysis", "startup", "startup-validation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ferdinandobons/startup-skill/blob/main/startup-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install startup-design"}, "quality": {"stars": 109, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:02:14Z"}, "embedding_text": "startup-design. Design, validate, and plan a startup from scratch. Covers market research, competitive analysis, business model, brand identity, product definition, financial projections, and validation experiments. Trigger when the user has a startup idea to explore, wants to validate a business concept, needs a business plan or lean canvas, asks for market sizing or competitive landscape, wants brand positioning or go-to-market strategy, or says anything like \"I have an idea for...\" or \"is this idea worth pursuing\". Also handles resuming from a previous checkpoint. Categories: ai-agents, battle-cards, claude-code, claude-skills, competitive-analysis, competitive-intelligence, market-research, pricing-analysis, startup, startup-validation. Platforms: claude_code."} {"id": "0274c4f384ee0c11aa27dd39f6b0534ba5ec32428684551f3a0a9148f41aee06", "repo_url": "https://github.com/ferdinandobons/startup-skill", "name": "startup-positioning", "description": "Market positioning strategy using the April Dunford framework, enriched with JTBD discovery, Moore positioning statement, and Neumeier's Onliness Test. Produces a complete positioning document, positioning statement, competitive alternatives map, and market category analysis. Use when the user wants to define or refine their market positioning, find their unique position, differentiate from competitors, craft a positioning statement, choose a market category, or figure out \"how should we position this product.\" Triggers for \"positioning\", \"how to position\", \"market position\", \"differentiation strategy\", \"positioning statement\", \"competitive positioning\", \"category strategy\", \"where do we fit in the market\", \"how are we different\", \"unique value proposition\", or any request to define, sharpen, or rethink positioning. Works standalone \u2014 no prior startup-design or startup-competitors session needed, but leverages their output if available.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "battle-cards", "claude-code", "claude-skills", "competitive-analysis", "competitive-intelligence", "market-research", "pricing-analysis", "startup", "startup-validation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ferdinandobons/startup-skill/blob/main/startup-positioning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install startup-positioning"}, "quality": {"stars": 109, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:02:14Z"}, "embedding_text": "startup-positioning. Market positioning strategy using the April Dunford framework, enriched with JTBD discovery, Moore positioning statement, and Neumeier's Onliness Test. Produces a complete positioning document, positioning statement, competitive alternatives map, and market category analysis. Use when the user wants to define or refine their market positioning, find their unique position, differentiate from competitors, craft a positioning statement, choose a market category, or figure out \"how should we position this product.\" Triggers for \"positioning\", \"how to position\", \"market position\", \"differentiation strategy\", \"positioning statement\", \"competitive positioning\", \"category strategy\", \"where do we fit in the market\", \"how are we different\", \"unique value proposition\", or any request to define, sharpen, or rethink positioning. Works standalone \u2014 no prior startup-design or startup-competitors session needed, but leverages their output if available. Categories: ai-agents, battle-cards, claude-code, claude-skills, competitive-analysis, competitive-intelligence, market-research, pricing-analysis, startup, startup-validation. Platforms: claude_code."} -{"id": "47b88b3f1d725da96586ab9675aff13df0cab1627c8c891a506c05a19efff003", "repo_url": "https://github.com/zaferayan/skills", "name": "zafer-skills", "description": "Expo React Native mobile app development with RevenueCat payments, AdMob ads, i18n localization, onboarding flow, paywall, and NativeTabs navigation", "source": ["marketplace", "topic"], "categories": ["claude-code", "claude-skills", "expo", "react-native"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zaferayan/skills/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zafer-skills"}, "quality": {"stars": 103, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-29T08:22:18Z"}, "embedding_text": "zafer-skills. Expo React Native mobile app development with RevenueCat payments, AdMob ads, i18n localization, onboarding flow, paywall, and NativeTabs navigation Categories: claude-code, claude-skills, expo, react-native. Platforms: claude_code."} {"id": "4faa52937816fc66013b75fbb6108ccad42efc69b12338de8ede28e9773e10a0", "repo_url": "https://github.com/haaaiawd/nexus-skills", "name": "nexus-mapper", "description": "Generate a persistent .nexus-map/ knowledge base that lets any AI session instantly understand a codebase's architecture, systems, dependencies, and change hotspots. Use when starting work on an unfamiliar repository, onboarding with AI-assisted context, preparing for a major refactoring initiative, or enabling reliable cold-start AI sessions across a team. Produces INDEX.md, systems.md, concept_model.json, git_forensics.md and more. Requires shell execution and Python 3.10+. For ad-hoc file queries or instant impact analysis during active development, use nexus-query instead.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "agentic-ai", "ai-coding", "ai-tools", "ast", "claude-code", "claude-skills", "cline", "code-analysis", "codebase-intelligence", "cursor", "dependency-graph", "github-copilot", "legacy-code", "refactoring", "skills", "spec", "tree-sitter", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/haaaiawd/nexus-skills/blob/master/skills/nexus-mapper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nexus-mapper"}, "quality": {"stars": 110, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T04:06:41Z"}, "embedding_text": "nexus-mapper. Generate a persistent .nexus-map/ knowledge base that lets any AI session instantly understand a codebase's architecture, systems, dependencies, and change hotspots. Use when starting work on an unfamiliar repository, onboarding with AI-assisted context, preparing for a major refactoring initiative, or enabling reliable cold-start AI sessions across a team. Produces INDEX.md, systems.md, concept_model.json, git_forensics.md and more. Requires shell execution and Python 3.10+. For ad-hoc file queries or instant impact analysis during active development, use nexus-query instead. Categories: agent-skills, agentic-ai, ai-coding, ai-tools, ast, claude-code, claude-skills, cline, code-analysis, codebase-intelligence, cursor, dependency-graph, github-copilot, legacy-code, refactoring, skills, spec, tree-sitter, vibe-coding. Platforms: claude_code."} {"id": "4d9f373d4c378e1d22425be30efc4cd3cb011b51b5d757e3dc50e26c17734544", "repo_url": "https://github.com/haaaiawd/nexus-skills", "name": "nexus-query", "description": "Precise, instant code structure queries for active development \u2014 answer 'who depends on this interface before I refactor it', 'how many modules break if I change this', 'what is the real impact radius of this feature change', 'which module is the true high-coupling hotspot in this legacy codebase'. Essential before any interface change, continuous refactoring task, sprint work estimation, or when navigating unfamiliar or large legacy codebases. Requires Python 3.10+ and shell. Use nexus-mapper instead when building a full .nexus-map/ knowledge base.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "agentic-ai", "ai-coding", "ai-tools", "ast", "claude-code", "claude-skills", "cline", "code-analysis", "codebase-intelligence", "cursor", "dependency-graph", "github-copilot", "legacy-code", "refactoring", "skills", "spec", "tree-sitter", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/haaaiawd/nexus-skills/blob/master/skills/nexus-query/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nexus-query"}, "quality": {"stars": 110, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T04:06:41Z"}, "embedding_text": "nexus-query. Precise, instant code structure queries for active development \u2014 answer 'who depends on this interface before I refactor it', 'how many modules break if I change this', 'what is the real impact radius of this feature change', 'which module is the true high-coupling hotspot in this legacy codebase'. Essential before any interface change, continuous refactoring task, sprint work estimation, or when navigating unfamiliar or large legacy codebases. Requires Python 3.10+ and shell. Use nexus-mapper instead when building a full .nexus-map/ knowledge base. Categories: agent-skills, agentic-ai, ai-coding, ai-tools, ast, claude-code, claude-skills, cline, code-analysis, codebase-intelligence, cursor, dependency-graph, github-copilot, legacy-code, refactoring, skills, spec, tree-sitter, vibe-coding. Platforms: claude_code."} {"id": "84b6ef68b1b3bee675524c5d56863d9d596855d14c1bf97505958212e45380d6", "repo_url": "https://github.com/smnandre/symfony-ux-skills", "name": "live-component", "description": "Symfony UX LiveComponent for dynamic server-rendered UI. Use when building interactive components that re-render via AJAX, real-time forms, data binding, live validation, or reactive UI without writing JavaScript. Triggers - live component, AsLiveComponent, LiveProp, LiveAction, data-model, real-time form, dynamic UI, AJAX component, reactive PHP, two-way binding, server re-render, live search, live filter, live validation, ComponentWithFormTrait, emit, LiveListener, polling, defer, lazy component, data-loading, writable prop, URL binding, component communication. Also trigger when the user wants a component that updates itself based on user input without writing JavaScript, or wants Vue/React-like reactivity in PHP.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-skills", "codex", "codex-skills", "gemini", "gemini-cli-extension", "gemini-skills", "skill", "skills", "symfony", "symfony-ux", "ux"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smnandre/symfony-ux-skills/blob/main/skills/live-component/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install live-component"}, "quality": {"stars": 96, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T08:54:59Z"}, "embedding_text": "live-component. Symfony UX LiveComponent for dynamic server-rendered UI. Use when building interactive components that re-render via AJAX, real-time forms, data binding, live validation, or reactive UI without writing JavaScript. Triggers - live component, AsLiveComponent, LiveProp, LiveAction, data-model, real-time form, dynamic UI, AJAX component, reactive PHP, two-way binding, server re-render, live search, live filter, live validation, ComponentWithFormTrait, emit, LiveListener, polling, defer, lazy component, data-loading, writable prop, URL binding, component communication. Also trigger when the user wants a component that updates itself based on user input without writing JavaScript, or wants Vue/React-like reactivity in PHP. Categories: claude, claude-skills, codex, codex-skills, gemini, gemini-cli-extension, gemini-skills, skill, skills, symfony, symfony-ux, ux. Platforms: claude_code."} {"id": "5b3e69b8a1af8fb5ca51761245c20a0c41d1e134e8e4eeaebc03604d7b799f49", "repo_url": "https://github.com/smnandre/symfony-ux-skills", "name": "symfony-ux", "description": "Symfony UX frontend stack combining Stimulus, Turbo, TwigComponent and LiveComponent. Use when building modern Symfony frontends, choosing between UX tools, creating interactive components, handling real-time updates, or integrating multiple UX packages. Triggers - symfony ux, hotwire symfony, stimulus turbo, live component, twig component, frontend symfony, interactive ui, real-time symfony, which ux package, which tool should I use, how to make this interactive, SPA feel, reactive component, server-rendered component. Also trigger when the user asks a general question about frontend architecture in Symfony or wants to combine multiple UX packages together.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-skills", "codex", "codex-skills", "gemini", "gemini-cli-extension", "gemini-skills", "skill", "skills", "symfony", "symfony-ux", "ux"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smnandre/symfony-ux-skills/blob/main/skills/symfony-ux/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install symfony-ux"}, "quality": {"stars": 96, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T08:54:59Z"}, "embedding_text": "symfony-ux. Symfony UX frontend stack combining Stimulus, Turbo, TwigComponent and LiveComponent. Use when building modern Symfony frontends, choosing between UX tools, creating interactive components, handling real-time updates, or integrating multiple UX packages. Triggers - symfony ux, hotwire symfony, stimulus turbo, live component, twig component, frontend symfony, interactive ui, real-time symfony, which ux package, which tool should I use, how to make this interactive, SPA feel, reactive component, server-rendered component. Also trigger when the user asks a general question about frontend architecture in Symfony or wants to combine multiple UX packages together. Categories: claude, claude-skills, codex, codex-skills, gemini, gemini-cli-extension, gemini-skills, skill, skills, symfony, symfony-ux, ux. Platforms: claude_code."} {"id": "041886125c66225021d277ae988b15e0adfa47ae45e2e835534acaf457d20109", "repo_url": "https://github.com/smnandre/symfony-ux-skills", "name": "turbo", "description": "Hotwire Turbo for Symfony UX. Use when building SPA-like navigation without JS, partial page updates with frames, real-time updates with streams, or integrating with Mercure for broadcasts. Triggers - turbo drive, turbo-frame, turbo-stream, partial page update, SPA feel, ajax navigation, real-time update, Mercure broadcast, Symfony UX Turbo, inline edit, lazy load section, pagination frame, modal from server, flash message stream, multi-section update, TurboStreamResponse, twig:Turbo:Stream, data-turbo, turbo-stream-source, SSE. Also trigger when the user wants to update part of a page without a full reload, or wants real-time server-to-browser updates.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-skills", "codex", "codex-skills", "gemini", "gemini-cli-extension", "gemini-skills", "skill", "skills", "symfony", "symfony-ux", "ux"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smnandre/symfony-ux-skills/blob/main/skills/turbo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install turbo"}, "quality": {"stars": 96, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T08:54:59Z"}, "embedding_text": "turbo. Hotwire Turbo for Symfony UX. Use when building SPA-like navigation without JS, partial page updates with frames, real-time updates with streams, or integrating with Mercure for broadcasts. Triggers - turbo drive, turbo-frame, turbo-stream, partial page update, SPA feel, ajax navigation, real-time update, Mercure broadcast, Symfony UX Turbo, inline edit, lazy load section, pagination frame, modal from server, flash message stream, multi-section update, TurboStreamResponse, twig:Turbo:Stream, data-turbo, turbo-stream-source, SSE. Also trigger when the user wants to update part of a page without a full reload, or wants real-time server-to-browser updates. Categories: claude, claude-skills, codex, codex-skills, gemini, gemini-cli-extension, gemini-skills, skill, skills, symfony, symfony-ux, ux. Platforms: claude_code."} {"id": "dfbfc462e0ce6260854169452da858f53e2fe0deefbcc74f6685e1aab1219131", "repo_url": "https://github.com/smnandre/symfony-ux-skills", "name": "twig-component", "description": "Symfony UX TwigComponent for reusable UI elements. Use when creating reusable Twig templates with PHP backing classes, component composition, props, slots/blocks, computed properties, or anonymous components. Triggers - twig component, AsTwigComponent, reusable template, component props, twig blocks, component slots, anonymous component, Symfony UX component, HTML component, component library, design system component, UI kit, reusable button, reusable card, PreMount, PostMount, mount method. Also trigger for any question about building a reusable piece of UI in Symfony, even if the user doesn't mention TwigComponent by name.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-skills", "codex", "codex-skills", "gemini", "gemini-cli-extension", "gemini-skills", "skill", "skills", "symfony", "symfony-ux", "ux"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smnandre/symfony-ux-skills/blob/main/skills/twig-component/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install twig-component"}, "quality": {"stars": 96, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T08:54:59Z"}, "embedding_text": "twig-component. Symfony UX TwigComponent for reusable UI elements. Use when creating reusable Twig templates with PHP backing classes, component composition, props, slots/blocks, computed properties, or anonymous components. Triggers - twig component, AsTwigComponent, reusable template, component props, twig blocks, component slots, anonymous component, Symfony UX component, HTML component, component library, design system component, UI kit, reusable button, reusable card, PreMount, PostMount, mount method. Also trigger for any question about building a reusable piece of UI in Symfony, even if the user doesn't mention TwigComponent by name. Categories: claude, claude-skills, codex, codex-skills, gemini, gemini-cli-extension, gemini-skills, skill, skills, symfony, symfony-ux, ux. Platforms: claude_code."} -{"id": "33e1728998da5232773040ad188b09200fb6812b50fc2d215b73612b32d05720", "repo_url": "https://github.com/aahl/skills", "name": "crypto-report", "description": "Get cryptocurrency market data. Get Binance AI analysis report. Get blockchain news updates.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/crypto-report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install crypto-report"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "crypto-report. Get cryptocurrency market data. Get Binance AI analysis report. Get blockchain news updates. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} -{"id": "13d9c7b9058bbfe792b1f842635908436416f653b306f5522d3abb7f4afd94d8", "repo_url": "https://github.com/aahl/skills", "name": "edge-tts", "description": "Text-to-speech conversion using `uvx edge-tts` for generating audio from text. Use when (1) User requests audio/voice output with the \"tts\" trigger or keyword. (2) Content needs to be spoken rather than read (multitasking, accessibility, driving, cooking). (3) User wants a specific voice, speed, pitch, or format for TTS output.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/edge-tts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install edge-tts"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "edge-tts. Text-to-speech conversion using `uvx edge-tts` for generating audio from text. Use when (1) User requests audio/voice output with the \"tts\" trigger or keyword. (2) Content needs to be spoken rather than read (multitasking, accessibility, driving, cooking). (3) User wants a specific voice, speed, pitch, or format for TTS output. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} -{"id": "140ff1d5277b80b1da1acc5655ec87880ec6862e5a77ca3430b59358122899e6", "repo_url": "https://github.com/aahl/skills", "name": "mcp-deepwiki", "description": "Skills for accessing and searching docs in DeepWiki/GitHub\u2019s public code repositories can help users understand open-source project source codes, and users can also ask questions directly about the code docs.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/mcp-deepwiki/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-deepwiki"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "mcp-deepwiki. Skills for accessing and searching docs in DeepWiki/GitHub\u2019s public code repositories can help users understand open-source project source codes, and users can also ask questions directly about the code docs. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} -{"id": "5b498c9b2279402a2c9b2db09dab9c7b91217aafa3d29a534811fd5f449401e5", "repo_url": "https://github.com/aahl/skills", "name": "mcp-duckgo", "description": "Skills for web search and content scraping via DuckDuckGo MCP Server. Used when users need online searching and web scraping.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/mcp-duckgo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-duckgo"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "mcp-duckgo. Skills for web search and content scraping via DuckDuckGo MCP Server. Used when users need online searching and web scraping. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} {"id": "8e352707770052fcd413f9058fefff5898c243192fac625c85f7e410bfc45959", "repo_url": "https://github.com/aahl/skills", "name": "mcp-hass", "description": "The skill for control Home Assistant smart home devices and query states using MCP protocol.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/mcp-hass/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-hass"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "mcp-hass. The skill for control Home Assistant smart home devices and query states using MCP protocol. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} -{"id": "b3d529e04ab5e70fa0e720cee678ddc29f425224538e179c34c0d5f1f1a46bdb", "repo_url": "https://github.com/aahl/skills", "name": "mcp-lark", "description": "Based on FeiShu(\u98de\u4e66) / Lark's OpenAPI MCP server, manage user information, chats, emails, cloud documents, multidimensional tables, tasks, calendars, etc.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/mcp-lark/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-lark"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "mcp-lark. Based on FeiShu(\u98de\u4e66) / Lark's OpenAPI MCP server, manage user information, chats, emails, cloud documents, multidimensional tables, tasks, calendars, etc. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} -{"id": "52eab4adceed204a01df36a2488ff9fa19d4e124023f5fec684e9206dd67e501", "repo_url": "https://github.com/aahl/skills", "name": "mcp-vods", "description": "\u7528\u4e8e\u8ffd\u5267/\u8ffd\u756a\u7684\u6280\u80fd\uff0c\u4e3aAI\u63d0\u4f9b\u641c\u7d22\u5f71\u89c6\u64ad\u653e\u5730\u5740\u7684\u80fd\u529b\uff0c\u5e76\u652f\u6301\u5728\u5c0f\u7c73\u7535\u89c6\u4e0a\u76f4\u63a5\u64ad\u653e\u3002\u5f53\u7528\u6237\u60f3\u641c\u7d22\u5f71\u89c6\u3001\u52a8\u6f2b\u3001\u77ed\u5267\u3001\u7efc\u827a\u7b49\u8282\u76ee\u4fe1\u606f\u6216\u66f4\u65b0\u8fdb\u5ea6\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/mcp-vods/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-vods"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "mcp-vods. \u7528\u4e8e\u8ffd\u5267/\u8ffd\u756a\u7684\u6280\u80fd\uff0c\u4e3aAI\u63d0\u4f9b\u641c\u7d22\u5f71\u89c6\u64ad\u653e\u5730\u5740\u7684\u80fd\u529b\uff0c\u5e76\u652f\u6301\u5728\u5c0f\u7c73\u7535\u89c6\u4e0a\u76f4\u63a5\u64ad\u653e\u3002\u5f53\u7528\u6237\u60f3\u641c\u7d22\u5f71\u89c6\u3001\u52a8\u6f2b\u3001\u77ed\u5267\u3001\u7efc\u827a\u7b49\u8282\u76ee\u4fe1\u606f\u6216\u66f4\u65b0\u8fdb\u5ea6\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002 Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} {"id": "46ce3d7a1e76b0719659d25592948ab21e8b730c16b5f2f4e252858c6e532969", "repo_url": "https://github.com/aahl/skills", "name": "qwen-asr", "description": "Transcribe audio files using Qwen ASR. Use when the user sends voice messages and wants them converted to text.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/qwen-asr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install qwen-asr"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "qwen-asr. Transcribe audio files using Qwen ASR. Use when the user sends voice messages and wants them converted to text. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} -{"id": "0f55d2fa7d3a08d88d4174295f02fac9df5741a714c481f9b8a05ff03bfd0394", "repo_url": "https://github.com/aahl/skills", "name": "tianqi", "description": "\u67e5\u8be2\u4e2d\u56fd\u5730\u533a\u7684\u5929\u6c14\u9884\u62a5\uff0c\u652f\u630115\u5929\u53ca\u9010\u5c0f\u65f6\u9884\u62a5\u3001\u5404\u79cd\u751f\u6d3b\u6307\u6570", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/tianqi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tianqi"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "tianqi. \u67e5\u8be2\u4e2d\u56fd\u5730\u533a\u7684\u5929\u6c14\u9884\u62a5\uff0c\u652f\u630115\u5929\u53ca\u9010\u5c0f\u65f6\u9884\u62a5\u3001\u5404\u79cd\u751f\u6d3b\u6307\u6570 Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} -{"id": "864b899eb1aba70bcf195fa2d9959757aad914bdcd768a90eb0243a6e89cf23f", "repo_url": "https://github.com/aahl/skills", "name": "zai-tts", "description": "Text-to-speech conversion using GLM-TTS service via the `uvx zai-tts` command for generating audio from text. Use when (1) User requests audio/voice output with the \"tts\" trigger or keyword. (2) Content needs to be spoken rather than read (multitasking, accessibility, podcast, driving, cooking). (3) Using pre-cloned voices for speech.", "source": ["marketplace", "topic"], "categories": ["agent-skills", "ai-agents", "claude-skills", "feishu", "home-assistant", "lark", "llm", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aahl/skills/blob/main/skills/zai-tts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zai-tts"}, "quality": {"stars": 92, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:35:37Z"}, "embedding_text": "zai-tts. Text-to-speech conversion using GLM-TTS service via the `uvx zai-tts` command for generating audio from text. Use when (1) User requests audio/voice output with the \"tts\" trigger or keyword. (2) Content needs to be spoken rather than read (multitasking, accessibility, podcast, driving, cooking). (3) Using pre-cloned voices for speech. Categories: agent-skills, ai-agents, claude-skills, feishu, home-assistant, lark, llm, mcp, skills. Platforms: claude_code."} {"id": "bd9edfbb238b0c02dcb96c499161b67cabb4f625335364b397be47f15cd6a490", "repo_url": "https://github.com/dean2021/mijia-device-manager", "name": "mijia-device-manager", "description": "\u7ba1\u7406\u548c\u63a7\u5236\u5c0f\u7c73/\u7c73\u5bb6\u667a\u80fd\u5bb6\u5c45\u8bbe\u5907\uff0c\u76f4\u63a5\u8c03\u7528 mijiaAPI CLI \u547d\u4ee4\u901a\u8fc7\u5c0f\u7c73\u4e91\u7aef API \u63a7\u5236\u8bbe\u5907\u3002\u652f\u6301\u8bbe\u5907\u53d1\u73b0\u3001\u5f00\u5173\u63a7\u5236\u3001\u4eae\u5ea6\u8c03\u8282\u3001\u989c\u8272\u8bbe\u7f6e\u7b49\u529f\u80fd\u3002\u5f53\u7528\u6237\u9700\u8981\u63a7\u5236\u5c0f\u7c73\u667a\u80fd\u8bbe\u5907\uff08\u5982\u53f0\u706f\u3001\u706f\u6ce1\u3001\u63d2\u5ea7\u7b49\uff09\u3001\u83b7\u53d6\u8bbe\u5907\u5217\u8868\u6216\u67e5\u770b\u8bbe\u5907\u72b6\u6001\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002", "source": ["marketplace", "topic"], "categories": ["claude-skills", "openclaw-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dean2021/mijia-device-manager/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mijia-device-manager"}, "quality": {"stars": 89, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T02:27:26Z"}, "embedding_text": "mijia-device-manager. \u7ba1\u7406\u548c\u63a7\u5236\u5c0f\u7c73/\u7c73\u5bb6\u667a\u80fd\u5bb6\u5c45\u8bbe\u5907\uff0c\u76f4\u63a5\u8c03\u7528 mijiaAPI CLI \u547d\u4ee4\u901a\u8fc7\u5c0f\u7c73\u4e91\u7aef API \u63a7\u5236\u8bbe\u5907\u3002\u652f\u6301\u8bbe\u5907\u53d1\u73b0\u3001\u5f00\u5173\u63a7\u5236\u3001\u4eae\u5ea6\u8c03\u8282\u3001\u989c\u8272\u8bbe\u7f6e\u7b49\u529f\u80fd\u3002\u5f53\u7528\u6237\u9700\u8981\u63a7\u5236\u5c0f\u7c73\u667a\u80fd\u8bbe\u5907\uff08\u5982\u53f0\u706f\u3001\u706f\u6ce1\u3001\u63d2\u5ea7\u7b49\uff09\u3001\u83b7\u53d6\u8bbe\u5907\u5217\u8868\u6216\u67e5\u770b\u8bbe\u5907\u72b6\u6001\u65f6\u4f7f\u7528\u6b64\u6280\u80fd\u3002 Categories: claude-skills, openclaw-skills. Platforms: claude_code."} {"id": "d217551babc06659b937e77b119099a04d46a3003e116158adefb5a95b6ae882", "repo_url": "https://github.com/helloruru/claude-memory-engine", "name": "memory-engine", "description": "Memory management system for Claude Code \u2014 Student Loop, Smart Context, Auto Learn, Session Handoff, Correction Cycle. Triggered by memory commands (/save, /reflect, /handoff, /check) or memory-related questions. Not for general programming tasks.", "source": ["marketplace", "topic"], "categories": ["ai", "ai-agents", "ai-memory", "ai-tools", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-memory", "claude-skills", "long-term-memory", "memory-engine"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/helloruru/claude-memory-engine/blob/main/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install memory-engine"}, "quality": {"stars": 88, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T06:36:20Z"}, "embedding_text": "memory-engine. Memory management system for Claude Code \u2014 Student Loop, Smart Context, Auto Learn, Session Handoff, Correction Cycle. Triggered by memory commands (/save, /reflect, /handoff, /check) or memory-related questions. Not for general programming tasks. Categories: ai, ai-agents, ai-memory, ai-tools, anthropic, claude, claude-code, claude-code-plugin, claude-memory, claude-skills, long-term-memory, memory-engine. Platforms: claude_code."} -{"id": "0091da4fc0771f64e984afe0622b64c79ebc690deee02bffab2f2e7879c24b53", "repo_url": "https://github.com/leemysw/feishu-docx", "name": "feishu-docx", "description": "Export and manage Feishu/Lark cloud documents. Supports docx, sheets, bitable, wiki, WeChat article import/export, document writing, and drive file management. Use this skill when you need to read, analyze, write, or manage content in Feishu knowledge base.", "source": ["marketplace", "topic"], "categories": ["ai-agent", "claude-skills", "context", "feishu", "file-parser", "knowledge", "lark", "markdown", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/leemysw/feishu-docx/blob/main/.skills/feishu-docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install feishu-docx"}, "quality": {"stars": 86, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:06:00Z"}, "embedding_text": "feishu-docx. Export and manage Feishu/Lark cloud documents. Supports docx, sheets, bitable, wiki, WeChat article import/export, document writing, and drive file management. Use this skill when you need to read, analyze, write, or manage content in Feishu knowledge base. Categories: ai-agent, claude-skills, context, feishu, file-parser, knowledge, lark, markdown, skills. Platforms: claude_code."} {"id": "3ef88a945d24d1b82b7293893657770ef2a17383ee81f9c00b8bd402abfcd33a", "repo_url": "https://github.com/kagurananaga/document-format-skills", "name": "document-format-skills", "description": "\u6587\u6863\u683c\u5f0f\u5904\u7406\u5de5\u5177\u3002\u652f\u6301\u683c\u5f0f\u8bca\u65ad\u3001\u6807\u70b9\u7b26\u53f7\u4fee\u590d\u3001\u683c\u5f0f\u7edf\u4e00\u3002\u8f93\u5165\u6742\u4e71\u7684\u6587\u6863\uff0c\u8f93\u51fa\u89c4\u8303\u6574\u6d01\u7684docx\u3002", "source": ["marketplace", "topic"], "categories": ["chinese-document", "chinese-documentation", "claude", "claude-code", "claude-skills", "claudecode", "docformatter", "documentformat", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kagurananaga/document-format-skills/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install document-format-skills"}, "quality": {"stars": 78, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-08T03:22:32Z"}, "embedding_text": "document-format-skills. \u6587\u6863\u683c\u5f0f\u5904\u7406\u5de5\u5177\u3002\u652f\u6301\u683c\u5f0f\u8bca\u65ad\u3001\u6807\u70b9\u7b26\u53f7\u4fee\u590d\u3001\u683c\u5f0f\u7edf\u4e00\u3002\u8f93\u5165\u6742\u4e71\u7684\u6587\u6863\uff0c\u8f93\u51fa\u89c4\u8303\u6574\u6d01\u7684docx\u3002 Categories: chinese-document, chinese-documentation, claude, claude-code, claude-skills, claudecode, docformatter, documentformat, skills. Platforms: claude_code."} {"id": "23f67d27e9c2153c6230005772021f1df26a0f454932e0b12bebdc05223bfc51", "repo_url": "https://github.com/weaverse/.agents", "name": "code-review", "description": "[Skill] Perform thorough code reviews focusing on unused code, duplications, coding patterns, bugs, and optimizations. Use when user wants code reviewed or audited. Read-only - outputs findings without making changes.", "source": ["marketplace", "topic"], "categories": ["ai-agents", "claude-agents", "claude-ai", "claude-code-workflows", "claude-skills", "claude-tooltkit", "toolkit"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/weaverse/.agents/blob/main/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-review"}, "quality": {"stars": 77, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:53:47Z"}, "embedding_text": "code-review. [Skill] Perform thorough code reviews focusing on unused code, duplications, coding patterns, bugs, and optimizations. Use when user wants code reviewed or audited. Read-only - outputs findings without making changes. Categories: ai-agents, claude-agents, claude-ai, claude-code-workflows, claude-skills, claude-tooltkit, toolkit. Platforms: claude_code."} {"id": "b57c10ae40d1b54525cdf69cdac0c37b949c8fc841860351439d98e23942005a", "repo_url": "https://github.com/weaverse/.agents", "name": "commit", "description": "Commit changes with well-crafted messages, grouping related files into separate commits", "source": ["marketplace", "topic"], "categories": ["ai-agents", "claude-agents", "claude-ai", "claude-code-workflows", "claude-skills", "claude-tooltkit", "toolkit"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/weaverse/.agents/blob/main/skills/commit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit"}, "quality": {"stars": 77, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:53:47Z"}, "embedding_text": "commit. Commit changes with well-crafted messages, grouping related files into separate commits Categories: ai-agents, claude-agents, claude-ai, claude-code-workflows, claude-skills, claude-tooltkit, toolkit. Platforms: claude_code."} @@ -21835,7 +26326,6 @@ {"id": "9cd6c93c6562cb533289aba3129dcb30dba47ff1e7daf7418bbb2c1c42c460f3", "repo_url": "https://github.com/serpro69/claude-starter-kit", "name": "documentation-process", "description": "After implementing a new feature or fixing a bug, make sure to document the changes. Use when writing documentation, after finishing the implementation phase for a feature or a bug-fix", "source": ["marketplace", "topic"], "categories": ["claude", "claude-ai", "claude-code", "claude-config", "claude-skills", "go", "java", "js", "kotlin", "python", "serena-mcp", "starter-kit", "starter-project", "starter-template", "task-master-ai", "template-repository", "typescript", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/serpro69/claude-starter-kit/blob/master/.github/templates/claude/skills/documentation-process/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install documentation-process"}, "quality": {"stars": 69, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T15:05:42Z"}, "embedding_text": "documentation-process. After implementing a new feature or fixing a bug, make sure to document the changes. Use when writing documentation, after finishing the implementation phase for a feature or a bug-fix Categories: claude, claude-ai, claude-code, claude-config, claude-skills, go, java, js, kotlin, python, serena-mcp, starter-kit, starter-project, starter-template, task-master-ai, template-repository, typescript, vibe-coding. Platforms: claude_code."} {"id": "b0818a2c07fbe5c882c3150fea8100473f463cc0ac0467d87d0772723b28d585", "repo_url": "https://github.com/serpro69/claude-starter-kit", "name": "solid-code-review", "description": "Code review of current git changes with an expert senior-engineer lens. Detects SOLID violations, security risks, and proposes actionable improvements. Use when performing code reviews.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-ai", "claude-code", "claude-config", "claude-skills", "go", "java", "js", "kotlin", "python", "serena-mcp", "starter-kit", "starter-project", "starter-template", "task-master-ai", "template-repository", "typescript", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/serpro69/claude-starter-kit/blob/master/.github/templates/claude/skills/solid-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solid-code-review"}, "quality": {"stars": 69, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T15:05:42Z"}, "embedding_text": "solid-code-review. Code review of current git changes with an expert senior-engineer lens. Detects SOLID violations, security risks, and proposes actionable improvements. Use when performing code reviews. Categories: claude, claude-ai, claude-code, claude-config, claude-skills, go, java, js, kotlin, python, serena-mcp, starter-kit, starter-project, starter-template, task-master-ai, template-repository, typescript, vibe-coding. Platforms: claude_code."} {"id": "f9bd7c75c53c5f9c81705f4a69515dbf105576bf32063ddd80c1ad9a8110dfbc", "repo_url": "https://github.com/serpro69/claude-starter-kit", "name": "testing-process", "description": "Guidelines describing how to test the code. Use whenever writing new or updating existing code, for example after implementing a new feature or fixing a bug.", "source": ["marketplace", "topic"], "categories": ["claude", "claude-ai", "claude-code", "claude-config", "claude-skills", "go", "java", "js", "kotlin", "python", "serena-mcp", "starter-kit", "starter-project", "starter-template", "task-master-ai", "template-repository", "typescript", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/serpro69/claude-starter-kit/blob/master/.github/templates/claude/skills/testing-process/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-process"}, "quality": {"stars": 69, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T15:05:42Z"}, "embedding_text": "testing-process. Guidelines describing how to test the code. Use whenever writing new or updating existing code, for example after implementing a new feature or fixing a bug. Categories: claude, claude-ai, claude-code, claude-config, claude-skills, go, java, js, kotlin, python, serena-mcp, starter-kit, starter-project, starter-template, task-master-ai, template-repository, typescript, vibe-coding. Platforms: claude_code."} -{"id": "f65b1d34d42df0a742715b71450806790fc8b4959b96374557bcafcd95ed30c5", "repo_url": "https://github.com/oikon48/cc-frontend-skills", "name": "frontend-design-system", "description": "\u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9UI\u30c7\u30b6\u30a4\u30f3\u3092\u6d17\u7df4\u3055\u308c\u305f\u72ec\u81ea\u6027\u306e\u3042\u308b\u30b9\u30bf\u30a4\u30eb\u3067\u751f\u6210\u3057\u307e\u3059\u3002\u30e9\u30f3\u30c7\u30a3\u30f3\u30b0\u30da\u30fc\u30b8\u3001\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3001Web\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30c7\u30b6\u30a4\u30f3\u3001UI\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u4f5c\u6210\u6642\u306b\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u300cAI\u3063\u307d\u3044\u300d\u6c4e\u7528\u30c7\u30b6\u30a4\u30f3\u3092\u907f\u3051\u3001\u30d7\u30ed\u30d5\u30a7\u30c3\u30b7\u30e7\u30ca\u30eb\u3067\u8a18\u61b6\u306b\u6b8b\u308bUI\u3092\u5b9f\u73fe\u3057\u307e\u3059\u3002", "source": ["marketplace", "topic"], "categories": ["claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/oikon48/cc-frontend-skills/blob/main/skills/frontend-design-system/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-design-system"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-08T06:32:39Z"}, "embedding_text": "frontend-design-system. \u30d5\u30ed\u30f3\u30c8\u30a8\u30f3\u30c9UI\u30c7\u30b6\u30a4\u30f3\u3092\u6d17\u7df4\u3055\u308c\u305f\u72ec\u81ea\u6027\u306e\u3042\u308b\u30b9\u30bf\u30a4\u30eb\u3067\u751f\u6210\u3057\u307e\u3059\u3002\u30e9\u30f3\u30c7\u30a3\u30f3\u30b0\u30da\u30fc\u30b8\u3001\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3001Web\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30c7\u30b6\u30a4\u30f3\u3001UI\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u4f5c\u6210\u6642\u306b\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u300cAI\u3063\u307d\u3044\u300d\u6c4e\u7528\u30c7\u30b6\u30a4\u30f3\u3092\u907f\u3051\u3001\u30d7\u30ed\u30d5\u30a7\u30c3\u30b7\u30e7\u30ca\u30eb\u3067\u8a18\u61b6\u306b\u6b8b\u308bUI\u3092\u5b9f\u73fe\u3057\u307e\u3059\u3002 Categories: claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "2c1f663e861c07bc59b66d39406ad03ff830929bb783c91fd07d60de94b51bbc", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "artifacts-builder", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/artifacts-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install artifacts-builder"}, "quality": {"stars": 44385, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "artifacts-builder. 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. Platforms: claude_code."} {"id": "9c135c33abbda09bea6e6e946df790d4005bde101c18ca0a759df08f5db7618b", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "brand-guidelines", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/brand-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-guidelines"}, "quality": {"stars": 44385, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "brand-guidelines. 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. Platforms: claude_code."} {"id": "da33fcd748341bfde16d8ca326557c863e8a5d7c6b8473d349ebbe929d3139fc", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "canvas-design", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/canvas-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install canvas-design"}, "quality": {"stars": 44385, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "canvas-design. 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. Platforms: claude_code."} @@ -22424,22 +26914,16 @@ {"id": "39da6bc813bd4a3a58ad0315ef3d220b0c2fc874abc59bb9eaed70081a618d1a", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "procfu-automation", "description": "Automate Procfu tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/procfu-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install procfu-automation"}, "quality": {"stars": 44385, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "procfu-automation. Automate Procfu tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} {"id": "ada4cd88d94f744a02c538489f6f962a87da65005b4f4783d5a5a8f79a08d9ca", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "Productboard Automation", "description": "Automate product management workflows in Productboard -- manage features, notes, objectives, components, and releases through natural language commands.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/productboard-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Productboard Automation"}, "quality": {"stars": 44385, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "Productboard Automation. Automate product management workflows in Productboard -- manage features, notes, objectives, components, and releases through natural language commands. Platforms: claude_code."} {"id": "e810fbc37eecf32f3bd8a4138069e5f50e942b098b3d8f7badb3f55c93ab4821", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "productlane-automation", "description": "Automate Productlane tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/productlane-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install productlane-automation"}, "quality": {"stars": 44385, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "productlane-automation. Automate Productlane tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} -{"id": "244f88afc5bedf22355d57019a0c17afe7e1234d95cf2163f17d62588b766557", "repo_url": "https://github.com/openai/skills", "name": "aspnet-core", "description": "Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/aspnet-core/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aspnet-core"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "aspnet-core. Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades. Platforms: claude_code."} {"id": "7061dac15e3bb15f37cc2d049db322464f774e3530e0cf032195ec0c9a1f43bb", "repo_url": "https://github.com/openai/skills", "name": "chatgpt-apps", "description": "Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/chatgpt-apps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install chatgpt-apps"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "chatgpt-apps. Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code. Platforms: claude_code."} {"id": "7a8fd263fc0bf15c9d7f4975185edd0264f001fd7efad5330f86f20fe62d483b", "repo_url": "https://github.com/openai/skills", "name": "cloudflare-deploy", "description": "Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/cloudflare-deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cloudflare-deploy"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "cloudflare-deploy. Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare. Platforms: claude_code."} {"id": "04c9129a61ef0f43f5f646048c844cd2833c202673c97369d6ed6169bfe72bb8", "repo_url": "https://github.com/openai/skills", "name": "develop-web-game", "description": "Use when Codex is building or iterating on a web game (HTML/JS) and needs a reliable development + testing loop: implement small changes, run a Playwright-based test script with short input bursts and intentional pauses, inspect screenshots/text, and review console errors with render_game_to_text.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/develop-web-game/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install develop-web-game"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "develop-web-game. Use when Codex is building or iterating on a web game (HTML/JS) and needs a reliable development + testing loop: implement small changes, run a Playwright-based test script with short input bursts and intentional pauses, inspect screenshots/text, and review console errors with render_game_to_text. Platforms: claude_code."} {"id": "93090b7e6166cbdbca7de9b3cf8d6332c72e999f8cfa8edacda2d4f01d8c3680", "repo_url": "https://github.com/openai/skills", "name": "doc", "description": "Use when the task involves reading, creating, or editing `.docx` documents, especially when formatting or layout fidelity matters; prefer `python-docx` plus the bundled `scripts/render_docx.py` for visual checks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/doc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install doc"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "doc. Use when the task involves reading, creating, or editing `.docx` documents, especially when formatting or layout fidelity matters; prefer `python-docx` plus the bundled `scripts/render_docx.py` for visual checks. Platforms: claude_code."} {"id": "750aa7b299a281735a16c723dd9222e167612a5412e78107407422ebc22bb4c1", "repo_url": "https://github.com/openai/skills", "name": "figma-implement-design", "description": "Translate Figma nodes into production-ready code with 1:1 visual fidelity using the Figma MCP workflow (design context, screenshots, assets, and project-convention translation). Trigger when the user provides Figma URLs or node IDs, or asks to implement designs or components that must match Figma specs. Requires a working Figma MCP server connection.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/figma-implement-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install figma-implement-design"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "figma-implement-design. Translate Figma nodes into production-ready code with 1:1 visual fidelity using the Figma MCP workflow (design context, screenshots, assets, and project-convention translation). Trigger when the user provides Figma URLs or node IDs, or asks to implement designs or components that must match Figma specs. Requires a working Figma MCP server connection. Platforms: claude_code."} {"id": "22424ba5aaddc94dc8ad88a7a928d1e4c9ea1e5c22e163853b3f58216a0ab20e", "repo_url": "https://github.com/openai/skills", "name": "figma", "description": "Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/figma/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install figma"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "figma. Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting. Platforms: claude_code."} -{"id": "5ce48351e66be5223da3016159333f2aa2914d3105cad7f78f131534ce02e880", "repo_url": "https://github.com/openai/skills", "name": "gh-address-comments", "description": "Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/gh-address-comments/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-address-comments"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "gh-address-comments. Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in. Platforms: claude_code."} {"id": "61269d63f4c71a0a92ae9ae4193a034b5d5246c34fe808deb5cdc7039843c9ff", "repo_url": "https://github.com/openai/skills", "name": "gh-fix-ci", "description": "Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions; use `gh` to inspect checks and logs, summarize failure context, draft a fix plan, and implement only after explicit approval. Treat external providers (for example Buildkite) as out of scope and report only the details URL.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/gh-fix-ci/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-fix-ci"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "gh-fix-ci. Use when a user asks to debug or fix failing GitHub PR checks that run in GitHub Actions; use `gh` to inspect checks and logs, summarize failure context, draft a fix plan, and implement only after explicit approval. Treat external providers (for example Buildkite) as out of scope and report only the details URL. Platforms: claude_code."} {"id": "51ebce5779049b87cf752d9cd23709db8a0311fc07dcf3b3f051477760c306c3", "repo_url": "https://github.com/openai/skills", "name": "imagegen", "description": "Use when the user asks to generate or edit images via the OpenAI Image API (for example: generate image, edit/inpaint/mask, background removal or replacement, transparent background, product shots, concept art, covers, or batch variants); run the bundled CLI (`scripts/image_gen.py`) and require `OPENAI_API_KEY` for live calls.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/imagegen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install imagegen"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "imagegen. Use when the user asks to generate or edit images via the OpenAI Image API (for example: generate image, edit/inpaint/mask, background removal or replacement, transparent background, product shots, concept art, covers, or batch variants); run the bundled CLI (`scripts/image_gen.py`) and require `OPENAI_API_KEY` for live calls. Platforms: claude_code."} {"id": "7ce5dff77c440647d92a1e5b198303f45f9fbcf0322ade248760161f7585c414", "repo_url": "https://github.com/openai/skills", "name": "jupyter-notebook", "description": "Use when the user asks to create, scaffold, or edit Jupyter notebooks (`.ipynb`) for experiments, explorations, or tutorials; prefer the bundled templates and run the helper script `new_notebook.py` to generate a clean starting notebook.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/jupyter-notebook/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jupyter-notebook"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "jupyter-notebook. Use when the user asks to create, scaffold, or edit Jupyter notebooks (`.ipynb`) for experiments, explorations, or tutorials; prefer the bundled templates and run the helper script `new_notebook.py` to generate a clean starting notebook. Platforms: claude_code."} {"id": "63dc64f32a63113a2e2d49819e52bf4cac44fe29d30f6f6f347187d501d3fda3", "repo_url": "https://github.com/openai/skills", "name": "netlify-deploy", "description": "Deploy web projects to Netlify using the Netlify CLI (`npx netlify`). Use when the user asks to deploy, host, publish, or link a site/repo on Netlify, including preview and production deploys.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/netlify-deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install netlify-deploy"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "netlify-deploy. Deploy web projects to Netlify using the Netlify CLI (`npx netlify`). Use when the user asks to deploy, host, publish, or link a site/repo on Netlify, including preview and production deploys. Platforms: claude_code."} -{"id": "0293721d1e10dcc8089b08d78401caa9e823942468b9a8c97e3e944acf8b85e3", "repo_url": "https://github.com/openai/skills", "name": "notion-knowledge-capture", "description": "Capture conversations and decisions into structured Notion pages; use when turning chats/notes into wiki entries, how-tos, decisions, or FAQs with proper linking.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/notion-knowledge-capture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-knowledge-capture"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "notion-knowledge-capture. Capture conversations and decisions into structured Notion pages; use when turning chats/notes into wiki entries, how-tos, decisions, or FAQs with proper linking. Platforms: claude_code."} -{"id": "880f0db22b3f053cdfe98d735d333bf9c3f14f7f53d3d07a6efa3f947e3c3b05", "repo_url": "https://github.com/openai/skills", "name": "notion-meeting-intelligence", "description": "Prepare meeting materials with Notion context and Codex research; use when gathering context, drafting agendas/pre-reads, and tailoring materials to attendees.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/notion-meeting-intelligence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-meeting-intelligence"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "notion-meeting-intelligence. Prepare meeting materials with Notion context and Codex research; use when gathering context, drafting agendas/pre-reads, and tailoring materials to attendees. Platforms: claude_code."} -{"id": "bab19cc43359c41425429ddca00fc0d45c625f32333e6ac9fb0364b5b1d636bb", "repo_url": "https://github.com/openai/skills", "name": "notion-research-documentation", "description": "Research across Notion and synthesize into structured documentation; use when gathering info from multiple Notion sources to produce briefs, comparisons, or reports with citations.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/notion-research-documentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-research-documentation"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "notion-research-documentation. Research across Notion and synthesize into structured documentation; use when gathering info from multiple Notion sources to produce briefs, comparisons, or reports with citations. Platforms: claude_code."} -{"id": "2afca9cf31bd41cb2ad2e77b6beef20c5e18c7d3b9918ce94569c04794f3125a", "repo_url": "https://github.com/openai/skills", "name": "notion-spec-to-implementation", "description": "Turn Notion specs into implementation plans, tasks, and progress tracking; use when implementing PRDs/feature specs and creating Notion plans + tasks from them.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/notion-spec-to-implementation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notion-spec-to-implementation"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "notion-spec-to-implementation. Turn Notion specs into implementation plans, tasks, and progress tracking; use when implementing PRDs/feature specs and creating Notion plans + tasks from them. Platforms: claude_code."} {"id": "9b7ecae8b0f3cf51f752b54ebc904819f9187f8b7b02498813146575d4259de0", "repo_url": "https://github.com/openai/skills", "name": "openai-docs", "description": "Use when the user asks how to build with OpenAI products or APIs and needs up-to-date official documentation with citations, help choosing the latest model for a use case, or explicit GPT-5.4 upgrade and prompt-upgrade guidance; prioritize OpenAI docs MCP tools, use bundled references only as helper context, and restrict any fallback browsing to official OpenAI domains.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/openai-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openai-docs"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "openai-docs. Use when the user asks how to build with OpenAI products or APIs and needs up-to-date official documentation with citations, help choosing the latest model for a use case, or explicit GPT-5.4 upgrade and prompt-upgrade guidance; prioritize OpenAI docs MCP tools, use bundled references only as helper context, and restrict any fallback browsing to official OpenAI domains. Platforms: claude_code."} {"id": "95df1d2e962cbfacd104a3d203cec721b3b6dae114d9e8c0406e5e805f0746b7", "repo_url": "https://github.com/openai/skills", "name": "pdf", "description": "Use when tasks involve reading, creating, or reviewing PDF files where rendering and layout matter; prefer visual checks by rendering pages (Poppler) and use Python tools such as `reportlab`, `pdfplumber`, and `pypdf` for generation and extraction.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "pdf. Use when tasks involve reading, creating, or reviewing PDF files where rendering and layout matter; prefer visual checks by rendering pages (Poppler) and use Python tools such as `reportlab`, `pdfplumber`, and `pypdf` for generation and extraction. Platforms: claude_code."} {"id": "854d7807fec5c975f43313e803e005d2d5742fb079f9b30cd205d6536857bccf", "repo_url": "https://github.com/openai/skills", "name": "playwright-interactive", "description": "Persistent browser and Electron interaction through `js_repl` for fast iterative UI debugging.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/playwright-interactive/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install playwright-interactive"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "playwright-interactive. Persistent browser and Electron interaction through `js_repl` for fast iterative UI debugging. Platforms: claude_code."} @@ -22460,11 +26944,7 @@ {"id": "cc5f4c56e8846c3effcea31810656b6809b9e36db4139adfe7655a5d7484b141", "repo_url": "https://github.com/openai/skills", "name": "yeet", "description": "Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (`gh`).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.curated/yeet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install yeet"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "yeet. Use only when the user explicitly asks to stage, commit, push, and open a GitHub pull request in one flow using the GitHub CLI (`gh`). Platforms: claude_code."} {"id": "9b8c42795b0a341ce91687476f175e80b55be4bdc908027228dd61faa8aead3b", "repo_url": "https://github.com/openai/skills", "name": "openai-docs", "description": "Use when the user asks how to build with OpenAI products or APIs and needs up-to-date official documentation with citations, help choosing the latest model for a use case, or explicit GPT-5.4 upgrade and prompt-upgrade guidance; prioritize OpenAI docs MCP tools, use bundled references only as helper context, and restrict any fallback browsing to official OpenAI domains.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openai/skills/blob/main/skills/.system/openai-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openai-docs"}, "quality": {"stars": 14309, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T00:29:03Z"}, "embedding_text": "openai-docs. Use when the user asks how to build with OpenAI products or APIs and needs up-to-date official documentation with citations, help choosing the latest model for a use case, or explicit GPT-5.4 upgrade and prompt-upgrade guidance; prioritize OpenAI docs MCP tools, use bundled references only as helper context, and restrict any fallback browsing to official OpenAI domains. Platforms: claude_code."} {"id": "e5667998c11ecd458c3b8311f238c60a816025806ba74eba6d2c56ed8cda2420", "repo_url": "https://github.com/vercel-labs/agent-skills", "name": "deploy-to-vercel", "description": "Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vercel-labs/agent-skills/blob/main/skills/deploy-to-vercel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deploy-to-vercel"}, "quality": {"stars": 23082, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T14:56:57Z"}, "embedding_text": "deploy-to-vercel. Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\". Platforms: claude_code."} -{"id": "c661de2bd3ff5ef66bcf2551799456edfc393dfec5c2a9ac336d26aebc332197", "repo_url": "https://github.com/vercel-labs/agent-skills", "name": "vercel-react-best-practices", "description": "React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vercel-labs/agent-skills/blob/main/skills/react-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vercel-react-best-practices"}, "quality": {"stars": 23082, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T14:56:57Z"}, "embedding_text": "vercel-react-best-practices. React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements. Platforms: claude_code."} -{"id": "92545ece088bbb4c6e83b79af5c82fbc8d655eef02b48bb83cf02bfc46fe0e10", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "amazon-location-service", "description": "Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text search, nearby search, or autocomplete suggestions; retrieve detailed place information including hours, contacts, and addresses; monitor geographical boundaries with geofences; or track device locations. Covers authentication, SDK integration, and all Amazon Location Service capabilities.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/amazon-location-service/skills/amazon-location-service/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install amazon-location-service"}, "quality": {"stars": 242, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T14:38:10Z"}, "embedding_text": "amazon-location-service. Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text search, nearby search, or autocomplete suggestions; retrieve detailed place information including hours, contacts, and addresses; monitor geographical boundaries with geofences; or track device locations. Covers authentication, SDK integration, and all Amazon Location Service capabilities. Platforms: claude_code."} -{"id": "419280907b71e018b3632d04777da590e913efb075f5ec17ed295051ef678519", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "aws-lambda-durable-functions", "description": "Build resilient, long-running, multi-step applications with AWS Lambda durable functions with automatic state persistence, retry logic, and orchestration for long-running executions. Covers the critical replay model, step operations, wait/callback patterns, error handling with saga pattern, testing with LocalDurableTestRunner. Triggers on phrases like: lambda durable functions, workflow orchestration, state machines, retry/checkpoint patterns, long-running stateful Lambda functions, saga pattern, human-in-the-loop callbacks, and reliable serverless applications.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/aws-serverless/skills/aws-lambda-durable-functions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-lambda-durable-functions"}, "quality": {"stars": 242, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T14:38:10Z"}, "embedding_text": "aws-lambda-durable-functions. Build resilient, long-running, multi-step applications with AWS Lambda durable functions with automatic state persistence, retry logic, and orchestration for long-running executions. Covers the critical replay model, step operations, wait/callback patterns, error handling with saga pattern, testing with LocalDurableTestRunner. Triggers on phrases like: lambda durable functions, workflow orchestration, state machines, retry/checkpoint patterns, long-running stateful Lambda functions, saga pattern, human-in-the-loop callbacks, and reliable serverless applications. Platforms: claude_code."} {"id": "07455ff28a5af9a2d1bd9dea22b77bacf3155e1757f9182ee2766462ec346416", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "aws-lambda", "description": "Design, build, deploy, test, and debug serverless applications with AWS Lambda. Triggers on phrases like: Lambda function, event source, serverless application, API Gateway, EventBridge, Step Functions, serverless API, event-driven architecture, Lambda trigger. For deploying non-serverless apps to AWS, use deploy-on-aws plugin instead.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/aws-serverless/skills/aws-lambda/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-lambda"}, "quality": {"stars": 242, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T14:38:10Z"}, "embedding_text": "aws-lambda. Design, build, deploy, test, and debug serverless applications with AWS Lambda. Triggers on phrases like: Lambda function, event source, serverless application, API Gateway, EventBridge, Step Functions, serverless API, event-driven architecture, Lambda trigger. For deploying non-serverless apps to AWS, use deploy-on-aws plugin instead. Platforms: claude_code."} -{"id": "38a9b470bf7858a37f014ad4f9645d9461886aebcc4e97b418cde572df893269", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "aws-serverless-deployment", "description": "AWS SAM and AWS CDK deployment for serverless applications. Triggers on phrases like: use SAM, SAM template, SAM init, SAM deploy, CDK serverless, CDK Lambda construct, NodejsFunction, PythonFunction, SAM and CDK together, serverless CI/CD pipeline. For general app deployment with service selection, use deploy-on-aws plugin instead.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/aws-serverless/skills/aws-serverless-deployment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-serverless-deployment"}, "quality": {"stars": 242, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T14:38:10Z"}, "embedding_text": "aws-serverless-deployment. AWS SAM and AWS CDK deployment for serverless applications. Triggers on phrases like: use SAM, SAM template, SAM init, SAM deploy, CDK serverless, CDK Lambda construct, NodejsFunction, PythonFunction, SAM and CDK together, serverless CI/CD pipeline. For general app deployment with service selection, use deploy-on-aws plugin instead. Platforms: claude_code."} {"id": "e98f285130e54e4319f0b144ed68b66d1d975ac35691a06eea066de005ab5083", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "deploy", "description": "Deploy applications to AWS. Triggers on phrases like: deploy to AWS, host on AWS, run this on AWS, AWS architecture, estimate AWS cost, generate infrastructure. Analyzes any codebase and deploys to optimal AWS services.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/deploy-on-aws/skills/deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deploy"}, "quality": {"stars": 242, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T14:38:10Z"}, "embedding_text": "deploy. Deploy applications to AWS. Triggers on phrases like: deploy to AWS, host on AWS, run this on AWS, AWS architecture, estimate AWS cost, generate infrastructure. Analyzes any codebase and deploys to optimal AWS services. Platforms: claude_code."} {"id": "edcb18eca370b24ff0da4894dca34efb8e18abee037dc47a528fa5a91c240f44", "repo_url": "https://github.com/awslabs/agent-plugins", "name": "gcp-to-aws", "description": "Migrate workloads from Google Cloud Platform to AWS. Triggers on: migrate from GCP, GCP to AWS, move off Google Cloud, migrate Terraform to AWS, migrate Cloud SQL to RDS, migrate GKE to EKS, migrate Cloud Run to Fargate, Google Cloud migration. Runs a 5-phase process: discover GCP resources from Terraform files, clarify migration requirements, design AWS architecture, estimate costs, and plan execution.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/awslabs/agent-plugins/blob/main/plugins/migration-to-aws/skills/gcp-to-aws/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gcp-to-aws"}, "quality": {"stars": 242, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T14:38:10Z"}, "embedding_text": "gcp-to-aws. Migrate workloads from Google Cloud Platform to AWS. Triggers on: migrate from GCP, GCP to AWS, move off Google Cloud, migrate Terraform to AWS, migrate Cloud SQL to RDS, migrate GKE to EKS, migrate Cloud Run to Fargate, Google Cloud migration. Runs a 5-phase process: discover GCP resources from Terraform files, clarify migration requirements, design AWS architecture, estimate costs, and plan execution. Platforms: claude_code."} {"id": "9ecb7918caf502f4875fdabe289fb5fb26bada150241dac2fe0ed48ef4ae2bf0", "repo_url": "https://github.com/github/awesome-copilot", "name": "automate-this", "description": "Analyze a screen recording of a manual process and produce targeted, working automation scripts. Extracts frames and audio narration from video files, reconstructs the step-by-step workflow, and proposes automation at multiple complexity levels using tools already installed on the user machine.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/awesome-copilot/blob/main/plugins/automate-this/skills/automate-this/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install automate-this"}, "quality": {"stars": 25315, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:02:39Z"}, "embedding_text": "automate-this. Analyze a screen recording of a manual process and produce targeted, working automation scripts. Extracts frames and audio narration from video files, reconstructs the step-by-step workflow, and proposes automation at multiple complexity levels using tools already installed on the user machine. Platforms: claude_code."} @@ -22747,7 +27227,6 @@ {"id": "eae9a0f1d42f9868879bced0d96fd5a1dcc4897652a3cb533bf331880d4f7012", "repo_url": "https://github.com/github/awesome-copilot", "name": "suggest-awesome-github-copilot-skills", "description": "Suggest relevant GitHub Copilot skills from the awesome-copilot repository based on current repository context and chat history, avoiding duplicates with existing skills in this repository, and identifying outdated skills that need updates.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/awesome-copilot/blob/main/skills/suggest-awesome-github-copilot-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install suggest-awesome-github-copilot-skills"}, "quality": {"stars": 25315, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:02:39Z"}, "embedding_text": "suggest-awesome-github-copilot-skills. Suggest relevant GitHub Copilot skills from the awesome-copilot repository based on current repository context and chat history, avoiding duplicates with existing skills in this repository, and identifying outdated skills that need updates. Platforms: claude_code."} {"id": "50ab252c9b745c784a4c4c96d4846df4abc04f2dc3d180b0e89c73927c970aac", "repo_url": "https://github.com/github/awesome-copilot", "name": "swift-mcp-server-generator", "description": "Generate a complete Model Context Protocol server project in Swift using the official MCP Swift SDK package.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/awesome-copilot/blob/main/skills/swift-mcp-server-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install swift-mcp-server-generator"}, "quality": {"stars": 25315, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:02:39Z"}, "embedding_text": "swift-mcp-server-generator. Generate a complete Model Context Protocol server project in Swift using the official MCP Swift SDK package. Platforms: claude_code."} {"id": "d3391309fc6684e00b1fe61b527504ed31ed2102c29a733c2c81fb9e21df3b63", "repo_url": "https://github.com/github/awesome-copilot", "name": "technology-stack-blueprint-generator", "description": "Comprehensive technology stack blueprint generator that analyzes codebases to create detailed architectural documentation. Automatically detects technology stacks, programming languages, and implementation patterns across multiple platforms (.NET, Java, JavaScript, React, Python). Generates configurable blueprints with version information, licensing details, usage patterns, coding conventions, and visual diagrams. Provides implementation-ready templates and maintains architectural consistency for guided development.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/awesome-copilot/blob/main/skills/technology-stack-blueprint-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technology-stack-blueprint-generator"}, "quality": {"stars": 25315, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:02:39Z"}, "embedding_text": "technology-stack-blueprint-generator. Comprehensive technology stack blueprint generator that analyzes codebases to create detailed architectural documentation. Automatically detects technology stacks, programming languages, and implementation patterns across multiple platforms (.NET, Java, JavaScript, React, Python). Generates configurable blueprints with version information, licensing details, usage patterns, coding conventions, and visual diagrams. Provides implementation-ready templates and maintains architectural consistency for guided development. Platforms: claude_code."} -{"id": "6071f3254d42438a194377269099e487cd13b4278ffab60c069e3f205290e848", "repo_url": "https://github.com/github/awesome-copilot", "name": "terraform-azurerm-set-diff-analyzer", "description": "Analyze Terraform plan JSON output for AzureRM Provider to distinguish between false-positive diffs (order-only changes in Set-type attributes) and actual resource changes. Use when reviewing terraform plan output for Azure resources like Application Gateway, Load Balancer, Firewall, Front Door, NSG, and other resources with Set-type attributes that cause spurious diffs due to internal ordering changes.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/awesome-copilot/blob/main/skills/terraform-azurerm-set-diff-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-azurerm-set-diff-analyzer"}, "quality": {"stars": 25315, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:02:39Z"}, "embedding_text": "terraform-azurerm-set-diff-analyzer. Analyze Terraform plan JSON output for AzureRM Provider to distinguish between false-positive diffs (order-only changes in Set-type attributes) and actual resource changes. Use when reviewing terraform plan output for Azure resources like Application Gateway, Load Balancer, Firewall, Front Door, NSG, and other resources with Set-type attributes that cause spurious diffs due to internal ordering changes. Platforms: claude_code."} {"id": "bf48614f2688e706d0ae9a90766fa71b8aaba8cebff755759c6c2ef34b566961", "repo_url": "https://github.com/github/awesome-copilot", "name": "tldr-prompt", "description": "Create tldr summaries for GitHub Copilot files (prompts, agents, instructions, collections), MCP servers, or documentation from URLs and queries.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/awesome-copilot/blob/main/skills/tldr-prompt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tldr-prompt"}, "quality": {"stars": 25315, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:02:39Z"}, "embedding_text": "tldr-prompt. Create tldr summaries for GitHub Copilot files (prompts, agents, instructions, collections), MCP servers, or documentation from URLs and queries. Platforms: claude_code."} {"id": "28ae515a70b2945780ccd7a5ee73bcec337778803a0608d1867e7421f0c9352d", "repo_url": "https://github.com/github/awesome-copilot", "name": "transloadit-media-processing", "description": "Process media files (video, audio, images, documents) using Transloadit. Use when asked to encode video to HLS/MP4, generate thumbnails, resize or watermark images, extract audio, concatenate clips, add subtitles, OCR documents, or run any media processing pipeline. Covers 86+ processing robots for file transformation at scale.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/awesome-copilot/blob/main/skills/transloadit-media-processing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install transloadit-media-processing"}, "quality": {"stars": 25315, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:02:39Z"}, "embedding_text": "transloadit-media-processing. Process media files (video, audio, images, documents) using Transloadit. Use when asked to encode video to HLS/MP4, generate thumbnails, resize or watermark images, extract audio, concatenate clips, add subtitles, OCR documents, or run any media processing pipeline. Covers 86+ processing robots for file transformation at scale. Platforms: claude_code."} {"id": "ec5148654ac7cb73fc9a61fa2bac0fddd87b932d4d2f1284600f1ed450ed9d4f", "repo_url": "https://github.com/github/awesome-copilot", "name": "typescript-mcp-server-generator", "description": "Generate a complete MCP server project in TypeScript with tools, resources, and proper configuration", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/github/awesome-copilot/blob/main/skills/typescript-mcp-server-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install typescript-mcp-server-generator"}, "quality": {"stars": 25315, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:02:39Z"}, "embedding_text": "typescript-mcp-server-generator. Generate a complete MCP server project in TypeScript with tools, resources, and proper configuration Platforms: claude_code."} @@ -24988,7 +29467,6 @@ {"id": "022b26a3a7ebca613658a532d719d2a2ae81c7432d6b73a4da90318fe587b485", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "waiverfile-automation", "description": "Automate Waiverfile tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/waiverfile-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install waiverfile-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "waiverfile-automation. Automate Waiverfile tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} {"id": "74e1ebfa9f3778516377ba0884e46aced71d660f52c5a610c0ba65f6cdb68f49", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "wakatime-automation", "description": "Automate Wakatime tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/wakatime-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wakatime-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "wakatime-automation. Automate Wakatime tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} {"id": "c5003ea631676bd6d2d9c196585d23632dfba98bddac73eee6547afa6d6186b6", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "wati-automation", "description": "Automate Wati tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/wati-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wati-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "wati-automation. Automate Wati tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} -{"id": "3f691d7be4e6db2b6d87f32eb317cf5126a0689f12afcb69be8520193ae2db0d", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "Wave Accounting Automation", "description": "Wave Accounting toolkit is not currently available as a native integration. No Wave-specific tools were found in the Composio platform. This skill is a placeholder pending future integration.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/wave-accounting-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Wave Accounting Automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "Wave Accounting Automation. Wave Accounting toolkit is not currently available as a native integration. No Wave-specific tools were found in the Composio platform. This skill is a placeholder pending future integration. Platforms: claude_code."} {"id": "16f8a59e8f59f96081644440295788dd51f383c8b5872fba43e6b9664ceb2b96", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "wave_accounting-automation", "description": "Automate Wave Accounting tasks via Rube MCP (Composio): invoices, customers, payments, and small business accounting. Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/wave_accounting-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wave_accounting-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "wave_accounting-automation. Automate Wave Accounting tasks via Rube MCP (Composio): invoices, customers, payments, and small business accounting. Always search tools first for current schemas. Platforms: claude_code."} {"id": "63f39848293dae71407ef95e49dcb9b0047e68aaf966f62029244fb6f3d32b77", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "weathermap-automation", "description": "Automate Weathermap tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/weathermap-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install weathermap-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "weathermap-automation. Automate Weathermap tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} {"id": "5133722a277b5343300f37b4734d710263819d5197e3ebc57fec3ddaea455de5", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "Webex Automation", "description": "Automate Cisco Webex messaging, rooms, teams, webhooks, and people management through natural language commands", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/webex-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Webex Automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "Webex Automation. Automate Cisco Webex messaging, rooms, teams, webhooks, and people management through natural language commands Platforms: claude_code."} @@ -25016,7 +29494,6 @@ {"id": "368b7f0eb86626ff02307a31983dc7e7b40a26a2c9ff276df44dc72b7d425980", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "zeplin-automation", "description": "Automate Zeplin tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/zeplin-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zeplin-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "zeplin-automation. Automate Zeplin tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} {"id": "5c8433f4ca32e7e8d56d4ab9b82a18ced2bb59e76bf5e6deeebe6cca9e9d01a2", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "zerobounce-automation", "description": "Automate Zerobounce tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/zerobounce-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zerobounce-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "zerobounce-automation. Automate Zerobounce tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} {"id": "49f8644ad42ad6b8616fbd298c33d7c5ae137bbf93f3e4173fc0c57c238f5da9", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "zoho-automation", "description": "Automate Zoho tasks via Rube MCP (Composio). Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/zoho-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zoho-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "zoho-automation. Automate Zoho tasks via Rube MCP (Composio). Always search tools first for current schemas. Platforms: claude_code."} -{"id": "86ac2cfd1ed8797f443d5717697155c3e611bea93881ac16c3405453a7df2942", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "Zoho Books Automation", "description": "Automate Zoho Books accounting workflows including invoice creation, bill management, contact lookup, payment tracking, and multi-organization support through natural language commands", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/zoho-books-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Zoho Books Automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "Zoho Books Automation. Automate Zoho Books accounting workflows including invoice creation, bill management, contact lookup, payment tracking, and multi-organization support through natural language commands Platforms: claude_code."} {"id": "f0d81bee0263fd6a26b0ba0c13072512121b9617dea3dac077af89b0fd9d0f52", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "zoho_bigin-automation", "description": "Automate Zoho Bigin tasks via Rube MCP (Composio): pipelines, contacts, companies, products, and small business CRM. Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/zoho_bigin-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zoho_bigin-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "zoho_bigin-automation. Automate Zoho Bigin tasks via Rube MCP (Composio): pipelines, contacts, companies, products, and small business CRM. Always search tools first for current schemas. Platforms: claude_code."} {"id": "66bafb5791565f36491c04fb2d86ec806054bf43aab11fd643736110992624f6", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "zoho_books-automation", "description": "Automate Zoho Books tasks via Rube MCP (Composio): invoices, expenses, contacts, payments, and accounting. Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/zoho_books-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zoho_books-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "zoho_books-automation. Automate Zoho Books tasks via Rube MCP (Composio): invoices, expenses, contacts, payments, and accounting. Always search tools first for current schemas. Platforms: claude_code."} {"id": "f55fe0f1ef7e6ae151710a252b76e6a90be27de6c1c3ac2bea42d5a1c55452ab", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "zoho_desk-automation", "description": "Automate Zoho Desk tasks via Rube MCP (Composio): tickets, contacts, agents, departments, and help desk operations. Always search tools first for current schemas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/composio-skills/zoho_desk-automation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zoho_desk-automation"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "zoho_desk-automation. Automate Zoho Desk tasks via Rube MCP (Composio): tickets, contacts, agents, departments, and help desk operations. Always search tools first for current schemas. Platforms: claude_code."} @@ -25047,7 +29524,6 @@ {"id": "cf331e978c6c9ced1e35e4b214533caee9771eda7185376a50c6ebfa01193e2c", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "tailored-resume-generator", "description": "Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/tailored-resume-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tailored-resume-generator"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "tailored-resume-generator. Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances Platforms: claude_code."} {"id": "da5cafd08f57c5f7499d2bb26fe82618abfb50191ff48271d1decc1fe67906b9", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "template-skill", "description": "Replace with description of the skill and when Claude should use it.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/template-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install template-skill"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Claude should use it. Platforms: claude_code."} {"id": "6532c4595cb5fd44fb017b82282d8a5521a20d713bf800188cd3b1dcd4b6c0fd", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "theme-factory", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/theme-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install theme-factory"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "theme-factory. 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. Platforms: claude_code."} -{"id": "96dbd0b464c0cbcb02c0ad6cc53ea3c9ee148e9f496355b500f72e572d9f184d", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "twitter-algorithm-optimizer", "description": "Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/twitter-algorithm-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install twitter-algorithm-optimizer"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "twitter-algorithm-optimizer. Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content. Platforms: claude_code."} {"id": "e1d8a2b844ce1076594f634e8fd941146809f2d38aecbe608cb9f0e8c6384c6b", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "youtube-downloader", "description": "Download YouTube videos with customizable quality and format options. Use this skill when the user asks to download, save, or grab YouTube videos. Supports various quality settings (best, 1080p, 720p, 480p, 360p), multiple formats (mp4, webm, mkv), and audio-only downloads as MP3.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/video-downloader/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-downloader"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "youtube-downloader. Download YouTube videos with customizable quality and format options. Use this skill when the user asks to download, save, or grab YouTube videos. Supports various quality settings (best, 1080p, 720p, 480p, 360p), multiple formats (mp4, webm, mkv), and audio-only downloads as MP3. Platforms: claude_code."} {"id": "87e216055a482a67e253a8c1c81988b3070c8d336c46343e25233790c116fc26", "repo_url": "https://github.com/composiohq/awesome-claude-skills", "name": "webapp-testing", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/composiohq/awesome-claude-skills/blob/master/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install webapp-testing"}, "quality": {"stars": 44745, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T06:22:06Z"}, "embedding_text": "webapp-testing. 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. Platforms: claude_code."} {"id": "ec69fab35dbec58ecf33a4fd58386ed5d71685eb90dfc6aa2b7fe0455d69e2a3", "repo_url": "https://github.com/googleworkspace/cli", "name": "gws-calendar", "description": "Google Calendar: Manage calendars and events.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/gws-calendar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gws-calendar"}, "quality": {"stars": 20927, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:28:46Z"}, "embedding_text": "gws-calendar. Google Calendar: Manage calendars and events. Platforms: claude_code."} @@ -25061,25 +29537,13 @@ {"id": "64ccd051dc273425186c9c359204df452341fc3695a91453c5f7cf89fbea9eb2", "repo_url": "https://github.com/googleworkspace/cli", "name": "gws-modelarmor", "description": "Google Model Armor: Filter user-generated content for safety.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/gws-modelarmor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gws-modelarmor"}, "quality": {"stars": 20927, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:28:46Z"}, "embedding_text": "gws-modelarmor. Google Model Armor: Filter user-generated content for safety. Platforms: claude_code."} {"id": "a2e89ace4b2d9fed6b92f1df86e95ad5c9e243dee1dcb51c4c0c636aa0dab25a", "repo_url": "https://github.com/googleworkspace/cli", "name": "gws-sheets", "description": "Google Sheets: Read and write spreadsheets.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/gws-sheets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gws-sheets"}, "quality": {"stars": 20927, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:28:46Z"}, "embedding_text": "gws-sheets. Google Sheets: Read and write spreadsheets. Platforms: claude_code."} {"id": "16f4b52a5d225e91a37a62c3785e9f9ccb71b7e110fbf50175e3daf49951700f", "repo_url": "https://github.com/googleworkspace/cli", "name": "gws-workflow", "description": "Google Workflow: Cross-service productivity workflows.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/gws-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gws-workflow"}, "quality": {"stars": 20927, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:28:46Z"}, "embedding_text": "gws-workflow. Google Workflow: Cross-service productivity workflows. Platforms: claude_code."} -{"id": "8b56cc268d3efdb2a884646201e472bdad6d3b8c6c5c6c2b5898f26d3cb64df3", "repo_url": "https://github.com/googleworkspace/cli", "name": "persona-hr-coordinator", "description": "Handle HR workflows \u2014 onboarding, announcements, and employee comms.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/persona-hr-coordinator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install persona-hr-coordinator"}, "quality": {"stars": 20927, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:28:46Z"}, "embedding_text": "persona-hr-coordinator. Handle HR workflows \u2014 onboarding, announcements, and employee comms. Platforms: claude_code."} -{"id": "0d9bd0015e718723e8acda1cf7031b55125a60517729d5bff4c15c1a935af38f", "repo_url": "https://github.com/googleworkspace/cli", "name": "recipe-copy-sheet-for-new-month", "description": "Duplicate a Google Sheets template tab for a new month of tracking.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/recipe-copy-sheet-for-new-month/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recipe-copy-sheet-for-new-month"}, "quality": {"stars": 20927, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:28:46Z"}, "embedding_text": "recipe-copy-sheet-for-new-month. Duplicate a Google Sheets template tab for a new month of tracking. Platforms: claude_code."} -{"id": "cf0c6fcda77bdf0c7bafecebd09a91cce8f7d26332c1651e2c3246ec551d3384", "repo_url": "https://github.com/googleworkspace/cli", "name": "recipe-find-large-files", "description": "Identify large Google Drive files consuming storage quota.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/recipe-find-large-files/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recipe-find-large-files"}, "quality": {"stars": 20927, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:28:46Z"}, "embedding_text": "recipe-find-large-files. Identify large Google Drive files consuming storage quota. Platforms: claude_code."} -{"id": "b302903d74a74ae79d422e88cc589bb52bc89c2986b4b34d231365cfb1bc0e32", "repo_url": "https://github.com/googleworkspace/cli", "name": "recipe-sync-contacts-to-sheet", "description": "Export Google Contacts directory to a Google Sheets spreadsheet.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/googleworkspace/cli/blob/main/skills/recipe-sync-contacts-to-sheet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recipe-sync-contacts-to-sheet"}, "quality": {"stars": 20927, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:28:46Z"}, "embedding_text": "recipe-sync-contacts-to-sheet. Export Google Contacts directory to a Google Sheets spreadsheet. Platforms: claude_code."} {"id": "32350c241a39eb7c305161f86b4d9465cede1cc7068120d6f63cc74627108dbf", "repo_url": "https://github.com/eigent-ai/eigent", "name": "docx", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eigent-ai/eigent/blob/main/resources/example-skills/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx"}, "quality": {"stars": 13012, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:15:45Z"}, "embedding_text": "docx. 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. Platforms: claude_code."} {"id": "4e0e211eb21559b6fd15afbde043137af5249305077e645e3d8e61a9cfed97eb", "repo_url": "https://github.com/eigent-ai/eigent", "name": "pdf", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eigent-ai/eigent/blob/main/resources/example-skills/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf"}, "quality": {"stars": 13012, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:15:45Z"}, "embedding_text": "pdf. 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. Platforms: claude_code."} {"id": "352a6fd5a92d13092746f92cb9512c21e86471403c550b0076cb8a93ea1d5422", "repo_url": "https://github.com/eigent-ai/eigent", "name": "pptx", "description": "Use this skill any time a .pptx file is involved in any way \u2014 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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eigent-ai/eigent/blob/main/resources/example-skills/pptx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pptx"}, "quality": {"stars": 13012, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:15:45Z"}, "embedding_text": "pptx. Use this skill any time a .pptx file is involved in any way \u2014 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. Platforms: claude_code."} {"id": "83012e1711ae09573a586aad7e1b3ab0dc76d4ee117d3c097af835ce5a900808", "repo_url": "https://github.com/eigent-ai/eigent", "name": "skill-creator", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eigent-ai/eigent/blob/main/resources/example-skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 13012, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:15:45Z"}, "embedding_text": "skill-creator. 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. Platforms: claude_code."} {"id": "05682ba19745f81f9afacb07e482547c7fe19478285d3e520a67e1b418aaee80", "repo_url": "https://github.com/eigent-ai/eigent", "name": "xlsx", "description": "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 \u2014 even casually (like \"the xlsx in my downloads\") \u2014 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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eigent-ai/eigent/blob/main/resources/example-skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx"}, "quality": {"stars": 13012, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:15:45Z"}, "embedding_text": "xlsx. 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 \u2014 even casually (like \"the xlsx in my downloads\") \u2014 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. Platforms: claude_code."} {"id": "b06d6811b46dc5930d19f76282ac42559fb8979e6a3781799d6991df461ffdc6", "repo_url": "https://github.com/phuryn/pm-skills", "name": "cohort-analysis", "description": "Perform cohort analysis on user engagement data \u2014 retention curves, feature adoption trends, and segment-level insights. Use when analyzing user retention by cohort, studying feature adoption over time, investigating churn patterns, or identifying engagement trends.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-data-analytics/skills/cohort-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cohort-analysis"}, "quality": {"stars": 7412, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:50:41Z"}, "embedding_text": "cohort-analysis. Perform cohort analysis on user engagement data \u2014 retention curves, feature adoption trends, and segment-level insights. Use when analyzing user retention by cohort, studying feature adoption over time, investigating churn patterns, or identifying engagement trends. Platforms: claude_code."} -{"id": "0dd57d23f8754d6cd28b63114340ee6daeec3eaf6bf907d66f8d08cd439fef39", "repo_url": "https://github.com/phuryn/pm-skills", "name": "gtm-motions", "description": "Identify the best GTM motions and tools across 7 motion types: Inbound, Outbound, Paid Digital, Community, Partners, ABM, and PLG. Use when selecting marketing channels, choosing between inbound and outbound strategy, or planning cross-channel campaigns.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-go-to-market/skills/gtm-motions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gtm-motions"}, "quality": {"stars": 7412, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:50:41Z"}, "embedding_text": "gtm-motions. Identify the best GTM motions and tools across 7 motion types: Inbound, Outbound, Paid Digital, Community, Partners, ABM, and PLG. Use when selecting marketing channels, choosing between inbound and outbound strategy, or planning cross-channel campaigns. Platforms: claude_code."} -{"id": "03400b546f0ea342025a655a16554a92c1fdcb867d9ddcbc86c4d877d261c35d", "repo_url": "https://github.com/phuryn/pm-skills", "name": "customer-journey-map", "description": "Create an end-to-end customer journey map with stages, touchpoints, emotions, pain points, and opportunities. Use when mapping the customer experience, identifying friction points, improving onboarding, or visualizing the user journey.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-market-research/skills/customer-journey-map/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install customer-journey-map"}, "quality": {"stars": 7412, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:50:41Z"}, "embedding_text": "customer-journey-map. Create an end-to-end customer journey map with stages, touchpoints, emotions, pain points, and opportunities. Use when mapping the customer experience, identifying friction points, improving onboarding, or visualizing the user journey. Platforms: claude_code."} -{"id": "d916c07b2d5a8a5e0d441af187673158a592561fd7311a10df3f83a5df359aa5", "repo_url": "https://github.com/phuryn/pm-skills", "name": "market-segments", "description": "Identify 3-5 potential customer segments with demographics, JTBD, and product fit analysis. Use when exploring market segments, identifying target audiences, evaluating new markets, or learning how to segment a market.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-market-research/skills/market-segments/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install market-segments"}, "quality": {"stars": 7412, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:50:41Z"}, "embedding_text": "market-segments. Identify 3-5 potential customer segments with demographics, JTBD, and product fit analysis. Use when exploring market segments, identifying target audiences, evaluating new markets, or learning how to segment a market. Platforms: claude_code."} -{"id": "c4ea2c371731a72ebd6c3013998e989a79ddcfe0a9203851e1f32f205246c11e", "repo_url": "https://github.com/phuryn/pm-skills", "name": "marketing-ideas", "description": "Generate 5 creative, cost-effective marketing ideas with channels, messaging, and engagement rationale. Use when brainstorming marketing campaigns, planning product promotion, or looking for creative marketing tactics.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-marketing-growth/skills/marketing-ideas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install marketing-ideas"}, "quality": {"stars": 7412, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:50:41Z"}, "embedding_text": "marketing-ideas. Generate 5 creative, cost-effective marketing ideas with channels, messaging, and engagement rationale. Use when brainstorming marketing campaigns, planning product promotion, or looking for creative marketing tactics. Platforms: claude_code."} -{"id": "497a571fedf2f002b20e004656cc0288b561ed43120c7ed9c72837e7dcb32f91", "repo_url": "https://github.com/phuryn/pm-skills", "name": "analyze-feature-requests", "description": "Analyze and prioritize a list of feature requests by theme, strategic alignment, impact, effort, and risk. Use when reviewing customer feature requests, triaging a backlog, or making prioritization decisions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-product-discovery/skills/analyze-feature-requests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install analyze-feature-requests"}, "quality": {"stars": 7412, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:50:41Z"}, "embedding_text": "analyze-feature-requests. Analyze and prioritize a list of feature requests by theme, strategic alignment, impact, effort, and risk. Use when reviewing customer feature requests, triaging a backlog, or making prioritization decisions. Platforms: claude_code."} {"id": "36ce3d6aa45390ba96227ed40621de9337c03bdeebdddbea2f4dfbe6a61c9cfa", "repo_url": "https://github.com/phuryn/pm-skills", "name": "monetization-strategy", "description": "Brainstorm 3-5 monetization strategies with audience fit, risks, and validation experiments. Use when exploring revenue models, evaluating pricing strategies, or deciding how to monetize a product.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-product-strategy/skills/monetization-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install monetization-strategy"}, "quality": {"stars": 7412, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:50:41Z"}, "embedding_text": "monetization-strategy. Brainstorm 3-5 monetization strategies with audience fit, risks, and validation experiments. Use when exploring revenue models, evaluating pricing strategies, or deciding how to monetize a product. Platforms: claude_code."} -{"id": "635ef66cbdd4ddb86ea5ef841bbd0fbb77f3192482c379ce5cde690474f0d2e5", "repo_url": "https://github.com/phuryn/pm-skills", "name": "product-strategy", "description": "Create a comprehensive product strategy using the 9-section Product Strategy Canvas \u2014 vision, segments, costs, value propositions, trade-offs, metrics, growth, capabilities, and defensibility. Use when building a product strategy, creating a strategic plan, or defining product direction.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-product-strategy/skills/product-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install product-strategy"}, "quality": {"stars": 7412, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:50:41Z"}, "embedding_text": "product-strategy. Create a comprehensive product strategy using the 9-section Product Strategy Canvas \u2014 vision, segments, costs, value propositions, trade-offs, metrics, growth, capabilities, and defensibility. Use when building a product strategy, creating a strategic plan, or defining product direction. Platforms: claude_code."} -{"id": "ba32d108d7fd93579e3aef1e5c66e6866db45a0f14fad00a6473dcf5ecd0f8b9", "repo_url": "https://github.com/phuryn/pm-skills", "name": "review-resume", "description": "Comprehensive PM resume review and tailoring against 10 best practices including XYZ+S formula, keyword optimization, job-specific tailoring, and structure. Use when reviewing a PM resume, preparing for job applications, or improving resume impact.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/phuryn/pm-skills/blob/main/pm-toolkit/skills/review-resume/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install review-resume"}, "quality": {"stars": 7412, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T07:50:41Z"}, "embedding_text": "review-resume. Comprehensive PM resume review and tailoring against 10 best practices including XYZ+S formula, keyword optimization, job-specific tailoring, and structure. Use when reviewing a PM resume, preparing for job applications, or improving resume impact. Platforms: claude_code."} -{"id": "8fbd36bb470714041bb20fde8a442d4d60dfb48903c4696473bbb875eb9de49f", "repo_url": "https://github.com/thinkinaixyz/deepchat", "name": "algorithmic-art", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thinkinaixyz/deepchat/blob/dev/resources/skills/algorithmic-art/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install algorithmic-art"}, "quality": {"stars": 5584, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:40:00Z"}, "embedding_text": "algorithmic-art. 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. Platforms: claude_code."} {"id": "1c9df42000bb2fd7ae1d61bea94da31391d99db4729159fe94b8397f433c6a7f", "repo_url": "https://github.com/thinkinaixyz/deepchat", "name": "mcp-builder", "description": "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).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thinkinaixyz/deepchat/blob/dev/resources/skills/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-builder"}, "quality": {"stars": 5584, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:40:00Z"}, "embedding_text": "mcp-builder. 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). Platforms: claude_code."} {"id": "416f58729c20704590d490f274fe3a36864cd1dcad426f9a4561c8349e415c8a", "repo_url": "https://github.com/breaking-brake/cc-wf-studio", "name": "code-review", "description": "Analyze PR diffs and generate review comments from code quality, security, and performance perspectives. Use for code reviews, quality checks, and security analysis.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/breaking-brake/cc-wf-studio/blob/main/.claude/skills/code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-review"}, "quality": {"stars": 4503, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T14:12:49Z"}, "embedding_text": "code-review. Analyze PR diffs and generate review comments from code quality, security, and performance perspectives. Use for code reviews, quality checks, and security analysis. Platforms: claude_code."} {"id": "35d68eb2eec07dfae87172e0cccb76a159973e7a504cfecc608897c70ca80226", "repo_url": "https://github.com/antfu/skills", "name": "slidev", "description": "Create and present web-based slidedecks for developers using Slidev with Markdown, Vue components, code highlighting, animations, and interactive features. Use when building technical presentations, conference talks, code walkthroughs, teaching materials, or developer decks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antfu/skills/blob/main/skills/slidev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install slidev"}, "quality": {"stars": 4100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:16:24Z"}, "embedding_text": "slidev. Create and present web-based slidedecks for developers using Slidev with Markdown, Vue components, code highlighting, animations, and interactive features. Use when building technical presentations, conference talks, code walkthroughs, teaching materials, or developer decks. Platforms: claude_code."} @@ -25088,8 +29552,6 @@ {"id": "0e0aa25d4c5a7db323520bdea870087c6c44aab32dc3f1f66fa9266e4cb999cb", "repo_url": "https://github.com/antfu/skills", "name": "vueuse-functions", "description": "Apply VueUse composables where appropriate to build concise, maintainable Vue.js / Nuxt features.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antfu/skills/blob/main/skills/vueuse-functions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vueuse-functions"}, "quality": {"stars": 4100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:16:24Z"}, "embedding_text": "vueuse-functions. Apply VueUse composables where appropriate to build concise, maintainable Vue.js / Nuxt features. Platforms: claude_code."} {"id": "48ac6743ae6bf186abdc27b209747af1db63d2a921f1eaab05644e17200b31ae", "repo_url": "https://github.com/antfu/skills", "name": "web-design-guidelines", "description": "Review UI code for Web Interface Guidelines compliance. Use when asked to \"review my UI\", \"check accessibility\", \"audit design\", \"review UX\", or \"check my site against best practices\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/antfu/skills/blob/main/skills/web-design-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install web-design-guidelines"}, "quality": {"stars": 4100, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:16:24Z"}, "embedding_text": "web-design-guidelines. Review UI code for Web Interface Guidelines compliance. Use when asked to \"review my UI\", \"check accessibility\", \"audit design\", \"review UX\", or \"check my site against best practices\". Platforms: claude_code."} {"id": "a6c966018a5928514228f132dd9b03068a2a4ca68fedad6e5cc272b45bf307e6", "repo_url": "https://github.com/trailofbits/skills", "name": "gh-cli", "description": "Enforces authenticated gh CLI workflows over unauthenticated curl/WebFetch patterns. Use when working with GitHub URLs, API access, pull requests, or issues.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trailofbits/skills/blob/main/.codex/skills/gh-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gh-cli"}, "quality": {"stars": 3610, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:29:41Z"}, "embedding_text": "gh-cli. Enforces authenticated gh CLI workflows over unauthenticated curl/WebFetch patterns. Use when working with GitHub URLs, API access, pull requests, or issues. Platforms: claude_code."} -{"id": "3f79ab81069adb7c3a232603a9a94b42b29bdc6cf360ba4fa711856ab8d6ed98", "repo_url": "https://github.com/trailofbits/skills", "name": "debug-buttercup", "description": "Debugs the Buttercup CRS (Cyber Reasoning System) running on Kubernetes. Use when diagnosing pod crashes, restart loops, Redis failures, resource pressure, disk saturation, DinD issues, or any service misbehavior in the crs namespace. Covers triage, log analysis, queue inspection, and common failure patterns for: redis, fuzzer-bot, coverage-bot, seed-gen, patcher, build-bot, scheduler, task-server, task-downloader, program-model, litellm, dind, tracer-bot, merger-bot, competition-api, pov-reproducer, scratch-cleaner, registry-cache, image-preloader, ui.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trailofbits/skills/blob/main/plugins/debug-buttercup/skills/debug-buttercup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debug-buttercup"}, "quality": {"stars": 3610, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:29:41Z"}, "embedding_text": "debug-buttercup. Debugs the Buttercup CRS (Cyber Reasoning System) running on Kubernetes. Use when diagnosing pod crashes, restart loops, Redis failures, resource pressure, disk saturation, DinD issues, or any service misbehavior in the crs namespace. Covers triage, log analysis, queue inspection, and common failure patterns for: redis, fuzzer-bot, coverage-bot, seed-gen, patcher, build-bot, scheduler, task-server, task-downloader, program-model, litellm, dind, tracer-bot, merger-bot, competition-api, pov-reproducer, scratch-cleaner, registry-cache, image-preloader, ui. Platforms: claude_code."} -{"id": "4703349d549bb4c77fbe1aa4b0c44f69de1d0ea5ad2c8775e2a211d7959a9fd2", "repo_url": "https://github.com/trailofbits/skills", "name": "second-opinion", "description": "Runs external LLM code reviews (OpenAI Codex or Google Gemini CLI) on uncommitted changes, branch diffs, or specific commits. Use when the user asks for a second opinion, external review, codex review, gemini review, or mentions /second-opinion.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trailofbits/skills/blob/main/plugins/second-opinion/skills/second-opinion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install second-opinion"}, "quality": {"stars": 3610, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:29:41Z"}, "embedding_text": "second-opinion. Runs external LLM code reviews (OpenAI Codex or Google Gemini CLI) on uncommitted changes, branch diffs, or specific commits. Use when the user asks for a second opinion, external review, codex review, gemini review, or mentions /second-opinion. Platforms: claude_code."} {"id": "a3f6b53e094907614c9b31b204ce9f96c8a19a0efada18b60dfa8944da850ed0", "repo_url": "https://github.com/trailofbits/skills", "name": "sharp-edges", "description": "Identifies error-prone APIs, dangerous configurations, and footgun designs that enable security mistakes. Use when reviewing API designs, configuration schemas, cryptographic library ergonomics, or evaluating whether code follows 'secure by default' and 'pit of success' principles. Triggers: footgun, misuse-resistant, secure defaults, API usability, dangerous configuration.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trailofbits/skills/blob/main/plugins/sharp-edges/skills/sharp-edges/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sharp-edges"}, "quality": {"stars": 3610, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:29:41Z"}, "embedding_text": "sharp-edges. Identifies error-prone APIs, dangerous configurations, and footgun designs that enable security mistakes. Use when reviewing API designs, configuration schemas, cryptographic library ergonomics, or evaluating whether code follows 'secure by default' and 'pit of success' principles. Triggers: footgun, misuse-resistant, secure defaults, API usability, dangerous configuration. Platforms: claude_code."} {"id": "4b03a0b69677adce2f85f3f83989207793cd6091e5ebec879438479559148767", "repo_url": "https://github.com/trailofbits/skills", "name": "skill-improver", "description": "Iteratively reviews and fixes Claude Code skill quality issues until they meet standards. Runs automated fix-review cycles using the skill-reviewer agent. Use to fix skill quality issues, improve skill descriptions, run automated skill review loops, or iteratively refine a skill. Triggers on 'fix my skill', 'improve skill quality', 'skill improvement loop'. NOT for one-time reviews\u2014use /skill-reviewer directly.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trailofbits/skills/blob/main/plugins/skill-improver/skills/skill-improver/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-improver"}, "quality": {"stars": 3610, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:29:41Z"}, "embedding_text": "skill-improver. Iteratively reviews and fixes Claude Code skill quality issues until they meet standards. Runs automated fix-review cycles using the skill-reviewer agent. Use to fix skill quality issues, improve skill descriptions, run automated skill review loops, or iteratively refine a skill. Triggers on 'fix my skill', 'improve skill quality', 'skill improvement loop'. NOT for one-time reviews\u2014use /skill-reviewer directly. Platforms: claude_code."} {"id": "c902c1902fa69c44777da3910f2930f07385dda83fd9bf9f58bde9f79dc00454", "repo_url": "https://github.com/trailofbits/skills", "name": "semgrep", "description": "Run Semgrep static analysis scan on a codebase using parallel subagents. Supports two scan modes \u2014 \"run all\" (full ruleset coverage) and \"important only\" (high-confidence security vulnerabilities). Automatically detects and uses Semgrep Pro for cross-file taint analysis when available. Use when asked to scan code for vulnerabilities, run a security audit with Semgrep, find bugs, or perform static analysis. Spawns parallel workers for multi-language codebases.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trailofbits/skills/blob/main/plugins/static-analysis/skills/semgrep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install semgrep"}, "quality": {"stars": 3610, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:29:41Z"}, "embedding_text": "semgrep. Run Semgrep static analysis scan on a codebase using parallel subagents. Supports two scan modes \u2014 \"run all\" (full ruleset coverage) and \"important only\" (high-confidence security vulnerabilities). Automatically detects and uses Semgrep Pro for cross-file taint analysis when available. Use when asked to scan code for vulnerabilities, run a security audit with Semgrep, find bugs, or perform static analysis. Spawns parallel workers for multi-language codebases. Platforms: claude_code."} @@ -29022,12 +33484,9 @@ {"id": "812a73ae4ec8fb0a4ce69b13a2625bb75b73edc2dc331015ba4d218dcdaef2a3", "repo_url": "https://github.com/mukul975/anthropic-cybersecurity-skills", "name": "triaging-security-incident", "description": "Performs initial triage of security incidents to determine severity, scope, and required response actions using the NIST SP 800-61r3 and SANS PICERL frameworks. Classifies incidents by type, assigns priority based on business impact, and routes to appropriate response teams. Activates for requests involving incident triage, security alert classification, severity assessment, incident prioritization, or initial incident analysis.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mukul975/anthropic-cybersecurity-skills/blob/main/skills/triaging-security-incident/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install triaging-security-incident"}, "quality": {"stars": 1302, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:43:52Z"}, "embedding_text": "triaging-security-incident. Performs initial triage of security incidents to determine severity, scope, and required response actions using the NIST SP 800-61r3 and SANS PICERL frameworks. Classifies incidents by type, assigns priority based on business impact, and routes to appropriate response teams. Activates for requests involving incident triage, security alert classification, severity assessment, incident prioritization, or initial incident analysis.\n Platforms: claude_code."} {"id": "2a861aaf4d8df9e0270634803e517f2e1a93311ff910a51214fe393c6d82cc76", "repo_url": "https://github.com/mukul975/anthropic-cybersecurity-skills", "name": "triaging-vulnerabilities-with-ssvc-framework", "description": "Triage and prioritize vulnerabilities using CISA's Stakeholder-Specific Vulnerability Categorization (SSVC) decision tree framework to produce actionable remediation priorities.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mukul975/anthropic-cybersecurity-skills/blob/main/skills/triaging-vulnerabilities-with-ssvc-framework/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install triaging-vulnerabilities-with-ssvc-framework"}, "quality": {"stars": 1302, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:43:52Z"}, "embedding_text": "triaging-vulnerabilities-with-ssvc-framework. Triage and prioritize vulnerabilities using CISA's Stakeholder-Specific Vulnerability Categorization (SSVC) decision tree framework to produce actionable remediation priorities. Platforms: claude_code."} {"id": "5db40fb94fbc360ff64a50aaff73dade628d0aef88fb263be8d0c8acc4e7f067", "repo_url": "https://github.com/aipexstudio/aipex", "name": "aipex-browser", "description": "AI-powered browser automation using the AIPex Chrome Extension via MCP bridge. Use this skill when the agent needs to control a Chrome browser \u2014 navigating pages, clicking elements, filling forms, capturing screenshots, managing tabs, or downloading content \u2014 by connecting to the AIPex MCP bridge.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aipexstudio/aipex/blob/main/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aipex-browser"}, "quality": {"stars": 1102, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T13:29:50Z"}, "embedding_text": "aipex-browser. AI-powered browser automation using the AIPex Chrome Extension via MCP bridge. Use this skill when the agent needs to control a Chrome browser \u2014 navigating pages, clicking elements, filling forms, capturing screenshots, managing tabs, or downloading content \u2014 by connecting to the AIPex MCP bridge. Platforms: claude_code."} -{"id": "99c82d2f7cba303099471759572a67ee877c7c3035cf107e5009c2420bb7d0d0", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "command-creator", "description": "This skill should be used when creating a Claude Code slash command. Use when users ask to \"create a command\", \"make a slash command\", \"add a command\", or want to document a workflow as a reusable command. Essential for creating optimized, agent-executable slash commands with proper structure and best practices.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/command-creator/skills/command-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install command-creator"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "command-creator. This skill should be used when creating a Claude Code slash command. Use when users ask to \"create a command\", \"make a slash command\", \"add a command\", or want to document a workflow as a reusable command. Essential for creating optimized, agent-executable slash commands with proper structure and best practices. Platforms: claude_code."} -{"id": "6af5838065cd5a5fddab702b9f7a0fd006e02067488bf90cd17c8c5304db55fe", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "crafting-effective-readmes", "description": "Use when writing or improving README files. Not all READMEs are the same \u2014 provides templates and guidance matched to your audience and project type.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/crafting-effective-readmes/skills/crafting-effective-readmes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install crafting-effective-readmes"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "crafting-effective-readmes. Use when writing or improving README files. Not all READMEs are the same \u2014 provides templates and guidance matched to your audience and project type. Platforms: claude_code."} {"id": "bd04adb8f1cd0ee6ba271a06a39d69730769cbfb66545cb9d9434affdf4f26e4", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "gepetto", "description": "Creates detailed, sectionized implementation plans through research, stakeholder interviews, and multi-LLM review. Use when planning features that need thorough pre-implementation analysis.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/gepetto/skills/gepetto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gepetto"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "gepetto. Creates detailed, sectionized implementation plans through research, stakeholder interviews, and multi-LLM review. Use when planning features that need thorough pre-implementation analysis. Platforms: claude_code."} {"id": "957acd569f4b19e070fd74cf64eeaac24abeb1dadedf0ed415568db7efa98d3b", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "lesson-learned", "description": "Analyze recent code changes via git history and extract software engineering lessons. Use when the user asks 'what is the lesson here?', 'what can I learn from this?', 'engineering takeaway', 'what did I just learn?', 'reflect on this code', or wants to extract principles from recent work.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/lesson-learned/skills/lesson-learned/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install lesson-learned"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "lesson-learned. Analyze recent code changes via git history and extract software engineering lessons. Use when the user asks 'what is the lesson here?', 'what can I learn from this?', 'engineering takeaway', 'what did I just learn?', 'reflect on this code', or wants to extract principles from recent work. Platforms: claude_code."} {"id": "8594fd0f0adf97cbff87180e4bb150adc97fa883785cd1ddbcbfd89d1c9f2594", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "mermaid-diagrams", "description": "Comprehensive guide for creating software diagrams using Mermaid syntax. Use when users need to create, visualize, or document software through diagrams including class diagrams (domain modeling, object-oriented design), sequence diagrams (application flows, API interactions, code execution), flowcharts (processes, algorithms, user journeys), entity relationship diagrams (database schemas), C4 architecture diagrams (system context, containers, components), state diagrams, git graphs, pie charts, gantt charts, or any other diagram type. Triggers include requests to \"diagram\", \"visualize\", \"model\", \"map out\", \"show the flow\", or when explaining system architecture, database design, code structure, or user/application flows.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/mermaid-diagrams/skills/mermaid-diagrams/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mermaid-diagrams"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "mermaid-diagrams. Comprehensive guide for creating software diagrams using Mermaid syntax. Use when users need to create, visualize, or document software through diagrams including class diagrams (domain modeling, object-oriented design), sequence diagrams (application flows, API interactions, code execution), flowcharts (processes, algorithms, user journeys), entity relationship diagrams (database schemas), C4 architecture diagrams (system context, containers, components), state diagrams, git graphs, pie charts, gantt charts, or any other diagram type. Triggers include requests to \"diagram\", \"visualize\", \"model\", \"map out\", \"show the flow\", or when explaining system architecture, database design, code structure, or user/application flows. Platforms: claude_code."} -{"id": "c43a27d6af28e599d2521816080b04de11cb929582e0911059faacb483ca3c02", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "perplexity", "description": "Web search and research using Perplexity AI. Use when user says \"search\", \"find\", \"look up\", \"ask\", \"research\", or \"what's the latest\" for generic queries. NOT for library/framework docs (use Context7) or workspace questions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/perplexity/skills/perplexity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install perplexity"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "perplexity. Web search and research using Perplexity AI. Use when user says \"search\", \"find\", \"look up\", \"ask\", \"research\", or \"what's the latest\" for generic queries. NOT for library/framework docs (use Context7) or workspace questions. Platforms: claude_code."} {"id": "3ea5214abc18212e9c38864bc3019b1ffcdc8cc805edd0efc59568bd1515cf5d", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "react-useeffect", "description": "React useEffect best practices from official docs. Use when writing/reviewing useEffect, useState for derived values, data fetching, or state synchronization. Teaches when NOT to use Effect and better alternatives.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/dist/plugins/react-useeffect/skills/react-useeffect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install react-useeffect"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "react-useeffect. React useEffect best practices from official docs. Use when writing/reviewing useEffect, useState for derived values, data fetching, or state synchronization. Teaches when NOT to use Effect and better alternatives. Platforms: claude_code."} {"id": "d253443da8dc687d8bdf826b439d6a415de775380ef184fc606539c25dd63eb5", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "agent-md-refactor", "description": "Refactor bloated AGENTS.md, CLAUDE.md, or similar agent instruction files to follow progressive disclosure principles. Splits monolithic files into organized, linked documentation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/skills/agent-md-refactor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-md-refactor"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "agent-md-refactor. Refactor bloated AGENTS.md, CLAUDE.md, or similar agent instruction files to follow progressive disclosure principles. Splits monolithic files into organized, linked documentation. Platforms: claude_code."} {"id": "11715ce4c58fad33df54276cd0f663daaf2e4b5a35901ded3bfad6895602e385", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "backend-to-frontend-handoff-docs", "description": "Create API handoff documentation for frontend developers. Use when backend work is complete and needs to be documented for frontend integration, or user says 'create handoff', 'document API', 'frontend handoff', or 'API documentation'.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/skills/backend-to-frontend-handoff-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install backend-to-frontend-handoff-docs"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "backend-to-frontend-handoff-docs. Create API handoff documentation for frontend developers. Use when backend work is complete and needs to be documented for frontend integration, or user says 'create handoff', 'document API', 'frontend handoff', or 'API documentation'. Platforms: claude_code."} @@ -29072,7 +33531,6 @@ {"id": "a329be011e359143eebff42d91d360eec565457b1873aa015dae294ca091e3a6", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "skill-judge", "description": "Evaluate Agent Skill design quality against official specifications and best practices. Use when reviewing, auditing, or improving SKILL.md files and skill packages. Provides multi-dimensional scoring and actionable improvement suggestions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/skills/skill-judge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-judge"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "skill-judge. Evaluate Agent Skill design quality against official specifications and best practices. Use when reviewing, auditing, or improving SKILL.md files and skill packages. Provides multi-dimensional scoring and actionable improvement suggestions. Platforms: claude_code."} {"id": "40108f9fb155c068eda99e37a2d67a5a28423d3ec471a142ca5f17a6bc18c9be", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "web-to-markdown", "description": "Use ONLY when the user explicitly says: 'use the skill web-to-markdown ...' (or 'use a skill web-to-markdown ...'). Converts webpage URLs to clean Markdown by calling the local web2md CLI (Puppeteer + Readability), suitable for JS-rendered pages.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/skills/web-to-markdown/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install web-to-markdown"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "web-to-markdown. Use ONLY when the user explicitly says: 'use the skill web-to-markdown ...' (or 'use a skill web-to-markdown ...'). Converts webpage URLs to clean Markdown by calling the local web2md CLI (Puppeteer + Readability), suitable for JS-rendered pages. Platforms: claude_code."} {"id": "7f5596e6a75c38b192798d6bea7886dee5230239626bed9df44b38c070647efa", "repo_url": "https://github.com/softaworks/agent-toolkit", "name": "writing-clearly-and-concisely", "description": "Use when writing prose humans will read\u2014documentation, commit messages, error messages, explanations, reports, or UI text. Applies Strunk's timeless rules for clearer, stronger, more professional writing.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/softaworks/agent-toolkit/blob/main/skills/writing-clearly-and-concisely/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-clearly-and-concisely"}, "quality": {"stars": 1070, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-05T16:46:24Z"}, "embedding_text": "writing-clearly-and-concisely. Use when writing prose humans will read\u2014documentation, commit messages, error messages, explanations, reports, or UI text. Applies Strunk's timeless rules for clearer, stronger, more professional writing. Platforms: claude_code."} -{"id": "910f54a0015055e4a63af33560b771b816e20f3f949705f016762cf9dabe11ed", "repo_url": "https://github.com/moizibnyousaf/ai-agent-skills", "name": "ask-questions-if-underspecified", "description": "Clarify requirements before implementing. Do not use automatically, only when invoked explicitly.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moizibnyousaf/ai-agent-skills/blob/main/skills/ask-questions-if-underspecified/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ask-questions-if-underspecified"}, "quality": {"stars": 936, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T10:59:25Z"}, "embedding_text": "ask-questions-if-underspecified. Clarify requirements before implementing. Do not use automatically, only when invoked explicitly. Platforms: claude_code."} {"id": "1eca848fff9c4c0cba4d505daf3e9a583fc37a21c54e0e6077e69c645b1764d9", "repo_url": "https://github.com/moizibnyousaf/ai-agent-skills", "name": "code-refactoring", "description": "Code refactoring patterns and techniques for improving code quality without changing behavior. Use for cleaning up legacy code, reducing complexity, or improving maintainability.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moizibnyousaf/ai-agent-skills/blob/main/skills/code-refactoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install code-refactoring"}, "quality": {"stars": 936, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T10:59:25Z"}, "embedding_text": "code-refactoring. Code refactoring patterns and techniques for improving code quality without changing behavior. Use for cleaning up legacy code, reducing complexity, or improving maintainability. Platforms: claude_code."} {"id": "48a93de05a33ad9e2bf2cfe23ff9476eb1009cb0d1e7ac42c16e549f7ed7370e", "repo_url": "https://github.com/moizibnyousaf/ai-agent-skills", "name": "competitive-ads-extractor", "description": "Extracts and analyzes competitors' ads from ad libraries (Facebook, LinkedIn, etc.) to understand what messaging, problems, and creative approaches are working. Helps inspire and improve your own ad campaigns.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moizibnyousaf/ai-agent-skills/blob/main/skills/competitive-ads-extractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install competitive-ads-extractor"}, "quality": {"stars": 936, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T10:59:25Z"}, "embedding_text": "competitive-ads-extractor. Extracts and analyzes competitors' ads from ad libraries (Facebook, LinkedIn, etc.) to understand what messaging, problems, and creative approaches are working. Helps inspire and improve your own ad campaigns. Platforms: claude_code."} {"id": "69b4d7cc5a34bdaeada9cbc5775e07430954fea7e8cdf732ecb71511831e47f2", "repo_url": "https://github.com/moizibnyousaf/ai-agent-skills", "name": "doc-coauthoring", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/moizibnyousaf/ai-agent-skills/blob/main/skills/doc-coauthoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install doc-coauthoring"}, "quality": {"stars": 936, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T10:59:25Z"}, "embedding_text": "doc-coauthoring. 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. Platforms: claude_code."} @@ -29087,19 +33545,15 @@ {"id": "9017030cae522353d40a413181fc65d389990797f531044d9b15ab1a2e898f74", "repo_url": "https://github.com/rohitg00/skillkit", "name": "find-skills", "description": "Discovers, searches, and installs skills from multiple AI agent skill marketplaces (400K+ skills) using the SkillKit CLI. Supports browsing official partner collections (Anthropic, Vercel, Supabase, Stripe, and more) and community repositories, searching by domain or technology, and installing specific skills from GitHub. Use when the user wants to find, browse, or install new agent skills, plugins, extensions, or add-ons; asks 'is there a skill for X' or 'find a skill for X'; wants to explore a skill store or marketplace; needs to extend agent capabilities in areas like React, testing, DevOps, security, or APIs; or says 'browse skills', 'search skill marketplace', 'install a skill', or 'what skills are available'.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohitg00/skillkit/blob/main/skills/find-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install find-skills"}, "quality": {"stars": 601, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-10T18:34:32Z"}, "embedding_text": "find-skills. Discovers, searches, and installs skills from multiple AI agent skill marketplaces (400K+ skills) using the SkillKit CLI. Supports browsing official partner collections (Anthropic, Vercel, Supabase, Stripe, and more) and community repositories, searching by domain or technology, and installing specific skills from GitHub. Use when the user wants to find, browse, or install new agent skills, plugins, extensions, or add-ons; asks 'is there a skill for X' or 'find a skill for X'; wants to explore a skill store or marketplace; needs to extend agent capabilities in areas like React, testing, DevOps, security, or APIs; or says 'browse skills', 'search skill marketplace', 'install a skill', or 'what skills are available'. Platforms: claude_code."} {"id": "4d00b2d2b71814b4c31a13099047a67de033cbac0bae65f11b1078f88a607dc8", "repo_url": "https://github.com/resciencelab/opc-skills", "name": "add-new-opc-skill", "description": "Checklist and automation guide for adding a new skill to the OPC Skills project. Ensures all required files, metadata, logos, and listings are created before release. Use when adding a new skill, publishing a skill, or preparing a skill for release.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/resciencelab/opc-skills/blob/main/.factory/skills/add-new-opc-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install add-new-opc-skill"}, "quality": {"stars": 590, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:40:57Z"}, "embedding_text": "add-new-opc-skill. Checklist and automation guide for adding a new skill to the OPC Skills project. Ensures all required files, metadata, logos, and listings are created before release. Use when adding a new skill, publishing a skill, or preparing a skill for release. Platforms: claude_code."} {"id": "767dda385d5521df1b90f1de777d04984c349914effcf1a14b8034b037a8bac4", "repo_url": "https://github.com/resciencelab/opc-skills", "name": "archive", "description": "Archive session learnings, debugging solutions, and deployment logs to .archive/yyyy-mm-dd/ as indexed markdown with searchable tags. Use when completing a significant task, resolving a tricky bug, deploying, or when the user says \"archive this\". Maintains .archive/MEMORY.md index for cross-session knowledge reuse.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/resciencelab/opc-skills/blob/main/skills/archive/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install archive"}, "quality": {"stars": 590, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:40:57Z"}, "embedding_text": "archive. Archive session learnings, debugging solutions, and deployment logs to .archive/yyyy-mm-dd/ as indexed markdown with searchable tags. Use when completing a significant task, resolving a tricky bug, deploying, or when the user says \"archive this\". Maintains .archive/MEMORY.md index for cross-session knowledge reuse. Platforms: claude_code."} -{"id": "c55a5058be2dd2950642f0be52f821f491839022a1155a0fb2d1a0228537e1a8", "repo_url": "https://github.com/resciencelab/opc-skills", "name": "nanobanana", "description": "Generate and edit images using Google Gemini 3 Pro Image (Nano Banana Pro). Supports text-to-image, image editing, various aspect ratios, and high-resolution output (2K/4K). Use when user wants to generate images, create images, use Gemini image generation, or do AI image generation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/resciencelab/opc-skills/blob/main/skills/nanobanana/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nanobanana"}, "quality": {"stars": 590, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:40:57Z"}, "embedding_text": "nanobanana. Generate and edit images using Google Gemini 3 Pro Image (Nano Banana Pro). Supports text-to-image, image editing, various aspect ratios, and high-resolution output (2K/4K). Use when user wants to generate images, create images, use Gemini image generation, or do AI image generation. Platforms: claude_code."} {"id": "9d307c1507e493ad40cf80037f5d27cba79807dec75672e34a26a6470737fb72", "repo_url": "https://github.com/resciencelab/opc-skills", "name": "seo-geo", "description": "SEO & GEO (Generative Engine Optimization) for websites. Analyze keywords, generate schema markup, optimize for AI search engines (ChatGPT, Perplexity, Gemini, Copilot, Claude) and traditional search (Google, Bing). Use when user wants to improve search visibility, search optimization, search ranking, AI visibility, ChatGPT ranking, Google AI Overview, indexing, JSON-LD, meta tags, or keyword research.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/resciencelab/opc-skills/blob/main/skills/seo-geo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-geo"}, "quality": {"stars": 590, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:40:57Z"}, "embedding_text": "seo-geo. SEO & GEO (Generative Engine Optimization) for websites. Analyze keywords, generate schema markup, optimize for AI search engines (ChatGPT, Perplexity, Gemini, Copilot, Claude) and traditional search (Google, Bing). Use when user wants to improve search visibility, search optimization, search ranking, AI visibility, ChatGPT ranking, Google AI Overview, indexing, JSON-LD, meta tags, or keyword research. Platforms: claude_code."} {"id": "8c1a85b13d8135c640c4f3f87376a4ae91f79637720b5782cc54b783d93fdff7", "repo_url": "https://github.com/resciencelab/opc-skills", "name": "skill-name", "description": "Clear description of what this skill does and when to use it. Include trigger keywords and contexts inline, e.g. \"Use when user wants to X, Y, or Z.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/resciencelab/opc-skills/blob/main/template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-name"}, "quality": {"stars": 590, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:40:57Z"}, "embedding_text": "skill-name. Clear description of what this skill does and when to use it. Include trigger keywords and contexts inline, e.g. \"Use when user wants to X, Y, or Z.\" Platforms: claude_code."} {"id": "4c0ca36e58d9082c3249a1a97ac53e1d5344cd66fc177c1caed87291a8e50f34", "repo_url": "https://github.com/dotnet/skills", "name": "create-custom-agent", "description": "Creates VS Code custom agent files (.agent.md) for specialized AI personas with tools, instructions, and handoffs. Use when scaffolding new custom agents, configuring agent workflows, or setting up agent-to-agent handoffs.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/.agents/skills/create-custom-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-custom-agent"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "create-custom-agent. Creates VS Code custom agent files (.agent.md) for specialized AI personas with tools, instructions, and handoffs. Use when scaffolding new custom agents, configuring agent workflows, or setting up agent-to-agent handoffs. Platforms: claude_code."} {"id": "7fb87ead6f933404aabe5f409373de2fbf103055d05efe41dfb9aa51d352c37d", "repo_url": "https://github.com/dotnet/skills", "name": "create-skill", "description": "Scaffolds new agent skills for the dotnet/skills repository. Use when creating a new skill, generating SKILL.md files, or setting up skill directory structures. Handles frontmatter generation, section templates, and validation guidance.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/.agents/skills/create-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-skill"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "create-skill. Scaffolds new agent skills for the dotnet/skills repository. Use when creating a new skill, generating SKILL.md files, or setting up skill directory structures. Handles frontmatter generation, section templates, and validation guidance. Platforms: claude_code."} {"id": "54b78b456e7a0746bd23de38b91d6c5646561586774467c08d1305f8375a3d75", "repo_url": "https://github.com/dotnet/skills", "name": "no-eval-skill", "description": "A skill with no eval.yaml for testing discovery behavior.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/eng/skill-validator/tests/fixtures/no-eval-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install no-eval-skill"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "no-eval-skill. A skill with no eval.yaml for testing discovery behavior. Platforms: claude_code."} {"id": "4c2fc5fd414bb02f193ea4306f058b2bf24f374dd615cd6aae2c40a39678bbcb", "repo_url": "https://github.com/dotnet/skills", "name": "sample-skill", "description": "A sample skill for testing the validator. Helps with greeting generation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/eng/skill-validator/tests/fixtures/sample-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sample-skill"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "sample-skill. A sample skill for testing the validator. Helps with greeting generation. Platforms: claude_code."} -{"id": "5d8fa4a3a0b69a1d6ab44783c0be8c153c0d360c2b7bd7473867ef147032c743", "repo_url": "https://github.com/dotnet/skills", "name": "technology-selection", "description": "Guides technology selection and implementation of AI and ML features in .NET 8+ applications using ML.NET, Microsoft.Extensions.AI (MEAI), Microsoft Agent Framework (MAF), GitHub Copilot SDK, ONNX Runtime, and OllamaSharp. Covers the full spectrum from classic ML through modern LLM orchestration to local inference. Use when adding classification, regression, clustering, anomaly detection, recommendation, LLM integration (text generation, summarization, reasoning), RAG pipelines with vector search, agentic workflows with tool calling, Copilot extensions, or custom model inference via ONNX Runtime to a .NET project. DO NOT USE FOR projects targeting .NET Framework (requires .NET 8+), the task is pure data engineering or ETL with no ML/AI component, or the project needs a custom deep learning training loop (use Python with PyTorch/TensorFlow, then export to ONNX for .NET inference).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-ai/skills/technology-selection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technology-selection"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "technology-selection. Guides technology selection and implementation of AI and ML features in .NET 8+ applications using ML.NET, Microsoft.Extensions.AI (MEAI), Microsoft Agent Framework (MAF), GitHub Copilot SDK, ONNX Runtime, and OllamaSharp. Covers the full spectrum from classic ML through modern LLM orchestration to local inference. Use when adding classification, regression, clustering, anomaly detection, recommendation, LLM integration (text generation, summarization, reasoning), RAG pipelines with vector search, agentic workflows with tool calling, Copilot extensions, or custom model inference via ONNX Runtime to a .NET project. DO NOT USE FOR projects targeting .NET Framework (requires .NET 8+), the task is pure data engineering or ETL with no ML/AI component, or the project needs a custom deep learning training loop (use Python with PyTorch/TensorFlow, then export to ONNX for .NET inference). Platforms: claude_code."} {"id": "134ea5c8911a78bdf9f97c6b99a7ba1a6a9e1a3e37036fbc5b8aeacebdf8dae2", "repo_url": "https://github.com/dotnet/skills", "name": "optimizing-ef-core-queries", "description": "Optimize Entity Framework Core queries by fixing N+1 problems, choosing correct tracking modes, using compiled queries, and avoiding common performance traps. Use when EF Core queries are slow, generating excessive SQL, or causing high database load.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-data/skills/optimizing-ef-core-queries/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install optimizing-ef-core-queries"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "optimizing-ef-core-queries. Optimize Entity Framework Core queries by fixing N+1 problems, choosing correct tracking modes, using compiled queries, and avoiding common performance traps. Use when EF Core queries are slow, generating excessive SQL, or causing high database load. Platforms: claude_code."} -{"id": "eba5a1b5679ea891b3c2eecae196a2d0e7cfdef58c41332993a54f644002457c", "repo_url": "https://github.com/dotnet/skills", "name": "analyzing-dotnet-performance", "description": "Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I/O with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-diag/skills/analyzing-dotnet-performance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install analyzing-dotnet-performance"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "analyzing-dotnet-performance. Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I/O with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns. Platforms: claude_code."} {"id": "121e1b5ac2ede9216d8ca26093f2b0199166a21d9ddd1d9ffbf8a4e615ffa539", "repo_url": "https://github.com/dotnet/skills", "name": "android-tombstone-symbolication", "description": "Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app crash from a tombstone, resolving native backtrace frames in libmonosgen-2.0.so or libcoreclr.so to .NET runtime source code, or investigating SIGABRT, SIGSEGV, or other native signals originating from the .NET runtime on Android. DO NOT USE FOR pure Java/Kotlin crashes, managed .NET exceptions that are already captured in logcat, or iOS crash logs. INVOKES Symbolicate-Tombstone.ps1 script, llvm-symbolizer, Microsoft symbol server.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-diag/skills/android-tombstone-symbolication/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install android-tombstone-symbolication"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "android-tombstone-symbolication. Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app crash from a tombstone, resolving native backtrace frames in libmonosgen-2.0.so or libcoreclr.so to .NET runtime source code, or investigating SIGABRT, SIGSEGV, or other native signals originating from the .NET runtime on Android. DO NOT USE FOR pure Java/Kotlin crashes, managed .NET exceptions that are already captured in logcat, or iOS crash logs. INVOKES Symbolicate-Tombstone.ps1 script, llvm-symbolizer, Microsoft symbol server. Platforms: claude_code."} {"id": "4782e80010934c4167e7e183e6eae346173948835ea4cf10c36710250c84a13f", "repo_url": "https://github.com/dotnet/skills", "name": "clr-activation-debugging", "description": "Diagnoses .NET Framework CLR activation issues using CLR activation logs (CLRLoad logs) produced by mscoree.dll. Use when: the shim picks the wrong runtime, fails to load any runtime, shows unexpected .NET 3.5 Feature-on-Demand (FOD) dialogs, unexpectedly does NOT show FOD dialogs, loads both v2 and v4 into the same process causing failures, or any time someone is wondering \"what is happening with .NET Framework activation?\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-diag/skills/clr-activation-debugging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install clr-activation-debugging"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "clr-activation-debugging. Diagnoses .NET Framework CLR activation issues using CLR activation logs (CLRLoad logs) produced by mscoree.dll. Use when: the shim picks the wrong runtime, fails to load any runtime, shows unexpected .NET 3.5 Feature-on-Demand (FOD) dialogs, unexpectedly does NOT show FOD dialogs, loads both v2 and v4 into the same process causing failures, or any time someone is wondering \"what is happening with .NET Framework activation?\" Platforms: claude_code."} -{"id": "0bb11824d9ce57a743f9d110d10f8ed365b8b9bfac844d8a0d7a57df551c04f4", "repo_url": "https://github.com/dotnet/skills", "name": "dotnet-trace-collect", "description": "Guide developers through capturing diagnostic artifacts to diagnose production .NET performance issues. Use when the user needs help choosing diagnostic tools, collecting performance data, or understanding tool trade-offs across different environments (Windows/Linux, .NET Framework/modern .NET, container/non-container).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-diag/skills/dotnet-trace-collect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dotnet-trace-collect"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "dotnet-trace-collect. Guide developers through capturing diagnostic artifacts to diagnose production .NET performance issues. Use when the user needs help choosing diagnostic tools, collecting performance data, or understanding tool trade-offs across different environments (Windows/Linux, .NET Framework/modern .NET, container/non-container). Platforms: claude_code."} {"id": "7b63c3e6eeb07cdf66f97b2433cac4c5ce2bbf9cd30a1b8b5c4af2082a758237", "repo_url": "https://github.com/dotnet/skills", "name": "dump-collect", "description": "Configure and collect crash dumps for modern .NET applications. USE FOR: enabling automatic crash dumps for CoreCLR or NativeAOT, capturing dumps from running .NET processes, setting up dump collection in Docker or Kubernetes, using dotnet-dump collect or createdump. DO NOT USE FOR: analyzing or debugging dumps, post-mortem investigation with lldb/windbg/dotnet-dump analyze, profiling or tracing, or for .NET Framework processes.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-diag/skills/dump-collect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dump-collect"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "dump-collect. Configure and collect crash dumps for modern .NET applications. USE FOR: enabling automatic crash dumps for CoreCLR or NativeAOT, capturing dumps from running .NET processes, setting up dump collection in Docker or Kubernetes, using dotnet-dump collect or createdump. DO NOT USE FOR: analyzing or debugging dumps, post-mortem investigation with lldb/windbg/dotnet-dump analyze, profiling or tracing, or for .NET Framework processes. Platforms: claude_code."} {"id": "dbfdc79efd7720c737053b48b8ad9bf29cda146bbacda20540ef0a5ee1e3d9a8", "repo_url": "https://github.com/dotnet/skills", "name": "microbenchmarking", "description": "Activate this skill when BenchmarkDotNet (BDN) is involved in the task \u2014 creating, running, configuring, or reviewing BDN benchmarks. Also activate when microbenchmarking .NET code would be useful and BenchmarkDotNet is the likely tool. Consider activating when answering a .NET performance question requires measurement and BenchmarkDotNet may be needed. Covers microbenchmark design, BDN configuration and project setup, how to run BDN microbenchmarks efficiently and effectively, and using BDN for side-by-side performance comparisons. Do NOT use for profiling/tracing .NET code (dotnet-trace, PerfView), production telemetry, or load/stress testing (Crank, k6).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-diag/skills/microbenchmarking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install microbenchmarking"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "microbenchmarking. Activate this skill when BenchmarkDotNet (BDN) is involved in the task \u2014 creating, running, configuring, or reviewing BDN benchmarks. Also activate when microbenchmarking .NET code would be useful and BenchmarkDotNet is the likely tool. Consider activating when answering a .NET performance question requires measurement and BenchmarkDotNet may be needed. Covers microbenchmark design, BDN configuration and project setup, how to run BDN microbenchmarks efficiently and effectively, and using BDN for side-by-side performance comparisons. Do NOT use for profiling/tracing .NET code (dotnet-trace, PerfView), production telemetry, or load/stress testing (Crank, k6). Platforms: claude_code."} {"id": "3051a4f1dfa20e895ddb87e2bcd95233179ad636c3d90277c4e571e47e157788", "repo_url": "https://github.com/dotnet/skills", "name": "dotnet-maui-doctor", "description": "Diagnoses and fixes .NET MAUI development environment issues. Validates .NET SDK, workloads, Java JDK, Android SDK, Xcode, and Windows SDK. All version requirements discovered dynamically from NuGet WorkloadDependencies.json \u2014 never hardcoded. Use when: setting up MAUI development, build errors mentioning SDK/workload/JDK/Android, \"Android SDK not found\", \"Java version\" errors, \"Xcode not found\", environment verification after updates, or any MAUI toolchain issues. Do not use for: non-MAUI .NET projects, Xamarin.Forms apps, runtime app crashes unrelated to environment setup, or app store publishing issues. Works on macOS, Windows, and Linux.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-maui/skills/dotnet-maui-doctor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dotnet-maui-doctor"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "dotnet-maui-doctor. Diagnoses and fixes .NET MAUI development environment issues. Validates .NET SDK, workloads, Java JDK, Android SDK, Xcode, and Windows SDK. All version requirements discovered dynamically from NuGet WorkloadDependencies.json \u2014 never hardcoded. Use when: setting up MAUI development, build errors mentioning SDK/workload/JDK/Android, \"Android SDK not found\", \"Java version\" errors, \"Xcode not found\", environment verification after updates, or any MAUI toolchain issues. Do not use for: non-MAUI .NET projects, Xamarin.Forms apps, runtime app crashes unrelated to environment setup, or app store publishing issues. Works on macOS, Windows, and Linux. Platforms: claude_code."} @@ -29109,8 +33563,6 @@ {"id": "2de50580dd9dd7c579bf78d3be649feb78ba5ccbda16406bb60a8b86279d4be7", "repo_url": "https://github.com/dotnet/skills", "name": "build-perf-baseline", "description": "Establish build performance baselines and apply systematic optimization techniques. Only activate in MSBuild/.NET build context. Use when diagnosing slow builds, establishing before/after measurements, or applying advanced optimization strategies like MSBuild Server, static graph builds, artifacts output, and dependency graph trimming. Start here before diving into specific optimizations from build-perf-diagnostics, incremental-build, or build-parallelism skills. DO NOT use for non-MSBuild build systems.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/build-perf-baseline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install build-perf-baseline"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "build-perf-baseline. Establish build performance baselines and apply systematic optimization techniques. Only activate in MSBuild/.NET build context. Use when diagnosing slow builds, establishing before/after measurements, or applying advanced optimization strategies like MSBuild Server, static graph builds, artifacts output, and dependency graph trimming. Start here before diving into specific optimizations from build-perf-diagnostics, incremental-build, or build-parallelism skills. DO NOT use for non-MSBuild build systems. Platforms: claude_code."} {"id": "09ebb631d8d4fed809dcce1f79775a6cbad95cb62e8cb28c022f66215315bb0d", "repo_url": "https://github.com/dotnet/skills", "name": "build-perf-diagnostics", "description": "Reference knowledge for diagnosing MSBuild build performance issues. Only activate in MSBuild/.NET build context. Use when builds are slow, to identify bottlenecks using binary log analysis. Covers timeline analysis, node utilization, expensive targets/tasks, Roslyn analyzer impact, RAR performance, and critical path identification. Works with binlog replay to text logs for data-driven analysis.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/build-perf-diagnostics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install build-perf-diagnostics"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "build-perf-diagnostics. Reference knowledge for diagnosing MSBuild build performance issues. Only activate in MSBuild/.NET build context. Use when builds are slow, to identify bottlenecks using binary log analysis. Covers timeline analysis, node utilization, expensive targets/tasks, Roslyn analyzer impact, RAR performance, and critical path identification. Works with binlog replay to text logs for data-driven analysis. Platforms: claude_code."} {"id": "3939c7d28398a3ad9a6c5cdea681fdf3bb977673f88281c847669b80a85b69bb", "repo_url": "https://github.com/dotnet/skills", "name": "check-bin-obj-clash", "description": "Detects MSBuild projects with conflicting OutputPath or IntermediateOutputPath. Only activate in MSBuild/.NET build context. Use when builds fail with file access errors, missing outputs, or intermittent failures. Identifies when multiple projects or multi-targeting builds write to the same bin/obj directories.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/check-bin-obj-clash/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install check-bin-obj-clash"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "check-bin-obj-clash. Detects MSBuild projects with conflicting OutputPath or IntermediateOutputPath. Only activate in MSBuild/.NET build context. Use when builds fail with file access errors, missing outputs, or intermittent failures. Identifies when multiple projects or multi-targeting builds write to the same bin/obj directories. Platforms: claude_code."} -{"id": "dc59c2b942c9396554d64d7ac80359b130f807a3433b1b63f8e9634d0c2bbe26", "repo_url": "https://github.com/dotnet/skills", "name": "directory-build-organization", "description": "Guide for organizing MSBuild infrastructure with Directory.Build.props, Directory.Build.targets, Directory.Packages.props, and Directory.Build.rsp. Only activate in MSBuild/.NET build context. Use when structuring multi-project repos, centralizing build settings, or implementing central package management. Invoke when asked about Directory.Build files, centralizing project properties, or organizing build infrastructure.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/directory-build-organization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install directory-build-organization"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "directory-build-organization. Guide for organizing MSBuild infrastructure with Directory.Build.props, Directory.Build.targets, Directory.Packages.props, and Directory.Build.rsp. Only activate in MSBuild/.NET build context. Use when structuring multi-project repos, centralizing build settings, or implementing central package management. Invoke when asked about Directory.Build files, centralizing project properties, or organizing build infrastructure. Platforms: claude_code."} -{"id": "65ddefe33ecc2a2ee51401d41bb21211866cec371795568621c1496fa7062862", "repo_url": "https://github.com/dotnet/skills", "name": "eval-performance", "description": "Guide for diagnosing and improving MSBuild project evaluation performance. Only activate in MSBuild/.NET build context. Use when builds are slow before any compilation starts, when evaluation time is high in binlog analysis, or when dealing with expensive glob patterns and deep import chains. Covers evaluation phases, glob optimization, import chain analysis, and /pp preprocessing.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/eval-performance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install eval-performance"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "eval-performance. Guide for diagnosing and improving MSBuild project evaluation performance. Only activate in MSBuild/.NET build context. Use when builds are slow before any compilation starts, when evaluation time is high in binlog analysis, or when dealing with expensive glob patterns and deep import chains. Covers evaluation phases, glob optimization, import chain analysis, and /pp preprocessing. Platforms: claude_code."} {"id": "9cdb5a03916779923bf41d0680342c5e2f9f8503cb17a0538428355bae743065", "repo_url": "https://github.com/dotnet/skills", "name": "including-generated-files", "description": "Proper handling of files generated during the MSBuild's build process. Only activate in MSBuild/.NET build context. Use when generated files are not being included in compilation, output, or when globs aren't capturing generated files. Covers MSBuild evaluation vs execution phases, timing targets to include generated files, and ensuring generated files are tracked for incremental builds and clean.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/including-generated-files/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install including-generated-files"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "including-generated-files. Proper handling of files generated during the MSBuild's build process. Only activate in MSBuild/.NET build context. Use when generated files are not being included in compilation, output, or when globs aren't capturing generated files. Covers MSBuild evaluation vs execution phases, timing targets to include generated files, and ensuring generated files are tracked for incremental builds and clean. Platforms: claude_code."} {"id": "9d1227f895d8d7589082f7412f8ac8a8161e72be36c5ed12b4fc8d63e1be8270", "repo_url": "https://github.com/dotnet/skills", "name": "incremental-build", "description": "Guide for optimizing MSBuild incremental builds. Only activate in MSBuild/.NET build context. Use when builds are slower than expected on subsequent runs, when 'nothing changed but it rebuilds anyway', or when diagnosing why incremental builds are broken. Covers Inputs/Outputs on targets, FileWrites tracking, up-to-date checks, and diagnosing unnecessary rebuilds via binlog analysis.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/incremental-build/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install incremental-build"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "incremental-build. Guide for optimizing MSBuild incremental builds. Only activate in MSBuild/.NET build context. Use when builds are slower than expected on subsequent runs, when 'nothing changed but it rebuilds anyway', or when diagnosing why incremental builds are broken. Covers Inputs/Outputs on targets, FileWrites tracking, up-to-date checks, and diagnosing unnecessary rebuilds via binlog analysis. Platforms: claude_code."} {"id": "149a9746922d6e2d5a78127e73c83e4f5a8637a5fd66148e1a7e94c2a47f4144", "repo_url": "https://github.com/dotnet/skills", "name": "msbuild-antipatterns", "description": "Catalog of MSBuild anti-patterns with detection rules and fix recipes. Only activate in MSBuild/.NET build context. Use when reviewing, auditing, or cleaning up .csproj, .vbproj, .fsproj, .props, .targets, or .proj files. Each anti-pattern has a symptom, explanation, and concrete BAD\u2192GOOD transformation. DO NOT use for non-MSBuild build systems (npm, Maven, CMake, etc.).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-msbuild/skills/msbuild-antipatterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install msbuild-antipatterns"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "msbuild-antipatterns. Catalog of MSBuild anti-patterns with detection rules and fix recipes. Only activate in MSBuild/.NET build context. Use when reviewing, auditing, or cleaning up .csproj, .vbproj, .fsproj, .props, .targets, or .proj files. Each anti-pattern has a symptom, explanation, and concrete BAD\u2192GOOD transformation. DO NOT use for non-MSBuild build systems (npm, Maven, CMake, etc.). Platforms: claude_code."} @@ -29125,72 +33577,25 @@ {"id": "df8f1e6c6b2588206eb41aef7865106de16d71b45449718a2f28361d87b631e2", "repo_url": "https://github.com/dotnet/skills", "name": "thread-abort-migration", "description": "Guides migration of .NET Framework Thread.Abort usage to cooperative cancellation in modern .NET. USE FOR: modernizing code that calls Thread.Abort, catching ThreadAbortException, replacing Thread.ResetAbort, replacing Thread.Interrupt for thread termination, resolving PlatformNotSupportedException or SYSLIB0006 after retargeting to .NET 6+, migrating ASP.NET Response.End or Response.Redirect(url, true) which internally call Thread.Abort. DO NOT USE FOR: code that only uses Thread.Join, Thread.Sleep, or Thread.Start without any abort, interrupt, or ThreadAbortException usage \u2014 these APIs work identically in modern .NET and need no migration. Also not for projects staying on .NET Framework, or Thread.Abort usage inside third-party libraries you do not control.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet-upgrade/skills/thread-abort-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install thread-abort-migration"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "thread-abort-migration. Guides migration of .NET Framework Thread.Abort usage to cooperative cancellation in modern .NET. USE FOR: modernizing code that calls Thread.Abort, catching ThreadAbortException, replacing Thread.ResetAbort, replacing Thread.Interrupt for thread termination, resolving PlatformNotSupportedException or SYSLIB0006 after retargeting to .NET 6+, migrating ASP.NET Response.End or Response.Redirect(url, true) which internally call Thread.Abort. DO NOT USE FOR: code that only uses Thread.Join, Thread.Sleep, or Thread.Start without any abort, interrupt, or ThreadAbortException usage \u2014 these APIs work identically in modern .NET and need no migration. Also not for projects staying on .NET Framework, or Thread.Abort usage inside third-party libraries you do not control. Platforms: claude_code."} {"id": "bdc629199a01715ca060279c07b1b5c6ab639bbf7d00b6ba1db97df7e800e9ee", "repo_url": "https://github.com/dotnet/skills", "name": "csharp-scripts", "description": "Run single-file C# programs as scripts for quick experimentation, prototyping, and concept testing. Use when the user wants to write and execute a small C# program without creating a full project.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet/skills/csharp-scripts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install csharp-scripts"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "csharp-scripts. Run single-file C# programs as scripts for quick experimentation, prototyping, and concept testing. Use when the user wants to write and execute a small C# program without creating a full project. Platforms: claude_code."} {"id": "1493b24bb3be3f7720abe1b564d41c89a318732f8150522edac9fea9c92e766a", "repo_url": "https://github.com/dotnet/skills", "name": "dotnet-pinvoke", "description": "Correctly call native (C/C++) libraries from .NET using P/Invoke and LibraryImport. Covers function signatures, string marshalling, memory lifetime, SafeHandle, and cross-platform patterns. USE FOR: writing new P/Invoke or LibraryImport declarations, reviewing or debugging existing native interop code, wrapping a C or C++ library for use in .NET, diagnosing crashes, memory leaks, or corruption at the managed/native boundary. DO NOT USE FOR: COM interop, C++/CLI mixed-mode assemblies, or pure managed code with no native dependencies.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet/skills/dotnet-pinvoke/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dotnet-pinvoke"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "dotnet-pinvoke. Correctly call native (C/C++) libraries from .NET using P/Invoke and LibraryImport. Covers function signatures, string marshalling, memory lifetime, SafeHandle, and cross-platform patterns. USE FOR: writing new P/Invoke or LibraryImport declarations, reviewing or debugging existing native interop code, wrapping a C or C++ library for use in .NET, diagnosing crashes, memory leaks, or corruption at the managed/native boundary. DO NOT USE FOR: COM interop, C++/CLI mixed-mode assemblies, or pure managed code with no native dependencies. Platforms: claude_code."} -{"id": "751bbdb438460741c7cc96e93af17735ed21c54d54accddedc6002d5e77b5cd1", "repo_url": "https://github.com/dotnet/skills", "name": "nuget-trusted-publishing", "description": "Set up NuGet trusted publishing (OIDC) on a GitHub Actions repo \u2014 replaces long-lived API keys with short-lived tokens. USE FOR: trusted publishing, NuGet OIDC, keyless NuGet publish, migrate from NuGet API key, NuGet/login, secure NuGet publishing. DO NOT USE FOR: publishing to private feeds or Azure Artifacts (OIDC is nuget.org only). INVOKES: shell (powershell or bash), edit, create, ask_user for guided repo setup.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dotnet/skills/blob/main/plugins/dotnet/skills/nuget-trusted-publishing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nuget-trusted-publishing"}, "quality": {"stars": 518, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:22:49Z"}, "embedding_text": "nuget-trusted-publishing. Set up NuGet trusted publishing (OIDC) on a GitHub Actions repo \u2014 replaces long-lived API keys with short-lived tokens. USE FOR: trusted publishing, NuGet OIDC, keyless NuGet publish, migrate from NuGet API key, NuGet/login, secure NuGet publishing. DO NOT USE FOR: publishing to private feeds or Azure Artifacts (OIDC is nuget.org only). INVOKES: shell (powershell or bash), edit, create, ask_user for guided repo setup. Platforms: claude_code."} -{"id": "0977914ade809777dfa08364de782dd46be731d9afdd4b2ad5fdce61daa2e384", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-app-create-ui", "description": "Create a new App Store Connect app record via browser automation. Use when there is no public API for app creation and you need an agent to drive the New App form.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-app-create-ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-app-create-ui"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-app-create-ui. Create a new App Store Connect app record via browser automation. Use when there is no public API for app creation and you need an agent to drive the New App form. Platforms: claude_code."} -{"id": "e8dc3fb3a2e8c02be4e53a686ffe9a8aeacbb6cc3663f70bde93382485529455", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-aso-audit", "description": "Run an offline ASO audit on canonical App Store metadata under `./metadata` and surface keyword gaps using Astro MCP. Use after pulling metadata with `asc metadata pull`.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-aso-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-aso-audit"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-aso-audit. Run an offline ASO audit on canonical App Store metadata under `./metadata` and surface keyword gaps using Astro MCP. Use after pulling metadata with `asc metadata pull`. Platforms: claude_code."} -{"id": "7e43bd026168f929466863a7c24d3e89d5427b51ed543e0d4c9952c669fbcbd1", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-build-lifecycle", "description": "Track build processing, find latest builds, and clean up old builds with asc. Use when managing build retention or waiting on processing.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-build-lifecycle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-build-lifecycle"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-build-lifecycle. Track build processing, find latest builds, and clean up old builds with asc. Use when managing build retention or waiting on processing. Platforms: claude_code."} -{"id": "1ad7d0159ce1992fc92426fe706b12774d633eab92951982c11ff017187c9bae", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-cli-usage", "description": "Guidance for using asc cli in this repo (flags, output formats, pagination, auth, and discovery). Use when asked to run or design asc commands or interact with App Store Connect via the CLI.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-cli-usage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-cli-usage"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-cli-usage. Guidance for using asc cli in this repo (flags, output formats, pagination, auth, and discovery). Use when asked to run or design asc commands or interact with App Store Connect via the CLI. Platforms: claude_code."} -{"id": "7deca0ae56dfe64519cb97954c6d6112701bcc433aa90a6eaca2134b434cca09", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-crash-triage", "description": "Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes, TestFlight crash reports, beta tester feedback, app hangs, disk writes, launch diagnostics, or wants a crash summary for a build or app.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-crash-triage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-crash-triage"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-crash-triage. Triage TestFlight crashes, beta feedback, and performance diagnostics using asc. Use when the user asks about TF crashes, TestFlight crash reports, beta tester feedback, app hangs, disk writes, launch diagnostics, or wants a crash summary for a build or app. Platforms: claude_code."} -{"id": "2144e7ccf59854906a73b26e107812b5374f03141cefeb5151e2223adf443ee8", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-id-resolver", "description": "Resolve App Store Connect IDs (apps, builds, versions, groups, testers) from human-friendly names using asc. Use when commands require IDs.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-id-resolver/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-id-resolver"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-id-resolver. Resolve App Store Connect IDs (apps, builds, versions, groups, testers) from human-friendly names using asc. Use when commands require IDs. Platforms: claude_code."} -{"id": "33c98139086d15b260d12a3e61e431cf53c097dc802fd850a5d4f8c9ce4e03f2", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-localize-metadata", "description": "Automatically translate and sync App Store metadata (description, keywords, what's new, subtitle) to multiple languages using LLM translation and asc CLI. Use when asked to localize an app's App Store listing, translate app descriptions, or add new languages to App Store Connect.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-localize-metadata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-localize-metadata"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-localize-metadata. Automatically translate and sync App Store metadata (description, keywords, what's new, subtitle) to multiple languages using LLM translation and asc CLI. Use when asked to localize an app's App Store listing, translate app descriptions, or add new languages to App Store Connect. Platforms: claude_code."} -{"id": "636ee43a670f3c0f15be3ee2b778a098f54e95dbdbc743716e4ccd7742289d96", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-metadata-sync", "description": "Sync and validate App Store metadata and localizations with asc, including legacy metadata format migration. Use when updating metadata or translations.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-metadata-sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-metadata-sync"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-metadata-sync. Sync and validate App Store metadata and localizations with asc, including legacy metadata format migration. Use when updating metadata or translations. Platforms: claude_code."} {"id": "a1c7d112705cb91867afdbf14063d195ef75b41cbc0513bdc3e2d9b92f3b9a00", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-ppp-pricing", "description": "Set territory-specific pricing for subscriptions and in-app purchases using current asc setup, pricing summary, price import, and price schedule commands. Use when adjusting prices by country or implementing localized PPP strategies.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-ppp-pricing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-ppp-pricing"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-ppp-pricing. Set territory-specific pricing for subscriptions and in-app purchases using current asc setup, pricing summary, price import, and price schedule commands. Use when adjusting prices by country or implementing localized PPP strategies. Platforms: claude_code."} -{"id": "646840fe5b70ff0050c8da90c58773339577696865f48542358e058c337925f2", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-release-flow", "description": "End-to-end release workflows for TestFlight and App Store using asc publish, builds, versions, and submit commands. Use when asked to upload a build, distribute to TestFlight, or submit to App Store.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-release-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-release-flow"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-release-flow. End-to-end release workflows for TestFlight and App Store using asc publish, builds, versions, and submit commands. Use when asked to upload a build, distribute to TestFlight, or submit to App Store. Platforms: claude_code."} -{"id": "5122e5a44978393761d74a9785076447fc27d788e264078014f8882f441a8c76", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-revenuecat-catalog-sync", "description": "Reconcile App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages using asc and RevenueCat MCP. Use when setting up or syncing subscription catalogs across ASC and RevenueCat.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-revenuecat-catalog-sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-revenuecat-catalog-sync"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-revenuecat-catalog-sync. Reconcile App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages using asc and RevenueCat MCP. Use when setting up or syncing subscription catalogs across ASC and RevenueCat. Platforms: claude_code."} {"id": "47f7727d128f770ed6d99856af1651c7a7f43ee2179ef045f92137700329adcc", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-shots-pipeline", "description": "Orchestrate iOS screenshot automation with xcodebuild/simctl for build-run, AXe for UI actions, JSON settings and plan files, Go-based framing (`asc screenshots frame`), and screenshot upload (`asc screenshots upload`). Use when users ask for automated screenshot capture, AXe-driven simulator flows, frame composition, or screenshot-to-upload pipelines.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-shots-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-shots-pipeline"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-shots-pipeline. Orchestrate iOS screenshot automation with xcodebuild/simctl for build-run, AXe for UI actions, JSON settings and plan files, Go-based framing (`asc screenshots frame`), and screenshot upload (`asc screenshots upload`). Use when users ask for automated screenshot capture, AXe-driven simulator flows, frame composition, or screenshot-to-upload pipelines. Platforms: claude_code."} {"id": "0a398b8dc3d396cde248e7a0cac36d828e5e1f4f16e8829ef75658b8e6fc1cff", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-signing-setup", "description": "Set up bundle IDs, capabilities, signing certificates, and provisioning profiles with the asc cli. Use when onboarding a new app or rotating signing assets.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-signing-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-signing-setup"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-signing-setup. Set up bundle IDs, capabilities, signing certificates, and provisioning profiles with the asc cli. Use when onboarding a new app or rotating signing assets. Platforms: claude_code."} {"id": "e2759c635cec30bc3dd42182a7fcd90e19e93f076c0a21e7848571c49a0d5f2f", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-submission-health", "description": "Preflight App Store submissions, submit builds, and monitor review status with asc. Use when shipping or troubleshooting review submissions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-submission-health/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-submission-health"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-submission-health. Preflight App Store submissions, submit builds, and monitor review status with asc. Use when shipping or troubleshooting review submissions. Platforms: claude_code."} {"id": "9ce41f08b82a99748b04a31ec7eab5d95599a6d897d906e881c5f34938f6d24e", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-subscription-localization", "description": "Bulk-localize subscription and in-app purchase display names across all App Store locales using asc. Use when you want to fill in subscription/IAP names for every language without clicking through App Store Connect manually.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-subscription-localization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-subscription-localization"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-subscription-localization. Bulk-localize subscription and in-app purchase display names across all App Store locales using asc. Use when you want to fill in subscription/IAP names for every language without clicking through App Store Connect manually. Platforms: claude_code."} -{"id": "343df68da08f719177c2f67136ec4930b5f35d3276d8fe6101f713a9108cec0c", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-testflight-orchestration", "description": "Orchestrate TestFlight distribution, groups, testers, and What to Test notes using asc. Use when rolling out betas.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-testflight-orchestration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-testflight-orchestration"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-testflight-orchestration. Orchestrate TestFlight distribution, groups, testers, and What to Test notes using asc. Use when rolling out betas. Platforms: claude_code."} -{"id": "3dd96b469e4d2ebd16b772ada55139fe073b6be709ddb0b2dfce2bf2c46f83db", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-wall-submit", "description": "Submit or update a Wall of Apps entry in the App-Store-Connect-CLI repository using `asc apps wall submit`. Use when the user says \"submit to wall of apps\", \"add my app to the wall\", or \"wall-of-apps\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-wall-submit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-wall-submit"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-wall-submit. Submit or update a Wall of Apps entry in the App-Store-Connect-CLI repository using `asc apps wall submit`. Use when the user says \"submit to wall of apps\", \"add my app to the wall\", or \"wall-of-apps\". Platforms: claude_code."} {"id": "b5ed3709ac23578c7a290c1244fef6195b0d21da34493c749904e7b06941a115", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-whats-new-writer", "description": "Generate engaging, localized App Store release notes (What's New) from git log, bullet points, or free text using canonical metadata under `./metadata`. Optionally pairs with promotional text updates.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-whats-new-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-whats-new-writer"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-whats-new-writer. Generate engaging, localized App Store release notes (What's New) from git log, bullet points, or free text using canonical metadata under `./metadata`. Optionally pairs with promotional text updates. Platforms: claude_code."} {"id": "e9ee79a3e82ae66083f3493e053250948ad6a16c4bbe58bf278559ac0789a41b", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-workflow", "description": "Define, validate, and run repo-local multi-step automations with `asc workflow` and `.asc/workflow.json`. Use when migrating from lane tools, wiring CI pipelines, or orchestrating repeatable `asc` + shell release flows with hooks, conditionals, and sub-workflows.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-workflow"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-workflow. Define, validate, and run repo-local multi-step automations with `asc workflow` and `.asc/workflow.json`. Use when migrating from lane tools, wiring CI pipelines, or orchestrating repeatable `asc` + shell release flows with hooks, conditionals, and sub-workflows. Platforms: claude_code."} {"id": "77010aaef4544ed462c16b668bdf1cb3c37bb5685ba170a32231479df9905aa8", "repo_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills", "name": "asc-xcode-build", "description": "Build, archive, and export iOS/macOS apps with xcodebuild before uploading to App Store Connect. Use when you need to create an IPA or PKG for upload.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rudrankriyam/app-store-connect-cli-skills/blob/main/skills/asc-xcode-build/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install asc-xcode-build"}, "quality": {"stars": 501, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:57:22Z"}, "embedding_text": "asc-xcode-build. Build, archive, and export iOS/macOS apps with xcodebuild before uploading to App Store Connect. Use when you need to create an IPA or PKG for upload. Platforms: claude_code."} -{"id": "89897ace7b3942f4c5c4e2b62e74a4a758c6f1bea6cfc46782b067242e48dfd3", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "auto-arena", "description": "Automatically evaluate and compare multiple AI models or agents without pre-existing test data. Generates test queries from a task description, collects responses from all target endpoints, auto-generates evaluation rubrics, runs pairwise comparisons via a judge model, and produces win-rate rankings with reports and charts. Supports checkpoint resume, incremental endpoint addition, and judge model hot-swap. Use when the user asks to compare, benchmark, or rank multiple models or agents on a custom task, or run an arena-style evaluation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/auto-arena/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install auto-arena"}, "quality": {"stars": 465, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T04:23:04Z"}, "embedding_text": "auto-arena. Automatically evaluate and compare multiple AI models or agents without pre-existing test data. Generates test queries from a task description, collects responses from all target endpoints, auto-generates evaluation rubrics, runs pairwise comparisons via a judge model, and produces win-rate rankings with reports and charts. Supports checkpoint resume, incremental endpoint addition, and judge model hot-swap. Use when the user asks to compare, benchmark, or rank multiple models or agents on a custom task, or run an arena-style evaluation. Platforms: claude_code."} -{"id": "6930416fa1e211301442d17e8f39e45ee6fb86e5bb69819962863b3eb144cd36", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "bib-verify", "description": "Verify a BibTeX file for hallucinated or fabricated references by cross-checking every entry against CrossRef, arXiv, and DBLP. Reports each reference as verified, suspect, or not found, with field-level mismatch details (title, authors, year, DOI). Use when the user wants to check a .bib file for fake citations, validate references in a paper, or audit bibliography entries for accuracy.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/bib-verify/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bib-verify"}, "quality": {"stars": 465, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T04:23:04Z"}, "embedding_text": "bib-verify. Verify a BibTeX file for hallucinated or fabricated references by cross-checking every entry against CrossRef, arXiv, and DBLP. Reports each reference as verified, suspect, or not found, with field-level mismatch details (title, authors, year, DOI). Use when the user wants to check a .bib file for fake citations, validate references in a paper, or audit bibliography entries for accuracy. Platforms: claude_code."} -{"id": "13af12c667679b7e32a5a1a35a958f0256da56d89ac76da25a39e010b1d6182e", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "claude-authenticity", "description": "Detect whether an API endpoint is backed by genuine Claude (not a wrapper, proxy, or impersonator) using 9 weighted rule-based checks that mirror the claude-verify project. Also extracts injected system prompts from providers that override Claude's identity. Fully self-contained \u2014 copy the code below and run, no extra packages beyond httpx. Use when the user wants to verify a Claude API key or endpoint, check if a third-party Claude service is authentic, audit API providers for Claude authenticity, test multiple models in parallel, or discover what system prompt a provider has injected.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/claude-authenticity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install claude-authenticity"}, "quality": {"stars": 465, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T04:23:04Z"}, "embedding_text": "claude-authenticity. Detect whether an API endpoint is backed by genuine Claude (not a wrapper, proxy, or impersonator) using 9 weighted rule-based checks that mirror the claude-verify project. Also extracts injected system prompts from providers that override Claude's identity. Fully self-contained \u2014 copy the code below and run, no extra packages beyond httpx. Use when the user wants to verify a Claude API key or endpoint, check if a third-party Claude service is authentic, audit API providers for Claude authenticity, test multiple models in parallel, or discover what system prompt a provider has injected. Platforms: claude_code."} {"id": "cfec5ac80d314f0469b87cf6684b55541a93e572561dab926909a2460c3589f3", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "find-skills-combo", "description": "Discover and recommend **combinations** of agent skills to complete complex, multi-faceted tasks. Provides two recommendation strategies \u2014 **Maximum Quality** (best skill per subtask) and **Minimum Dependencies** (fewest installs). Use this skill whenever the user wants to find skills, asks \"how do I do X\", \"find a skill for X\", or describes a task that likely requires multiple capabilities working together. Also use when the user mentions composing workflows, building pipelines, or needs help across several domains at once \u2014 even if they only say \"find me a skill\". This skill supersedes simple single-skill search by decomposing the task into subtasks and assembling an optimal skill portfolio.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/find-skills-combo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install find-skills-combo"}, "quality": {"stars": 465, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T04:23:04Z"}, "embedding_text": "find-skills-combo. Discover and recommend **combinations** of agent skills to complete complex, multi-faceted tasks. Provides two recommendation strategies \u2014 **Maximum Quality** (best skill per subtask) and **Minimum Dependencies** (fewest installs). Use this skill whenever the user wants to find skills, asks \"how do I do X\", \"find a skill for X\", or describes a task that likely requires multiple capabilities working together. Also use when the user mentions composing workflows, building pipelines, or needs help across several domains at once \u2014 even if they only say \"find me a skill\". This skill supersedes simple single-skill search by decomposing the task into subtasks and assembling an optimal skill portfolio. Platforms: claude_code."} {"id": "9417149a48d30df5828ec2d7d76eb97c383e3600124f74b86b9011a5132fac38", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "openjudge", "description": "Build custom LLM evaluation pipelines using the OpenJudge framework. Covers selecting and configuring graders (LLM-based, function-based, agentic), running batch evaluations with GradingRunner, combining scores with aggregators, applying evaluation strategies (voting, average), auto-generating graders from data, and analyzing results (pairwise win rates, statistics, validation metrics). Use when the user wants to evaluate LLM outputs, compare multiple models, design scoring criteria, or build an automated evaluation system.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/openjudge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openjudge"}, "quality": {"stars": 465, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T04:23:04Z"}, "embedding_text": "openjudge. Build custom LLM evaluation pipelines using the OpenJudge framework. Covers selecting and configuring graders (LLM-based, function-based, agentic), running batch evaluations with GradingRunner, combining scores with aggregators, applying evaluation strategies (voting, average), auto-generating graders from data, and analyzing results (pairwise win rates, statistics, validation metrics). Use when the user wants to evaluate LLM outputs, compare multiple models, design scoring criteria, or build an automated evaluation system. Platforms: claude_code."} -{"id": "413706e5ad8cc80d82ba869664631f6c69fddeff5ad01abfa3565f543100e1c2", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "paper-review", "description": "Review academic papers for correctness, quality, and novelty using OpenJudge's multi-stage pipeline. Supports PDF files and LaTeX source packages (.tar.gz/.zip). Covers 10 disciplines: cs, medicine, physics, chemistry, biology, economics, psychology, environmental_science, mathematics, social_sciences. Use when the user asks to review, evaluate, critique, or assess a research paper, check references, or verify a BibTeX file.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/paper-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install paper-review"}, "quality": {"stars": 465, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T04:23:04Z"}, "embedding_text": "paper-review. Review academic papers for correctness, quality, and novelty using OpenJudge's multi-stage pipeline. Supports PDF files and LaTeX source packages (.tar.gz/.zip). Covers 10 disciplines: cs, medicine, physics, chemistry, biology, economics, psychology, environmental_science, mathematics, social_sciences. Use when the user asks to review, evaluate, critique, or assess a research paper, check references, or verify a BibTeX file. Platforms: claude_code."} -{"id": "f56be99e66b8d91c22d8f7033e4a59c98e9a3b95d03e6d5c0e00cef163e411ec", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "ref-hallucination-arena", "description": "Benchmark LLM reference recommendation capabilities by verifying every cited paper against Crossref, PubMed, arXiv, and DBLP. Measures hallucination rate, per-field accuracy (title/author/year/DOI), discipline breakdown, and year constraint compliance. Supports tool-augmented (ReAct + web search) mode. Use when the user asks to evaluate, benchmark, or compare models on academic reference hallucination, literature recommendation quality, or citation accuracy.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/ref-hallucination-arena/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ref-hallucination-arena"}, "quality": {"stars": 465, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T04:23:04Z"}, "embedding_text": "ref-hallucination-arena. Benchmark LLM reference recommendation capabilities by verifying every cited paper against Crossref, PubMed, arXiv, and DBLP. Measures hallucination rate, per-field accuracy (title/author/year/DOI), discipline breakdown, and year constraint compliance. Supports tool-augmented (ReAct + web search) mode. Use when the user asks to evaluate, benchmark, or compare models on academic reference hallucination, literature recommendation quality, or citation accuracy. Platforms: claude_code."} {"id": "ae9378fad2cd537765a08b8c1c6b8f35f0b44b515ddd36adb61dbedefa38d7c1", "repo_url": "https://github.com/agentscope-ai/openjudge", "name": "rl-reward", "description": "Build RL reward signals using the OpenJudge framework. Covers choosing between pointwise and pairwise reward strategies based on RL algorithm, task type, and cost; aggregating multi-dimensional pointwise scores into a scalar reward; pairwise tournament reward for GRPO on subjective tasks (net win rate across group rollouts); generating preference pairs for DPO/RLAIF; and normalizing scores for training stability. Use when building reward models, scoring rollouts for GRPO/REINFORCE, generating preference data for DPO, or doing Best-of-N selection.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agentscope-ai/openjudge/blob/main/skills/rl-reward/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rl-reward"}, "quality": {"stars": 465, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T04:23:04Z"}, "embedding_text": "rl-reward. Build RL reward signals using the OpenJudge framework. Covers choosing between pointwise and pairwise reward strategies based on RL algorithm, task type, and cost; aggregating multi-dimensional pointwise scores into a scalar reward; pairwise tournament reward for GRPO on subjective tasks (net win rate across group rollouts); generating preference pairs for DPO/RLAIF; and normalizing scores for training stability. Use when building reward models, scoring rollouts for GRPO/REINFORCE, generating preference data for DPO, or doing Best-of-N selection. Platforms: claude_code."} {"id": "88d5ff82147099304c26ad5dc11080f5063eacec599a099b4c8194546d3a5377", "repo_url": "https://github.com/code-and-sorts/awesome-copilot-agents", "name": "calculator", "description": "Performs arbitrary-precision arithmetic calculations including addition, subtraction, multiplication, division, and exponents. Use when the user asks to calculate, compute, or evaluate math expressions, or when precise decimal arithmetic is needed to avoid floating-point errors.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/code-and-sorts/awesome-copilot-agents/blob/main/skills/calculator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install calculator"}, "quality": {"stars": 439, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-11T00:20:40Z"}, "embedding_text": "calculator. Performs arbitrary-precision arithmetic calculations including addition, subtraction, multiplication, division, and exponents. Use when the user asks to calculate, compute, or evaluate math expressions, or when precise decimal arithmetic is needed to avoid floating-point errors. Platforms: claude_code."} {"id": "509c9c3cea76187da6a044d07a2b1102bdcee3ab9f81d90d5787b3e5abfd5eaa", "repo_url": "https://github.com/code-and-sorts/awesome-copilot-agents", "name": "jira-cli", "description": "Interact with Jira from the command line to create, list, view, edit, and transition issues, manage sprints and epics, and perform common Jira workflows. Use when the user asks about Jira tasks, tickets, issues, sprints, or needs to manage project work items.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/code-and-sorts/awesome-copilot-agents/blob/main/skills/jira-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jira-cli"}, "quality": {"stars": 439, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-11T00:20:40Z"}, "embedding_text": "jira-cli. Interact with Jira from the command line to create, list, view, edit, and transition issues, manage sprints and epics, and perform common Jira workflows. Use when the user asks about Jira tasks, tickets, issues, sprints, or needs to manage project work items. Platforms: claude_code."} -{"id": "300916d58925f02e3f37570c25ccd91b5b57d4b00eb40217077fb70185578291", "repo_url": "https://github.com/microsoft/azure-skills", "name": "appinsights-instrumentation", "description": "Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/appinsights-instrumentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install appinsights-instrumentation"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "appinsights-instrumentation. Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices. Platforms: claude_code."} -{"id": "7caddee2dda2d0759acfa970d38ae8b5917ce495dc7933374d0abb65ecfd323d", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-ai", "description": "Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-ai"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-ai. Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech. Platforms: claude_code."} {"id": "3e9122dd361b946b96498f5a1e6579e5605ed28c33eb1202b6a8697777629989", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-aigateway", "description": "Configure Azure API Management as an AI Gateway for AI models, MCP tools, and agents. WHEN: semantic caching, token limit, content safety, load balancing, AI model governance, MCP rate limiting, jailbreak detection, add Azure OpenAI backend, add AI Foundry model, test AI gateway, LLM policies, configure AI backend, token metrics, AI cost control, convert API to MCP, import OpenAPI to gateway.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-aigateway/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-aigateway"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-aigateway. Configure Azure API Management as an AI Gateway for AI models, MCP tools, and agents. WHEN: semantic caching, token limit, content safety, load balancing, AI model governance, MCP rate limiting, jailbreak detection, add Azure OpenAI backend, add AI Foundry model, test AI gateway, LLM policies, configure AI backend, token metrics, AI cost control, convert API to MCP, import OpenAPI to gateway. Platforms: claude_code."} -{"id": "f04e8dd8fe57fc0c8db30b12e984908a8c2ef203f8a6e0ed06def4865bbfc115", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-cloud-migrate", "description": "Assess and migrate cross-cloud workloads to Azure. Generates assessment reports and converts code from AWS, GCP, or other providers to Azure services. WHEN: migrate Lambda to Azure Functions, migrate AWS to Azure, Lambda migration assessment, convert AWS serverless to Azure, migration readiness report, migrate from AWS, migrate from GCP, cross-cloud migration.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-cloud-migrate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-cloud-migrate"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-cloud-migrate. Assess and migrate cross-cloud workloads to Azure. Generates assessment reports and converts code from AWS, GCP, or other providers to Azure services. WHEN: migrate Lambda to Azure Functions, migrate AWS to Azure, Lambda migration assessment, convert AWS serverless to Azure, migration readiness report, migrate from AWS, migrate from GCP, cross-cloud migration. Platforms: claude_code."} -{"id": "0a04da9dad5d4cd59b97ba44dcbc4d6237e09a711f881b0dad30eefcf30e871f", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-compliance", "description": "Comprehensive Azure compliance and security auditing capabilities including best practices assessment, Key Vault expiration monitoring, and resource configuration validation. WHEN: compliance scan, security audit, BEFORE running azqr (compliance cli tool), Azure best practices, Key Vault expiration check, compliance assessment, resource review, configuration validation, expired certificates, expiring secrets, orphaned resources, policy compliance, security posture evaluation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-compliance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-compliance"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-compliance. Comprehensive Azure compliance and security auditing capabilities including best practices assessment, Key Vault expiration monitoring, and resource configuration validation. WHEN: compliance scan, security audit, BEFORE running azqr (compliance cli tool), Azure best practices, Key Vault expiration check, compliance assessment, resource review, configuration validation, expired certificates, expiring secrets, orphaned resources, policy compliance, security posture evaluation. Platforms: claude_code."} -{"id": "bee3e9df403e9c6c5aa2435726b2ae879106009ea1200b5b65ab49ba46e11eb2", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-compute", "description": "Recommend Azure VM sizes, VM Scale Sets (VMSS), and configurations based on workload requirements, performance needs, and budget constraints. No Azure account required \u2014 uses public documentation and the Azure Retail Prices API. WHEN: recommend VM size, which VM should I use, choose Azure VM, VM for web/database/ML/batch/HPC, GPU VM, compare VM sizes, cheapest VM, best VM for workload, VM pricing, cost estimate, burstable/compute/memory/storage optimized VM, confidential computing, VM trade-offs, VM families, VMSS, scale set recommendation, autoscale VMs, load balanced VMs, VMSS vs VM, scale out, horizontal scaling, flexible orchestration.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-compute/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-compute"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-compute. Recommend Azure VM sizes, VM Scale Sets (VMSS), and configurations based on workload requirements, performance needs, and budget constraints. No Azure account required \u2014 uses public documentation and the Azure Retail Prices API. WHEN: recommend VM size, which VM should I use, choose Azure VM, VM for web/database/ML/batch/HPC, GPU VM, compare VM sizes, cheapest VM, best VM for workload, VM pricing, cost estimate, burstable/compute/memory/storage optimized VM, confidential computing, VM trade-offs, VM families, VMSS, scale set recommendation, autoscale VMs, load balanced VMs, VMSS vs VM, scale out, horizontal scaling, flexible orchestration. Platforms: claude_code."} {"id": "1e97c608ef31d015b20206e2eaa6ccec0695a43519683b81ab4f9725302ae27e", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-cost-optimization", "description": "Identify and quantify cost savings across Azure subscriptions by analyzing actual costs, utilization metrics, and generating actionable optimization recommendations. USE FOR: optimize Azure costs, reduce Azure spending, reduce Azure expenses, analyze Azure costs, find cost savings, generate cost optimization report, find orphaned resources, rightsize VMs, cost analysis, reduce waste, Azure spending analysis, find unused resources, optimize Redis costs. DO NOT USE FOR: deploying resources (use azure-deploy), general Azure diagnostics (use azure-diagnostics), security issues (use azure-security)", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-cost-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-cost-optimization"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-cost-optimization. Identify and quantify cost savings across Azure subscriptions by analyzing actual costs, utilization metrics, and generating actionable optimization recommendations. USE FOR: optimize Azure costs, reduce Azure spending, reduce Azure expenses, analyze Azure costs, find cost savings, generate cost optimization report, find orphaned resources, rightsize VMs, cost analysis, reduce waste, Azure spending analysis, find unused resources, optimize Redis costs. DO NOT USE FOR: deploying resources (use azure-deploy), general Azure diagnostics (use azure-diagnostics), security issues (use azure-security) Platforms: claude_code."} -{"id": "9068e58e5a84e171ac626f6f0a4070b430e14218d874999d92722f4eb1272781", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-deploy", "description": "Execute Azure deployments for ALREADY-PREPARED applications that have existing .azure/plan.md and infrastructure files. DO NOT use this skill when the user asks to CREATE a new application \u2014 use azure-prepare instead. This skill runs azd up, azd deploy, terraform apply, and az deployment commands with built-in error recovery. Requires .azure/plan.md from azure-prepare and validated status from azure-validate. WHEN: \"run azd up\", \"run azd deploy\", \"execute deployment\", \"push to production\", \"push to cloud\", \"go live\", \"ship it\", \"bicep deploy\", \"terraform apply\", \"publish to Azure\", \"launch on Azure\". DO NOT USE WHEN: \"create and deploy\", \"build and deploy\", \"create a new app\", \"set up infrastructure\", \"create and deploy to Azure using Terraform\" \u2014 use azure-prepare for these.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-deploy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-deploy"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-deploy. Execute Azure deployments for ALREADY-PREPARED applications that have existing .azure/plan.md and infrastructure files. DO NOT use this skill when the user asks to CREATE a new application \u2014 use azure-prepare instead. This skill runs azd up, azd deploy, terraform apply, and az deployment commands with built-in error recovery. Requires .azure/plan.md from azure-prepare and validated status from azure-validate. WHEN: \"run azd up\", \"run azd deploy\", \"execute deployment\", \"push to production\", \"push to cloud\", \"go live\", \"ship it\", \"bicep deploy\", \"terraform apply\", \"publish to Azure\", \"launch on Azure\". DO NOT USE WHEN: \"create and deploy\", \"build and deploy\", \"create a new app\", \"set up infrastructure\", \"create and deploy to Azure using Terraform\" \u2014 use azure-prepare for these. Platforms: claude_code."} -{"id": "5c03df90a19113749938b9b9b60ca155d679478099f629b6af9ad2da59c7d44b", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-diagnostics", "description": "Debug and troubleshoot Azure Container Apps and Function Apps production issues using log analysis, health checks, and KQL. WHEN: debug production issues, troubleshoot containerized apps, troubleshoot Azure Functions, analyze logs with KQL, fix image pull failures, investigate health probe failures, troubleshoot cold starts, check resource health, find root cause of errors, function not working.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-diagnostics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-diagnostics"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-diagnostics. Debug and troubleshoot Azure Container Apps and Function Apps production issues using log analysis, health checks, and KQL. WHEN: debug production issues, troubleshoot containerized apps, troubleshoot Azure Functions, analyze logs with KQL, fix image pull failures, investigate health probe failures, troubleshoot cold starts, check resource health, find root cause of errors, function not working. Platforms: claude_code."} {"id": "bd0b24361b730894a8e6c2da41d64c05d6f00067404fb6bd4f6d277dd274f4ba", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-hosted-copilot-sdk", "description": "Build and deploy GitHub Copilot SDK apps to Azure. WHEN: build copilot app, create copilot app, copilot SDK, @github/copilot-sdk, scaffold copilot project, copilot-powered app, deploy copilot app, host on azure, azure model, BYOM, bring your own model, use my own model, azure openai model, DefaultAzureCredential, self-hosted model, copilot SDK service, chat app with copilot, copilot-sdk-service template, azd init copilot, CopilotClient, createSession, sendAndWait, GitHub Models API.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-hosted-copilot-sdk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-hosted-copilot-sdk"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-hosted-copilot-sdk. Build and deploy GitHub Copilot SDK apps to Azure. WHEN: build copilot app, create copilot app, copilot SDK, @github/copilot-sdk, scaffold copilot project, copilot-powered app, deploy copilot app, host on azure, azure model, BYOM, bring your own model, use my own model, azure openai model, DefaultAzureCredential, self-hosted model, copilot SDK service, chat app with copilot, copilot-sdk-service template, azd init copilot, CopilotClient, createSession, sendAndWait, GitHub Models API. Platforms: claude_code."} -{"id": "d84aa48359649cf07c072b674c13e33a5b9aef6fea74a299a00a66055228151a", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-kusto", "description": "Query and analyze data in Azure Data Explorer (Kusto/ADX) using KQL for log analytics, telemetry, and time series analysis. WHEN: KQL queries, Kusto database queries, Azure Data Explorer, ADX clusters, log analytics, time series data, IoT telemetry, anomaly detection.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-kusto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-kusto"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-kusto. Query and analyze data in Azure Data Explorer (Kusto/ADX) using KQL for log analytics, telemetry, and time series analysis. WHEN: KQL queries, Kusto database queries, Azure Data Explorer, ADX clusters, log analytics, time series data, IoT telemetry, anomaly detection. Platforms: claude_code."} -{"id": "d6fd87fedbf2f001c8c1e185741258dfd3adb5246da69b72a13d84964ad5d2d0", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-messaging", "description": "Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-messaging"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-messaging. Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter. Platforms: claude_code."} -{"id": "9255c072e4f1f0e65bac75620545c512bc0d51385f5af897f807e7eae3feec6d", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-prepare", "description": "Prepare Azure apps for deployment (infra Bicep/Terraform, azure.yaml, Dockerfiles). Use for create/modernize or create+deploy; not cross-cloud migration (use azure-cloud-migrate). WHEN: \"create app\", \"build web app\", \"create API\", \"create serverless HTTP API\", \"create frontend\", \"create back end\", \"build a service\", \"modernize application\", \"update application\", \"add authentication\", \"add caching\", \"host on Azure\", \"create and deploy\", \"deploy to Azure\", \"deploy to Azure using Terraform\", \"deploy to Azure App Service\", \"deploy to Azure App Service using Terraform\", \"deploy to Azure Container Apps\", \"deploy to Azure Container Apps using Terraform\", \"generate Terraform\", \"generate Bicep\", \"function app\", \"timer trigger\", \"service bus trigger\", \"event-driven function\", \"containerized Node.js app\", \"social media app\", \"static portfolio website\", \"todo list with frontend and API\", \"prepare my Azure application to use Key Vault\", \"managed identity\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-prepare/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-prepare"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-prepare. Prepare Azure apps for deployment (infra Bicep/Terraform, azure.yaml, Dockerfiles). Use for create/modernize or create+deploy; not cross-cloud migration (use azure-cloud-migrate). WHEN: \"create app\", \"build web app\", \"create API\", \"create serverless HTTP API\", \"create frontend\", \"create back end\", \"build a service\", \"modernize application\", \"update application\", \"add authentication\", \"add caching\", \"host on Azure\", \"create and deploy\", \"deploy to Azure\", \"deploy to Azure using Terraform\", \"deploy to Azure App Service\", \"deploy to Azure App Service using Terraform\", \"deploy to Azure Container Apps\", \"deploy to Azure Container Apps using Terraform\", \"generate Terraform\", \"generate Bicep\", \"function app\", \"timer trigger\", \"service bus trigger\", \"event-driven function\", \"containerized Node.js app\", \"social media app\", \"static portfolio website\", \"todo list with frontend and API\", \"prepare my Azure application to use Key Vault\", \"managed identity\". Platforms: claude_code."} {"id": "60a7e063418ba2b071887b70fc36ab7bb68be68e0ed23ab187b99761683b6feb", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-quotas", "description": "Check/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection. WHEN: \"check quotas\", \"service limits\", \"current usage\", \"request quota increase\", \"quota exceeded\", \"validate capacity\", \"regional availability\", \"provisioning limits\", \"vCPU limit\", \"how many vCPUs available in my subscription\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-quotas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-quotas"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-quotas. Check/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection. WHEN: \"check quotas\", \"service limits\", \"current usage\", \"request quota increase\", \"quota exceeded\", \"validate capacity\", \"regional availability\", \"provisioning limits\", \"vCPU limit\", \"how many vCPUs available in my subscription\". Platforms: claude_code."} -{"id": "4f848884324578478d0bb85e6b42c821084416afc557b6529a9f76e7281be3f1", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-rbac", "description": "Helps users find the right Azure RBAC role for an identity with least privilege access, then generate CLI commands and Bicep code to assign it. Also provides guidance on permissions required to grant roles. WHEN: what role should I assign, least privilege role, RBAC role for, role to read blobs, role for managed identity, custom role definition, assign role to identity, what role do I need to grant access, permissions to assign roles.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-rbac/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-rbac"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-rbac. Helps users find the right Azure RBAC role for an identity with least privilege access, then generate CLI commands and Bicep code to assign it. Also provides guidance on permissions required to grant roles. WHEN: what role should I assign, least privilege role, RBAC role for, role to read blobs, role for managed identity, custom role definition, assign role to identity, what role do I need to grant access, permissions to assign roles. Platforms: claude_code."} -{"id": "71ede48425da6e7749c6cac154ebc4817b59bb53f211afd388c4e10a6a311f06", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-resource-lookup", "description": "List, find, and show Azure resources. Answers \"list my VMs\", \"show my storage accounts\", \"list websites\", \"find container apps\", \"what resources do I have\", and similar queries for any Azure resource type. USE FOR: list resources, list virtual machines, list VMs, list storage accounts, list websites, list web apps, list container apps, show resources, find resources, what resources do I have, list resources in resource group, list resources in subscription, find resources by tag, find orphaned resources, resource inventory, count resources by type, cross-subscription resource query, Azure Resource Graph, resource discovery, list container registries, list SQL servers, list Key Vaults, show resource groups, list app services, find resources across subscriptions, find unattached disks, tag analysis. DO NOT USE FOR: deploying resources (use azure-deploy), creating or modifying resources, cost optimization (use azure-cost-optimization), writing application code, non-Azure clouds.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-resource-lookup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-resource-lookup"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-resource-lookup. List, find, and show Azure resources. Answers \"list my VMs\", \"show my storage accounts\", \"list websites\", \"find container apps\", \"what resources do I have\", and similar queries for any Azure resource type. USE FOR: list resources, list virtual machines, list VMs, list storage accounts, list websites, list web apps, list container apps, show resources, find resources, what resources do I have, list resources in resource group, list resources in subscription, find resources by tag, find orphaned resources, resource inventory, count resources by type, cross-subscription resource query, Azure Resource Graph, resource discovery, list container registries, list SQL servers, list Key Vaults, show resource groups, list app services, find resources across subscriptions, find unattached disks, tag analysis. DO NOT USE FOR: deploying resources (use azure-deploy), creating or modifying resources, cost optimization (use azure-cost-optimization), writing application code, non-Azure clouds. Platforms: claude_code."} -{"id": "fcef069bc63730efbfe891835ee5e35bd4ad6cb6ea62bf6c7610fd30d3e8cafb", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-resource-visualizer", "description": "Analyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources. USE FOR: create architecture diagram, visualize Azure resources, show resource relationships, generate Mermaid diagram, analyze resource group, diagram my resources, architecture visualization, resource topology, map Azure infrastructure DO NOT USE FOR: creating/modifying resources (use azure-deploy), security scanning (use azure-security), performance troubleshooting (use azure-diagnostics), code generation (use relevant service skill)", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-resource-visualizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-resource-visualizer"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-resource-visualizer. Analyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources. USE FOR: create architecture diagram, visualize Azure resources, show resource relationships, generate Mermaid diagram, analyze resource group, diagram my resources, architecture visualization, resource topology, map Azure infrastructure DO NOT USE FOR: creating/modifying resources (use azure-deploy), security scanning (use azure-security), performance troubleshooting (use azure-diagnostics), code generation (use relevant service skill) Platforms: claude_code."} -{"id": "f7028225bcc03c34221aac0488ac0f85d5e7f530172c99fc5dbd69e1a68d1d34", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-storage", "description": "Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics capabilities. Includes access tiers (hot, cool, archive) and lifecycle management. USE FOR: blob storage, file shares, queue storage, table storage, data lake, upload files, download blobs, storage accounts, access tiers, lifecycle management. DO NOT USE FOR: SQL databases, Cosmos DB (use azure-prepare), messaging with Event Hubs or Service Bus (use azure-messaging).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-storage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-storage"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-storage. Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics capabilities. Includes access tiers (hot, cool, archive) and lifecycle management. USE FOR: blob storage, file shares, queue storage, table storage, data lake, upload files, download blobs, storage accounts, access tiers, lifecycle management. DO NOT USE FOR: SQL databases, Cosmos DB (use azure-prepare), messaging with Event Hubs or Service Bus (use azure-messaging). Platforms: claude_code."} -{"id": "154dbe518586ceb21e743d7fe961c1adaa27383e7869ea532d97d6fe2caf9eed", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-upgrade", "description": "Assess and upgrade Azure workloads between plans, tiers, or SKUs within Azure. Generates assessment reports and automates upgrade steps. WHEN: upgrade Consumption to Flex Consumption, upgrade Azure Functions plan, migrate hosting plan, upgrade Functions SKU, move to Flex Consumption, upgrade Azure service tier, change hosting plan, upgrade function app plan, migrate App Service to Container Apps.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-upgrade/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-upgrade"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-upgrade. Assess and upgrade Azure workloads between plans, tiers, or SKUs within Azure. Generates assessment reports and automates upgrade steps. WHEN: upgrade Consumption to Flex Consumption, upgrade Azure Functions plan, migrate hosting plan, upgrade Functions SKU, move to Flex Consumption, upgrade Azure service tier, change hosting plan, upgrade function app plan, migrate App Service to Container Apps. Platforms: claude_code."} -{"id": "c25cec12caf8a604bcf2e3b1dab177da109f70549a19faf7b80b7eb25a1e75e5", "repo_url": "https://github.com/microsoft/azure-skills", "name": "azure-validate", "description": "Pre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure (Bicep or Terraform), permissions, and prerequisites before deploying. WHEN: validate my app, check deployment readiness, run preflight checks, verify configuration, check if ready to deploy, validate azure.yaml, validate Bicep, test before deploying, troubleshoot deployment errors, validate Azure Functions, validate function app, validate serverless deployment.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/azure-validate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-validate"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "azure-validate. Pre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure (Bicep or Terraform), permissions, and prerequisites before deploying. WHEN: validate my app, check deployment readiness, run preflight checks, verify configuration, check if ready to deploy, validate azure.yaml, validate Bicep, test before deploying, troubleshoot deployment errors, validate Azure Functions, validate function app, validate serverless deployment. Platforms: claude_code."} -{"id": "a3a5b050e21216f70d589f32034fde34b3001df3c5dbe08f9c98ce31620eecd9", "repo_url": "https://github.com/microsoft/azure-skills", "name": "entra-app-registration", "description": "Guides Microsoft Entra ID app registration, OAuth 2.0 authentication, and MSAL integration. USE FOR: create app registration, register Azure AD app, configure OAuth, set up authentication, add API permissions, generate service principal, MSAL example, console app auth, Entra ID setup, Azure AD authentication. DO NOT USE FOR: Azure RBAC or role assignments (use azure-rbac), Key Vault secrets (use azure-keyvault-expiration-audit), Azure resource security (use azure-security).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/entra-app-registration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install entra-app-registration"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "entra-app-registration. Guides Microsoft Entra ID app registration, OAuth 2.0 authentication, and MSAL integration. USE FOR: create app registration, register Azure AD app, configure OAuth, set up authentication, add API permissions, generate service principal, MSAL example, console app auth, Entra ID setup, Azure AD authentication. DO NOT USE FOR: Azure RBAC or role assignments (use azure-rbac), Key Vault secrets (use azure-keyvault-expiration-audit), Azure resource security (use azure-security). Platforms: claude_code."} {"id": "524569d464a01be04b47e606412ab85f552e5c896907889afeb03a328658b627", "repo_url": "https://github.com/microsoft/azure-skills", "name": "microsoft-foundry", "description": "Deploy, evaluate, and manage Foundry agents end-to-end: Docker build, ACR push, hosted/prompt agent create, container start, batch eval, prompt optimization, prompt optimizer workflows, agent.yaml, dataset curation from traces. USE FOR: deploy agent to Foundry, hosted agent, create agent, invoke agent, evaluate agent, run batch eval, optimize prompt, improve prompt, prompt optimization, prompt optimizer, improve agent instructions, optimize agent instructions, optimize system prompt, deploy model, Foundry project, RBAC, role assignment, permissions, quota, capacity, region, troubleshoot agent, deployment failure, create dataset from traces, dataset versioning, eval trending, create AI Services, Cognitive Services, create Foundry resource, provision resource, knowledge index, agent monitoring, customize deployment, onboard, availability. DO NOT USE FOR: Azure Functions, App Service, general Azure deploy (use azure-deploy), general Azure prep (use azure-prepare).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install microsoft-foundry"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "microsoft-foundry. Deploy, evaluate, and manage Foundry agents end-to-end: Docker build, ACR push, hosted/prompt agent create, container start, batch eval, prompt optimization, prompt optimizer workflows, agent.yaml, dataset curation from traces. USE FOR: deploy agent to Foundry, hosted agent, create agent, invoke agent, evaluate agent, run batch eval, optimize prompt, improve prompt, prompt optimization, prompt optimizer, improve agent instructions, optimize agent instructions, optimize system prompt, deploy model, Foundry project, RBAC, role assignment, permissions, quota, capacity, region, troubleshoot agent, deployment failure, create dataset from traces, dataset versioning, eval trending, create AI Services, Cognitive Services, create Foundry resource, provision resource, knowledge index, agent monitoring, customize deployment, onboard, availability. DO NOT USE FOR: Azure Functions, App Service, general Azure deploy (use azure-deploy), general Azure prep (use azure-prepare). Platforms: claude_code."} -{"id": "f597f379312d330d677b26d26434a32721a975371aa805acadbcfb912f324453", "repo_url": "https://github.com/microsoft/azure-skills", "name": "deploy-model", "description": "Unified Azure OpenAI model deployment skill with intelligent intent-based routing. Handles quick preset deployments, fully customized deployments (version/SKU/capacity/RAI policy), and capacity discovery across regions and projects. USE FOR: deploy model, deploy gpt, create deployment, model deployment, deploy openai model, set up model, provision model, find capacity, check model availability, where can I deploy, best region for model, capacity analysis. DO NOT USE FOR: listing existing deployments (use foundry_models_deployments_list MCP tool), deleting deployments, agent creation (use agent/create), project creation (use project/create).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/models/deploy-model/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deploy-model"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "deploy-model. Unified Azure OpenAI model deployment skill with intelligent intent-based routing. Handles quick preset deployments, fully customized deployments (version/SKU/capacity/RAI policy), and capacity discovery across regions and projects. USE FOR: deploy model, deploy gpt, create deployment, model deployment, deploy openai model, set up model, provision model, find capacity, check model availability, where can I deploy, best region for model, capacity analysis. DO NOT USE FOR: listing existing deployments (use foundry_models_deployments_list MCP tool), deleting deployments, agent creation (use agent/create), project creation (use project/create). Platforms: claude_code."} -{"id": "eb87886281d7a5de8b84b018477d0dd9bcc053909f802457ceaa4d944ab6bfa4", "repo_url": "https://github.com/microsoft/azure-skills", "name": "capacity", "description": "Discovers available Azure OpenAI model capacity across regions and projects. Analyzes quota limits, compares availability, and recommends optimal deployment locations based on capacity requirements. USE FOR: find capacity, check quota, where can I deploy, capacity discovery, best region for capacity, multi-project capacity search, quota analysis, model availability, region comparison, check TPM availability. DO NOT USE FOR: actual deployment (hand off to preset or customize after discovery), quota increase requests (direct user to Azure Portal), listing existing deployments.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/models/deploy-model/capacity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install capacity"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "capacity. Discovers available Azure OpenAI model capacity across regions and projects. Analyzes quota limits, compares availability, and recommends optimal deployment locations based on capacity requirements. USE FOR: find capacity, check quota, where can I deploy, capacity discovery, best region for capacity, multi-project capacity search, quota analysis, model availability, region comparison, check TPM availability. DO NOT USE FOR: actual deployment (hand off to preset or customize after discovery), quota increase requests (direct user to Azure Portal), listing existing deployments. Platforms: claude_code."} -{"id": "d921d328d9fd1ff242ba0cd76561e8f5e41f8cfc30874ccc72cfc093bf52bae6", "repo_url": "https://github.com/microsoft/azure-skills", "name": "customize", "description": "Interactive guided deployment flow for Azure OpenAI models with full customization control. Step-by-step selection of model version, SKU (GlobalStandard/Standard/ProvisionedManaged), capacity, RAI policy (content filter), and advanced options (dynamic quota, priority processing, spillover). USE FOR: custom deployment, customize model deployment, choose version, select SKU, set capacity, configure content filter, RAI policy, deployment options, detailed deployment, advanced deployment, PTU deployment, provisioned throughput. DO NOT USE FOR: quick deployment to optimal region (use preset).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/models/deploy-model/customize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install customize"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "customize. Interactive guided deployment flow for Azure OpenAI models with full customization control. Step-by-step selection of model version, SKU (GlobalStandard/Standard/ProvisionedManaged), capacity, RAI policy (content filter), and advanced options (dynamic quota, priority processing, spillover). USE FOR: custom deployment, customize model deployment, choose version, select SKU, set capacity, configure content filter, RAI policy, deployment options, detailed deployment, advanced deployment, PTU deployment, provisioned throughput. DO NOT USE FOR: quick deployment to optimal region (use preset). Platforms: claude_code."} -{"id": "473ba6de8fe1b2ccb3b10f7b64fce24cdcafed363eebb5f1a7dd2d584560adfe", "repo_url": "https://github.com/microsoft/azure-skills", "name": "preset", "description": "Intelligently deploys Azure OpenAI models to optimal regions by analyzing capacity across all available regions. Automatically checks current region first and shows alternatives if needed. USE FOR: quick deployment, optimal region, best region, automatic region selection, fast setup, multi-region capacity check, high availability deployment, deploy to best location. DO NOT USE FOR: custom SKU selection (use customize), specific version selection (use customize), custom capacity configuration (use customize), PTU deployments (use customize).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/azure-skills/blob/main/.github/plugins/azure-skills/skills/microsoft-foundry/models/deploy-model/preset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install preset"}, "quality": {"stars": 382, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T20:20:46Z"}, "embedding_text": "preset. Intelligently deploys Azure OpenAI models to optimal regions by analyzing capacity across all available regions. Automatically checks current region first and shows alternatives if needed. USE FOR: quick deployment, optimal region, best region, automatic region selection, fast setup, multi-region capacity check, high availability deployment, deploy to best location. DO NOT USE FOR: custom SKU selection (use customize), specific version selection (use customize), custom capacity configuration (use customize), PTU deployments (use customize). Platforms: claude_code."} -{"id": "3140bea35032d5d8c713679032fb0d09e1884ab615f75eada6b79088d0cb0d20", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-proxy", "description": "Starts and controls the reaper MITM proxy to capture, inspect, search, and replay HTTP/HTTPS traffic between clients and servers. Capabilities include starting/stopping the proxy scoped to specific domains, viewing captured request/response logs, searching traffic by method/path/status/host, and inspecting full raw HTTP entries for security analysis. Use when the user asks to \"start the proxy\", \"capture traffic\", \"intercept requests\", \"inspect HTTP traffic\", \"search captured requests\", or \"view request/response\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/proxy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-proxy"}, "quality": {"stars": 360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-proxy. Starts and controls the reaper MITM proxy to capture, inspect, search, and replay HTTP/HTTPS traffic between clients and servers. Capabilities include starting/stopping the proxy scoped to specific domains, viewing captured request/response logs, searching traffic by method/path/status/host, and inspecting full raw HTTP entries for security analysis. Use when the user asks to \"start the proxy\", \"capture traffic\", \"intercept requests\", \"inspect HTTP traffic\", \"search captured requests\", or \"view request/response\". Platforms: claude_code."} -{"id": "35aac9e3e59a395e4156e96761a3c56e49d16d28f232ac17f7a703cb6aa6c218", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-repo-context", "description": "Scans directory structure, detects projects, maps dependencies, and documents code organization into a repo.md file. Use when the user needs a codebase overview, project structure map, or repository context before security analysis.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/repo-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-repo-context"}, "quality": {"stars": 360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-repo-context. Scans directory structure, detects projects, maps dependencies, and documents code organization into a repo.md file. Use when the user needs a codebase overview, project structure map, or repository context before security analysis. Platforms: claude_code."} -{"id": "a120a5738df13e2d4ff940d88caefad34decb9c79fbb7df6d4791049b52f7544", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-report", "description": "Ghost Security \u2014 combined security report. Aggregates findings from all scan skills (scan-deps, scan-secrets, scan-code) into a single prioritized report focused on the highest risk, highest confidence issues. Use when the user requests a security overview, vulnerability summary, full security audit, or combined scan results.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-report"}, "quality": {"stars": 360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-report. Ghost Security \u2014 combined security report. Aggregates findings from all scan skills (scan-deps, scan-secrets, scan-code) into a single prioritized report focused on the highest risk, highest confidence issues. Use when the user requests a security overview, vulnerability summary, full security audit, or combined scan results. Platforms: claude_code."} -{"id": "cc73ba515f37cc41a1f11a1dd2947a9ee033f4f4c0fad61e94102c4de702f8ac", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-scan-code", "description": "Ghost Security - SAST code scanner. Finds security vulnerabilities in source code by planning and executing targeted scans for issues like SQL injection, XSS, BOLA, BFLA, SSRF, and other OWASP categories. Supports applications (backend, frontend, mobile) and libraries (prototype pollution, unsafe deserialization, ReDoS, path traversal, zip slip). Use when the user asks for a code security audit, SAST scan, vulnerability scan of source code, or wants to find security flaws in a codebase or library.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/scan-code/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-scan-code"}, "quality": {"stars": 360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-scan-code. Ghost Security - SAST code scanner. Finds security vulnerabilities in source code by planning and executing targeted scans for issues like SQL injection, XSS, BOLA, BFLA, SSRF, and other OWASP categories. Supports applications (backend, frontend, mobile) and libraries (prototype pollution, unsafe deserialization, ReDoS, path traversal, zip slip). Use when the user asks for a code security audit, SAST scan, vulnerability scan of source code, or wants to find security flaws in a codebase or library. Platforms: claude_code."} -{"id": "ff6c1f542eca8745df5be04974b233ceaa8f52602579b58b476ce4875a21aba2", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-scan-deps", "description": "Ghost Security - Software Composition Analysis (SCA) scanner. Scans dependency lockfiles for known vulnerabilities, identifies CVEs, and generates findings with severity levels and remediation guidance. Use when the user asks about dependency vulnerabilities, vulnerable packages, CVE checks, security audits of dependencies, or wants to scan lockfiles like package-lock.json, yarn.lock, go.sum, or Gemfile.lock.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/scan-deps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-scan-deps"}, "quality": {"stars": 360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-scan-deps. Ghost Security - Software Composition Analysis (SCA) scanner. Scans dependency lockfiles for known vulnerabilities, identifies CVEs, and generates findings with severity levels and remediation guidance. Use when the user asks about dependency vulnerabilities, vulnerable packages, CVE checks, security audits of dependencies, or wants to scan lockfiles like package-lock.json, yarn.lock, go.sum, or Gemfile.lock.\n Platforms: claude_code."} -{"id": "caa1047ab60583a51fe8b110282236d246e8635d80c8556c146c0443e8b3fa3c", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-scan-secrets", "description": "Ghost Security - Secrets and credentials scanner. Scans codebase for leaked API keys, tokens, passwords, and sensitive data. Detects hardcoded secrets and generates findings with severity and remediation guidance. Use when the user asks to check for leaked secrets, scan for credentials, find hardcoded API keys or passwords, detect exposed .env values, or audit code for sensitive data exposure.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/scan-secrets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-scan-secrets"}, "quality": {"stars": 360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-scan-secrets. Ghost Security - Secrets and credentials scanner. Scans codebase for leaked API keys, tokens, passwords, and sensitive data. Detects hardcoded secrets and generates findings with severity and remediation guidance. Use when the user asks to check for leaked secrets, scan for credentials, find hardcoded API keys or passwords, detect exposed .env values, or audit code for sensitive data exposure.\n Platforms: claude_code."} -{"id": "d9959d19d01d312e5ef08ff87280a8090923716c8c598231b68ac22638d86554", "repo_url": "https://github.com/ghostsecurity/skills", "name": "ghost-validate", "description": "This skill should be used when the user asks to \"validate a finding\", \"check if a vulnerability is real\", \"triage a security finding\", \"confirm a vulnerability\", \"determine if a finding is a true positive or false positive\", or provides a security finding for review. It validates security vulnerability findings by tracing data flows, verifying exploit conditions, analyzing security controls, and optionally testing attack vectors against a live application.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ghostsecurity/skills/blob/main/plugins/ghost/skills/validate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ghost-validate"}, "quality": {"stars": 360, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T12:01:35Z"}, "embedding_text": "ghost-validate. This skill should be used when the user asks to \"validate a finding\", \"check if a vulnerability is real\", \"triage a security finding\", \"confirm a vulnerability\", \"determine if a finding is a true positive or false positive\", or provides a security finding for review. It validates security vulnerability findings by tracing data flows, verifying exploit conditions, analyzing security controls, and optionally testing attack vectors against a live application. Platforms: claude_code."} {"id": "fb87a5469f8c55b1834427f62af6b39e5762c899e1cec1d54e5a0585b1bab01b", "repo_url": "https://github.com/luochang212/dive-into-langgraph", "name": "dive-into-langgraph", "description": "A comprehensive guide and reference for building agents using LangGraph 1.0, including ReAct agents, state graphs, and tool integrations.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/luochang212/dive-into-langgraph/blob/main/skills/dive-into-langgraph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dive-into-langgraph"}, "quality": {"stars": 348, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T15:16:42Z"}, "embedding_text": "dive-into-langgraph. A comprehensive guide and reference for building agents using LangGraph 1.0, including ReAct agents, state graphs, and tool integrations. Platforms: claude_code."} -{"id": "c1befc73f04166b23b6b1d49704ee1c5d4b3af59048a0ebcf971bc364ed5cb7b", "repo_url": "https://github.com/gotalab/skillport", "name": "opus-4-5-migration", "description": "Migrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5. Use when the user wants to update their codebase, prompts, or API calls to use Opus 4.5. Handles model string updates and prompt adjustments for known Opus 4.5 behavioral differences. Does NOT migrate Haiku 4.5.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gotalab/skillport/blob/main/.skills/experimental/opus-4-5-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install opus-4-5-migration"}, "quality": {"stars": 342, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-08T18:49:12Z"}, "embedding_text": "opus-4-5-migration. Migrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5. Use when the user wants to update their codebase, prompts, or API calls to use Opus 4.5. Handles model string updates and prompt adjustments for known Opus 4.5 behavioral differences. Does NOT migrate Haiku 4.5. Platforms: claude_code."} {"id": "7d8f43f38d459b6723d6d5288689c9785c65da143ab7f2775bfe9e0ce5865e62", "repo_url": "https://github.com/vueuse/skills", "name": "vueuse-functions", "description": "Apply VueUse composables where appropriate to build concise, maintainable Vue.js / Nuxt features.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/vueuse/skills/blob/main/skills/vueuse-functions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vueuse-functions"}, "quality": {"stars": 337, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T07:48:43Z"}, "embedding_text": "vueuse-functions. Apply VueUse composables where appropriate to build concise, maintainable Vue.js / Nuxt features. Platforms: claude_code."} {"id": "1b5f8d030816833f749cc40b5ddf6acef6a0747a2a52c5c13d76ff1c0a033960", "repo_url": "https://github.com/first-fluke/oh-my-agent", "name": "backend-agent", "description": "Backend specialist for APIs, databases, authentication using FastAPI with clean architecture (Repository/Service/Router pattern). Use for API, endpoint, REST, database, server, migration, and auth work.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/first-fluke/oh-my-agent/blob/main/.agents/skills/backend-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install backend-agent"}, "quality": {"stars": 364, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:35:14Z"}, "embedding_text": "backend-agent. Backend specialist for APIs, databases, authentication using FastAPI with clean architecture (Repository/Service/Router pattern). Use for API, endpoint, REST, database, server, migration, and auth work. Platforms: claude_code."} {"id": "8d11cd0ccf652162190349b057eb9b41eb8aaad6c39a55edd6d684069943fe5e", "repo_url": "https://github.com/first-fluke/oh-my-agent", "name": "brainstorm", "description": "Design-first ideation that explores user intent, constraints, and approaches before any planning or implementation. Use for brainstorming, ideation, exploring concepts, and evaluating approaches.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/first-fluke/oh-my-agent/blob/main/.agents/skills/brainstorm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brainstorm"}, "quality": {"stars": 364, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:35:14Z"}, "embedding_text": "brainstorm. Design-first ideation that explores user intent, constraints, and approaches before any planning or implementation. Use for brainstorming, ideation, exploring concepts, and evaluating approaches. Platforms: claude_code."} @@ -29215,17 +33620,8 @@ {"id": "979d188b2091bbf59f19b416d6a1d006c2155ded779bbb02bf84b2ef759540a0", "repo_url": "https://github.com/first-fluke/oh-my-agent", "name": "setup", "description": "oh-my-agent project setup verification and configuration", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/first-fluke/oh-my-agent/blob/main/.claude/skills/setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install setup"}, "quality": {"stars": 364, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:35:14Z"}, "embedding_text": "setup. oh-my-agent project setup verification and configuration Platforms: claude_code."} {"id": "839a9102e7d4b235283f1792b1c775cae309c86700f974007bde2adb82ce13d6", "repo_url": "https://github.com/first-fluke/oh-my-agent", "name": "tools", "description": "Show available skills, agents, and their status", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/first-fluke/oh-my-agent/blob/main/.claude/skills/tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tools"}, "quality": {"stars": 364, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:35:14Z"}, "embedding_text": "tools. Show available skills, agents, and their status Platforms: claude_code."} {"id": "71353eefb4bad7b8191876f06b93b04b18bcaed3d75b574febeabda051ed93fb", "repo_url": "https://github.com/first-fluke/oh-my-agent", "name": "ultrawork", "description": "5-phase 17-step Phase Gate orchestration", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/first-fluke/oh-my-agent/blob/main/.claude/skills/ultrawork/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ultrawork"}, "quality": {"stars": 364, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:35:14Z"}, "embedding_text": "ultrawork. 5-phase 17-step Phase Gate orchestration Platforms: claude_code."} -{"id": "d14a706b85e4f6b4a297b2ad360c95ce5df3e1027edbf301ab642a6962104a44", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-deepear-lite", "description": "Fetch the latest financial signals and transmission-chain analyses from DeepEar Lite. Use when the user needs immediate insights into financial market trends, stock performance factors, and reasoning from the DeepEar Lite dashboard.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-deepear-lite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-deepear-lite"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "alphaear-deepear-lite. Fetch the latest financial signals and transmission-chain analyses from DeepEar Lite. Use when the user needs immediate insights into financial market trends, stock performance factors, and reasoning from the DeepEar Lite dashboard. Platforms: claude_code."} -{"id": "890eb5f36bbb90a3e11e59f7f19fa6de65126a0712e0125da86b6ae74893e963", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-logic-visualizer", "description": "Create visualize finance logic diagrams (e.g., Draw.io XML) to explain complex finance transmission chains or finance logic flows.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-logic-visualizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-logic-visualizer"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "alphaear-logic-visualizer. Create visualize finance logic diagrams (e.g., Draw.io XML) to explain complex finance transmission chains or finance logic flows. Platforms: claude_code."} -{"id": "2b2b9c02218e4b498dc60bbfb0278b1dd864226820302ecf3a30c3a585697c76", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-news", "description": "Fetch hot finance news, unified trends, and prediction financial market data. Use when the user needs real-time financial news, trend reports from multiple finance sources (Weibo, Zhihu, WallstreetCN, etc.), or Polymarket finance market prediction data.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-news/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-news"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "alphaear-news. Fetch hot finance news, unified trends, and prediction financial market data. Use when the user needs real-time financial news, trend reports from multiple finance sources (Weibo, Zhihu, WallstreetCN, etc.), or Polymarket finance market prediction data. Platforms: claude_code."} {"id": "e9abaac2806c19571a233e9f7135ec726d34ce39c88646bdd854424983c0fbb7", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-predictor", "description": "Market prediction skill using Kronos. Use when user needs finance market time-series forecasting or news-aware finance market adjustments.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-predictor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-predictor"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "alphaear-predictor. Market prediction skill using Kronos. Use when user needs finance market time-series forecasting or news-aware finance market adjustments. Platforms: claude_code."} {"id": "8e907acb97a6ad03e3c95b40752864ddc59f24dff51c32ba9d67ac82e763df86", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-reporter", "description": "Plan, write, and edit professional financial reports; generate finance chart configurations. Use when condensing finance analysis into a structured output.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-reporter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-reporter"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "alphaear-reporter. Plan, write, and edit professional financial reports; generate finance chart configurations. Use when condensing finance analysis into a structured output. Platforms: claude_code."} -{"id": "c3c9a4c0d0ff18ad0230d64c03efd27e9f5b0b78f7415f9543f88c1f91162df8", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-search", "description": "Perform finance web searches and local context searches. Use when the user needs general finance info from the web (Jina/DDG/Baidu) or needs to retrieve finance information from a local document store (RAG).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-search"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "alphaear-search. Perform finance web searches and local context searches. Use when the user needs general finance info from the web (Jina/DDG/Baidu) or needs to retrieve finance information from a local document store (RAG). Platforms: claude_code."} -{"id": "4957a40b003c6b3698257c83d9e23bec0359495dfb30145d9df0538d31241870", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-sentiment", "description": "Analyze finance text sentiment using FinBERT or LLM. Use when the user needs to determine the sentiment (positive/negative/neutral) and score of financial text markets.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-sentiment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-sentiment"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "alphaear-sentiment. Analyze finance text sentiment using FinBERT or LLM. Use when the user needs to determine the sentiment (positive/negative/neutral) and score of financial text markets. Platforms: claude_code."} -{"id": "2a79b232a6b5f6ff96da839ad3cdfce502973390e6bbb15806f1ef75b4a4d339", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-signal-tracker", "description": "Track finance investment signal evolution and update logic based on new finance market information. Use when monitoring finance signals and determining if they are strengthened, weakened, or falsified.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-signal-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-signal-tracker"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "alphaear-signal-tracker. Track finance investment signal evolution and update logic based on new finance market information. Use when monitoring finance signals and determining if they are strengthened, weakened, or falsified. Platforms: claude_code."} -{"id": "26b20827f489a2d235a878a17739e35997302fe0fd25353ee21dca8f23cf7aee", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "alphaear-stock", "description": "Search A-Share/HK/US finance stock tickers and retrieve finance stock price history. Use when user asks about finance stock codes, recent price changes, or specific company finance stock info.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/alphaear-stock/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alphaear-stock"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "alphaear-stock. Search A-Share/HK/US finance stock tickers and retrieve finance stock price history. Use when user asks about finance stock codes, recent price changes, or specific company finance stock info. Platforms: claude_code."} -{"id": "a4688acc82491845667a86524dafcded47631e7dfccf2fe69f84e7507f51b57e", "repo_url": "https://github.com/rkiding/awesome-finance-skills", "name": "skill-creator", "description": "Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rkiding/awesome-finance-skills/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 312, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T10:00:02Z"}, "embedding_text": "skill-creator. Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets. Platforms: claude_code."} -{"id": "11f786c1a6c7cfc8b769c643bbaff6f94feea9719dbbefb04ecd27948ad46847", "repo_url": "https://github.com/frankchen021/datastoria", "name": "clickhouse-system-queries", "description": "Dispatcher skill for ClickHouse system-table operational queries. Use table-specific references for concrete SQL patterns.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/frankchen021/datastoria/blob/master/resources/skills/clickhouse-system-queries/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install clickhouse-system-queries"}, "quality": {"stars": 301, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T15:46:08Z"}, "embedding_text": "clickhouse-system-queries. Dispatcher skill for ClickHouse system-table operational queries. Use table-specific references for concrete SQL patterns. Platforms: claude_code."} {"id": "37951e7e9bd7433cb34d08338326243b3c42eeec8e205f37d46b98c0a1483513", "repo_url": "https://github.com/frankchen021/datastoria", "name": "diagnose-clickhouse-clusters", "description": "Diagnose ClickHouse cluster health and provide concrete remediation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/frankchen021/datastoria/blob/master/resources/skills/diagnose-clickhouse-clusters/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install diagnose-clickhouse-clusters"}, "quality": {"stars": 301, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T15:46:08Z"}, "embedding_text": "diagnose-clickhouse-clusters. Diagnose ClickHouse cluster health and provide concrete remediation. Platforms: claude_code."} {"id": "96ab97b76859dc288a495bccfe60b6afcc2ffa82c2332f86bb1465615311c055", "repo_url": "https://github.com/frankchen021/datastoria", "name": "diagnose-clickhouse-errors", "description": "Diagnose ClickHouse query failures when the user provides a numeric error code, symbolic error name such as UNKNOWN_SETTING, or raw DB::Exception text and wants a cause and fix.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/frankchen021/datastoria/blob/master/resources/skills/diagnose-clickhouse-errors/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install diagnose-clickhouse-errors"}, "quality": {"stars": 301, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T15:46:08Z"}, "embedding_text": "diagnose-clickhouse-errors. Diagnose ClickHouse query failures when the user provides a numeric error code, symbolic error name such as UNKNOWN_SETTING, or raw DB::Exception text and wants a cause and fix. Platforms: claude_code."} {"id": "bd4a1f3840e157f1fba35a7dc883e135b041b258c5b686ae74e3ce08bec6c882", "repo_url": "https://github.com/frankchen021/datastoria", "name": "optimize-clickhouse-queries", "description": "Optimize slow queries, analyze SQL performance, and collect evidence for expensive workloads.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/frankchen021/datastoria/blob/master/resources/skills/optimize-clickhouse-queries/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install optimize-clickhouse-queries"}, "quality": {"stars": 301, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T15:46:08Z"}, "embedding_text": "optimize-clickhouse-queries. Optimize slow queries, analyze SQL performance, and collect evidence for expensive workloads. Platforms: claude_code."} @@ -29287,7 +33683,6 @@ {"id": "c4d3ebf639a4bfd30baa4bb04644e83530c4aee731d44bebf019ce758663b71b", "repo_url": "https://github.com/dpearson2699/swift-ios-skills", "name": "vision-framework", "description": "Implement computer vision features including text recognition (OCR), face detection, barcode scanning, image segmentation, object tracking, and document scanning in iOS apps. Covers both the modern Swift-native Vision API (iOS 16+) and legacy VNRequest patterns, VisionKit DataScannerViewController for live camera scanning, and VNCoreMLRequest for custom model inference. Use when adding OCR, barcode scanning, face detection, or custom Core ML model inference with Vision.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dpearson2699/swift-ios-skills/blob/main/skills/vision-framework/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vision-framework"}, "quality": {"stars": 217, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T21:09:01Z"}, "embedding_text": "vision-framework. Implement computer vision features including text recognition (OCR), face detection, barcode scanning, image segmentation, object tracking, and document scanning in iOS apps. Covers both the modern Swift-native Vision API (iOS 16+) and legacy VNRequest patterns, VisionKit DataScannerViewController for live camera scanning, and VNCoreMLRequest for custom model inference. Use when adding OCR, barcode scanning, face detection, or custom Core ML model inference with Vision. Platforms: claude_code."} {"id": "73ac0c514a896d1be795b8efc917a83ddfb72a38407fec486aeb21e6c91120da", "repo_url": "https://github.com/dpearson2699/swift-ios-skills", "name": "weatherkit", "description": "Fetch current, hourly, and daily weather forecasts and display required attribution using WeatherKit. Use when integrating weather data, showing forecasts, handling weather alerts, displaying Apple Weather attribution, or querying historical weather statistics in iOS apps.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dpearson2699/swift-ios-skills/blob/main/skills/weatherkit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install weatherkit"}, "quality": {"stars": 217, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T21:09:01Z"}, "embedding_text": "weatherkit. Fetch current, hourly, and daily weather forecasts and display required attribution using WeatherKit. Use when integrating weather data, showing forecasts, handling weather alerts, displaying Apple Weather attribution, or querying historical weather statistics in iOS apps. Platforms: claude_code."} {"id": "e8723038098f46489b7b5358e7742202c9801bb4958ce38a49d537d7f157d63f", "repo_url": "https://github.com/dpearson2699/swift-ios-skills", "name": "widgetkit", "description": "Implement, review, or improve widgets, Live Activities, and controls using WidgetKit and ActivityKit. Use when building home screen, Lock Screen, or StandBy widgets with timeline providers; when creating interactive widgets with Button/Toggle and AppIntent actions; when adding Live Activities with Dynamic Island layouts (compact, minimal, expanded); when building Control Center widgets with ControlWidgetButton/ControlWidgetToggle; when configuring widget families, refresh budgets, deep links, push-based reloads, or Liquid Glass rendering; or when setting up widget extensions, App Groups, and entitlements.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dpearson2699/swift-ios-skills/blob/main/skills/widgetkit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install widgetkit"}, "quality": {"stars": 217, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T21:09:01Z"}, "embedding_text": "widgetkit. Implement, review, or improve widgets, Live Activities, and controls using WidgetKit and ActivityKit. Use when building home screen, Lock Screen, or StandBy widgets with timeline providers; when creating interactive widgets with Button/Toggle and AppIntent actions; when adding Live Activities with Dynamic Island layouts (compact, minimal, expanded); when building Control Center widgets with ControlWidgetButton/ControlWidgetToggle; when configuring widget families, refresh budgets, deep links, push-based reloads, or Liquid Glass rendering; or when setting up widget extensions, App Groups, and entitlements. Platforms: claude_code."} -{"id": "51199beb2da66502f15b33c9ab73c4511fac42f3980f5f609253c40ee6d44012", "repo_url": "https://github.com/countbot-ai/countbot", "name": "cron-manager", "description": "\u5b9a\u65f6\u4efb\u52a1\u7ba1\u7406\u3002\u521b\u5efa\u3001\u67e5\u770b\u3001\u4fee\u6539\u3001\u5220\u9664\u5b9a\u65f6\u4efb\u52a1\uff0c\u7ba1\u7406\u4efb\u52a1\u4f1a\u8bdd\u6570\u636e\u3002\u5f53\u7528\u6237\u9700\u8981\u8bbe\u7f6e\u63d0\u9192\u3001\u5b9a\u65f6\u6267\u884c\u4efb\u52a1\u3001\u7ba1\u7406\u8c03\u5ea6\u8ba1\u5212\u65f6\u4f7f\u7528\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/countbot-ai/countbot/blob/main/workspace/skills/cron-manager/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cron-manager"}, "quality": {"stars": 213, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:40:58Z"}, "embedding_text": "cron-manager. \u5b9a\u65f6\u4efb\u52a1\u7ba1\u7406\u3002\u521b\u5efa\u3001\u67e5\u770b\u3001\u4fee\u6539\u3001\u5220\u9664\u5b9a\u65f6\u4efb\u52a1\uff0c\u7ba1\u7406\u4efb\u52a1\u4f1a\u8bdd\u6570\u636e\u3002\u5f53\u7528\u6237\u9700\u8981\u8bbe\u7f6e\u63d0\u9192\u3001\u5b9a\u65f6\u6267\u884c\u4efb\u52a1\u3001\u7ba1\u7406\u8c03\u5ea6\u8ba1\u5212\u65f6\u4f7f\u7528\u3002 Platforms: claude_code."} {"id": "ea9c1ccd50c048dc04feec90b3460150d7cf06409d322e65dfe89a2186a79380", "repo_url": "https://github.com/countbot-ai/countbot", "name": "skill-creator", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/countbot-ai/countbot/blob/main/workspace/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 213, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:40:58Z"}, "embedding_text": "skill-creator. 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. Platforms: claude_code."} {"id": "94f9d929987fa291882a7edfc7694c8b5e7b187af23125a2f1b2bfa33124b129", "repo_url": "https://github.com/countbot-ai/countbot", "name": "terminal-session", "description": "tmux \u6301\u4e45\u5316\u7ec8\u7aef\u4f1a\u8bdd\u63a7\u5236\u3002\u901a\u8fc7\u5411 tmux \u53d1\u9001\u6309\u952e\u3001\u8bfb\u53d6\u8f93\u51fa\uff0c\u7ba1\u7406 Claude Code\u3001Codex\u3001SSH \u7b49\u957f\u65f6\u95f4\u8fd0\u884c\u7684\u4ea4\u4e92\u5f0f\u8fdb\u7a0b\u3002\u8de8\u591a\u8f6e\u5bf9\u8bdd\u4fdd\u6301\u8fdb\u7a0b\u72b6\u6001\u3002\u9700\u9884\u88c5 tmux\uff08Linux/macOS \u9ed8\u8ba4\u63d0\u4f9b\uff1bWindows \u7528\u6237\u9700 WSL2\uff09\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/countbot-ai/countbot/blob/main/workspace/skills/terminal-session/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terminal-session"}, "quality": {"stars": 213, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:40:58Z"}, "embedding_text": "terminal-session. tmux \u6301\u4e45\u5316\u7ec8\u7aef\u4f1a\u8bdd\u63a7\u5236\u3002\u901a\u8fc7\u5411 tmux \u53d1\u9001\u6309\u952e\u3001\u8bfb\u53d6\u8f93\u51fa\uff0c\u7ba1\u7406 Claude Code\u3001Codex\u3001SSH \u7b49\u957f\u65f6\u95f4\u8fd0\u884c\u7684\u4ea4\u4e92\u5f0f\u8fdb\u7a0b\u3002\u8de8\u591a\u8f6e\u5bf9\u8bdd\u4fdd\u6301\u8fdb\u7a0b\u72b6\u6001\u3002\u9700\u9884\u88c5 tmux\uff08Linux/macOS \u9ed8\u8ba4\u63d0\u4f9b\uff1bWindows \u7528\u6237\u9700 WSL2\uff09\u3002 Platforms: claude_code."} {"id": "545dddf9313ef1f09003725e5ea3b90ec9cf4f3cc56d5f6482deeb620fa0185c", "repo_url": "https://github.com/shinpr/claude-code-workflows", "name": "documentation-criteria", "description": "Documentation creation criteria including PRD, ADR, Design Doc, and Work Plan requirements with templates. Use when creating or reviewing technical documents, or determining which documents are required.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/claude-code-workflows/blob/main/skills/documentation-criteria/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install documentation-criteria"}, "quality": {"stars": 204, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T08:01:05Z"}, "embedding_text": "documentation-criteria. Documentation creation criteria including PRD, ADR, Design Doc, and Work Plan requirements with templates. Use when creating or reviewing technical documents, or determining which documents are required. Platforms: claude_code."} @@ -29311,182 +33706,64 @@ {"id": "a053533c72ac6203eca27059c38b0e35aa2fc88b7ea0445062be141ad1362923", "repo_url": "https://github.com/shinpr/claude-code-workflows", "name": "recipe-update-doc", "description": "Update existing design documents (Design Doc / PRD / ADR) with review", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/claude-code-workflows/blob/main/skills/recipe-update-doc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recipe-update-doc"}, "quality": {"stars": 204, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T08:01:05Z"}, "embedding_text": "recipe-update-doc. Update existing design documents (Design Doc / PRD / ADR) with review Platforms: claude_code."} {"id": "4a260743dbc93c62cce2e9c4c48c29c013dc7129fa178d9d063706448e135d24", "repo_url": "https://github.com/shinpr/claude-code-workflows", "name": "test-implement", "description": "Test implementation patterns and conventions. Use when implementing unit tests, integration tests, or E2E tests, including RTL+Vitest+MSW component testing and Playwright E2E testing.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/claude-code-workflows/blob/main/skills/test-implement/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-implement"}, "quality": {"stars": 204, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T08:01:05Z"}, "embedding_text": "test-implement. Test implementation patterns and conventions. Use when implementing unit tests, integration tests, or E2E tests, including RTL+Vitest+MSW component testing and Playwright E2E testing. Platforms: claude_code."} {"id": "d18d0e01348736e5bf512e37dd22c58995e853a3650dad1bbba2643e6aa3920a", "repo_url": "https://github.com/shinpr/claude-code-workflows", "name": "typescript-rules", "description": "React/TypeScript frontend development rules including type safety, component design, state management, and error handling. Use when implementing React components, TypeScript code, or frontend features.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/claude-code-workflows/blob/main/skills/typescript-rules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install typescript-rules"}, "quality": {"stars": 204, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T08:01:05Z"}, "embedding_text": "typescript-rules. React/TypeScript frontend development rules including type safety, component design, state management, and error handling. Use when implementing React components, TypeScript code, or frontend features. Platforms: claude_code."} -{"id": "4dbd00b8ade9460f72fcff1dd5a0d8134496c0033eed5232dd1d82daa4030279", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "google-search-console", "description": "When the user wants to analyze Google Search Console data, use GSC API, or interpret search performance. Also use when the user mentions \"GSC,\" \"Search Console,\" \"indexing report,\" \"Core Web Vitals,\" \"Enhancements,\" \"Insights report,\" \"search performance,\" \"search queries,\" \"search performance report,\" \"URL inspection,\" \"impressions,\" \"CTR,\" \"average position,\" \"index coverage,\" \"title tag,\" \"meta description,\" \"GSC data analysis,\" \"Search Console API,\" or \"searchanalytics.query.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/analytics/seo/google-search-console/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install google-search-console"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "google-search-console. When the user wants to analyze Google Search Console data, use GSC API, or interpret search performance. Also use when the user mentions \"GSC,\" \"Search Console,\" \"indexing report,\" \"Core Web Vitals,\" \"Enhancements,\" \"Insights report,\" \"search performance,\" \"search queries,\" \"search performance report,\" \"URL inspection,\" \"impressions,\" \"CTR,\" \"average position,\" \"index coverage,\" \"title tag,\" \"meta description,\" \"GSC data analysis,\" \"Search Console API,\" or \"searchanalytics.query.\" Platforms: claude_code."} -{"id": "622c981f1ffa1ce0e1c09520962fdc1938224ac45bad381c92072f21d30b6825", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "seo-monitoring", "description": "When the user wants to build an SEO data analysis system, monitor indexing/traffic/keywords/backlinks, or set up benchmarks. Also use when the user mentions \"SEO data analysis,\" \"SEO monitoring,\" \"article database,\" \"traffic benchmark,\" \"penalty recovery,\" \"SEO work document,\" \"SEO dashboard,\" \"keyword tracking,\" \"ranking monitoring,\" \"indexing report,\" or \"backlink monitoring.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/analytics/seo/seo-monitoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-monitoring"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "seo-monitoring. When the user wants to build an SEO data analysis system, monitor indexing/traffic/keywords/backlinks, or set up benchmarks. Also use when the user mentions \"SEO data analysis,\" \"SEO monitoring,\" \"article database,\" \"traffic benchmark,\" \"penalty recovery,\" \"SEO work document,\" \"SEO dashboard,\" \"keyword tracking,\" \"ranking monitoring,\" \"indexing report,\" or \"backlink monitoring.\" Platforms: claude_code."} -{"id": "e62b1923a6aceb1a7a11e7755231f41fad4741a765114d6f84057222640364a6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "ai-traffic-tracking", "description": "When the user wants to track AI search traffic in GA4 or GSC. Also use when the user mentions \"AI traffic,\" \"ChatGPT referral,\" \"Perplexity traffic,\" \"AI Overviews,\" \"GA4 AI sources,\" \"AI search analytics,\" \"track AI referrals,\" \"AI search traffic,\" \"Claude traffic,\" or \"how to track AI traffic.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/analytics/sources/ai-traffic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-traffic-tracking"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "ai-traffic-tracking. When the user wants to track AI search traffic in GA4 or GSC. Also use when the user mentions \"AI traffic,\" \"ChatGPT referral,\" \"Perplexity traffic,\" \"AI Overviews,\" \"GA4 AI sources,\" \"AI search analytics,\" \"track AI referrals,\" \"AI search traffic,\" \"Claude traffic,\" or \"how to track AI traffic.\" Platforms: claude_code."} {"id": "eec2de279dc706756fe85a08350079ca420fe6b02781efaae750d3f266dedaba", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "traffic-analysis", "description": "When the user wants to analyze website traffic sources, attribution, or dark traffic. Also use when the user mentions \"traffic sources,\" \"dark traffic,\" \"direct traffic,\" \"UTM parameters,\" \"traffic attribution,\" \"channel attribution,\" \"attribution optimization,\" \"channel analysis,\" \"traffic analysis,\" \"traffic diversification,\" \"natural traffic benchmark,\" or \"organic vs paid traffic.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/analytics/sources/traffic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install traffic-analysis"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "traffic-analysis. When the user wants to analyze website traffic sources, attribution, or dark traffic. Also use when the user mentions \"traffic sources,\" \"dark traffic,\" \"direct traffic,\" \"UTM parameters,\" \"traffic attribution,\" \"channel attribution,\" \"attribution optimization,\" \"channel analysis,\" \"traffic analysis,\" \"traffic diversification,\" \"natural traffic benchmark,\" or \"organic vs paid traffic.\" Platforms: claude_code."} -{"id": "6f6d91cc9e1f2d10ddca3ba6a9e50d71ac7056197d333de3a4eebacf08a2002a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "analytics-tracking", "description": "When the user wants to set up, audit, or optimize analytics tracking (GA4, events, conversions). Also use when the user mentions \"Google Analytics,\" \"GA4,\" \"event tracking,\" \"conversions,\" \"attribution model,\" \"gtag,\" \"data layer,\" \"GA4 setup,\" \"conversion tracking,\" \"event setup,\" \"User ID tracking,\" or \"CTA attribution.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/analytics/tracking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install analytics-tracking"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "analytics-tracking. When the user wants to set up, audit, or optimize analytics tracking (GA4, events, conversions). Also use when the user mentions \"Google Analytics,\" \"GA4,\" \"event tracking,\" \"conversions,\" \"attribution model,\" \"gtag,\" \"data layer,\" \"GA4 setup,\" \"conversion tracking,\" \"event setup,\" \"User ID tracking,\" or \"CTA attribution.\" Platforms: claude_code."} -{"id": "6be00a63035e69dcef9bf15227aa51c9d633432f2b33262a0efd9491f0d135fb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "community-forum", "description": "When the user wants to promote via forums, communities, or invite users to join a community. Also use when the user mentions \"forum promotion,\" \"Indie Hacker,\" \"Hacker News,\" \"community growth,\" \"Discord promotion,\" \"vertical community,\" \"brand encyclopedia,\" \"Wikipedia,\" \"Quora,\" \"Reddit community,\" \"community building,\" \"forum marketing,\" or \"community invite.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/community/community-forum/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install community-forum"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "community-forum. When the user wants to promote via forums, communities, or invite users to join a community. Also use when the user mentions \"forum promotion,\" \"Indie Hacker,\" \"Hacker News,\" \"community growth,\" \"Discord promotion,\" \"vertical community,\" \"brand encyclopedia,\" \"Wikipedia,\" \"Quora,\" \"Reddit community,\" \"community building,\" \"forum marketing,\" or \"community invite.\" Platforms: claude_code."} {"id": "65cac5ad0ad5c951417d5431b5f675acc6786d51b42acdeff6f335aa8d06288b", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "directory-submission", "description": "When the user wants to submit a product to directories, launch platforms, curated lists, or app stores. Reads project-context.md when present and generates ready-to-paste submission content per platform. Also use when the user mentions \"directory submission,\" \"get listed,\" \"app store listing,\" \"submit to directories,\" \"curated list,\" \"best tools list,\" \"Taaft,\" \"Product Hunt,\" \"directory ads,\" \"newsletter feature,\" \"directory campaign,\" \"product info for directory,\" \"tailor description per platform,\" \"Shopify App Store,\" \"Chrome Web Store,\" \"submit to directory,\" \"launch on Product Hunt,\" \"navigation site,\" or \"product directory.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/community/directory-submission/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install directory-submission"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "directory-submission. When the user wants to submit a product to directories, launch platforms, curated lists, or app stores. Reads project-context.md when present and generates ready-to-paste submission content per platform. Also use when the user mentions \"directory submission,\" \"get listed,\" \"app store listing,\" \"submit to directories,\" \"curated list,\" \"best tools list,\" \"Taaft,\" \"Product Hunt,\" \"directory ads,\" \"newsletter feature,\" \"directory campaign,\" \"product info for directory,\" \"tailor description per platform,\" \"Shopify App Store,\" \"Chrome Web Store,\" \"submit to directory,\" \"launch on Product Hunt,\" \"navigation site,\" or \"product directory.\" Platforms: claude_code."} -{"id": "ac4904155bdfe9b0be64938c9ca46125730afb6cde9aaf087bf34b4f1d5c76d2", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "product-hunt-launch", "description": "When the user wants to launch on Product Hunt, prepare a Product Hunt submission, or plan a Product Hunt launch. Also use when the user mentions \"Product Hunt,\" \"launch on Product Hunt,\" \"PH launch,\" \"Product Hunt submission,\" \"hunter,\" \"Product of the Day,\" \"upvotes,\" or \"Product Hunt first comment.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/community/product-hunt-launch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install product-hunt-launch"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "product-hunt-launch. When the user wants to launch on Product Hunt, prepare a Product Hunt submission, or plan a Product Hunt launch. Also use when the user mentions \"Product Hunt,\" \"launch on Product Hunt,\" \"PH launch,\" \"Product Hunt submission,\" \"hunter,\" \"Product of the Day,\" \"upvotes,\" or \"Product Hunt first comment.\" Platforms: claude_code."} -{"id": "69994dc405eab45179715c337d5689a428b43b5e3decc4a35f6e1f84a63027e5", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "distribution-channels", "description": "When the user wants to plan product distribution via marketplaces, app stores, or third-party platforms. Also use when the user mentions \"distribution channels,\" \"marketplace listing,\" \"app store listing,\" \"Figma plugin,\" \"Chrome extension marketplace,\" \"AWS Marketplace,\" \"Shopify app,\" \"GPTs store,\" \"app distribution,\" or \"third-party marketplace.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/distribution/distribution-channels/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install distribution-channels"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "distribution-channels. When the user wants to plan product distribution via marketplaces, app stores, or third-party platforms. Also use when the user mentions \"distribution channels,\" \"marketplace listing,\" \"app store listing,\" \"Figma plugin,\" \"Chrome extension marketplace,\" \"AWS Marketplace,\" \"Shopify app,\" \"GPTs store,\" \"app distribution,\" or \"third-party marketplace.\" Platforms: claude_code."} -{"id": "e4baea7569158c14011314e3eacef8dbe666e405510438656d9fb4e527eb8d6e", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "email-marketing", "description": "When the user wants to plan email marketing, EDM, newsletter strategy, or email deliverability. Also use when the user mentions \"email marketing,\" \"EDM,\" \"newsletter,\" \"SPF,\" \"DKIM,\" \"DMARC,\" \"email deliverability,\" \"email content strategy,\" \"email campaigns,\" \"newsletter strategy,\" \"email automation,\" or \"cold email.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/owned/email-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install email-marketing"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "email-marketing. When the user wants to plan email marketing, EDM, newsletter strategy, or email deliverability. Also use when the user mentions \"email marketing,\" \"EDM,\" \"newsletter,\" \"SPF,\" \"DKIM,\" \"DMARC,\" \"email deliverability,\" \"email content strategy,\" \"email campaigns,\" \"newsletter strategy,\" \"email automation,\" or \"cold email.\" Platforms: claude_code."} -{"id": "2d2f5203f07e6c07f1381e12603b0437f4e220f43933914151eacde6679bde31", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "employee-generated-content", "description": "When the user wants to plan, implement, or optimize employee-generated content (EGC) or employee advocacy. Also use when the user mentions \"EGC,\" \"employee advocacy,\" \"employee content,\" \"internal brand ambassadors,\" \"employee social media,\" \"employee advocacy program,\" \"staff advocacy,\" \"LinkedIn employee posts,\" or \"brand ambassador program.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/owned/employee-generated-content/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install employee-generated-content"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "employee-generated-content. When the user wants to plan, implement, or optimize employee-generated content (EGC) or employee advocacy. Also use when the user mentions \"EGC,\" \"employee advocacy,\" \"employee content,\" \"internal brand ambassadors,\" \"employee social media,\" \"employee advocacy program,\" \"staff advocacy,\" \"LinkedIn employee posts,\" or \"brand ambassador program.\" Platforms: claude_code."} -{"id": "817cb545a3fe01cc102b09146fcbf82df9dfadad7d2991f9c2c4f47976614a22", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "affiliate-marketing", "description": "When the user wants to plan, implement, or optimize affiliate marketing strategy. Also use when the user mentions \"affiliate marketing,\" \"affiliate program strategy,\" \"CPS model,\" \"affiliate recruitment,\" \"commission structure,\" \"affiliate partners,\" \"affiliate network,\" \"affiliate tracking,\" \"affiliate commission,\" or \"partner marketing.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/affiliate-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install affiliate-marketing"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "affiliate-marketing. When the user wants to plan, implement, or optimize affiliate marketing strategy. Also use when the user mentions \"affiliate marketing,\" \"affiliate program strategy,\" \"CPS model,\" \"affiliate recruitment,\" \"commission structure,\" \"affiliate partners,\" \"affiliate network,\" \"affiliate tracking,\" \"affiliate commission,\" or \"partner marketing.\" Platforms: claude_code."} -{"id": "c3303ee09937c86687ad9982d4cc5d023f2caec004233634dba4b1b9364153be", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "creator-program", "description": "When the user wants to plan, implement, or optimize creator program strategy. Also use when the user mentions \"creator program,\" \"creator partnership,\" \"content co-creation,\" \"creator ambassador,\" \"creator economy,\" \"creator collaboration,\" \"UGC program,\" \"creator incentives,\" or \"creator community.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/creator-program/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install creator-program"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "creator-program. When the user wants to plan, implement, or optimize creator program strategy. Also use when the user mentions \"creator program,\" \"creator partnership,\" \"content co-creation,\" \"creator ambassador,\" \"creator economy,\" \"creator collaboration,\" \"UGC program,\" \"creator incentives,\" or \"creator community.\" Platforms: claude_code."} {"id": "b81a3bff755008f88e165896727182c3c25944341c38d74d26a9d26a3be4a681", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "education-program", "description": "When the user wants to plan, implement, or optimize student and education discount programs. Also use when the user mentions \"student discount,\" \"education discount,\" \"student plan,\" \"for students,\" \".edu discount,\" \"academic pricing,\" \"student verification,\" \"SheerID,\" \"UNiDAYS,\" or \"education program.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/education-program/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install education-program"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "education-program. When the user wants to plan, implement, or optimize student and education discount programs. Also use when the user mentions \"student discount,\" \"education discount,\" \"student plan,\" \"for students,\" \".edu discount,\" \"academic pricing,\" \"student verification,\" \"SheerID,\" \"UNiDAYS,\" or \"education program.\" Platforms: claude_code."} -{"id": "d98fb7106de73d325904578ec2f51d256cc5b38d9110559fe476eeb0c731082c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "influencer-marketing", "description": "When the user wants to plan, implement, or optimize influencer marketing strategy. Also use when the user mentions \"influencer marketing,\" \"KOL,\" \"creator partnership,\" \"brand ambassador,\" \"sponsored content,\" \"influencer campaign,\" \"micro-influencer,\" \"influencer outreach,\" \"creator collaboration,\" or \"influencer deal.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/influencer-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install influencer-marketing"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "influencer-marketing. When the user wants to plan, implement, or optimize influencer marketing strategy. Also use when the user mentions \"influencer marketing,\" \"KOL,\" \"creator partnership,\" \"brand ambassador,\" \"sponsored content,\" \"influencer campaign,\" \"micro-influencer,\" \"influencer outreach,\" \"creator collaboration,\" or \"influencer deal.\" Platforms: claude_code."} -{"id": "9caafc7c4d6523455793a7a13f36109baed202db1d981816c824096247c9519c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "public-relations", "description": "When the user wants to plan PR, write a press release, or manage media relations. Also use when the user mentions \"public relations,\" \"PR,\" \"press release,\" \"media relations,\" \"news release,\" \"journalist,\" \"media coverage,\" \"product announcement,\" or \"earned media.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/public-relations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install public-relations"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "public-relations. When the user wants to plan PR, write a press release, or manage media relations. Also use when the user mentions \"public relations,\" \"PR,\" \"press release,\" \"media relations,\" \"news release,\" \"journalist,\" \"media coverage,\" \"product announcement,\" or \"earned media.\" Platforms: claude_code."} -{"id": "b5be9aebd72e7885ac849ea75f6a960691989925a782d2cea693d6d7f60d0fab", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "referral-program", "description": "When the user wants to plan, implement, or optimize referral program strategy. Also use when the user mentions \"referral program,\" \"referral marketing,\" \"user referral,\" \"refer-a-friend,\" \"word-of-mouth growth,\" \"referral rewards,\" \"referral tracking,\" \"referral code,\" \"referral incentives,\" or \"viral loop.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/channels/partnerships/referral-program/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install referral-program"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "referral-program. When the user wants to plan, implement, or optimize referral program strategy. Also use when the user mentions \"referral program,\" \"referral marketing,\" \"user referral,\" \"refer-a-friend,\" \"word-of-mouth growth,\" \"referral rewards,\" \"referral tracking,\" \"referral code,\" \"referral incentives,\" or \"viral loop.\" Platforms: claude_code."} {"id": "05c4b225a79677d117edc094db04d23efc01caab5ee305bb41f013b3a987aedd", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "brand-visual-generator", "description": "When the user wants to define, audit, or apply visual identity (typography, colors, spacing, frontend aesthetics). Also use when the user mentions \"brand style guide,\" \"visual identity,\" \"design system,\" \"typography,\" \"color palette,\" \"brand guidelines,\" \"AI brand aesthetics,\" \"brand colors,\" \"font choices,\" \"spacing system,\" \"design tokens,\" \"motion,\" \"distinctive design,\" or \"frontend aesthetics.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/branding/brand-visual/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-visual-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "brand-visual-generator. When the user wants to define, audit, or apply visual identity (typography, colors, spacing, frontend aesthetics). Also use when the user mentions \"brand style guide,\" \"visual identity,\" \"design system,\" \"typography,\" \"color palette,\" \"brand guidelines,\" \"AI brand aesthetics,\" \"brand colors,\" \"font choices,\" \"spacing system,\" \"design tokens,\" \"motion,\" \"distinctive design,\" or \"frontend aesthetics.\" Platforms: claude_code."} -{"id": "003e3f441d123c35c4543e2c873d9ac908aba4bda76c7882e20fc58e0e785530", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "favicon-generator", "description": "When the user wants to implement, optimize, or audit favicon and app icons. Also use when the user mentions \"favicon,\" \"app icon,\" \"browser icon,\" \"touch icon,\" \"PWA icon,\" \"favicon sizes,\" \"apple-touch-icon,\" \"favicon.ico,\" \"site icon,\" or \"tab icon.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/branding/favicon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install favicon-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "favicon-generator. When the user wants to implement, optimize, or audit favicon and app icons. Also use when the user mentions \"favicon,\" \"app icon,\" \"browser icon,\" \"touch icon,\" \"PWA icon,\" \"favicon sizes,\" \"apple-touch-icon,\" \"favicon.ico,\" \"site icon,\" or \"tab icon.\" Platforms: claude_code."} {"id": "261929379ea50c791db8983c4db5b58e6af5d656edeadf6ba0580d167e2ba1e2", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "hero-generator", "description": "When the user wants to design, optimize, or audit hero sections (above-the-fold main visual area). Also use when the user mentions \"hero,\" \"hero section,\" \"hero area,\" \"above the fold,\" \"above the fold content,\" \"landing hero,\" \"main banner,\" \"banner section,\" \"first fold,\" \"hero section design,\" \"hero conversion,\" \"split layout hero,\" \"centered hero,\" or \"hero alignment.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/branding/hero/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hero-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "hero-generator. When the user wants to design, optimize, or audit hero sections (above-the-fold main visual area). Also use when the user mentions \"hero,\" \"hero section,\" \"hero area,\" \"above the fold,\" \"above the fold content,\" \"landing hero,\" \"main banner,\" \"banner section,\" \"first fold,\" \"hero section design,\" \"hero conversion,\" \"split layout hero,\" \"centered hero,\" or \"hero alignment.\" Platforms: claude_code."} {"id": "7589f21b41c833ba74a790649a5d27f391a90f3faa136829bdeaaf03acb21790", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "logo-generator", "description": "When the user wants to optimize logo placement, linking, or branding on a website. Also use when the user mentions \"logo,\" \"brand logo,\" \"header logo,\" \"logo placement,\" \"AI logo design,\" \"logo link,\" \"logo alt text,\" \"logo sizing,\" \"favicon logo,\" or \"logo usage.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/branding/logo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install logo-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "logo-generator. When the user wants to optimize logo placement, linking, or branding on a website. Also use when the user mentions \"logo,\" \"brand logo,\" \"header logo,\" \"logo placement,\" \"AI logo design,\" \"logo link,\" \"logo alt text,\" \"logo sizing,\" \"favicon logo,\" or \"logo usage.\" Platforms: claude_code."} -{"id": "0e91a58eed5a56b2a6061eaa0fde4565407137b631c5b3ab2994d8b94abfaa94", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "tab-accordion", "description": "When the user wants to add or optimize tab or accordion components for content organization. Also use when the user mentions \"tab component,\" \"accordion,\" \"expandable content,\" \"collapsible sections,\" \"tabbed content,\" \"FAQ accordion,\" \"how-to tabs,\" \"horizontal tabs,\" \"vertical accordion,\" \"content in tabs,\" \"hidden content SEO,\" \"details summary,\" or \"disclosure widget.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/content/tab-accordion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tab-accordion"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "tab-accordion. When the user wants to add or optimize tab or accordion components for content organization. Also use when the user mentions \"tab component,\" \"accordion,\" \"expandable content,\" \"collapsible sections,\" \"tabbed content,\" \"FAQ accordion,\" \"how-to tabs,\" \"horizontal tabs,\" \"vertical accordion,\" \"content in tabs,\" \"hidden content SEO,\" \"details summary,\" or \"disclosure widget.\" Platforms: claude_code."} -{"id": "2fe5e3de111cfaef3acab7f8414228f47a8602026926fbcf7bf6ecbf3b19cb3e", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "cta-generator", "description": "When the user wants to design, optimize, or audit call-to-action (CTA) buttons. Also use when the user mentions \"CTA,\" \"call to action,\" \"button design,\" \"conversion button,\" \"primary action,\" \"CTA copy,\" \"button text,\" \"CTA placement,\" \"conversion CTA,\" or \"action button.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/conversion/cta/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cta-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "cta-generator. When the user wants to design, optimize, or audit call-to-action (CTA) buttons. Also use when the user mentions \"CTA,\" \"call to action,\" \"button design,\" \"conversion button,\" \"primary action,\" \"CTA copy,\" \"button text,\" \"CTA placement,\" \"conversion CTA,\" or \"action button.\" Platforms: claude_code."} {"id": "51af00e4c07eeef39c24c40262420132272170022e3d5036ed3c989110bc4f8b", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "newsletter-signup-generator", "description": "When the user wants to design, optimize, or audit newsletter signup forms. Also use when the user mentions \"newsletter,\" \"email signup,\" \"subscribe form,\" \"email capture,\" \"lead magnet,\" \"newsletter form,\" \"email opt-in,\" \"subscribe CTA,\" \"newsletter signup,\" or \"email list building.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/conversion/newsletter-signup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install newsletter-signup-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "newsletter-signup-generator. When the user wants to design, optimize, or audit newsletter signup forms. Also use when the user mentions \"newsletter,\" \"email signup,\" \"subscribe form,\" \"email capture,\" \"lead magnet,\" \"newsletter form,\" \"email opt-in,\" \"subscribe CTA,\" \"newsletter signup,\" or \"email list building.\" Platforms: claude_code."} -{"id": "a21708a00d4b5a2c487ca474905086b80a6ae6e22b8e54fe53c702219ff7b6e3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "popup-generator", "description": "When the user wants to add, optimize, or audit popups or modals for lead capture or offers. Also use when the user mentions \"popup,\" \"modal,\" \"lightbox,\" \"overlay,\" \"exit-intent,\" \"popup form,\" \"modal design,\" \"lead popup,\" \"popup timing,\" or \"popup triggers.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/conversion/popup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install popup-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "popup-generator. When the user wants to add, optimize, or audit popups or modals for lead capture or offers. Also use when the user mentions \"popup,\" \"modal,\" \"lightbox,\" \"overlay,\" \"exit-intent,\" \"popup form,\" \"modal design,\" \"lead popup,\" \"popup timing,\" or \"popup triggers.\" Platforms: claude_code."} {"id": "44f50e3acda130e469b75104f3f57e94c10a7fb027e1df24c07c56771a08a4e0", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "testimonials-generator", "description": "When the user wants to add, optimize, or design customer testimonials, reviews, or case study sections. Also use when the user mentions \"testimonials,\" \"reviews,\" \"customer quotes,\" \"social proof,\" \"case studies,\" \"testimonial section,\" \"customer reviews,\" \"review schema,\" \"testimonial design,\" or \"social proof section.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/conversion/testimonials/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testimonials-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "testimonials-generator. When the user wants to add, optimize, or design customer testimonials, reviews, or case study sections. Also use when the user mentions \"testimonials,\" \"reviews,\" \"customer quotes,\" \"social proof,\" \"case studies,\" \"testimonial section,\" \"customer reviews,\" \"review schema,\" \"testimonial design,\" or \"social proof section.\" Platforms: claude_code."} -{"id": "a9c64ccb28cc1e99a510756e2485c3abd5946ad6555ee048f4b5f5c7ba454735", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "trust-badges-generator", "description": "When the user wants to add or optimize trust badges, \"Trusted by\" logos, security seals, or social proof elements. Also use when the user mentions \"trust badges,\" \"trusted by,\" \"security badges,\" \"payment logos,\" \"social proof,\" \"trust seals,\" \"SSL badge,\" \"customer logos,\" \"as seen in,\" or \"trust signals.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/conversion/trust-badges/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install trust-badges-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "trust-badges-generator. When the user wants to add or optimize trust badges, \"Trusted by\" logos, security seals, or social proof elements. Also use when the user mentions \"trust badges,\" \"trusted by,\" \"security badges,\" \"payment logos,\" \"social proof,\" \"trust seals,\" \"SSL badge,\" \"customer logos,\" \"as seen in,\" or \"trust signals.\" Platforms: claude_code."} -{"id": "ae527722a262980a20e23c16bd70a16ea08f19f11fb1f8202f0a531c3f0fb16a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "card", "description": "When the user wants to design, optimize, or audit card layouts for content display. Also use when the user mentions \"card layout,\" \"card component,\" \"card grid,\" \"product cards,\" \"template cards,\" \"tool cards,\" \"feature cards,\" \"gallery cards,\" \"integration cards,\" or \"card design.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/layout/card/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install card"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "card. When the user wants to design, optimize, or audit card layouts for content display. Also use when the user mentions \"card layout,\" \"card component,\" \"card grid,\" \"product cards,\" \"template cards,\" \"tool cards,\" \"feature cards,\" \"gallery cards,\" \"integration cards,\" or \"card design.\" Platforms: claude_code."} -{"id": "ab1bd562137e395a92a4a4d44451e57613dbc45b909958d988d4a8bb22526e89", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "carousel", "description": "When the user wants to design, optimize, or audit carousel/slider layouts for content display. Also use when the user mentions \"carousel,\" \"slider,\" \"carousel layout,\" \"testimonial carousel,\" \"gallery carousel,\" \"quote carousel,\" \"image slider,\" or \"carousel accessibility.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/layout/carousel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install carousel"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "carousel. When the user wants to design, optimize, or audit carousel/slider layouts for content display. Also use when the user mentions \"carousel,\" \"slider,\" \"carousel layout,\" \"testimonial carousel,\" \"gallery carousel,\" \"quote carousel,\" \"image slider,\" or \"carousel accessibility.\" Platforms: claude_code."} {"id": "ceb33d5caa864c7306eba721c9a338ce25d608fde7fb9da37550e4cac26f29a5", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "grid", "description": "When the user wants to design, optimize, or audit grid layouts for content display. Also use when the user mentions \"grid layout,\" \"grid design,\" \"multi-column grid,\" \"CSS grid,\" \"responsive grid,\" \"card grid,\" \"product grid,\" or \"feature grid.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/layout/grid/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install grid"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "grid. When the user wants to design, optimize, or audit grid layouts for content display. Also use when the user mentions \"grid layout,\" \"grid design,\" \"multi-column grid,\" \"CSS grid,\" \"responsive grid,\" \"card grid,\" \"product grid,\" or \"feature grid.\" Platforms: claude_code."} {"id": "8db0c6584d68a30d7150a30230e06402fe227fa2edc1ea9f23823371fd89b63f", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "list", "description": "When the user wants to design, optimize, or audit list layouts for content display. Also use when the user mentions \"list layout,\" \"list design,\" \"vertical list,\" \"stacked list,\" \"blog list,\" \"article list,\" \"documentation list,\" \"search results layout,\" or \"infinite scroll list.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/layout/list/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install list"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "list. When the user wants to design, optimize, or audit list layouts for content display. Also use when the user mentions \"list layout,\" \"list design,\" \"vertical list,\" \"stacked list,\" \"blog list,\" \"article list,\" \"documentation list,\" \"search results layout,\" or \"infinite scroll list.\" Platforms: claude_code."} -{"id": "a00f208125b79f091bab8b31bb976d4a89b0d026841c6a6ec4e704b9622409c6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "masonry", "description": "When the user wants to design, optimize, or audit masonry (Pinterest-style) layouts for content display. Also use when the user mentions \"masonry layout,\" \"masonry grid,\" \"Pinterest layout,\" \"waterfall layout,\" \"brick layout,\" \"varying height grid,\" \"gallery layout,\" or \"masonry SEO.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/layout/masonry/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install masonry"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "masonry. When the user wants to design, optimize, or audit masonry (Pinterest-style) layouts for content display. Also use when the user mentions \"masonry layout,\" \"masonry grid,\" \"Pinterest layout,\" \"waterfall layout,\" \"brick layout,\" \"varying height grid,\" \"gallery layout,\" or \"masonry SEO.\" Platforms: claude_code."} -{"id": "8816baebcde6b52c0c28d876fb257f36a3490d36091875fca679004d59638ba3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "breadcrumb-generator", "description": "When the user wants to add, optimize, or audit breadcrumb navigation. Also use when the user mentions \"breadcrumbs,\" \"breadcrumb trail,\" \"breadcrumb nav,\" \"breadcrumb links,\" \"path navigation,\" \"site breadcrumb,\" \"BreadcrumbList schema,\" \"location-based breadcrumb,\" \"attribute-based breadcrumb,\" \"site hierarchy display,\" \"add breadcrumbs,\" or \"breadcrumb SEO.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/navigation/breadcrumb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install breadcrumb-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "breadcrumb-generator. When the user wants to add, optimize, or audit breadcrumb navigation. Also use when the user mentions \"breadcrumbs,\" \"breadcrumb trail,\" \"breadcrumb nav,\" \"breadcrumb links,\" \"path navigation,\" \"site breadcrumb,\" \"BreadcrumbList schema,\" \"location-based breadcrumb,\" \"attribute-based breadcrumb,\" \"site hierarchy display,\" \"add breadcrumbs,\" or \"breadcrumb SEO.\" Platforms: claude_code."} {"id": "1ada74aa6d53a71c3a27f559f5edc2d7b3a803a437080565fd5aff1cbd9a92d6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "footer-generator", "description": "When the user wants to design, optimize, or audit website footers. Also use when the user mentions \"footer,\" \"page footer,\" \"site footer,\" \"footer links,\" \"footer navigation,\" \"footer SEO,\" \"footer design,\" \"footer CTA,\" \"multi-column footer,\" or \"footer sitemap.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/navigation/footer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install footer-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "footer-generator. When the user wants to design, optimize, or audit website footers. Also use when the user mentions \"footer,\" \"page footer,\" \"site footer,\" \"footer links,\" \"footer navigation,\" \"footer SEO,\" \"footer design,\" \"footer CTA,\" \"multi-column footer,\" or \"footer sitemap.\" Platforms: claude_code."} -{"id": "a7f875a48f564cd140faeffd302b7ef81f83c4b5ba28020b770b033978938c81", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "navigation-menu-generator", "description": "When the user wants to design, optimize, or audit site navigation menus. Also use when the user mentions \"navigation,\" \"nav menu,\" \"header menu,\" \"site structure,\" \"menu design,\" \"navbar,\" \"main menu,\" \"mega menu,\" \"dropdown menu,\" \"mobile menu,\" or \"hamburger menu.\" For breadcrumbs, use breadcrumb-generator.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/navigation/navigation-menu/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install navigation-menu-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "navigation-menu-generator. When the user wants to design, optimize, or audit site navigation menus. Also use when the user mentions \"navigation,\" \"nav menu,\" \"header menu,\" \"site structure,\" \"menu design,\" \"navbar,\" \"main menu,\" \"mega menu,\" \"dropdown menu,\" \"mobile menu,\" or \"hamburger menu.\" For breadcrumbs, use breadcrumb-generator. Platforms: claude_code."} -{"id": "0cdb1c57e97f4114716e913f55af40b379a14d457dfb66ddd999088ae312bdb0", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "sidebar-generator", "description": "When the user wants to design, optimize, or audit a sidebar for blogs, docs, or content pages. Also use when the user mentions \"sidebar,\" \"blog sidebar,\" \"content sidebar,\" \"side panel,\" \"sidebar navigation,\" \"related content,\" \"sidebar CTA,\" \"doc sidebar,\" or \"sidebar widgets.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/navigation/sidebar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sidebar-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "sidebar-generator. When the user wants to design, optimize, or audit a sidebar for blogs, docs, or content pages. Also use when the user mentions \"sidebar,\" \"blog sidebar,\" \"content sidebar,\" \"side panel,\" \"sidebar navigation,\" \"related content,\" \"sidebar CTA,\" \"doc sidebar,\" or \"sidebar widgets.\" Platforms: claude_code."} -{"id": "e8f7fd31aaede9428e20afabf3b76cb89ff9efa7b5d292146f0f1473edb2b0f0", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "toc-generator", "description": "When the user wants to add, optimize, or audit table of contents (TOC) for long-form content. Also use when the user mentions \"TOC,\" \"table of contents,\" \"table of contents for article,\" \"article TOC,\" \"jump links,\" \"content outline,\" \"article navigation,\" \"in-page navigation,\" \"add TOC to blog,\" or \"TOC for long content.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/navigation/toc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install toc-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "toc-generator. When the user wants to add, optimize, or audit table of contents (TOC) for long-form content. Also use when the user mentions \"TOC,\" \"table of contents,\" \"table of contents for article,\" \"article TOC,\" \"jump links,\" \"content outline,\" \"article navigation,\" \"in-page navigation,\" \"add TOC to blog,\" or \"TOC for long content.\" Platforms: claude_code."} {"id": "124ca67b78050e79d07a043c75eca2f0de3ba43da13f4ce37c4d548078e58cbb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "social-share-generator", "description": "When the user wants to add, optimize, or audit social share buttons (share article to X, LinkedIn, Facebook, etc.). Also use when the user mentions \"share buttons,\" \"social share,\" \"share to X,\" \"share to LinkedIn,\" \"social sharing,\" \"share icons,\" \"share widget,\" \"native share,\" \"Web Share API,\" or \"share intent URLs.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/utility/social-share/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install social-share-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "social-share-generator. When the user wants to add, optimize, or audit social share buttons (share article to X, LinkedIn, Facebook, etc.). Also use when the user mentions \"share buttons,\" \"social share,\" \"share to X,\" \"share to LinkedIn,\" \"social sharing,\" \"share icons,\" \"share widget,\" \"native share,\" \"Web Share API,\" or \"share intent URLs.\" Platforms: claude_code."} -{"id": "afbb34bb39b38ee6f64786ec5ba60d3410e487faa5ba517a2d8efd42b15aa099", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "top-banner-generator", "description": "When the user wants to add, optimize, or audit a top announcement bar or sticky banner. Also use when the user mentions \"announcement bar,\" \"top banner,\" \"sticky bar,\" \"promo banner,\" \"discount banner,\" \"student discount banner,\" \"header banner,\" \"announcement bar design,\" \"sticky header,\" \"promo bar,\" \"urgency banner,\" or \"lead capture bar.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/utility/top-banner/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install top-banner-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "top-banner-generator. When the user wants to add, optimize, or audit a top announcement bar or sticky banner. Also use when the user mentions \"announcement bar,\" \"top banner,\" \"sticky bar,\" \"promo banner,\" \"discount banner,\" \"student discount banner,\" \"header banner,\" \"announcement bar design,\" \"sticky header,\" \"promo bar,\" \"urgency banner,\" or \"lead capture bar.\" Platforms: claude_code."} -{"id": "e578d4b7149dafecf8a7113eac6a2d064c35f4e4ab75abb1a8b5d1bd2d45b1df", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "url-slug-generator", "description": "When the user wants to create, optimize, or validate URL slugs for content pages. Also use when the user mentions \"URL slug,\" \"URL path,\" \"blog URL,\" \"article URL,\" \"short URL,\" \"clean slug,\" \"permalink,\" \"slug optimization,\" \"URL structure,\" \"SEO-friendly URL,\" \"create URL slug,\" or \"SEO slug.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/components/utility/url-slug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install url-slug-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "url-slug-generator. When the user wants to create, optimize, or validate URL slugs for content pages. Also use when the user mentions \"URL slug,\" \"URL path,\" \"blog URL,\" \"article URL,\" \"short URL,\" \"clean slug,\" \"permalink,\" \"slug optimization,\" \"URL structure,\" \"SEO-friendly URL,\" \"create URL slug,\" or \"SEO slug.\" Platforms: claude_code."} -{"id": "7e01ec27513269a90f32307103392e2b0da192c6d21ea2aeecb820fb1998d192", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "article-content", "description": "When the user wants to write, generate, or create article content\u2014blog post body, long-form content, how-to guide, listicle. Also use when the user mentions \"write article,\" \"article content,\" \"blog post content,\" \"article body,\" \"long-form content creation,\" \"generate article,\" \"article draft,\" \"how-to guide content,\" \"listicle content,\" \"information gain,\" or \"content density.\" For article page structure, schema, and SEO metadata, use article-page-generator. For ad copy, landing page copy, or CTAs, use copywriting.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/article/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install article-content"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "article-content. When the user wants to write, generate, or create article content\u2014blog post body, long-form content, how-to guide, listicle. Also use when the user mentions \"write article,\" \"article content,\" \"blog post content,\" \"article body,\" \"long-form content creation,\" \"generate article,\" \"article draft,\" \"how-to guide content,\" \"listicle content,\" \"information gain,\" or \"content density.\" For article page structure, schema, and SEO metadata, use article-page-generator. For ad copy, landing page copy, or CTAs, use copywriting. Platforms: claude_code."} {"id": "af704eb79abc55f60e33fea428f917658b85010e32393f02ff0e833da473d4ba", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "copywriting", "description": "When the user wants to write or optimize marketing copy\u2014headlines, CTAs, ad copy, landing page copy, email copy. Also use when the user mentions \"copywriting,\" \"headline,\" \"CTA copy,\" \"ad copy,\" \"landing page copy,\" \"sales copy,\" \"conversion copy,\" \"PAS,\" \"AIDA,\" \"BAB,\" \"copy formula,\" or \"differentiation.\" For article body content (long-form blog posts, guides), use article-content.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/copywriting/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install copywriting"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "copywriting. When the user wants to write or optimize marketing copy\u2014headlines, CTAs, ad copy, landing page copy, email copy. Also use when the user mentions \"copywriting,\" \"headline,\" \"CTA copy,\" \"ad copy,\" \"landing page copy,\" \"sales copy,\" \"conversion copy,\" \"PAS,\" \"AIDA,\" \"BAB,\" \"copy formula,\" or \"differentiation.\" For article body content (long-form blog posts, guides), use article-content. Platforms: claude_code."} -{"id": "e9afeb1635999367a0db3f227dd0f566920c969e8efce7ab63168d21196e4560", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "podcast-marketing", "description": "When the user wants to plan, create, or market a podcast. Also use when the user mentions \"podcast,\" \"podcast strategy,\" \"podcast SEO,\" \"show notes,\" \"podcast distribution,\" \"Spotify podcast,\" \"Apple Podcasts,\" \"podcast discoverability,\" \"PodcastEpisode schema,\" or \"podcast repurposing.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/podcast/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install podcast-marketing"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "podcast-marketing. When the user wants to plan, create, or market a podcast. Also use when the user mentions \"podcast,\" \"podcast strategy,\" \"podcast SEO,\" \"show notes,\" \"podcast distribution,\" \"Spotify podcast,\" \"Apple Podcasts,\" \"podcast discoverability,\" \"PodcastEpisode schema,\" or \"podcast repurposing.\" Platforms: claude_code."} -{"id": "b8cb6cac052da2fd3234d2e524d7acc63ba79a3d537c5daacf4fd44cf9224535", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "translation", "description": "When the user wants to translate content, create translation workflows, manage terminology, or optimize translation quality. Also use when the user mentions \"translate,\" \"translation,\" \"localization copy,\" \"glossary,\" \"terminology,\" \"style guide translation,\" \"machine translation,\" \"human translation,\" \"TMS,\" or \"multilingual content.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/translation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install translation"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "translation. When the user wants to translate content, create translation workflows, manage terminology, or optimize translation quality. Also use when the user mentions \"translate,\" \"translation,\" \"localization copy,\" \"glossary,\" \"terminology,\" \"style guide translation,\" \"machine translation,\" \"human translation,\" \"TMS,\" or \"multilingual content.\" Platforms: claude_code."} -{"id": "ded5eb8725042142f6f776b8b8c7910b1d405ead51318c55f491f1890b38cd27", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "video-marketing", "description": "When the user wants to plan video marketing, create video scripts, or optimize for short-form or long-form video. Also use when the user mentions \"video marketing,\" \"video script,\" \"short-form video,\" \"long-form video,\" \"TikTok script,\" \"Reels script,\" \"YouTube script,\" \"video hook,\" or \"video content strategy.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/video/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install video-marketing"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "video-marketing. When the user wants to plan video marketing, create video scripts, or optimize for short-form or long-form video. Also use when the user mentions \"video marketing,\" \"video script,\" \"short-form video,\" \"long-form video,\" \"TikTok script,\" \"Reels script,\" \"YouTube script,\" \"video hook,\" or \"video content strategy.\" Platforms: claude_code."} -{"id": "1985ac240fddab135f45ba32919314c94d2617d6764b56270a5ae1c96e16bc99", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "visual-content", "description": "When the user wants to plan, create, or repurpose visual content (images, infographics, social post images) across channels. Also use when the user mentions \"content images,\" \"social media images,\" \"infographic,\" \"visual content,\" \"post image,\" \"image specs,\" \"visual repurposing,\" \"content visuals,\" or \"image for social post.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/content/visual-content/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install visual-content"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "visual-content. When the user wants to plan, create, or repurpose visual content (images, infographics, social post images) across channels. Also use when the user mentions \"content images,\" \"social media images,\" \"infographic,\" \"visual content,\" \"post image,\" \"image specs,\" \"visual repurposing,\" \"content visuals,\" or \"image for social post.\" Platforms: claude_code."} -{"id": "cfc689f57d2c8ca883f810730b3f27dad4c2f23a585ac2873de034cd8b2c2ef0", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "about-page-generator", "description": "When the user wants to create, optimize, or audit About page content. Also use when the user mentions \"about page,\" \"about us,\" \"company story,\" \"our team,\" \"about section,\" \"company overview,\" \"brand story,\" \"team page,\" or \"who we are.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/brand/about/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install about-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "about-page-generator. When the user wants to create, optimize, or audit About page content. Also use when the user mentions \"about page,\" \"about us,\" \"company story,\" \"our team,\" \"about section,\" \"company overview,\" \"brand story,\" \"team page,\" or \"who we are.\" Platforms: claude_code."} -{"id": "34e2da9ee6330b797bd779bfaa4abbf41c269b9eb37d1e03e5c0e08ae9a2dceb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "contact-page-generator", "description": "When the user wants to create, optimize, or audit contact page and forms. Also use when the user mentions \"contact page,\" \"contact form,\" \"get in touch,\" \"support form,\" \"contact us,\" \"reach us,\" \"contact information,\" \"support contact,\" or \"inquiry form.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/brand/contact/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install contact-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "contact-page-generator. When the user wants to create, optimize, or audit contact page and forms. Also use when the user mentions \"contact page,\" \"contact form,\" \"get in touch,\" \"support form,\" \"contact us,\" \"reach us,\" \"contact information,\" \"support contact,\" or \"inquiry form.\" Platforms: claude_code."} -{"id": "0a182d08334f90a4521432c3c9ab1f7412298318ab7fbca128d2af325d564876", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "homepage-generator", "description": "When the user wants to create, optimize, or audit homepage content and structure. Also use when the user mentions \"homepage,\" \"landing page,\" \"main page,\" \"home page,\" \"hero section,\" \"above the fold,\" \"home page design,\" \"landing page optimization,\" \"homepage conversion,\" or \"homepage structure.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/brand/home/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install homepage-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "homepage-generator. When the user wants to create, optimize, or audit homepage content and structure. Also use when the user mentions \"homepage,\" \"landing page,\" \"main page,\" \"home page,\" \"hero section,\" \"above the fold,\" \"home page design,\" \"landing page optimization,\" \"homepage conversion,\" or \"homepage structure.\" Platforms: claude_code."} {"id": "2366c5d768c592a82790e8c20ec8bea96fd2c1b0dc4102f9592b3146c18ce212", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "article-page-generator", "description": "When the user wants to create, optimize, or audit a single article/post page (not the blog index). Also use when the user mentions \"article page,\" \"blog post page,\" \"single post,\" \"post template,\" \"article structure,\" \"post optimization,\" \"competitor article analysis,\" \"optimize based on top-ranking articles,\" \"analyze ranking articles,\" \"optimize article for SEO,\" or \"article schema.\" For writing article body content (intro, body, conclusion), use article-content.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/article/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install article-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "article-page-generator. When the user wants to create, optimize, or audit a single article/post page (not the blog index). Also use when the user mentions \"article page,\" \"blog post page,\" \"single post,\" \"post template,\" \"article structure,\" \"post optimization,\" \"competitor article analysis,\" \"optimize based on top-ranking articles,\" \"analyze ranking articles,\" \"optimize article for SEO,\" or \"article schema.\" For writing article body content (intro, body, conclusion), use article-content. Platforms: claude_code."} -{"id": "5f51a9372b5983f9e40480a6b54fa53e579ca47d9aa58106f7915bcfc8676fb0", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "blog-page-generator", "description": "When the user wants to create, optimize, or audit blog page structure and content. Also use when the user mentions \"blog page,\" \"blog index,\" \"blog layout,\" \"content hub,\" \"blog homepage,\" \"blog listing,\" \"subdomain vs subdirectory,\" \"blog structure,\" or \"blog SEO.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/blog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "blog-page-generator. When the user wants to create, optimize, or audit blog page structure and content. Also use when the user mentions \"blog page,\" \"blog index,\" \"blog layout,\" \"content hub,\" \"blog homepage,\" \"blog listing,\" \"subdomain vs subdirectory,\" \"blog structure,\" or \"blog SEO.\" Platforms: claude_code."} {"id": "69c2e5bcb4c1abb0632698c69df24a128f75bfc5619dc5a6fa67a085e96c472c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "docs-page-generator", "description": "When the user wants to create, optimize, or structure a documentation site. Also use when the user mentions \"docs,\" \"documentation site,\" \"docs subdomain,\" \"docs.yourdomain.com,\" \"help center,\" \"knowledge base,\" \"Getting Started,\" \"API Reference,\" \"user guides,\" or \"tutorials.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docs-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "docs-page-generator. When the user wants to create, optimize, or structure a documentation site. Also use when the user mentions \"docs,\" \"documentation site,\" \"docs subdomain,\" \"docs.yourdomain.com,\" \"help center,\" \"knowledge base,\" \"Getting Started,\" \"API Reference,\" \"user guides,\" or \"tutorials.\" Platforms: claude_code."} -{"id": "197c344f9a8372bcc8e90b383e4739d4be4f51cf1a0b824b5f8897d9f298d394", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "faq-page-generator", "description": "When the user wants to create, optimize, or audit FAQ page content. Also use when the user mentions \"FAQ page,\" \"frequently asked questions,\" \"help page,\" \"Q&A page,\" \"FAQ schema,\" \"FAQ section,\" \"common questions,\" \"FAQ SEO,\" \"accordion FAQ,\" \"People Also Ask,\" \"PAA,\" \"People Also Search For,\" \"PASF,\" \"FAQ rich results,\" or \"FAQ for GEO.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/faq/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install faq-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "faq-page-generator. When the user wants to create, optimize, or audit FAQ page content. Also use when the user mentions \"FAQ page,\" \"frequently asked questions,\" \"help page,\" \"Q&A page,\" \"FAQ schema,\" \"FAQ section,\" \"common questions,\" \"FAQ SEO,\" \"accordion FAQ,\" \"People Also Ask,\" \"PAA,\" \"People Also Search For,\" \"PASF,\" \"FAQ rich results,\" or \"FAQ for GEO.\" Platforms: claude_code."} -{"id": "2ca875a192b89c3ae4757ba93ac64dcc04aa758fc62846520a757596f5e04c20", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "features-page-generator", "description": "When the user wants to create, optimize, or audit features page content. Also use when the user mentions \"features page,\" \"product features,\" \"capabilities,\" \"what it does,\" \"feature list,\" \"feature comparison,\" \"product capabilities,\" or \"features section.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/features/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install features-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "features-page-generator. When the user wants to create, optimize, or audit features page content. Also use when the user mentions \"features page,\" \"product features,\" \"capabilities,\" \"what it does,\" \"feature list,\" \"feature comparison,\" \"product capabilities,\" or \"features section.\" Platforms: claude_code."} -{"id": "42a675a6b4130ed3a85d4eb21d0ae8f1ecc0702c5d82310ad36d5a8eda46be23", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "glossary-page-generator", "description": "When the user wants to create, optimize, or audit glossary page content and structure. Also use when the user mentions \"glossary,\" \"definitions,\" \"terminology,\" \"industry terms,\" \"glossary page,\" \"term definitions,\" \"vocabulary,\" \"glossary SEO,\" or \"definition page.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/glossary/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install glossary-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "glossary-page-generator. When the user wants to create, optimize, or audit glossary page content and structure. Also use when the user mentions \"glossary,\" \"definitions,\" \"terminology,\" \"industry terms,\" \"glossary page,\" \"term definitions,\" \"vocabulary,\" \"glossary SEO,\" or \"definition page.\" Platforms: claude_code."} -{"id": "b9e00071e7883ce7a79e27830106ed102d101c326589c4c62e52a84a55aa22dc", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "resources-page-generator", "description": "When the user wants to create, optimize, or audit resources page or content hub. Also use when the user mentions \"resources page,\" \"resource center,\" \"content hub,\" \"learning center,\" \"resource library,\" \"downloads,\" \"templates,\" \"guides,\" or \"resource hub.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/resources/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install resources-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "resources-page-generator. When the user wants to create, optimize, or audit resources page or content hub. Also use when the user mentions \"resources page,\" \"resource center,\" \"content hub,\" \"learning center,\" \"resource library,\" \"downloads,\" \"templates,\" \"guides,\" or \"resource hub.\" Platforms: claude_code."} -{"id": "09d41007f30fbd012e7a6b73234409fe14a9c0babccdc8011e85fb69b44d7c55", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "template-page-generator", "description": "When the user wants to design template pages\u2014aggregation (gallery/hub) or detail (individual template). Also use when the user mentions \"template page,\" \"template gallery,\" \"template hub,\" \"template detail page,\" \"template marketplace,\" \"programmatic template,\" \"CMS templates,\" \"design templates,\" \"vibe coding templates,\" \"UI templates,\" \"template for users to use,\" or \"template + data pages.\" Covers both SEO (programmatic scale) and user-facing (browse \u2192 use \u2192 customize) template pages.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/template-page/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install template-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "template-page-generator. When the user wants to design template pages\u2014aggregation (gallery/hub) or detail (individual template). Also use when the user mentions \"template page,\" \"template gallery,\" \"template hub,\" \"template detail page,\" \"template marketplace,\" \"programmatic template,\" \"CMS templates,\" \"design templates,\" \"vibe coding templates,\" \"UI templates,\" \"template for users to use,\" or \"template + data pages.\" Covers both SEO (programmatic scale) and user-facing (browse \u2192 use \u2192 customize) template pages. Platforms: claude_code."} {"id": "afcd3f04ccb252496d411b99481274cf357a7f2a2116cb26e6be284045397637", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "tools-page-generator", "description": "When the user wants to create, optimize, or audit free tools pages. Also use when the user mentions \"free tools,\" \"tools page,\" \"toolkit,\" \"free [X] tool,\" \"free [X] calculator,\" \"free [X] checker,\" \"lead magnet tool,\" \"programmatic tools,\" or \"tools hub.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/content/tools/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tools-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "tools-page-generator. When the user wants to create, optimize, or audit free tools pages. Also use when the user mentions \"free tools,\" \"tools page,\" \"toolkit,\" \"free [X] tool,\" \"free [X] calculator,\" \"free [X] checker,\" \"lead magnet tool,\" \"programmatic tools,\" or \"tools hub.\" Platforms: claude_code."} {"id": "8df7c00ecd349d01d649111f7e42917c6c7fef5b2e518e4d5b3c628e75c2aeaa", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "cookie-policy-page-generator", "description": "When the user wants to create or optimize a cookie policy page. Also use when the user mentions \"cookie policy,\" \"cookies,\" \"cookie consent,\" \"GDPR cookies,\" \"cookie banner,\" \"cookie notice,\" \"tracking cookies,\" or \"cookie settings.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/legal/cookie-policy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cookie-policy-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "cookie-policy-page-generator. When the user wants to create or optimize a cookie policy page. Also use when the user mentions \"cookie policy,\" \"cookies,\" \"cookie consent,\" \"GDPR cookies,\" \"cookie banner,\" \"cookie notice,\" \"tracking cookies,\" or \"cookie settings.\" Platforms: claude_code."} -{"id": "f2a0c04b1da87dc0ea6f62e447859c84e1ae31869a7bc0ed808f4245503c3682", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "legal-page-generator", "description": "When the user wants to create, optimize, or structure legal pages (Privacy, Terms, etc.). Also use when the user mentions \"privacy policy,\" \"terms of service,\" \"legal pages,\" \"cookie policy,\" \"terms and conditions,\" \"legal footer,\" \"legal section,\" \"compliance pages,\" or \"legal requirements.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/legal/legal/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install legal-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "legal-page-generator. When the user wants to create, optimize, or structure legal pages (Privacy, Terms, etc.). Also use when the user mentions \"privacy policy,\" \"terms of service,\" \"legal pages,\" \"cookie policy,\" \"terms and conditions,\" \"legal footer,\" \"legal section,\" \"compliance pages,\" or \"legal requirements.\" Platforms: claude_code."} {"id": "f4d5b2c80a8b44935e1cba1b9965947e775b74d396066723bcdb76f03b48e3d4", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "privacy-page-generator", "description": "When the user wants to create, optimize, or structure Privacy Policy page. Also use when the user mentions \"privacy policy,\" \"privacy page,\" \"data protection,\" \"GDPR compliance,\" \"privacy notice,\" \"data privacy,\" \"CCPA,\" \"cookie policy,\" or \"personal data.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/legal/privacy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install privacy-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "privacy-page-generator. When the user wants to create, optimize, or structure Privacy Policy page. Also use when the user mentions \"privacy policy,\" \"privacy page,\" \"data protection,\" \"GDPR compliance,\" \"privacy notice,\" \"data privacy,\" \"CCPA,\" \"cookie policy,\" or \"personal data.\" Platforms: claude_code."} -{"id": "63d9ccbb8b213c8535806cdb5f29d435eeaacc700975b98f0d289e084cd8da81", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "refund-page-generator", "description": "When the user wants to create or optimize a refund or return policy page. Also use when the user mentions \"refund policy,\" \"return policy,\" \"money-back guarantee,\" \"returns and refunds,\" \"refund page,\" \"return process,\" \"refund terms,\" or \"satisfaction guarantee.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/legal/refund/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refund-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "refund-page-generator. When the user wants to create or optimize a refund or return policy page. Also use when the user mentions \"refund policy,\" \"return policy,\" \"money-back guarantee,\" \"returns and refunds,\" \"refund page,\" \"return process,\" \"refund terms,\" or \"satisfaction guarantee.\" Platforms: claude_code."} -{"id": "3310628ff691ed1c9d93578efd5d9a592b2be42e502ce62ae265eec1b3b67383", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "shipping-page-generator", "description": "When the user wants to create or optimize a shipping or delivery information page. Also use when the user mentions \"shipping,\" \"delivery,\" \"shipping policy,\" \"delivery times,\" \"shipping page,\" \"free shipping,\" \"shipping rates,\" \"delivery options,\" or \"shipping info.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/legal/shipping/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install shipping-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "shipping-page-generator. When the user wants to create or optimize a shipping or delivery information page. Also use when the user mentions \"shipping,\" \"delivery,\" \"shipping policy,\" \"delivery times,\" \"shipping page,\" \"free shipping,\" \"shipping rates,\" \"delivery options,\" or \"shipping info.\" Platforms: claude_code."} {"id": "906a8c921537e6a0e7bc4d805fac5c01f3f7f02af5dede56ea7e89207acea7d7", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "terms-page-generator", "description": "When the user wants to create, optimize, or structure Terms of Service page. Also use when the user mentions \"terms of service,\" \"terms and conditions,\" \"terms of use,\" \"user agreement,\" \"ToS,\" \"legal terms,\" \"service agreement,\" or \"terms page.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/legal/terms/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terms-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "terms-page-generator. When the user wants to create, optimize, or structure Terms of Service page. Also use when the user mentions \"terms of service,\" \"terms and conditions,\" \"terms of use,\" \"user agreement,\" \"ToS,\" \"legal terms,\" \"service agreement,\" or \"terms page.\" Platforms: claude_code."} {"id": "17afa8ef707a9645ed98d234572401c29342ed732162bae91e70d3b3b1916fd2", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "affiliate-page-generator", "description": "When the user wants to create, optimize, or audit affiliate program page content. Also use when the user mentions \"affiliate program,\" \"affiliate page,\" \"partner program,\" \"referral program page,\" \"affiliate landing,\" \"partner landing,\" \"commission page,\" or \"affiliate signup.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/affiliate-program/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install affiliate-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "affiliate-page-generator. When the user wants to create, optimize, or audit affiliate program page content. Also use when the user mentions \"affiliate program,\" \"affiliate page,\" \"partner program,\" \"referral program page,\" \"affiliate landing,\" \"partner landing,\" \"commission page,\" or \"affiliate signup.\" Platforms: claude_code."} {"id": "0feb0cebf56984d68cfa926aa5c0cb66b6c774b1683b137c5ee7c9f3817739c6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "alternatives-page-generator", "description": "When the user wants to create, optimize, or audit alternatives or comparison content (page or blog article). Also use when the user mentions \"alternatives page,\" \"alternatives listicle,\" \"X alternatives,\" \"competitor comparison,\" \"vs page,\" \"compare page,\" \"best alternatives to X,\" \"switch from X,\" \"competitor brand traffic,\" \"brand keyword ads,\" or \"intercept competitor search.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/alternatives/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install alternatives-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "alternatives-page-generator. When the user wants to create, optimize, or audit alternatives or comparison content (page or blog article). Also use when the user mentions \"alternatives page,\" \"alternatives listicle,\" \"X alternatives,\" \"competitor comparison,\" \"vs page,\" \"compare page,\" \"best alternatives to X,\" \"switch from X,\" \"competitor brand traffic,\" \"brand keyword ads,\" or \"intercept competitor search.\" Platforms: claude_code."} {"id": "5004df1bd0467bebcb4cb47825d0dc00e68f797642bdba165adcfa370fc64bda", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "category-page-generator", "description": "When the user wants to create, optimize, or audit e-commerce category pages or listing pages. Also use when the user mentions \"category page,\" \"product category,\" \"faceted navigation,\" \"filter URLs,\" \"e-commerce listing,\" \"category SEO,\" \"category structure,\" \"product filters,\" or \"listing page.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/category-pages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install category-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "category-page-generator. When the user wants to create, optimize, or audit e-commerce category pages or listing pages. Also use when the user mentions \"category page,\" \"product category,\" \"faceted navigation,\" \"filter URLs,\" \"e-commerce listing,\" \"category SEO,\" \"category structure,\" \"product filters,\" or \"listing page.\" Platforms: claude_code."} -{"id": "1c1033c9f5b42920730c05f51cbbc86d84baef72ff6234bbca1d61ecdd3864c6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "contest-page-generator", "description": "When the user wants to create, optimize, or audit a giveaway, contest, or promotional campaign page. Also use when the user mentions \"giveaway,\" \"contest,\" \"sweepstakes,\" \"promo,\" \"Gleam,\" \"Woobox,\" or \"viral campaign.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/contest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install contest-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "contest-page-generator. When the user wants to create, optimize, or audit a giveaway, contest, or promotional campaign page. Also use when the user mentions \"giveaway,\" \"contest,\" \"sweepstakes,\" \"promo,\" \"Gleam,\" \"Woobox,\" or \"viral campaign.\" Platforms: claude_code."} -{"id": "02f93af6608e37548ea3aee126ae9f710fe95bea4b03d2db51a75380bed86113", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "customer-stories-page-generator", "description": "When the user wants to create, optimize, or audit customer stories or case study pages. Also use when the user mentions \"case studies,\" \"customer stories,\" \"success stories,\" \"testimonials page,\" \"case study,\" \"customer proof,\" \"social proof page,\" or \"results page.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/customer-stories/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install customer-stories-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "customer-stories-page-generator. When the user wants to create, optimize, or audit customer stories or case study pages. Also use when the user mentions \"case studies,\" \"customer stories,\" \"success stories,\" \"testimonials page,\" \"case study,\" \"customer proof,\" \"social proof page,\" or \"results page.\" Platforms: claude_code."} -{"id": "25885b7317eb8ead5f7ffca702e52d98ef4272cbfaa303c11905af6581a18987", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "download-page-generator", "description": "When the user wants to create, optimize, or audit a download page for desktop or mobile app. Also use when the user mentions \"download page,\" \"app download,\" \"desktop download,\" \"mobile app download,\" \"App Store,\" \"Play Store,\" \"get the app,\" \"install app,\" or \"download CTA.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/download/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install download-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "download-page-generator. When the user wants to create, optimize, or audit a download page for desktop or mobile app. Also use when the user mentions \"download page,\" \"app download,\" \"desktop download,\" \"mobile app download,\" \"App Store,\" \"Play Store,\" \"get the app,\" \"install app,\" or \"download CTA.\" Platforms: claude_code."} -{"id": "bfe9f70cc9a1911f97e16178d58f99bd7d2fb95cb15585555a03717f37eabdd1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "integrations-page-generator", "description": "When the user wants to create, optimize, or audit integrations, plugins, or extensions pages. Also use when the user mentions \"integrations page,\" \"plugins,\" \"extensions,\" \"add-ons,\" \"API integrations,\" \"connect with X,\" or \"marketplace.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/integrations/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install integrations-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "integrations-page-generator. When the user wants to create, optimize, or audit integrations, plugins, or extensions pages. Also use when the user mentions \"integrations page,\" \"plugins,\" \"extensions,\" \"add-ons,\" \"API integrations,\" \"connect with X,\" or \"marketplace.\" Platforms: claude_code."} -{"id": "c3406811390e39b3f37515bfb28630af2703c5eca16896ca8a0b2fd626dfed7a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "landing-page-generator", "description": "When the user wants to create, optimize, or audit campaign landing pages for paid ads or other traffic. Also use when the user mentions \"landing page,\" \"PPC landing page,\" \"SEM landing page,\" \"conversion page,\" \"campaign page,\" \"lead capture page,\" \"landing page optimization,\" \"LP conversion,\" \"single-page funnel,\" or \"squeeze page.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/landing-page/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install landing-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "landing-page-generator. When the user wants to create, optimize, or audit campaign landing pages for paid ads or other traffic. Also use when the user mentions \"landing page,\" \"PPC landing page,\" \"SEM landing page,\" \"conversion page,\" \"campaign page,\" \"lead capture page,\" \"landing page optimization,\" \"LP conversion,\" \"single-page funnel,\" or \"squeeze page.\" Platforms: claude_code."} -{"id": "e860c513c3c951401d52d52890e4a94909fdc14291c97272bfb676f47294129b", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "media-kit-page-generator", "description": "When the user wants to create, optimize, or audit media kit or press page. Also use when the user mentions \"media kit,\" \"press kit,\" \"press page,\" \"press resources,\" \"brand assets,\" \"logo download,\" \"press assets,\" \"media resources,\" or \"brand kit.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/media-kit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install media-kit-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "media-kit-page-generator. When the user wants to create, optimize, or audit media kit or press page. Also use when the user mentions \"media kit,\" \"press kit,\" \"press page,\" \"press resources,\" \"brand assets,\" \"logo download,\" \"press assets,\" \"media resources,\" or \"brand kit.\" Platforms: claude_code."} -{"id": "414facb094ccad77737a41a94bf76350b0822df89e257bd281c71acb1db4f3af", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "migration-page-generator", "description": "When the user wants to create, optimize, or audit migration guides for users switching from competitors. Also use when the user mentions \"migration guide,\" \"migrate from X,\" \"switch to [product],\" \"import from X,\" or \"data migration.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install migration-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "migration-page-generator. When the user wants to create, optimize, or audit migration guides for users switching from competitors. Also use when the user mentions \"migration guide,\" \"migrate from X,\" \"switch to [product],\" \"import from X,\" or \"data migration.\" Platforms: claude_code."} -{"id": "38f21ff22c57294b88f31396163d698b8599a3b2960d03128f001628e366c797", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "press-coverage-page-generator", "description": "When the user wants to create a press coverage page, \"As Seen In\" section, or media mentions aggregation. Also use when the user mentions \"press coverage,\" \"media mentions,\" \"as seen in,\" \"as featured in,\" \"in the news,\" \"press mentions,\" \"media coverage page,\" or \"trusted by publications.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/press-coverage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install press-coverage-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "press-coverage-page-generator. When the user wants to create a press coverage page, \"As Seen In\" section, or media mentions aggregation. Also use when the user mentions \"press coverage,\" \"media mentions,\" \"as seen in,\" \"as featured in,\" \"in the news,\" \"press mentions,\" \"media coverage page,\" or \"trusted by publications.\" Platforms: claude_code."} -{"id": "2f52aa00a9935894044ee0ce38c576a22e663f3ff65412d7e390f9f20e0e0df8", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "pricing-page-generator", "description": "When the user wants to create, optimize, or audit pricing page content and structure. Also use when the user mentions \"pricing page,\" \"pricing table,\" \"plans,\" \"subscription,\" \"pricing plans,\" \"pricing tiers,\" \"pricing comparison,\" \"SaaS pricing,\" \"enterprise pricing,\" \"API pricing,\" \"contact sales,\" \"pricing in nav,\" \"public pricing,\" \"hide pricing,\" or \"pricing objection handling.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/pricing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pricing-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "pricing-page-generator. When the user wants to create, optimize, or audit pricing page content and structure. Also use when the user mentions \"pricing page,\" \"pricing table,\" \"plans,\" \"subscription,\" \"pricing plans,\" \"pricing tiers,\" \"pricing comparison,\" \"SaaS pricing,\" \"enterprise pricing,\" \"API pricing,\" \"contact sales,\" \"pricing in nav,\" \"public pricing,\" \"hide pricing,\" or \"pricing objection handling.\" Platforms: claude_code."} {"id": "449ac336143c82de25cb45768f6f7f3e52dc289ca22dd229d5221258ad94063b", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "products-page-generator", "description": "When the user wants to create, optimize, or audit a product listing or category page. Also use when the user mentions \"product page,\" \"product listing,\" \"shop,\" \"e-commerce products,\" \"product catalog,\" \"product grid,\" \"product cards,\" or \"product overview.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/products/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install products-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "products-page-generator. When the user wants to create, optimize, or audit a product listing or category page. Also use when the user mentions \"product page,\" \"product listing,\" \"shop,\" \"e-commerce products,\" \"product catalog,\" \"product grid,\" \"product cards,\" or \"product overview.\" Platforms: claude_code."} {"id": "01057f70ba3e54fbbf125f42580ee8a1396d5be8e40db763a7710a0cfd53acbb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "services-page-generator", "description": "When the user wants to create, optimize, or audit a services page. Also use when the user mentions \"services page,\" \"what we offer,\" \"service offerings,\" \"consulting services,\" \"service page,\" \"offerings page,\" \"service catalog,\" or \"professional services.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/services/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install services-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "services-page-generator. When the user wants to create, optimize, or audit a services page. Also use when the user mentions \"services page,\" \"what we offer,\" \"service offerings,\" \"consulting services,\" \"service page,\" \"offerings page,\" \"service catalog,\" or \"professional services.\" Platforms: claude_code."} -{"id": "1e005e13674b4bcab9d93dfbfa191964c41dcbe4cc52b74a273dd95b519db34e", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "showcase-page-generator", "description": "When the user wants to create, optimize, or audit a showcase or gallery page for user-generated content. Also use when the user mentions \"showcase,\" \"gallery,\" \"user work,\" \"UGC,\" \"creator showcase,\" \"examples,\" or \"made with [product].\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/showcase/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install showcase-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "showcase-page-generator. When the user wants to create, optimize, or audit a showcase or gallery page for user-generated content. Also use when the user mentions \"showcase,\" \"gallery,\" \"user work,\" \"UGC,\" \"creator showcase,\" \"examples,\" or \"made with [product].\" Platforms: claude_code."} -{"id": "31b7eba23ac72380e96391a5d1dbd88608594e4368de0f9df96f1d9703de0e5f", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "solutions-page-generator", "description": "When the user wants to create, optimize, or audit solutions pages. Also use when the user mentions \"solutions,\" \"solutions page,\" \"by industry,\" \"industry solutions,\" \"by company size,\" \"SMB,\" \"enterprise,\" \"by outcome,\" \"business outcomes,\" or \"how we solve X.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/solutions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solutions-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "solutions-page-generator. When the user wants to create, optimize, or audit solutions pages. Also use when the user mentions \"solutions,\" \"solutions page,\" \"by industry,\" \"industry solutions,\" \"by company size,\" \"SMB,\" \"enterprise,\" \"by outcome,\" \"business outcomes,\" or \"how we solve X.\" Platforms: claude_code."} {"id": "dbdfb9cb1ce94fdf277699541ad1a38f1ffd453562a4c33dd16dbb6369a9265d", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "startups-page-generator", "description": "When the user wants to create, optimize, or audit a startups, education, or special program page. Also use when the user mentions \"startups program,\" \"for startups,\" \"education discount,\" \"student plan,\" \"for students,\" or \"special pricing.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/startups/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install startups-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "startups-page-generator. When the user wants to create, optimize, or audit a startups, education, or special program page. Also use when the user mentions \"startups program,\" \"for startups,\" \"education discount,\" \"student plan,\" \"for students,\" or \"special pricing.\" Platforms: claude_code."} -{"id": "f05492898f09d4227ed9605e91ac42c36bd15efeebfab0f0065b4e33142c10f3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "use-cases-page-generator", "description": "When the user wants to create, optimize, or audit use case pages. Also use when the user mentions \"use cases,\" \"use case page,\" \"for [role],\" \"by persona,\" \"by scenario,\" \"by business goal,\" \"ICP pages,\" or \"audience-specific pages.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/marketing/use-cases/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install use-cases-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "use-cases-page-generator. When the user wants to create, optimize, or audit use case pages. Also use when the user mentions \"use cases,\" \"use case page,\" \"for [role],\" \"by persona,\" \"by scenario,\" \"by business goal,\" \"ICP pages,\" or \"audience-specific pages.\" Platforms: claude_code."} -{"id": "13d2d6ed6d7c1341f6a2322d1cf6576a64fbd181f43b60845bbb7bb4a62c9ac7", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "404-page-generator", "description": "When the user wants to create, optimize, or audit 404 error pages. Also use when the user mentions \"404 page,\" \"404 error,\" \"error page,\" \"page not found,\" \"broken link page,\" \"404 design,\" \"custom 404,\" \"404 redirect,\" \"404 page UX,\" or \"404 recovery.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/404/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install 404-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "404-page-generator. When the user wants to create, optimize, or audit 404 error pages. Also use when the user mentions \"404 page,\" \"404 error,\" \"error page,\" \"page not found,\" \"broken link page,\" \"404 design,\" \"custom 404,\" \"404 redirect,\" \"404 page UX,\" or \"404 recovery.\" Platforms: claude_code."} {"id": "45db391d81c2f41572de4505078ed0d8579b909dc485f5dc8ff346aa73ada29c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "careers-page-generator", "description": "When the user wants to create, optimize, or audit a careers or jobs page. Also use when the user mentions \"careers,\" \"jobs,\" \"hiring,\" \"open positions,\" \"company culture,\" \"careers page,\" \"job listings,\" \"we're hiring,\" \"join our team,\" or \"recruitment page.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/careers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install careers-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "careers-page-generator. When the user wants to create, optimize, or audit a careers or jobs page. Also use when the user mentions \"careers,\" \"jobs,\" \"hiring,\" \"open positions,\" \"company culture,\" \"careers page,\" \"job listings,\" \"we're hiring,\" \"join our team,\" or \"recruitment page.\" Platforms: claude_code."} -{"id": "7c89a444641c0144e6b0464eb4c6f0e75625fac6262c1eeda129db4e14bea590", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "changelog-page-generator", "description": "When the user wants to create, optimize, or structure a changelog or release notes page. Also use when the user mentions \"changelog,\" \"release notes,\" \"what's new,\" \"updates,\" \"product updates,\" \"version history,\" or \"changelog.yourdomain.com.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/changelog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install changelog-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "changelog-page-generator. When the user wants to create, optimize, or structure a changelog or release notes page. Also use when the user mentions \"changelog,\" \"release notes,\" \"what's new,\" \"updates,\" \"product updates,\" \"version history,\" or \"changelog.yourdomain.com.\" Platforms: claude_code."} {"id": "c74c98b0c66037b9cefc6b35f022bde47afa7ff7b4259373591ec04149180930", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "disclosure-page-generator", "description": "When the user wants to create, optimize, or audit an affiliate, sponsor, or paid partnership disclosure page. Also use when the user mentions \"disclosure,\" \"affiliate disclosure,\" \"sponsored content,\" \"FTC disclosure,\" or \"paid partnership.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/disclosure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install disclosure-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "disclosure-page-generator. When the user wants to create, optimize, or audit an affiliate, sponsor, or paid partnership disclosure page. Also use when the user mentions \"disclosure,\" \"affiliate disclosure,\" \"sponsored content,\" \"FTC disclosure,\" or \"paid partnership.\" Platforms: claude_code."} -{"id": "3048a7111ad3e01eee38dc2fbe41d0a7cc2e7ce8256a72335cb07603ab23c8fc", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "feedback-page-generator", "description": "When the user wants to create, optimize, or audit a feedback or roadmap page. Also use when the user mentions \"feedback page,\" \"roadmap,\" \"feature requests,\" \"vote on features,\" \"Canny,\" \"UserVoice,\" or \"product feedback.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/feedback/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install feedback-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "feedback-page-generator. When the user wants to create, optimize, or audit a feedback or roadmap page. Also use when the user mentions \"feedback page,\" \"roadmap,\" \"feature requests,\" \"vote on features,\" \"Canny,\" \"UserVoice,\" or \"product feedback.\" Platforms: claude_code."} -{"id": "3b87c221731f96c905ada000867756ecaf90cd94a64c1e729a119eb9c629436a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "signup-login-page-generator", "description": "When the user wants to create, optimize, or audit signup and login pages. Also use when the user mentions \"signup page,\" \"login page,\" \"registration page,\" \"auth page,\" \"sign up form,\" \"create account,\" \"student discount at signup,\" or \"auth subdomain.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/signup-login/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install signup-login-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "signup-login-page-generator. When the user wants to create, optimize, or audit signup and login pages. Also use when the user mentions \"signup page,\" \"login page,\" \"registration page,\" \"auth page,\" \"sign up form,\" \"create account,\" \"student discount at signup,\" or \"auth subdomain.\" Platforms: claude_code."} {"id": "9223ad87953f7e4fe1dc1e8abd517a5ba1428aa8b4755b751e656a558db8a9bc", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "status-page-generator", "description": "When the user wants to create, optimize, or structure a status page. Also use when the user mentions \"status page,\" \"status.yourdomain.com,\" \"uptime,\" \"service health,\" \"incident page,\" or \"system status.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/pages/utility/status/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install status-page-generator"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "status-page-generator. When the user wants to create, optimize, or structure a status page. Also use when the user mentions \"status page,\" \"status.yourdomain.com,\" \"uptime,\" \"service health,\" \"incident page,\" or \"system status.\" Platforms: claude_code."} -{"id": "c9c2665f4c4e89134cb6801a27af39981de7ec963c475f053b511ff144db8c3f", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "app-ads", "description": "When the user wants to run app install ads, user acquisition (UA), or promote mobile apps. Also use when the user mentions \"app ads,\" \"app install ads,\" \"UA,\" \"user acquisition,\" \"Google App Campaigns,\" \"Apple Search Ads,\" \"ASA,\" \"UAC,\" \"App Store ads,\" \"Play Store ads,\" \"CPI,\" or \"app promotion.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/formats/app-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install app-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "app-ads. When the user wants to run app install ads, user acquisition (UA), or promote mobile apps. Also use when the user mentions \"app ads,\" \"app install ads,\" \"UA,\" \"user acquisition,\" \"Google App Campaigns,\" \"Apple Search Ads,\" \"ASA,\" \"UAC,\" \"App Store ads,\" \"Play Store ads,\" \"CPI,\" or \"app promotion.\" Platforms: claude_code."} -{"id": "0055f21baa72b10073bf08bfec5ffbdc1ceb1915ec8ec481a0f4ae94479352ee", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "ctv-ads", "description": "When the user wants to run CTV, OTT, or streaming TV ads. Also use when the user mentions \"CTV ads,\" \"connected TV,\" \"OTT advertising,\" \"streaming ads,\" \"TV ads,\" \"Hulu ads,\" \"Roku ads,\" \"YouTube TV ads,\" or \"programmatic TV.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/formats/ctv-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ctv-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "ctv-ads. When the user wants to run CTV, OTT, or streaming TV ads. Also use when the user mentions \"CTV ads,\" \"connected TV,\" \"OTT advertising,\" \"streaming ads,\" \"TV ads,\" \"Hulu ads,\" \"Roku ads,\" \"YouTube TV ads,\" or \"programmatic TV.\" Platforms: claude_code."} {"id": "7fe6db4311f3a394054719afba317c683d6d41d48e189720a22d6853a7a09e55", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "directory-listing-ads", "description": "When the user wants to run paid ads within directories or marketplaces. Also use when the user mentions \"Taaft ads,\" \"Shopify App Store ads,\" \"G2 sponsored,\" \"Capterra ads,\" \"directory ads,\" \"marketplace ads,\" \"paid listing,\" \"sponsored listing,\" or \"directory promotion.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/formats/directory-listing-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install directory-listing-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "directory-listing-ads. When the user wants to run paid ads within directories or marketplaces. Also use when the user mentions \"Taaft ads,\" \"Shopify App Store ads,\" \"G2 sponsored,\" \"Capterra ads,\" \"directory ads,\" \"marketplace ads,\" \"paid listing,\" \"sponsored listing,\" or \"directory promotion.\" Platforms: claude_code."} -{"id": "f7f57593972c90945672bd8f3b289955a0d3c200b39eedada52f0b2e11473e21", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "display-ads", "description": "When the user wants to run display, banner, or ad network campaigns. Also use when the user mentions \"display ads,\" \"banner ads,\" \"ad network,\" \"ad alliance,\" \"programmatic display,\" \"native ads,\" or \"retargeting display.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/formats/display-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install display-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "display-ads. When the user wants to run display, banner, or ad network campaigns. Also use when the user mentions \"display ads,\" \"banner ads,\" \"ad network,\" \"ad alliance,\" \"programmatic display,\" \"native ads,\" or \"retargeting display.\" Platforms: claude_code."} {"id": "bcd4bed91242b9082e43b026bfe5d165288e7e7ab1bd412c49bf1b55f58a5055", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "native-ads", "description": "When the user wants to run native ads on Taboola, Outbrain, or similar platforms. Also use when the user mentions \"native ads,\" \"Taboola,\" \"Outbrain,\" \"content recommendation,\" \"sponsored content,\" or \"in-feed ads.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/formats/native-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install native-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "native-ads. When the user wants to run native ads on Taboola, Outbrain, or similar platforms. Also use when the user mentions \"native ads,\" \"Taboola,\" \"Outbrain,\" \"content recommendation,\" \"sponsored content,\" or \"in-feed ads.\" Platforms: claude_code."} -{"id": "4d35e98b52213f7c8e44b21dbb82cca3f7c8d4500f0357df9fbf5e6284600d92", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "google-ads", "description": "When the user wants to set up, optimize, or manage Google Ads campaigns. Also use when the user mentions \"Google Ads,\" \"Google Search Ads,\" \"PPC,\" \"SEM,\" \"PMF testing with ads,\" \"test product-market fit,\" \"Responsive Search Ads,\" \"RSA,\" \"Performance Max,\" \"Quality Score,\" \"keyword bidding,\" or \"Google Display/YouTube ads.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/google-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install google-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "google-ads. When the user wants to set up, optimize, or manage Google Ads campaigns. Also use when the user mentions \"Google Ads,\" \"Google Search Ads,\" \"PPC,\" \"SEM,\" \"PMF testing with ads,\" \"test product-market fit,\" \"Responsive Search Ads,\" \"RSA,\" \"Performance Max,\" \"Quality Score,\" \"keyword bidding,\" or \"Google Display/YouTube ads.\" Platforms: claude_code."} -{"id": "51c5bd5405f4211cb9a5c9af9fe83e061031631f0036e566c2717b79f4d5b831", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "linkedin-ads", "description": "When the user wants to set up, optimize, or manage LinkedIn Ads. Also use when the user mentions \"LinkedIn Ads,\" \"LinkedIn Campaign Manager,\" \"Sponsored Content,\" \"LinkedIn Lead Gen Forms,\" \"job title targeting,\" \"company targeting,\" or \"B2B paid ads.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/linkedin-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install linkedin-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "linkedin-ads. When the user wants to set up, optimize, or manage LinkedIn Ads. Also use when the user mentions \"LinkedIn Ads,\" \"LinkedIn Campaign Manager,\" \"Sponsored Content,\" \"LinkedIn Lead Gen Forms,\" \"job title targeting,\" \"company targeting,\" or \"B2B paid ads.\" Platforms: claude_code."} -{"id": "76b59e6d9ddc0cf0cb16ee384a18f34ebb8eebcb12ec2723bea7055f198bd6cc", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "meta-ads", "description": "When the user wants to set up, optimize, or manage Meta (Facebook/Instagram) Ads. Also use when the user mentions \"Meta Ads,\" \"Facebook Ads,\" \"Instagram Ads,\" \"Meta Pixel,\" \"Conversions API,\" \"Advantage+,\" \"lookalike audience,\" or \"Meta retargeting.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/meta-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install meta-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "meta-ads. When the user wants to set up, optimize, or manage Meta (Facebook/Instagram) Ads. Also use when the user mentions \"Meta Ads,\" \"Facebook Ads,\" \"Instagram Ads,\" \"Meta Pixel,\" \"Conversions API,\" \"Advantage+,\" \"lookalike audience,\" or \"Meta retargeting.\" Platforms: claude_code."} {"id": "01654f551d6351bb7778e2108157ce9d24bf195ef068efd3f76554557c8ce084", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "reddit-ads", "description": "When the user wants to set up, optimize, or manage Reddit Ads. Also use when the user mentions \"Reddit Ads,\" \"Promoted Posts,\" \"subreddit targeting,\" \"Reddit advertising,\" or \"Reddit communities.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/reddit-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reddit-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "reddit-ads. When the user wants to set up, optimize, or manage Reddit Ads. Also use when the user mentions \"Reddit Ads,\" \"Promoted Posts,\" \"subreddit targeting,\" \"Reddit advertising,\" or \"Reddit communities.\" Platforms: claude_code."} -{"id": "374cea00b6245f6c5909b9af8a23a78723548188966d1ab96087b5020cdf82ff", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "tiktok-ads", "description": "When the user wants to set up, optimize, or manage TikTok Ads. Also use when the user mentions \"TikTok Ads,\" \"TikTok for Business,\" \"TikTok Pixel,\" \"Events API,\" \"TikTok Spark Ads,\" or \"TikTok video ads.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/tiktok-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tiktok-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "tiktok-ads. When the user wants to set up, optimize, or manage TikTok Ads. Also use when the user mentions \"TikTok Ads,\" \"TikTok for Business,\" \"TikTok Pixel,\" \"Events API,\" \"TikTok Spark Ads,\" or \"TikTok video ads.\" Platforms: claude_code."} -{"id": "4d9afbe42d7f7dfaedc5485b46735dbc0c436bc318edc5abf0b44b068ea6fb67", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "youtube-ads", "description": "When the user wants to run YouTube ads, set up TrueView or Bumper campaigns, or optimize video ad creative. Also use when the user mentions \"YouTube ads,\" \"TrueView,\" \"Bumper ads,\" \"YouTube Discovery,\" \"video ads,\" \"YouTube campaign,\" or \"in-feed ads.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/paid-ads/platforms/youtube-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-ads"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "youtube-ads. When the user wants to run YouTube ads, set up TrueView or Bumper campaigns, or optimize video ad creative. Also use when the user mentions \"YouTube ads,\" \"TrueView,\" \"Bumper ads,\" \"YouTube Discovery,\" \"video ads,\" \"YouTube campaign,\" or \"in-feed ads.\" Platforms: claude_code."} -{"id": "5b67141470aa26e86109f4df6e99c55d68d6f9312b4295d5821fad9e755e4c7c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "grokipedia-recommendations", "description": "When the user wants to add recommendations, links, or content to Grokipedia. Also use when the user mentions \"Grokipedia,\" \"GEO wiki,\" \"AI encyclopedia,\" \"suggest Grokipedia article,\" \"Grokipedia citation,\" \"Grokipedia listing,\" \"AI search citation,\" \"GEO visibility,\" or \"Grokipedia optimization.\" For parasite SEO strategy, use parasite-seo.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/grokipedia/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install grokipedia-recommendations"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "grokipedia-recommendations. When the user wants to add recommendations, links, or content to Grokipedia. Also use when the user mentions \"Grokipedia,\" \"GEO wiki,\" \"AI encyclopedia,\" \"suggest Grokipedia article,\" \"Grokipedia citation,\" \"Grokipedia listing,\" \"AI search citation,\" \"GEO visibility,\" or \"Grokipedia optimization.\" For parasite SEO strategy, use parasite-seo. Platforms: claude_code."} {"id": "4b45182776cbbec68a0ca3d3f242370c62bff17f79a48854a5e6cc0ec6778924", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "linkedin-posts", "description": "When the user wants to create LinkedIn post copy or optimize for LinkedIn. Also use when the user mentions \"LinkedIn post,\" \"LinkedIn article,\" \"professional post,\" \"post to LinkedIn,\" \"LinkedIn content,\" \"LinkedIn copy,\" \"B2B LinkedIn,\" \"LinkedIn engagement,\" or \"LinkedIn marketing.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/linkedin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install linkedin-posts"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "linkedin-posts. When the user wants to create LinkedIn post copy or optimize for LinkedIn. Also use when the user mentions \"LinkedIn post,\" \"LinkedIn article,\" \"professional post,\" \"post to LinkedIn,\" \"LinkedIn content,\" \"LinkedIn copy,\" \"B2B LinkedIn,\" \"LinkedIn engagement,\" or \"LinkedIn marketing.\" Platforms: claude_code."} -{"id": "352a3b1340971920170d4b316771fdbe6b60481c201d75bca3fed50d97b97ff2", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "medium-posts", "description": "When the user wants to publish on Medium for parasite SEO, GEO, or content distribution. Also use when the user mentions \"Medium,\" \"Medium article,\" \"parasite SEO,\" \"Medium publishing,\" \"canonical Medium,\" or \"publish on Medium.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/medium/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install medium-posts"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "medium-posts. When the user wants to publish on Medium for parasite SEO, GEO, or content distribution. Also use when the user mentions \"Medium,\" \"Medium article,\" \"parasite SEO,\" \"Medium publishing,\" \"canonical Medium,\" or \"publish on Medium.\" Platforms: claude_code."} -{"id": "a9c9a08237d3f351536e9a3a12bb9670e0dc2b75937c7980e89fadd4360b70b4", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "pinterest-posts", "description": "When the user wants to create Pinterest Pins, optimize Pin descriptions, or grow Pinterest presence. Also use when the user mentions \"Pinterest,\" \"Pin,\" \"Pinterest SEO,\" \"Pinterest description,\" \"Pinterest board,\" or \"Pinterest marketing.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/pinterest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pinterest-posts"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "pinterest-posts. When the user wants to create Pinterest Pins, optimize Pin descriptions, or grow Pinterest presence. Also use when the user mentions \"Pinterest,\" \"Pin,\" \"Pinterest SEO,\" \"Pinterest description,\" \"Pinterest board,\" or \"Pinterest marketing.\" Platforms: claude_code."} -{"id": "e07a97b73234ab3eaca91a737b4e4c5d5779427ebc70983f5cd86b4bc6c25507", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "reddit-posts", "description": "When the user wants to create Reddit post copy, comments, or optimize for Reddit. Also use when the user mentions \"Reddit post,\" \"subreddit,\" \"r/,\" \"Reddit marketing,\" \"post to Reddit,\" \"Reddit thread,\" \"Reddit comment,\" \"Reddit copy,\" \"Reddit content,\" or \"Reddit engagement.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/reddit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reddit-posts"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "reddit-posts. When the user wants to create Reddit post copy, comments, or optimize for Reddit. Also use when the user mentions \"Reddit post,\" \"subreddit,\" \"r/,\" \"Reddit marketing,\" \"post to Reddit,\" \"Reddit thread,\" \"Reddit comment,\" \"Reddit copy,\" \"Reddit content,\" or \"Reddit engagement.\" Platforms: claude_code."} -{"id": "fa397f4c702c4d02597427ea52618688c2471d0a47a1feed6a5ea4b31e1e5682", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "tiktok-captions", "description": "When the user wants to create TikTok video captions, scripts, or optimize for TikTok. Also use when the user mentions \"TikTok post,\" \"TikTok caption,\" \"TikTok video,\" \"post to TikTok,\" \"TikTok script,\" \"TikTok content,\" \"TikTok copy,\" \"TikTok hashtags,\" or \"TikTok marketing.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/tiktok/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tiktok-captions"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "tiktok-captions. When the user wants to create TikTok video captions, scripts, or optimize for TikTok. Also use when the user mentions \"TikTok post,\" \"TikTok caption,\" \"TikTok video,\" \"post to TikTok,\" \"TikTok script,\" \"TikTok content,\" \"TikTok copy,\" \"TikTok hashtags,\" or \"TikTok marketing.\" Platforms: claude_code."} -{"id": "8a75e209cb0114769805d52fbf905f48bf4fd25f598e6f06e8b80652e5f98308", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "twitter-x-posts", "description": "When the user wants to create X (Twitter) post copy, threads, or optimize for X platform. Also use when the user mentions \"X post,\" \"X thread,\" \"Twitter post,\" \"Twitter thread,\" \"tweet,\" \"tweet copy,\" \"thread,\" \"X marketing,\" \"X content,\" \"post to X,\" \"create X post,\" or \"X post copy.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/x/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install twitter-x-posts"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "twitter-x-posts. When the user wants to create X (Twitter) post copy, threads, or optimize for X platform. Also use when the user mentions \"X post,\" \"X thread,\" \"Twitter post,\" \"Twitter thread,\" \"tweet,\" \"tweet copy,\" \"thread,\" \"X marketing,\" \"X content,\" \"post to X,\" \"create X post,\" or \"X post copy.\" Platforms: claude_code."} -{"id": "97329589b6c8632946e0f598ebaec72511637bf8edfe2453bd6c63f049116f9c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "youtube-seo", "description": "When the user wants to optimize YouTube videos for search, create video descriptions, or improve channel visibility. Also use when the user mentions \"YouTube SEO,\" \"YouTube description,\" \"YouTube tags,\" \"YouTube thumbnail,\" \"YouTube title,\" \"YouTube channel,\" or \"video SEO.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/platforms/youtube/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-seo"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "youtube-seo. When the user wants to optimize YouTube videos for search, create video descriptions, or improve channel visibility. Also use when the user mentions \"YouTube SEO,\" \"YouTube description,\" \"YouTube tags,\" \"YouTube thumbnail,\" \"YouTube title,\" \"YouTube channel,\" or \"video SEO.\" Platforms: claude_code."} -{"id": "80a05f63d0b3d43785ef93b90cd6692f4ce75b534bdd83796001f1dc10f5440e", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "competitor-research", "description": "When the user wants to analyze competitors for SEO, content, backlinks, or positioning. Also use when the user mentions \"competitor analysis,\" \"competitor research,\" \"competitor keywords,\" \"competitor backlinks,\" \"link gap,\" \"content gap,\" \"competitor content,\" \"competitive analysis,\" or \"competitor comparison.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/competitor-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install competitor-research"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "competitor-research. When the user wants to analyze competitors for SEO, content, backlinks, or positioning. Also use when the user mentions \"competitor analysis,\" \"competitor research,\" \"competitor keywords,\" \"competitor backlinks,\" \"link gap,\" \"content gap,\" \"competitor content,\" \"competitive analysis,\" or \"competitor comparison.\" Platforms: claude_code."} -{"id": "6e142ea18541190529f7f5ec4fb082ba0b456a656b166913bd034035715cf44d", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "content-optimization", "description": "When the user wants to optimize content for SEO\u2014word count, H2 keywords, keyword density, multimedia, tables, lists. Also use when the user mentions \"content length,\" \"word count,\" \"keyword stuffing,\" \"H2 keywords,\" \"keyword density,\" \"tables,\" \"bullet points,\" or \"content structure.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/content-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-optimization"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "content-optimization. When the user wants to optimize content for SEO\u2014word count, H2 keywords, keyword density, multimedia, tables, lists. Also use when the user mentions \"content length,\" \"word count,\" \"keyword stuffing,\" \"H2 keywords,\" \"keyword density,\" \"tables,\" \"bullet points,\" or \"content structure.\" Platforms: claude_code."} -{"id": "13d6e090e7093dd5f18f762ff1675dc8a345a8eda0e63af7975f86dc676771b4", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "content-strategy", "description": "When the user wants to plan content for SEO, create content calendar, or build topic clusters. Also use when the user mentions \"content strategy,\" \"content plan,\" \"topic clusters,\" \"pillar content,\" \"pillar page,\" \"cluster articles,\" \"editorial calendar,\" \"content hub,\" \"content planning,\" \"content clusters,\" \"topic cluster strategy,\" \"content strategy for SEO,\" or \"content calendar.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/content-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "content-strategy. When the user wants to plan content for SEO, create content calendar, or build topic clusters. Also use when the user mentions \"content strategy,\" \"content plan,\" \"topic clusters,\" \"pillar content,\" \"pillar page,\" \"cluster articles,\" \"editorial calendar,\" \"content hub,\" \"content planning,\" \"content clusters,\" \"topic cluster strategy,\" \"content strategy for SEO,\" or \"content calendar.\" Platforms: claude_code."} -{"id": "171e42cc46e2d0dc7c0b1ef19afef16aaff3fa25fca70a127556125df435bba3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "eeat-signals", "description": "When the user wants to improve E-E-A-T, add trust signals, or optimize for expertise and authority. Also use when the user mentions \"E-E-A-T,\" \"E-E-A-T signals,\" \"experience expertise authority trust,\" \"author bio,\" \"YMYL,\" \"trust signals,\" \"expertise signals,\" \"authority signals,\" \"citations,\" \"references,\" or \"credibility.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/eeat-signals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install eeat-signals"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "eeat-signals. When the user wants to improve E-E-A-T, add trust signals, or optimize for expertise and authority. Also use when the user mentions \"E-E-A-T,\" \"E-E-A-T signals,\" \"experience expertise authority trust,\" \"author bio,\" \"YMYL,\" \"trust signals,\" \"expertise signals,\" \"authority signals,\" \"citations,\" \"references,\" or \"credibility.\" Platforms: claude_code."} -{"id": "1c44aeb26730c5e51debd030d77b0e5b44f9ea105d14e5bd102b5777f50c08d6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "keyword-research", "description": "When the user wants to research keywords, find target keywords, or analyze search intent. Also use when the user mentions \"keyword research,\" \"keyword tool,\" \"target keywords,\" \"search volume,\" \"search intent,\" \"keyword difficulty,\" \"topical map,\" \"keyword clustering,\" \"People Also Ask,\" \"Google autocomplete,\" \"autocomplete keywords,\" or \"alphabet method.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/content/keyword-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install keyword-research"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "keyword-research. When the user wants to research keywords, find target keywords, or analyze search intent. Also use when the user mentions \"keyword research,\" \"keyword tool,\" \"target keywords,\" \"search volume,\" \"search intent,\" \"keyword difficulty,\" \"topical map,\" \"keyword clustering,\" \"People Also Ask,\" \"Google autocomplete,\" \"autocomplete keywords,\" or \"alphabet method.\" Platforms: claude_code."} -{"id": "277bd4467033e3ef03544ab80cdcbdfc6cbb720c891bb6b1c1099a8fff3dc32b", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "entity-seo", "description": "When the user wants to optimize for entity recognition, Knowledge Graph, or entity-based SEO. Also use when the user mentions \"entity SEO,\" \"entity optimization,\" \"Knowledge Graph,\" \"Knowledge Panel,\" \"entity signals,\" \"brand entity,\" \"entity linking,\" \"entity relationships,\" or \"entity-first content.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/entity-seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install entity-seo"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "entity-seo. When the user wants to optimize for entity recognition, Knowledge Graph, or entity-based SEO. Also use when the user mentions \"entity SEO,\" \"entity optimization,\" \"Knowledge Graph,\" \"Knowledge Panel,\" \"entity signals,\" \"brand entity,\" \"entity linking,\" \"entity relationships,\" or \"entity-first content.\" Platforms: claude_code."} -{"id": "25fa9ac4b653fe46ee301f13586f4bb722c5f24ed950ba7e60e6559e376c47fb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "local-seo", "description": "When the user wants to optimize for local search, set up Google Business Profile, or build local citations. Also use when the user mentions \"local SEO,\" \"Google Business Profile,\" \"Google Maps,\" \"NAP,\" \"citations,\" \"local search,\" \"local business,\" or \"service area.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/local/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install local-seo"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "local-seo. When the user wants to optimize for local search, set up Google Business Profile, or build local citations. Also use when the user mentions \"local SEO,\" \"Google Business Profile,\" \"Google Maps,\" \"NAP,\" \"citations,\" \"local search,\" \"local business,\" or \"service area.\" Platforms: claude_code."} -{"id": "be9df10dd677fea3f4f4c2b7ac79d9a6b7d526ada19e0a066b87d0f2882454da", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "backlink-analysis", "description": "When the user wants to analyze backlinks, audit link profile, or identify link issues. Also use when the user mentions \"backlink analysis,\" \"backlink audit,\" \"referring domains,\" \"toxic links,\" \"link profile,\" or \"disavow file.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/off-page/backlink-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install backlink-analysis"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "backlink-analysis. When the user wants to analyze backlinks, audit link profile, or identify link issues. Also use when the user mentions \"backlink analysis,\" \"backlink audit,\" \"referring domains,\" \"toxic links,\" \"link profile,\" or \"disavow file.\" Platforms: claude_code."} -{"id": "fcc62f270df6a2bbf017aeb62a4533a3b954f0f1dcf3c290cc8e73e3376a9fd1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "link-building", "description": "When the user wants to build backlinks, acquire links, or improve off-page SEO. Also use when the user mentions \"link building,\" \"backlinks,\" \"off-page SEO,\" \"link acquisition,\" \"outreach,\" \"guest posting,\" \"broken link building,\" \"link outreach,\" \"acquire backlinks,\" \"how to build backlinks,\" or \"link building strategy.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/off-page/link-building/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install link-building"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "link-building. When the user wants to build backlinks, acquire links, or improve off-page SEO. Also use when the user mentions \"link building,\" \"backlinks,\" \"off-page SEO,\" \"link acquisition,\" \"outreach,\" \"guest posting,\" \"broken link building,\" \"link outreach,\" \"acquire backlinks,\" \"how to build backlinks,\" or \"link building strategy.\" Platforms: claude_code."} -{"id": "76b31825f6d83a7fea84415051d48b906b8891e105b1edf54478fa9f4e286f35", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "meta-description", "description": "When the user wants to optimize the meta description or meta tag description. Also use when the user mentions \"meta description,\" \"meta desc,\" \"page description,\" \"SEO description,\" \"search snippet,\" \"SERP description,\" \"description tag,\" \"snippet for search,\" \"meta description length,\" \"rewrite meta description,\" or \"description not showing.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/description/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install meta-description"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "meta-description. When the user wants to optimize the meta description or meta tag description. Also use when the user mentions \"meta description,\" \"meta desc,\" \"page description,\" \"SEO description,\" \"search snippet,\" \"SERP description,\" \"description tag,\" \"snippet for search,\" \"meta description length,\" \"rewrite meta description,\" or \"description not showing.\" Platforms: claude_code."} {"id": "7831f9f1b50359227323d89ec086d5e7fe1585b0ff834a44d1b057c119d69bbf", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "featured-snippet", "description": "When the user wants to optimize for Featured Snippets, Position Zero, or snippet extraction. Also use when the user mentions \"featured snippet,\" \"position zero,\" \"snippet optimization,\" \"answer box,\" \"definition box,\" \"list snippet,\" \"table snippet,\" \"paragraph snippet,\" \"PAA optimization,\" or \"win position zero.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/featured-snippet/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install featured-snippet"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "featured-snippet. When the user wants to optimize for Featured Snippets, Position Zero, or snippet extraction. Also use when the user mentions \"featured snippet,\" \"position zero,\" \"snippet optimization,\" \"answer box,\" \"definition box,\" \"list snippet,\" \"table snippet,\" \"paragraph snippet,\" \"PAA optimization,\" or \"win position zero.\" Platforms: claude_code."} -{"id": "5f740eefaae83287d822894d69a5ebd417b9701ec2a9d46b1704af40996b09a1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "heading-structure", "description": "When the user wants to optimize heading structure (H1-H6), fix heading hierarchy, or improve content structure. Also use when the user mentions \"H1,\" \"heading,\" \"heading hierarchy,\" \"content structure,\" \"H2,\" \"H3,\" \"heading tags,\" \"heading SEO,\" \"multiple H1,\" or \"heading structure.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/heading/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install heading-structure"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "heading-structure. When the user wants to optimize heading structure (H1-H6), fix heading hierarchy, or improve content structure. Also use when the user mentions \"H1,\" \"heading,\" \"heading hierarchy,\" \"content structure,\" \"H2,\" \"H3,\" \"heading tags,\" \"heading SEO,\" \"multiple H1,\" or \"heading structure.\" Platforms: claude_code."} -{"id": "3030567044fa97a87bd589baaef9ba3b3cd07572902ca80ef1db2f7ddfda131c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "image-optimization", "description": "When the user wants to optimize images for search engines and performance. Also use when the user mentions \"image SEO,\" \"alt text,\" \"image captions,\" \"figcaption,\" \"image optimization,\" \"WebP,\" \"lazy loading,\" \"LCP,\" \"image sitemap,\" \"responsive images,\" \"srcset,\" \"image format,\" or \"hero image optimization.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/image-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install image-optimization"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "image-optimization. When the user wants to optimize images for search engines and performance. Also use when the user mentions \"image SEO,\" \"alt text,\" \"image captions,\" \"figcaption,\" \"image optimization,\" \"WebP,\" \"lazy loading,\" \"LCP,\" \"image sitemap,\" \"responsive images,\" \"srcset,\" \"image format,\" or \"hero image optimization.\" Platforms: claude_code."} {"id": "3ad8ed32b764f98a5f7a906c8763042762efad378e1aec8a049a35a0d42e3973", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "internal-links", "description": "When the user wants to optimize internal linking, fix orphan pages, or improve link structure. Also use when the user mentions \"internal links,\" \"internal linking,\" \"anchor text,\" \"link equity,\" \"internal linking strategy,\" or \"orphan pages.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/internal-links/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install internal-links"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "internal-links. When the user wants to optimize internal linking, fix orphan pages, or improve link structure. Also use when the user mentions \"internal links,\" \"internal linking,\" \"anchor text,\" \"link equity,\" \"internal linking strategy,\" or \"orphan pages.\" Platforms: claude_code."} -{"id": "d0c9b35cc6e7339ee988cbd52ecfce89bf608f7bf858c18fad8cb266cad48b9d", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "page-metadata", "description": "When the user wants to optimize meta tags other than title, description, Open Graph, or Twitter Cards. Also use when the user mentions \"hreflang,\" \"meta robots,\" \"viewport,\" \"charset,\" \"canonical meta,\" \"other meta tags,\" \"meta robots noindex,\" \"meta robots nofollow,\" \"hreflang tags,\" \"viewport meta,\" or \"meta charset.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/metadata/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install page-metadata"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "page-metadata. When the user wants to optimize meta tags other than title, description, Open Graph, or Twitter Cards. Also use when the user mentions \"hreflang,\" \"meta robots,\" \"viewport,\" \"charset,\" \"canonical meta,\" \"other meta tags,\" \"meta robots noindex,\" \"meta robots nofollow,\" \"hreflang tags,\" \"viewport meta,\" or \"meta charset.\" Platforms: claude_code."} -{"id": "2122acff15e7bfac71ad0a92c7d8b76dffea6e1022059eb3a8faf12c6b00c151", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "open-graph", "description": "When the user wants to add or optimize Open Graph metadata for social sharing. Also use when the user mentions \"Open Graph,\" \"og:tags,\" \"og:title,\" \"og:image,\" \"og:description,\" \"Facebook preview,\" \"LinkedIn preview,\" or \"social share preview.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/open-graph/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install open-graph"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "open-graph. When the user wants to add or optimize Open Graph metadata for social sharing. Also use when the user mentions \"Open Graph,\" \"og:tags,\" \"og:title,\" \"og:image,\" \"og:description,\" \"Facebook preview,\" \"LinkedIn preview,\" or \"social share preview.\" Platforms: claude_code."} {"id": "121050372d98e1ef60a5590d348c3d6d38c6a5863a2adae7cd7d01d9cd2056c9", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "schema-markup", "description": "When the user wants to add or optimize structured data (Schema.org, JSON-LD). Also use when the user mentions \"schema,\" \"structured data,\" \"JSON-LD,\" \"rich results,\" \"rich snippets,\" \"Google rich snippets,\" \"featured snippet schema,\" \"add schema to page,\" \"missing structured data,\" \"schema validation error,\" \"Schema Markup Validator,\" \"Google Rich Results Test,\" \"FAQ schema,\" \"Article schema,\" \"Organization schema,\" \"JobPosting,\" \"HowTo,\" \"Event,\" \"SoftwareApplication,\" \"BreadcrumbList,\" \"WebSite,\" \"Recipe,\" \"Product,\" \"Dataset,\" or \"GEO.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/schema/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install schema-markup"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "schema-markup. When the user wants to add or optimize structured data (Schema.org, JSON-LD). Also use when the user mentions \"schema,\" \"structured data,\" \"JSON-LD,\" \"rich results,\" \"rich snippets,\" \"Google rich snippets,\" \"featured snippet schema,\" \"add schema to page,\" \"missing structured data,\" \"schema validation error,\" \"Schema Markup Validator,\" \"Google Rich Results Test,\" \"FAQ schema,\" \"Article schema,\" \"Organization schema,\" \"JobPosting,\" \"HowTo,\" \"Event,\" \"SoftwareApplication,\" \"BreadcrumbList,\" \"WebSite,\" \"Recipe,\" \"Product,\" \"Dataset,\" or \"GEO.\" Platforms: claude_code."} {"id": "a981249ab0fddd53982001614f6f9f4eb9c255cb2e54f6ca6782d57e53200348", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "serp-features", "description": "When the user wants to understand or optimize for SERP features. Also use when the user mentions \"SERP,\" \"SERP features,\" \"search result features,\" \"People Also Ask,\" \"PAA,\" \"sitelinks,\" \"knowledge panel,\" \"local pack,\" \"rich results,\" \"zero-click,\" \"SERP types,\" \"AI Overviews,\" \"Bing Copilot,\" \"Yandex AI,\" or \"schema for SERP\" (schema and SERP features are strongly related).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/serp-features/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install serp-features"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "serp-features. When the user wants to understand or optimize for SERP features. Also use when the user mentions \"SERP,\" \"SERP features,\" \"search result features,\" \"People Also Ask,\" \"PAA,\" \"sitelinks,\" \"knowledge panel,\" \"local pack,\" \"rich results,\" \"zero-click,\" \"SERP types,\" \"AI Overviews,\" \"Bing Copilot,\" \"Yandex AI,\" or \"schema for SERP\" (schema and SERP features are strongly related). Platforms: claude_code."} -{"id": "cc2f6ce8c62033e9a566c074adf9dc15553bc10b7280e9fe8a4a2f6b92ac931f", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "title-tag", "description": "When the user wants to optimize the title tag, page title, or SERP title. Also use when the user mentions \"title tag,\" \"meta title,\" \"page title,\" \"SEO title,\" \"SERP title,\" \"browser tab title,\" \"title optimization,\" \"headline for search,\" \"title too long,\" \"title tag length,\" \"duplicate title tags,\" or \"optimize title for CTR.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/title/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install title-tag"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "title-tag. When the user wants to optimize the title tag, page title, or SERP title. Also use when the user mentions \"title tag,\" \"meta title,\" \"page title,\" \"SEO title,\" \"SERP title,\" \"browser tab title,\" \"title optimization,\" \"headline for search,\" \"title too long,\" \"title tag length,\" \"duplicate title tags,\" or \"optimize title for CTR.\" Platforms: claude_code."} {"id": "130dc09784aedaf39e86562bc90a08409b765eab1f7c1bda7e0890134a4e196d", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "twitter-cards", "description": "When the user wants to add or optimize Twitter Card metadata for X (Twitter) link previews. Also use when the user mentions \"Twitter Card,\" \"twitter:card,\" \"twitter:image,\" \"twitter:title,\" \"X preview,\" or \"tweet preview.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/twitter-cards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install twitter-cards"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "twitter-cards. When the user wants to add or optimize Twitter Card metadata for X (Twitter) link previews. Also use when the user mentions \"Twitter Card,\" \"twitter:card,\" \"twitter:image,\" \"twitter:title,\" \"X preview,\" or \"tweet preview.\" Platforms: claude_code."} -{"id": "6d3527dfcb0b2ae385b13031dcf242b33a2e1e68441cce714c8d7fe8414cd71c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "url-structure", "description": "When the user wants to optimize URL structure, fix URL issues, or plan URL hierarchy. Also use when the user mentions \"URL structure,\" \"URL optimization,\" \"slug,\" \"clean URLs,\" \"URL hierarchy,\" \"URL path,\" \"permalink structure,\" \"URL best practices,\" \"dynamic URLs,\" or \"URL parameters.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/url-structure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install url-structure"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "url-structure. When the user wants to optimize URL structure, fix URL issues, or plan URL hierarchy. Also use when the user mentions \"URL structure,\" \"URL optimization,\" \"slug,\" \"clean URLs,\" \"URL hierarchy,\" \"URL path,\" \"permalink structure,\" \"URL best practices,\" \"dynamic URLs,\" or \"URL parameters.\" Platforms: claude_code."} {"id": "381d81d99e93044bc3ec5c04cc7e4799a34e9707c72c7168582d6de2d1a9e721", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "video-optimization", "description": "When the user wants to optimize videos for Google Search, video sitemap, VideoObject schema, or video SEO on websites. Also use when the user mentions \"video SEO,\" \"video sitemap,\" \"VideoObject,\" \"video thumbnail,\" \"video indexing,\" \"video preview,\" \"key moments,\" \"Clip schema,\" or \"embedded video optimization.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/on-page/video-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install video-optimization"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "video-optimization. When the user wants to optimize videos for Google Search, video sitemap, VideoObject schema, or video SEO on websites. Also use when the user mentions \"video SEO,\" \"video sitemap,\" \"VideoObject,\" \"video thumbnail,\" \"video indexing,\" \"video preview,\" \"key moments,\" \"Clip schema,\" or \"embedded video optimization.\" Platforms: claude_code."} -{"id": "32705db921b3b3c1e239d3231dae65f9434e8764d29aa4a9db93fb25da0ff5b1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "parasite-seo", "description": "When the user wants to leverage high-authority platforms for rankings or backlinks. Also use when the user mentions \"parasite SEO,\" \"parasitic SEO,\" \"barnacle SEO,\" \"hosted content,\" \"third-party publishing,\" \"Medium SEO,\" \"Reddit SEO,\" \"GitHub parasite SEO,\" \"LinkedIn Pulse SEO,\" \"high-authority platforms,\" \"distributed authority,\" \"borrow domain authority,\" or \"rank without own website.\" For GitHub specifics, use github.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/parasite-seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install parasite-seo"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "parasite-seo. When the user wants to leverage high-authority platforms for rankings or backlinks. Also use when the user mentions \"parasite SEO,\" \"parasitic SEO,\" \"barnacle SEO,\" \"hosted content,\" \"third-party publishing,\" \"Medium SEO,\" \"Reddit SEO,\" \"GitHub parasite SEO,\" \"LinkedIn Pulse SEO,\" \"high-authority platforms,\" \"distributed authority,\" \"borrow domain authority,\" or \"rank without own website.\" For GitHub specifics, use github. Platforms: claude_code."} -{"id": "583286413698912e937d6f5c4d31e3f39940fec17cbf088ac41b732ed6ba772a", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "programmatic-seo", "description": "When the user wants to create SEO pages at scale using templates and data. Also use when the user mentions \"programmatic SEO,\" \"programmatic SEO pages,\" \"template pages,\" \"scale content,\" \"location pages,\" \"city pages,\" \"comparison pages at scale,\" \"X vs Y pages,\" \"integration pages,\" \"pages from data,\" \"automated landing pages,\" or \"programmatic landing pages.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/programmatic-seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install programmatic-seo"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "programmatic-seo. When the user wants to create SEO pages at scale using templates and data. Also use when the user mentions \"programmatic SEO,\" \"programmatic SEO pages,\" \"template pages,\" \"scale content,\" \"location pages,\" \"city pages,\" \"comparison pages at scale,\" \"X vs Y pages,\" \"integration pages,\" \"pages from data,\" \"automated landing pages,\" or \"programmatic landing pages.\" Platforms: claude_code."} {"id": "ca9adc704fe9f7c98978399bdd8b27ee201aa54a17955ecc710cf552bfd51c70", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "canonical-tag", "description": "When the user wants to configure canonical URLs, fix duplicate content, or consolidate URL signals. Also use when the user mentions \"canonical,\" \"canonical URL,\" \"duplicate content,\" \"duplicate content fix,\" \"preferred URL,\" or \"URL consolidation.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/canonical/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install canonical-tag"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "canonical-tag. When the user wants to configure canonical URLs, fix duplicate content, or consolidate URL signals. Also use when the user mentions \"canonical,\" \"canonical URL,\" \"duplicate content,\" \"duplicate content fix,\" \"preferred URL,\" or \"URL consolidation.\" Platforms: claude_code."} -{"id": "7d66a9dfdb38381b41186c6065d73c596ff4ae2bdfe8b94963a83ff067ff4710", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "core-web-vitals", "description": "When the user wants to optimize Core Web Vitals, fix LCP, INP, or CLS issues. Also use when the user mentions \"Core Web Vitals,\" \"CWV,\" \"LCP,\" \"INP,\" \"CLS,\" \"FID,\" \"page speed,\" \"page performance,\" \"Largest Contentful Paint,\" \"Interaction to Next Paint,\" \"Cumulative Layout Shift,\" or \"Page Experience.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/core-web-vitals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install core-web-vitals"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "core-web-vitals. When the user wants to optimize Core Web Vitals, fix LCP, INP, or CLS issues. Also use when the user mentions \"Core Web Vitals,\" \"CWV,\" \"LCP,\" \"INP,\" \"CLS,\" \"FID,\" \"page speed,\" \"page performance,\" \"Largest Contentful Paint,\" \"Interaction to Next Paint,\" \"Cumulative Layout Shift,\" or \"Page Experience.\" Platforms: claude_code."} {"id": "71e20b4e66e68254b22d89bdbfa90eed2d8b91be636741fffa0922850162ccbd", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "site-crawlability", "description": "When the user wants to improve crawlability, fix orphan pages, or optimize site structure for search engines. Also use when the user mentions \"crawlability,\" \"crawl budget,\" \"orphan pages,\" \"internal links,\" \"site structure,\" \"site crawlability,\" \"infinite scroll,\" \"pagination,\" \"masonry SEO,\" \"AI crawler optimization,\" \"GPTBot crawlability,\" \"ClaudeBot crawlability,\" or \"content not indexed.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/crawlability/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install site-crawlability"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "site-crawlability. When the user wants to improve crawlability, fix orphan pages, or optimize site structure for search engines. Also use when the user mentions \"crawlability,\" \"crawl budget,\" \"orphan pages,\" \"internal links,\" \"site structure,\" \"site crawlability,\" \"infinite scroll,\" \"pagination,\" \"masonry SEO,\" \"AI crawler optimization,\" \"GPTBot crawlability,\" \"ClaudeBot crawlability,\" or \"content not indexed.\" Platforms: claude_code."} {"id": "3b01517c703b2c6d7ff299e21d552128022e4d2019407602a9d71b65f7be9aaa", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "indexing", "description": "When the user wants to fix indexing issues from Search Console, use noindex, or implement Google Indexing API. Also use when the user mentions \"fix indexing,\" \"not indexed,\" \"Crawled - currently not indexed,\" \"discovered - currently not indexed,\" \"index coverage,\" \"noindex,\" \"noindex tag,\" \"pages not indexed,\" \"why not indexed,\" \"request indexing,\" or \"Google Indexing API.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/indexing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install indexing"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "indexing. When the user wants to fix indexing issues from Search Console, use noindex, or implement Google Indexing API. Also use when the user mentions \"fix indexing,\" \"not indexed,\" \"Crawled - currently not indexed,\" \"discovered - currently not indexed,\" \"index coverage,\" \"noindex,\" \"noindex tag,\" \"pages not indexed,\" \"why not indexed,\" \"request indexing,\" or \"Google Indexing API.\" Platforms: claude_code."} {"id": "09e6d4949eefae8bc3f9ba03fdec9b744c286b002893b2ecdfcafb1715d37ead", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "indexnow", "description": "When the user wants to implement IndexNow, notify search engines of new/updated URLs, or speed up Bing indexing. Also use when the user mentions \"IndexNow,\" \"Bing indexing,\" \"URL notification,\" \"instant indexing,\" \"sitemap IndexNow sync,\" \"share URL list with sitemap,\" or \"IndexNow API.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/indexnow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install indexnow"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "indexnow. When the user wants to implement IndexNow, notify search engines of new/updated URLs, or speed up Bing indexing. Also use when the user mentions \"IndexNow,\" \"Bing indexing,\" \"URL notification,\" \"instant indexing,\" \"sitemap IndexNow sync,\" \"share URL list with sitemap,\" or \"IndexNow API.\" Platforms: claude_code."} -{"id": "4817689d87296276556bd00f02bda5ca911048992b530478c692c901d5b8a3e6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "mobile-friendly", "description": "When the user wants to optimize for mobile-first indexing or fix mobile usability. Also use when the user mentions \"mobile-friendly,\" \"mobile-first indexing,\" \"mobile SEO,\" \"responsive design,\" \"mobile adaptation,\" \"mobile viewport,\" \"viewport meta,\" \"touch targets,\" \"font size mobile,\" \"AMP,\" or \"Accelerated Mobile Pages.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/mobile-friendly/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mobile-friendly"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "mobile-friendly. When the user wants to optimize for mobile-first indexing or fix mobile usability. Also use when the user mentions \"mobile-friendly,\" \"mobile-first indexing,\" \"mobile SEO,\" \"responsive design,\" \"mobile adaptation,\" \"mobile viewport,\" \"viewport meta,\" \"touch targets,\" \"font size mobile,\" \"AMP,\" or \"Accelerated Mobile Pages.\" Platforms: claude_code."} -{"id": "b2254933be203adc1885073de70523ce414cdbe78afa7ca13248dc0ad7153e2b", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "rendering-strategies", "description": "When the user wants to choose or optimize rendering strategy for SEO. Also use when the user mentions \"SSR,\" \"SSG,\" \"CSR,\" \"ISR,\" \"static rendering,\" \"dynamic rendering,\" \"server-side rendering,\" \"client-side rendering,\" \"JavaScript rendering,\" \"pre-rendering,\" \"prerender,\" \"content in initial HTML,\" or \"crawler visibility.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/rendering-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rendering-strategies"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "rendering-strategies. When the user wants to choose or optimize rendering strategy for SEO. Also use when the user mentions \"SSR,\" \"SSG,\" \"CSR,\" \"ISR,\" \"static rendering,\" \"dynamic rendering,\" \"server-side rendering,\" \"client-side rendering,\" \"JavaScript rendering,\" \"pre-rendering,\" \"prerender,\" \"content in initial HTML,\" or \"crawler visibility.\" Platforms: claude_code."} {"id": "525f734b9a45328a57437efd3eb2f867c886fa29e9ddebb5612cfc1feffb378e", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "robots-txt", "description": "When the user wants to configure, audit, or optimize robots.txt. Also use when the user mentions \"robots.txt,\" \"crawler rules,\" \"block crawlers,\" \"AI crawlers,\" \"GPTBot,\" \"allow/disallow,\" \"disallow path,\" \"crawl directives,\" \"user-agent,\" \"block Googlebot,\" \"fix robots.txt,\" \"robots.txt blocking,\" or \"search engine crawling.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/robots/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install robots-txt"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "robots-txt. When the user wants to configure, audit, or optimize robots.txt. Also use when the user mentions \"robots.txt,\" \"crawler rules,\" \"block crawlers,\" \"AI crawlers,\" \"GPTBot,\" \"allow/disallow,\" \"disallow path,\" \"crawl directives,\" \"user-agent,\" \"block Googlebot,\" \"fix robots.txt,\" \"robots.txt blocking,\" or \"search engine crawling.\" Platforms: claude_code."} {"id": "112fb230c47bf40c2fd02bd00f5155f3af7b42b7c37464ae51313998b028e5bb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "xml-sitemap", "description": "When the user wants to create, audit, or optimize sitemap.xml. Also use when the user mentions \"sitemap,\" \"sitemap.xml,\" \"sitemap index,\" \"lastmod,\" \"changefreq,\" \"priority,\" \"URL discovery,\" \"URL discovery for search engines,\" \"single source of truth,\" \"URL config,\" \"unify sitemap IndexNow,\" or \"reduce duplicate maintenance.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/seo/technical/sitemap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xml-sitemap"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "xml-sitemap. When the user wants to create, audit, or optimize sitemap.xml. Also use when the user mentions \"sitemap,\" \"sitemap.xml,\" \"sitemap index,\" \"lastmod,\" \"changefreq,\" \"priority,\" \"URL discovery,\" \"URL discovery for search engines,\" \"single source of truth,\" \"URL config,\" \"unify sitemap IndexNow,\" or \"reduce duplicate maintenance.\" Platforms: claude_code."} -{"id": "2f56ad6a05f201bc04a587d8d6765fdaa9847cf24528a7c32d6da2b275bf3720", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "brand-monitoring", "description": "When the user wants to monitor brand mentions, detect trademark infringement, or set up brand monitoring. Also use when the user mentions \"brand monitoring,\" \"brand watch,\" \"trademark watch,\" \"brand mentions,\" \"impersonation detection,\" \"counterfeit detection,\" or \"brand abuse monitoring.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/brand-monitoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-monitoring"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "brand-monitoring. When the user wants to monitor brand mentions, detect trademark infringement, or set up brand monitoring. Also use when the user mentions \"brand monitoring,\" \"brand watch,\" \"trademark watch,\" \"brand mentions,\" \"impersonation detection,\" \"counterfeit detection,\" or \"brand abuse monitoring.\" Platforms: claude_code."} -{"id": "d21c988bb6d77931685d9e3af715d28c7ec7647a58c9cac7a4be23607c1344b4", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "brand-protection", "description": "When the user faces brand impersonation, fake websites, phishing sites, or trademark infringement. Also use when the user mentions \"fake site,\" \"impersonation,\" \"phishing site,\" \"trademark infringement,\" \"domain squatting,\" or \"brand abuse.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/brand-protection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brand-protection"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "brand-protection. When the user faces brand impersonation, fake websites, phishing sites, or trademark infringement. Also use when the user mentions \"fake site,\" \"impersonation,\" \"phishing site,\" \"trademark infringement,\" \"domain squatting,\" or \"brand abuse.\" Platforms: claude_code."} -{"id": "05508c4b39e183ab91e32e0b834c27229befcb0b7aeb6a2e33a3357e8a6280d7", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "branding", "description": "When the user wants to define, audit, or apply brand strategy\u2014purpose, values, positioning, storytelling, voice, visual identity. Also use when the user mentions \"brand strategy,\" \"brand story,\" \"brand storytelling,\" \"brand voice,\" \"brand identity,\" \"brand guidelines,\" \"brand purpose,\" \"brand values,\" \"origin story,\" \"brand narrative,\" \"brand personality,\" or \"brand archetype.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/branding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install branding"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "branding. When the user wants to define, audit, or apply brand strategy\u2014purpose, values, positioning, storytelling, voice, visual identity. Also use when the user mentions \"brand strategy,\" \"brand story,\" \"brand storytelling,\" \"brand voice,\" \"brand identity,\" \"brand guidelines,\" \"brand purpose,\" \"brand values,\" \"origin story,\" \"brand narrative,\" \"brand personality,\" or \"brand archetype.\" Platforms: claude_code."} -{"id": "46a52b6774d2b0a346dd16208aa49c511ac6495670515e5fe63a8172e3f86d44", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "content-marketing", "description": "When the user wants to plan content marketing across channels, define content types and formats, or create a content repurposing strategy. Also use when the user mentions \"content marketing strategy,\" \"content types,\" \"content formats,\" \"content repurposing,\" \"content calendar,\" \"content mix,\" \"owned content,\" \"content distribution,\" \"content funnel,\" or \"content planning across channels.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/content-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-marketing"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "content-marketing. When the user wants to plan content marketing across channels, define content types and formats, or create a content repurposing strategy. Also use when the user mentions \"content marketing strategy,\" \"content types,\" \"content formats,\" \"content repurposing,\" \"content calendar,\" \"content mix,\" \"owned content,\" \"content distribution,\" \"content funnel,\" or \"content planning across channels.\" Platforms: claude_code."} -{"id": "88db65131c83613d3ddf53014e7d5a1c4b4b2d3187317240c81cd0ef2d4ab25c", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "integrated-marketing", "description": "When the user wants to plan integrated marketing, coordinate channels, or clarify program vs channel vs campaign. Also use when the user mentions \"IMC,\" \"integrated marketing,\" \"channel mix,\" \"marketing program,\" \"PESO model,\" \"integrated marketing communications,\" \"omnichannel marketing,\" \"channel strategy,\" \"marketing mix,\" or \"cross-channel campaign.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/integrated-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install integrated-marketing"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "integrated-marketing. When the user wants to plan integrated marketing, coordinate channels, or clarify program vs channel vs campaign. Also use when the user mentions \"IMC,\" \"integrated marketing,\" \"channel mix,\" \"marketing program,\" \"PESO model,\" \"integrated marketing communications,\" \"omnichannel marketing,\" \"channel strategy,\" \"marketing mix,\" or \"cross-channel campaign.\" Platforms: claude_code."} {"id": "90f324bccd8fd16c522ddbec74fc49de1407af28082cfb0e46917c7260b47db3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "rebranding-strategy", "description": "When the user wants to plan or execute a rebrand\u2014domain change, 301 redirects, migration, or announcement. Also use when the user mentions \"rebranding,\" \"rebrand,\" \"domain change,\" \"domain migration,\" \"301 redirect,\" \"change domain name,\" \"rebrand announcement,\" \"social media rebrand,\" \"brand launch,\" or \"domain redirect.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/brand/rebranding/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rebranding-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "rebranding-strategy. When the user wants to plan or execute a rebrand\u2014domain change, 301 redirects, migration, or announcement. Also use when the user mentions \"rebranding,\" \"rebrand,\" \"domain change,\" \"domain migration,\" \"301 redirect,\" \"change domain name,\" \"rebrand announcement,\" \"social media rebrand,\" \"brand launch,\" or \"domain redirect.\" Platforms: claude_code."} -{"id": "6f0a2a7e7e7f08ea1c404aeddeb72f299f32f6ae5e18a6bf6d6ef7076a2cdf46", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "domain-architecture", "description": "When the user wants to decide domain structure for multiple products or brands\u2014subfolder vs subdomain vs independent domain. Also use when the user mentions \"subfolder vs subdomain,\" \"subdirectory vs subdomain,\" \"multiple products domain,\" \"multiple websites,\" \"brand architecture,\" \"branded house,\" \"house of brands,\" \"where to host product,\" \"domain structure,\" or \"hub-spoke domain.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/domain/domain-architecture/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install domain-architecture"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "domain-architecture. When the user wants to decide domain structure for multiple products or brands\u2014subfolder vs subdomain vs independent domain. Also use when the user mentions \"subfolder vs subdomain,\" \"subdirectory vs subdomain,\" \"multiple products domain,\" \"multiple websites,\" \"brand architecture,\" \"branded house,\" \"house of brands,\" \"where to host product,\" \"domain structure,\" or \"hub-spoke domain.\" Platforms: claude_code."} -{"id": "5709ba654bda313a0671ccd9ec80e54d1473ec9b7dfc14422b89e5b330ffb13d", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "domain-selection", "description": "When the user wants to choose an SEO-friendly domain for a new site\u2014brand vs keyword domain, TLD selection, or domain best practices. Also use when the user mentions \"domain choice,\" \"pick domain,\" \"SEO-friendly domain,\" \"brand domain,\" \"EMD,\" \"PMD,\" \"exact match domain,\" \"partial match domain,\" \"TLD,\" \".ai domain,\" \".com vs .io,\" \"domain length,\" \"domain history,\" or \"defensive domain registration.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/domain/domain-selection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install domain-selection"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "domain-selection. When the user wants to choose an SEO-friendly domain for a new site\u2014brand vs keyword domain, TLD selection, or domain best practices. Also use when the user mentions \"domain choice,\" \"pick domain,\" \"SEO-friendly domain,\" \"brand domain,\" \"EMD,\" \"PMD,\" \"exact match domain,\" \"partial match domain,\" \"TLD,\" \".ai domain,\" \".com vs .io,\" \"domain length,\" \"domain history,\" or \"defensive domain registration.\" Platforms: claude_code."} -{"id": "451b27a510578e4f9a9857fb3d9b09c14824e0adac97fe414b16f08b3c71a9cb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "multi-domain-brand-seo", "description": "When the user wants to optimize brand search for a company with multiple domains (e.g. parent company.com vs product.ai). Ensure the parent/company domain ranks first for brand queries. Also use when the user mentions \"brand search,\" \"multi-domain SEO,\" \"company domain first,\" \"parent vs product domain,\" \"hub-spoke domain,\" \"brand SERP control,\" or \"differentiate company and product domains.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/domain/multi-domain-brand-seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install multi-domain-brand-seo"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "multi-domain-brand-seo. When the user wants to optimize brand search for a company with multiple domains (e.g. parent company.com vs product.ai). Ensure the parent/company domain ranks first for brand queries. Also use when the user mentions \"brand search,\" \"multi-domain SEO,\" \"company domain first,\" \"parent vs product domain,\" \"hub-spoke domain,\" \"brand SERP control,\" or \"differentiate company and product domains.\" Platforms: claude_code."} {"id": "faa35be6d7607275ac8cedd493f37c603bfe2082aede577bfe99c8f7a7e205b6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "generative-engine-optimization", "description": "When the user wants to optimize for AI search visibility (ChatGPT, Claude, Perplexity). Also use when the user mentions \"GEO,\" \"AEO,\" \"generative engine optimization,\" \"AI search visibility,\" \"LLM optimization,\" \"GitHub GEO,\" \"Grokipedia,\" \"optimize for ChatGPT,\" \"AI Overviews,\" \"Bing Copilot,\" \"Yandex AI,\" \"Perplexity optimization,\" \"GEO strategy,\" or \"AI search optimization.\" For parasite SEO strategy, use parasite-seo. For GitHub, use github.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/geo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install generative-engine-optimization"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "generative-engine-optimization. When the user wants to optimize for AI search visibility (ChatGPT, Claude, Perplexity). Also use when the user mentions \"GEO,\" \"AEO,\" \"generative engine optimization,\" \"AI search visibility,\" \"LLM optimization,\" \"GitHub GEO,\" \"Grokipedia,\" \"optimize for ChatGPT,\" \"AI Overviews,\" \"Bing Copilot,\" \"Yandex AI,\" \"Perplexity optimization,\" \"GEO strategy,\" or \"AI search optimization.\" For parasite SEO strategy, use parasite-seo. For GitHub, use github. Platforms: claude_code."} {"id": "6f65488e8a4b2f4c8eb819745331a6583d8c12667305f9ab2d771d5a8a4b7bd6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "localization-strategy", "description": "When the user wants to plan or implement localization strategy for multilingual and global growth. Also use when the user mentions \"localization,\" \"multilingual,\" \"i18n,\" \"global expansion,\" \"market entry,\" \"localization strategy,\" \"hreflang,\" \"multi-language SEO,\" or \"international SEO.\" For translation workflow, glossary, and style guide, see **translation**.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/localization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install localization-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "localization-strategy. When the user wants to plan or implement localization strategy for multilingual and global growth. Also use when the user mentions \"localization,\" \"multilingual,\" \"i18n,\" \"global expansion,\" \"market entry,\" \"localization strategy,\" \"hreflang,\" \"multi-language SEO,\" or \"international SEO.\" For translation workflow, glossary, and style guide, see **translation**. Platforms: claude_code."} -{"id": "d7e202ea976de12c7b691241b45ce25ea900e3f008908fcf5559b0cb657934b5", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "open-source-strategy", "description": "When the user wants open source strategy, OSS commercialization, or open source growth. Also use when the user mentions \"open source strategy,\" \"OSS strategy,\" \"open source commercialization,\" \"open source to paid,\" \"open core,\" \"COSS,\" \"commercial open source,\" \"GitHub stars strategy,\" \"DevHunt,\" \"open source marketing,\" \"open source growth,\" \"Llama,\" \"Dify,\" \"Cursor,\" \"open source business model,\" or \"developer tools directory.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/open-source/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install open-source-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "open-source-strategy. When the user wants open source strategy, OSS commercialization, or open source growth. Also use when the user mentions \"open source strategy,\" \"OSS strategy,\" \"open source commercialization,\" \"open source to paid,\" \"open core,\" \"COSS,\" \"commercial open source,\" \"GitHub stars strategy,\" \"DevHunt,\" \"open source marketing,\" \"open source growth,\" \"Llama,\" \"Dify,\" \"Cursor,\" \"open source business model,\" or \"developer tools directory.\" Platforms: claude_code."} -{"id": "d619f1d561fc9008e18f65084106b2e165e901c2ad447dfaa9cf11b5a202e824", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "paid-ads-strategy", "description": "When the user wants to plan paid ads strategy, allocate ad budget, or choose paid channels. Also use when the user mentions \"paid ads,\" \"paid media,\" \"PPC,\" \"SEM,\" \"web ads,\" \"app ads,\" \"TV ads,\" \"CTV,\" \"OOH,\" \"banner ads,\" \"ad network,\" \"ad alliance,\" \"Taaft ads,\" \"Shopify App Store ads,\" \"Google Ads,\" \"Meta Ads,\" \"PMF testing,\" \"PMF validation,\" \"test product-market fit with ads,\" \"ad spend,\" \"ad budget,\" \"ROAS,\" \"paid acquisition,\" \"Quality Score,\" or \"ad-to-page alignment.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/paid-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install paid-ads-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "paid-ads-strategy. When the user wants to plan paid ads strategy, allocate ad budget, or choose paid channels. Also use when the user mentions \"paid ads,\" \"paid media,\" \"PPC,\" \"SEM,\" \"web ads,\" \"app ads,\" \"TV ads,\" \"CTV,\" \"OOH,\" \"banner ads,\" \"ad network,\" \"ad alliance,\" \"Taaft ads,\" \"Shopify App Store ads,\" \"Google Ads,\" \"Meta Ads,\" \"PMF testing,\" \"PMF validation,\" \"test product-market fit with ads,\" \"ad spend,\" \"ad budget,\" \"ROAS,\" \"paid acquisition,\" \"Quality Score,\" or \"ad-to-page alignment.\" Platforms: claude_code."} -{"id": "0268f5c1f1c15bbf4f0c7fdbd8e5cb70a4583e53b8dd963d85c625c0a1d241cb", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "discount-marketing-strategy", "description": "When the user wants to plan, implement, or optimize discount and promotional pricing strategy. Also use when the user mentions \"discount strategy,\" \"promo code,\" \"coupon,\" \"redeem code,\" \"lifetime deal,\" \"LTD,\" \"AppSumo,\" \"Black Friday,\" \"Cyber Monday,\" \"BFCM,\" \"seasonal sale,\" or \"promotional pricing.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/pricing/discount-marketing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install discount-marketing-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "discount-marketing-strategy. When the user wants to plan, implement, or optimize discount and promotional pricing strategy. Also use when the user mentions \"discount strategy,\" \"promo code,\" \"coupon,\" \"redeem code,\" \"lifetime deal,\" \"LTD,\" \"AppSumo,\" \"Black Friday,\" \"Cyber Monday,\" \"BFCM,\" \"seasonal sale,\" or \"promotional pricing.\" Platforms: claude_code."} {"id": "627996c7129ec623eb936ad68ccc7ad50e08e39de07e6dc8aacbf225661ab213", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "pricing-strategy", "description": "When the user wants to plan, design, or optimize pricing strategy and structure. Also use when the user mentions \"pricing strategy,\" \"pricing model,\" \"pricing tiers,\" \"freemium,\" \"value-based pricing,\" \"anchoring,\" \"price structure,\" or \"monetization strategy.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/commercial/pricing/pricing-strategy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pricing-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "pricing-strategy. When the user wants to plan, design, or optimize pricing strategy and structure. Also use when the user mentions \"pricing strategy,\" \"pricing model,\" \"pricing tiers,\" \"freemium,\" \"value-based pricing,\" \"anchoring,\" \"price structure,\" or \"monetization strategy.\" Platforms: claude_code."} {"id": "3ad9dfe205139eb9a7ec6ee49669612da25a871b27fe0e73b2c54896e1c29581", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "cold-start-strategy", "description": "When the user wants to plan cold start, get first users, or launch a new product with zero traction. Also use when the user mentions \"cold start,\" \"cold start problem,\" \"first users,\" \"seed users,\" \"finding users,\" \"finding early users,\" \"Fiverr Upwork,\" \"comment outreach,\" \"Twitter search users,\" \"product launch strategy,\" \"0 to 1 growth,\" \"early-stage acquisition,\" \"launch channels,\" \"get first customers,\" \"Product Hunt launch,\" \"AppSumo,\" \"LTD,\" \"indie hacker,\" \"bootstrapping,\" or \"solo founder.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/cold-start/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cold-start-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "cold-start-strategy. When the user wants to plan cold start, get first users, or launch a new product with zero traction. Also use when the user mentions \"cold start,\" \"cold start problem,\" \"first users,\" \"seed users,\" \"finding users,\" \"finding early users,\" \"Fiverr Upwork,\" \"comment outreach,\" \"Twitter search users,\" \"product launch strategy,\" \"0 to 1 growth,\" \"early-stage acquisition,\" \"launch channels,\" \"get first customers,\" \"Product Hunt launch,\" \"AppSumo,\" \"LTD,\" \"indie hacker,\" \"bootstrapping,\" or \"solo founder.\" Platforms: claude_code."} {"id": "4cde5c926067f01e5322cbf0e55bd7cab2ff296a826a79b596dd5105a2195377", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "conversion-optimization", "description": "When the user wants to improve conversion rates, run A/B tests, optimize funnels, or reduce friction. Also use when the user mentions \"CRO,\" \"conversion rate optimization,\" \"A/B test,\" \"split test,\" \"funnel optimization,\" \"checkout optimization,\" \"form optimization,\" or \"conversion funnel.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/conversion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install conversion-optimization"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "conversion-optimization. When the user wants to improve conversion rates, run A/B tests, optimize funnels, or reduce friction. Also use when the user mentions \"CRO,\" \"conversion rate optimization,\" \"A/B test,\" \"split test,\" \"funnel optimization,\" \"checkout optimization,\" \"form optimization,\" or \"conversion funnel.\" Platforms: claude_code."} -{"id": "61063b45c2a806c333713c5f61cd1dc3e6a2f9215f816bdbebaf2ccc97cbc836", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "growth-funnel", "description": "When the user wants to plan growth using the AARRR framework, diagnose growth bottlenecks, or map actions across the customer lifecycle. Also use when the user mentions \"growth funnel,\" \"AARRR,\" \"pirate metrics,\" \"acquisition activation retention,\" \"customer lifecycle metrics,\" or \"growth framework.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/growth-funnel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install growth-funnel"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "growth-funnel. When the user wants to plan growth using the AARRR framework, diagnose growth bottlenecks, or map actions across the customer lifecycle. Also use when the user mentions \"growth funnel,\" \"AARRR,\" \"pirate metrics,\" \"acquisition activation retention,\" \"customer lifecycle metrics,\" or \"growth framework.\" Platforms: claude_code."} {"id": "563222614e22061b397090d845db3b3ce49b78bb866ae281925619962527ab3d", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "gtm-strategy", "description": "When the user wants to plan go-to-market strategy, GTM framework, or market entry. Also use when the user mentions \"GTM,\" \"go-to-market,\" \"market entry,\" \"new market,\" \"repositioning,\" \"PLG,\" \"sales-led,\" \"product-led,\" \"marketing-led,\" \"ICP,\" \"buyer persona,\" \"GTM motion,\" or \"market expansion.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/gtm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gtm-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "gtm-strategy. When the user wants to plan go-to-market strategy, GTM framework, or market entry. Also use when the user mentions \"GTM,\" \"go-to-market,\" \"market entry,\" \"new market,\" \"repositioning,\" \"PLG,\" \"sales-led,\" \"product-led,\" \"marketing-led,\" \"ICP,\" \"buyer persona,\" \"GTM motion,\" or \"market expansion.\" Platforms: claude_code."} -{"id": "8ef07766afb737b0d7419a8510d00fb55508795c8e61bae49fb69e33d15190c3", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "indie-hacker-strategy", "description": "When the user wants indie hacker or bootstrapping founder strategy\u2014growth, channels, Build in Public, or solo founder tactics. Also use when the user mentions \"indie hacker,\" \"indie developer,\" \"bootstrapping,\" \"bootstrapped founder,\" \"solo founder,\" \"Build in Public,\" \"scratch your own itch,\" \"Micro-SaaS,\" \"first 100 users,\" or \"solo company.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/indie-hacker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install indie-hacker-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "indie-hacker-strategy. When the user wants indie hacker or bootstrapping founder strategy\u2014growth, channels, Build in Public, or solo founder tactics. Also use when the user mentions \"indie hacker,\" \"indie developer,\" \"bootstrapping,\" \"bootstrapped founder,\" \"solo founder,\" \"Build in Public,\" \"scratch your own itch,\" \"Micro-SaaS,\" \"first 100 users,\" or \"solo company.\" Platforms: claude_code."} -{"id": "e0adf285db8fe547b6eb44fece16b331095f6ee836ef588590a92d927aec69d5", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "pmf-strategy", "description": "When the user wants to validate product-market fit, measure PMF, or plan before scaling. Also use when the user mentions \"PMF,\" \"product-market fit,\" \"product market fit,\" \"Sean Ellis test,\" \"very disappointed,\" \"vitamin vs painkiller,\" \"PMF validation,\" \"premature scaling,\" or \"validate before scale.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/pmf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pmf-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "pmf-strategy. When the user wants to validate product-market fit, measure PMF, or plan before scaling. Also use when the user mentions \"PMF,\" \"product-market fit,\" \"product market fit,\" \"Sean Ellis test,\" \"very disappointed,\" \"vitamin vs painkiller,\" \"PMF validation,\" \"premature scaling,\" or \"validate before scale.\" Platforms: claude_code."} {"id": "5fe8b3b8d3acb76f7b0d51c12d75407f41167d2bc7a54f3b6353a42a44eff819", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "product-launch", "description": "When the user wants to plan a product launch, execute launch channels, or create a launch checklist. Also use when the user mentions \"product launch,\" \"launch strategy,\" \"product announcement,\" \"launch channels,\" or \"market launch.\" For GTM strategy framework (modes, 90-day, ICP, new market, repositioning), use gtm-strategy.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/product-launch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install product-launch"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "product-launch. When the user wants to plan a product launch, execute launch channels, or create a launch checklist. Also use when the user mentions \"product launch,\" \"launch strategy,\" \"product announcement,\" \"launch channels,\" or \"market launch.\" For GTM strategy framework (modes, 90-day, ICP, new market, repositioning), use gtm-strategy. Platforms: claude_code."} -{"id": "1090a227557e33c3d47c307a3e12d59d36dc5e36c5acc11cb4a18427fc794132", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "research-sources", "description": "When the user wants to find information sources for content ideation, competitor monitoring, or industry tracking. Also use when the user mentions \"research sources,\" \"information sources,\" \"content ideation,\" \"industry monitoring,\" \"competitor monitoring,\" \"market intelligence,\" \"content research,\" or \"topic research.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/research-sources/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install research-sources"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "research-sources. When the user wants to find information sources for content ideation, competitor monitoring, or industry tracking. Also use when the user mentions \"research sources,\" \"information sources,\" \"content ideation,\" \"industry monitoring,\" \"competitor monitoring,\" \"market intelligence,\" \"content research,\" or \"topic research.\" Platforms: claude_code."} -{"id": "37afc18ac695eeabae3781e77a1a8318fce52280e40436db75dcc5632c80e4f2", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "retention-strategy", "description": "When the user wants to reduce churn, improve customer retention, or plan lifecycle marketing. Also use when the user mentions \"retention,\" \"churn,\" \"customer lifecycle,\" \"churn prevention,\" \"at-risk customers,\" or \"loyalty program.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/launch/retention/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install retention-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "retention-strategy. When the user wants to reduce churn, improve customer retention, or plan lifecycle marketing. Also use when the user mentions \"retention,\" \"churn,\" \"customer lifecycle,\" \"churn prevention,\" \"at-risk customers,\" or \"loyalty program.\" Platforms: claude_code."} -{"id": "988bf82b87f90651ca287bf17e4046628f59e25ec6a7fcbb380966bccebb79d1", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "seo-audit", "description": "When the user wants to run an SEO audit, technical SEO audit, or site health check. Also use when the user mentions \"SEO audit,\" \"technical audit,\" \"site audit,\" \"crawl audit,\" \"indexing audit,\" \"SEO health,\" or \"fix SEO issues.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/structure/seo-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-audit"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "seo-audit. When the user wants to run an SEO audit, technical SEO audit, or site health check. Also use when the user mentions \"SEO audit,\" \"technical audit,\" \"site audit,\" \"crawl audit,\" \"indexing audit,\" \"SEO health,\" or \"fix SEO issues.\" Platforms: claude_code."} {"id": "038eab36b87c49f7ced3f08d0dfc69b5a3e04073698ed10b789cad89aed89332", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "seo-strategy", "description": "When the user wants to plan SEO strategy, prioritize SEO work, or understand the SEO workflow. Also use when the user mentions \"SEO strategy,\" \"SEO plan,\" \"SEO roadmap,\" \"SEO priority,\" \"SEO audit,\" \"SEO workflow,\" \"where to start SEO,\" \"SEO approach,\" \"organic growth strategy,\" \"why SEO,\" \"SEO value,\" or \"search strategy.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/structure/seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-strategy"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "seo-strategy. When the user wants to plan SEO strategy, prioritize SEO work, or understand the SEO workflow. Also use when the user mentions \"SEO strategy,\" \"SEO plan,\" \"SEO roadmap,\" \"SEO priority,\" \"SEO audit,\" \"SEO workflow,\" \"where to start SEO,\" \"SEO approach,\" \"organic growth strategy,\" \"why SEO,\" \"SEO value,\" or \"search strategy.\" Platforms: claude_code."} {"id": "2f2892f5db6277228bb91e55c108a068bd9194b13db6747cee73b4b70d4954a6", "repo_url": "https://github.com/kostja94/marketing-skills", "name": "website-structure", "description": "When the user wants to plan website structure, decide which pages to build, or prioritize pages for a new or existing site. Also use when the user mentions \"website structure,\" \"site structure,\" \"which pages do I need,\" \"page planning,\" \"sitemap planning,\" \"Must Have pages,\" \"website architecture,\" or \"site hierarchy.\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/kostja94/marketing-skills/blob/main/skills/strategies/structure/website-structure/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install website-structure"}, "quality": {"stars": 199, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:37:17Z"}, "embedding_text": "website-structure. When the user wants to plan website structure, decide which pages to build, or prioritize pages for a new or existing site. Also use when the user mentions \"website structure,\" \"site structure,\" \"which pages do I need,\" \"page planning,\" \"sitemap planning,\" \"Must Have pages,\" \"website architecture,\" or \"site hierarchy.\" Platforms: claude_code."} {"id": "4f7a81ab66b9a9054a28453e8c9ba31bebb1343e13da8e8ef956d615775fe335", "repo_url": "https://github.com/bowenliang123/markdown-exporter", "name": "markdown-exporter", "description": "Convert Markdown text to DOCX, PPTX, XLSX, PDF, PNG, HTML, IPYNB, MD, CSV, JSON, JSONL, XML files, and extract code blocks in Markdown to Python, Bash,JS and etc files.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/bowenliang123/markdown-exporter/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install markdown-exporter"}, "quality": {"stars": 190, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T07:44:15Z"}, "embedding_text": "markdown-exporter. Convert Markdown text to DOCX, PPTX, XLSX, PDF, PNG, HTML, IPYNB, MD, CSV, JSON, JSONL, XML files, and extract code blocks in Markdown to Python, Bash,JS and etc files. Platforms: claude_code."} -{"id": "46ad9db13bbbc97dcb50398f030c7f5e4dd922c76f77212649d08b539e3959aa", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "coding-standards", "description": "Detects code smells, anti-patterns, and readability issues. Use when implementing features, reviewing code, or refactoring.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/coding-standards/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coding-standards"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "coding-standards. Detects code smells, anti-patterns, and readability issues. Use when implementing features, reviewing code, or refactoring. Platforms: claude_code."} {"id": "b179fdd9a157dd20a647ffa33416beb0aff1fd3719c48ebb716f9e3fa6c1958a", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "documentation-criteria", "description": "Guides PRD, ADR, Design Doc, and Work Plan creation with templates and decision matrix.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/documentation-criteria/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install documentation-criteria"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "documentation-criteria. Guides PRD, ADR, Design Doc, and Work Plan creation with templates and decision matrix. Platforms: claude_code."} -{"id": "ffcc3662446757e3a9274f3f42dc7aab79978510237ab0f73bbba16b96c10778", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "frontend-technical-spec", "description": "Defines frontend environment variables, component design, and data flow patterns. Use when configuring React environment.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/frontend-technical-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-technical-spec"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "frontend-technical-spec. Defines frontend environment variables, component design, and data flow patterns. Use when configuring React environment. Platforms: claude_code."} -{"id": "cdc592eb7d50dc575b71556a0041066f1a88825b0d88f43f27789840fbc2f7ce", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "integration-e2e-testing", "description": "Designs integration and E2E tests with mock boundaries and behavior verification rules. Use when writing E2E or integration tests.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/integration-e2e-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install integration-e2e-testing"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "integration-e2e-testing. Designs integration and E2E tests with mock boundaries and behavior verification rules. Use when writing E2E or integration tests. Platforms: claude_code."} {"id": "f6b27d99dd68879527465bc385db132b55f1dc633e2def46b4e4c8bfdc311529", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "project-context", "description": "Provides project-specific prerequisites for AI execution accuracy. Use when checking project structure.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/project-context/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install project-context"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "project-context. Provides project-specific prerequisites for AI execution accuracy. Use when checking project structure. Platforms: claude_code."} {"id": "010bef99f61135735c4d100a542ef8fa272f582ee8936c418e6f62c927b6789b", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "skill-optimization", "description": "Evaluates and optimizes skill file quality against 8 content patterns and 9 editing principles. Use when creating skills, refining skill content, or auditing skill quality.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/skill-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-optimization"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "skill-optimization. Evaluates and optimizes skill file quality against 8 content patterns and 9 editing principles. Use when creating skills, refining skill content, or auditing skill quality. Platforms: claude_code."} -{"id": "167055422bbfb63d6131bebf57324a8e6210e2b0932356a048c7cdf8cd3f8683", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "subagents-orchestration-guide", "description": "Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/subagents-orchestration-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install subagents-orchestration-guide"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "subagents-orchestration-guide. Coordinates subagent task distribution and collaboration. Controls scale determination and autonomous execution mode. Platforms: claude_code."} {"id": "865039cd927ff66c2d38c515f36e52535b26f5b0f8561467dcf2db88a4dfc0fa", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "task-analyzer", "description": "Analyzes task essence and selects appropriate skills. Returns scale estimates and metadata. Use when starting tasks or selecting skills.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/task-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install task-analyzer"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "task-analyzer. Analyzes task essence and selects appropriate skills. Returns scale estimates and metadata. Use when starting tasks or selecting skills. Platforms: claude_code."} {"id": "e74bfafccdefd70f8d565dfbeb08aaba2e2f9a219b402f145fae3ca974dd52d0", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "technical-spec", "description": "Defines environment variables, architecture design, and build/test commands. Use when configuring environment or designing architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/technical-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technical-spec"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "technical-spec. Defines environment variables, architecture design, and build/test commands. Use when configuring environment or designing architecture. Platforms: claude_code."} {"id": "3c5a47061cd4326e16f62d571c9387fd99643d117bcaa8902938826e9d8e50c1", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "typescript-rules", "description": "Applies type safety and error handling rules. Enforces no-any policy and type guards. Use when implementing TypeScript or reviewing types.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-en/typescript-rules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install typescript-rules"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "typescript-rules. Applies type safety and error handling rules. Enforces no-any policy and type guards. Use when implementing TypeScript or reviewing types. Platforms: claude_code."} @@ -29505,14 +33782,11 @@ {"id": "9853a3ce339e7c0300f41006815da7d885eb6a00b01b6bf315c79712120b99de", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "technical-spec", "description": "\u74b0\u5883\u5909\u6570\u3001\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u8a2d\u8a08\u3001\u30d3\u30eb\u30c9\u30fb\u30c6\u30b9\u30c8\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3002\u74b0\u5883\u8a2d\u5b9a\u3001\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u8a2d\u8a08\u6642\u306b\u4f7f\u7528\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-ja/technical-spec/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technical-spec"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "technical-spec. \u74b0\u5883\u5909\u6570\u3001\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u8a2d\u8a08\u3001\u30d3\u30eb\u30c9\u30fb\u30c6\u30b9\u30c8\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3002\u74b0\u5883\u8a2d\u5b9a\u3001\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u8a2d\u8a08\u6642\u306b\u4f7f\u7528\u3002 Platforms: claude_code."} {"id": "ac7a2526babbf4f8db1d5c3e7b07f20c7cc9fe3e15bc0aedca0157a030f8bbba", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "typescript-rules", "description": "\u578b\u5b89\u5168\u6027\u3068\u30a8\u30e9\u30fc\u30cf\u30f3\u30c9\u30ea\u30f3\u30b0\u30eb\u30fc\u30eb\u3092\u9069\u7528\u3002any\u7981\u6b62\u3001\u578b\u30ac\u30fc\u30c9\u5fc5\u9808\u3002TypeScript\u5b9f\u88c5\u3001\u578b\u5b9a\u7fa9\u30ec\u30d3\u30e5\u30fc\u6642\u306b\u4f7f\u7528\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-ja/typescript-rules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install typescript-rules"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "typescript-rules. \u578b\u5b89\u5168\u6027\u3068\u30a8\u30e9\u30fc\u30cf\u30f3\u30c9\u30ea\u30f3\u30b0\u30eb\u30fc\u30eb\u3092\u9069\u7528\u3002any\u7981\u6b62\u3001\u578b\u30ac\u30fc\u30c9\u5fc5\u9808\u3002TypeScript\u5b9f\u88c5\u3001\u578b\u5b9a\u7fa9\u30ec\u30d3\u30e5\u30fc\u6642\u306b\u4f7f\u7528\u3002 Platforms: claude_code."} {"id": "05f1d33e7889b039813a2a6f8e02ee795412f8da0fee71f2d51e93dc4fae4fe5", "repo_url": "https://github.com/shinpr/ai-coding-project-boilerplate", "name": "typescript-testing", "description": "Vitest\u30c6\u30b9\u30c8\u8a2d\u8a08\u3068\u54c1\u8cea\u57fa\u6e96\u3092\u9069\u7528\u3002\u30ab\u30d0\u30ec\u30c3\u30b8\u8981\u4ef6\u3068\u30e2\u30c3\u30af\u4f7f\u7528\u30ac\u30a4\u30c9\u3092\u63d0\u4f9b\u3002\u30e6\u30cb\u30c3\u30c8\u30c6\u30b9\u30c8\u4f5c\u6210\u6642\u306b\u4f7f\u7528\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/ai-coding-project-boilerplate/blob/main/.claude/skills-ja/typescript-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install typescript-testing"}, "quality": {"stars": 185, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T07:39:01Z"}, "embedding_text": "typescript-testing. Vitest\u30c6\u30b9\u30c8\u8a2d\u8a08\u3068\u54c1\u8cea\u57fa\u6e96\u3092\u9069\u7528\u3002\u30ab\u30d0\u30ec\u30c3\u30b8\u8981\u4ef6\u3068\u30e2\u30c3\u30af\u4f7f\u7528\u30ac\u30a4\u30c9\u3092\u63d0\u4f9b\u3002\u30e6\u30cb\u30c3\u30c8\u30c6\u30b9\u30c8\u4f5c\u6210\u6642\u306b\u4f7f\u7528\u3002 Platforms: claude_code."} -{"id": "5e13e0566c436757713e82bd9b376c06b9522966bacb1e647a36538d574d0164", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "assignation-refere-communication-associe-selim-brihi", "description": "R\u00e9daction d'assignations en r\u00e9f\u00e9r\u00e9 devant le tribunal de commerce ou des activit\u00e9s \u00e9conomiques pour le droit de communication d'un associ\u00e9. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger, pr\u00e9parer ou cr\u00e9er une assignation en r\u00e9f\u00e9r\u00e9 fond\u00e9e sur l'article L. 238-1 du code de commerce pour obtenir la communication forc\u00e9e de documents sociaux (comptes annuels, rapports de gestion, PV d'assembl\u00e9es, etc.) lorsqu'un dirigeant refuse ou fait obstruction \u00e0 la communication de ces documents \u00e0 un associ\u00e9.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/assignation-refere-communication-associe-selim-brihi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install assignation-refere-communication-associe-selim-brihi"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "assignation-refere-communication-associe-selim-brihi. R\u00e9daction d'assignations en r\u00e9f\u00e9r\u00e9 devant le tribunal de commerce ou des activit\u00e9s \u00e9conomiques pour le droit de communication d'un associ\u00e9. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger, pr\u00e9parer ou cr\u00e9er une assignation en r\u00e9f\u00e9r\u00e9 fond\u00e9e sur l'article L. 238-1 du code de commerce pour obtenir la communication forc\u00e9e de documents sociaux (comptes annuels, rapports de gestion, PV d'assembl\u00e9es, etc.) lorsqu'un dirigeant refuse ou fait obstruction \u00e0 la communication de ces documents \u00e0 un associ\u00e9. Platforms: claude_code."} -{"id": "d8a4b1fdae67d994d88b216190e1a33abb36a9877447103fb9faae1e79086307", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "assignation-refere-recouvrement-creance-selim-brihi", "description": "R\u00e9daction d'assignations en r\u00e9f\u00e9r\u00e9 devant le tribunal de commerce ou des activit\u00e9s \u00e9conomiques pour le recouvrement de cr\u00e9ances commerciales. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger, pr\u00e9parer ou cr\u00e9er une assignation en r\u00e9f\u00e9r\u00e9 pour obtenir le paiement d'une cr\u00e9ance impay\u00e9e (factures, prestations de services, ventes de marchandises, etc.) lorsque le d\u00e9biteur n'a pas honor\u00e9 ses obligations de paiement et qu'il n'existe pas de contestation s\u00e9rieuse.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/assignation-refere-recouvrement-creance-selim-brihi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install assignation-refere-recouvrement-creance-selim-brihi"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "assignation-refere-recouvrement-creance-selim-brihi. R\u00e9daction d'assignations en r\u00e9f\u00e9r\u00e9 devant le tribunal de commerce ou des activit\u00e9s \u00e9conomiques pour le recouvrement de cr\u00e9ances commerciales. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger, pr\u00e9parer ou cr\u00e9er une assignation en r\u00e9f\u00e9r\u00e9 pour obtenir le paiement d'une cr\u00e9ance impay\u00e9e (factures, prestations de services, ventes de marchandises, etc.) lorsque le d\u00e9biteur n'a pas honor\u00e9 ses obligations de paiement et qu'il n'existe pas de contestation s\u00e9rieuse. Platforms: claude_code."} {"id": "57044bbf11c9884292004e6770edd332eba35c4a81fe5d8cce02af3c05285cd2", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "canned-responses-anthropic", "description": "Generate templated responses for common legal inquiries and identify when situations require individualized attention. Use when responding to routine legal questions \u2014 data subject requests, vendor inquiries, NDA requests, discovery holds \u2014 or when managing response templates.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/canned-responses-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install canned-responses-anthropic"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "canned-responses-anthropic. Generate templated responses for common legal inquiries and identify when situations require individualized attention. Use when responding to routine legal questions \u2014 data subject requests, vendor inquiries, NDA requests, discovery holds \u2014 or when managing response templates. Platforms: claude_code."} {"id": "d852461e62c35a15c427403a9818c351fcc58d7d6b4823bb87fc985b72b073c5", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "compliance-anthropic", "description": "Navigate privacy regulations (GDPR, CCPA), review DPAs, and handle data subject requests. Use when reviewing data processing agreements, responding to data subject access or deletion requests, assessing cross-border data transfer requirements, or evaluating privacy compliance.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/compliance-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install compliance-anthropic"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "compliance-anthropic. Navigate privacy regulations (GDPR, CCPA), review DPAs, and handle data subject requests. Use when reviewing data processing agreements, responding to data subject access or deletion requests, assessing cross-border data transfer requirements, or evaluating privacy compliance. Platforms: claude_code."} {"id": "d7ca08f5fa9e0c895206e14a173429d0e44ea920184b5d2819265dcabcfd7bf7", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "contract-review-anthropic", "description": "Review contracts against your organization's negotiation playbook, flagging deviations and generating redline suggestions. Use when reviewing vendor contracts, customer agreements, or any commercial agreement where you need clause-by-clause analysis against standard positions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/contract-review-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install contract-review-anthropic"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "contract-review-anthropic. Review contracts against your organization's negotiation playbook, flagging deviations and generating redline suggestions. Use when reviewing vendor contracts, customer agreements, or any commercial agreement where you need clause-by-clause analysis against standard positions. Platforms: claude_code."} {"id": "1bb25d99c2615c99b46b666ddd1299482e1a0ce73b3ed0d911bf27d197eb4cf7", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "docx-processing-anthropic", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/docx-processing-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx-processing-anthropic"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "docx-processing-anthropic. 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. Platforms: claude_code."} {"id": "27480895a825f8ae77a92db3c79240026ab4e719d57114cd1c8f11a589df5bb1", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "docx-processing-lawvable", "description": "Programmatically edit Word documents (.docx) with live preview and track changes via SuperDoc VS Code extension. Use when editing DOCX files, making tracked changes, redlining, marking up contracts, or when the user wants to modify Word documents with insertions/deletions visible. Triggers on docx, Word, track changes, redline, markup.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/docx-processing-lawvable/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx-processing-lawvable"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "docx-processing-lawvable. Programmatically edit Word documents (.docx) with live preview and track changes via SuperDoc VS Code extension. Use when editing DOCX files, making tracked changes, redlining, marking up contracts, or when the user wants to modify Word documents with insertions/deletions visible. Triggers on docx, Word, track changes, redline, markup. Platforms: claude_code."} -{"id": "4fe67021ddb994c2c0dc97eb5e8be6d04d5a1ee9a4a0f69e02c2ea964042e252", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "docx-processing-openai", "description": "Toolkit for comprehensive document reading, editing, and creation with visual quality control. Use to work with Word documents (.docx files) for: (1) Reading or extracting content from existing DOCX files, (2) Creating new Word documents with professional formatting, (3) Editing documents requiring precise typography and layout, or any other DOCX reading or generation tasks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/docx-processing-openai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx-processing-openai"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "docx-processing-openai. Toolkit for comprehensive document reading, editing, and creation with visual quality control. Use to work with Word documents (.docx files) for: (1) Reading or extracting content from existing DOCX files, (2) Creating new Word documents with professional formatting, (3) Editing documents requiring precise typography and layout, or any other DOCX reading or generation tasks. Platforms: claude_code."} {"id": "43bd37786af2959bd4b49b2b9005053fa6e54709232c1a413f950c024a7a20e5", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "docx-processing-superdoc", "description": "Searches, replaces, and reads text in Word documents. Use when the user asks to edit, search, or extract text from .docx files.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/docx-processing-superdoc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx-processing-superdoc"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "docx-processing-superdoc. Searches, replaces, and reads text in Word documents. Use when the user asks to edit, search, or extract text from .docx files. Platforms: claude_code."} {"id": "15c9fbb52e5916ce2f434d119a4cc5823c300e4a760b237835b0a70849a21c50", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "dpia-sentinel-oliver-schmidt-prietz", "description": "GDPR Data Protection Impact Assessment (DPIA) guidance under Article 35 GDPR, EDPB Guidelines WP 248 rev.01, EDPB Opinion 28/2024 (AI), and national SA blacklists/whitelists. Triggers: \"DPIA\", \"DSFA\", \"Datenschutz-Folgenabsch\u00e4tzung\", \"impact assessment\", \"Art. 35\", \"do I need a DPIA\", descriptions of new high-risk processing (profiling, AI, biometrics, large-scale monitoring, special category data), Art. 36 prior consultation questions, national blacklist/whitelist queries.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/dpia-sentinel-oliver-schmidt-prietz/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dpia-sentinel-oliver-schmidt-prietz"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "dpia-sentinel-oliver-schmidt-prietz. GDPR Data Protection Impact Assessment (DPIA) guidance under Article 35 GDPR, EDPB Guidelines WP 248 rev.01, EDPB Opinion 28/2024 (AI), and national SA blacklists/whitelists. Triggers: \"DPIA\", \"DSFA\", \"Datenschutz-Folgenabsch\u00e4tzung\", \"impact assessment\", \"Art. 35\", \"do I need a DPIA\", descriptions of new high-risk processing (profiling, AI, biometrics, large-scale monitoring, special category data), Art. 36 prior consultation questions, national blacklist/whitelist queries.\n Platforms: claude_code."} {"id": "36c2c3d2e8a158cdb3539f2a85e8da423622e0ce19fe179b86e1196cfbf95728", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "gdpr-breach-sentinel-oliver-schmidt-prietz", "description": "Elite incident response and legal compliance guidance for data breaches under GDPR Articles 33 & 34. Use when: (1) User reports a data breach or security incident, (2) User asks about breach notification obligations or deadlines, (3) User mentions \"72 hours\", Art. 33, Art. 34, or notification requirements, (4) Discussion involves security incidents affecting personal data, (5) User needs breach risk assessment using ENISA methodology, (6) User mentions \"Data Breach\" or \"Incident\" or \"Data Leakage\" or \"Ransomeware\" or \"Exfiltration\", (7) User needs to determine Controller vs Processor obligations, (8) Cross-border breach scenarios requiring Lead SA determination, (9) User needs a mitigation playbook or immediate response recommendations, (10) User needs to generate audit-ready breach documentation (.docx).\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/gdpr-breach-sentinel-oliver-schmidt-prietz/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gdpr-breach-sentinel-oliver-schmidt-prietz"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "gdpr-breach-sentinel-oliver-schmidt-prietz. Elite incident response and legal compliance guidance for data breaches under GDPR Articles 33 & 34. Use when: (1) User reports a data breach or security incident, (2) User asks about breach notification obligations or deadlines, (3) User mentions \"72 hours\", Art. 33, Art. 34, or notification requirements, (4) Discussion involves security incidents affecting personal data, (5) User needs breach risk assessment using ENISA methodology, (6) User mentions \"Data Breach\" or \"Incident\" or \"Data Leakage\" or \"Ransomeware\" or \"Exfiltration\", (7) User needs to determine Controller vs Processor obligations, (8) Cross-border breach scenarios requiring Lead SA determination, (9) User needs a mitigation playbook or immediate response recommendations, (10) User needs to generate audit-ready breach documentation (.docx).\n Platforms: claude_code."} @@ -29524,26 +33798,14 @@ {"id": "eaaf5de3331d6eca3044722e774c0d8370b9baf45a724088912cb7a61e8dfd5d", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "nda-triage-anthropic", "description": "Screen incoming NDAs and classify them as GREEN (standard), YELLOW (needs review), or RED (significant issues). Use when a new NDA comes in from sales or business development, when assessing NDA risk level, or when deciding whether an NDA needs full counsel review.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/nda-triage-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nda-triage-anthropic"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "nda-triage-anthropic. Screen incoming NDAs and classify them as GREEN (standard), YELLOW (needs review), or RED (significant issues). Use when a new NDA comes in from sales or business development, when assessing NDA risk level, or when deciding whether an NDA needs full counsel review. Platforms: claude_code."} {"id": "fcb26e40a610d23b743eb11b1e29b50ed4ff7f130939d6c14e013f5d0ee56b69", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "nil-contract-analysis-samir-patel", "description": "NIL (Name, Image, and Likeness) contract analysis for NCAA student-athletes from the athlete's perspective. Use when user says 'review this NIL contract', 'analyze this NIL deal', 'check this athlete agreement', 'review my NIL agreement', or uploads a PDF NIL contract for review. Identifies red flags, missing protections, and compliance issues. Produces a structured review memorandum with negotiation positions. Do NOT use for general contract review, employment agreements, non-NIL endorsements, or brand-side deal analysis.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/nil-contract-analysis-samir-patel/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install nil-contract-analysis-samir-patel"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "nil-contract-analysis-samir-patel. NIL (Name, Image, and Likeness) contract analysis for NCAA student-athletes from the athlete's perspective. Use when user says 'review this NIL contract', 'analyze this NIL deal', 'check this athlete agreement', 'review my NIL agreement', or uploads a PDF NIL contract for review. Identifies red flags, missing protections, and compliance issues. Produces a structured review memorandum with negotiation positions. Do NOT use for general contract review, employment agreements, non-NIL endorsements, or brand-side deal analysis. Platforms: claude_code."} {"id": "32a2d5600365c39fe0f0f26ef1af7a2c9036f3b5ad2f1d48700e1a6594b18098", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "outlook-emails-lawvable", "description": "Read, search, and download emails and attachments from Microsoft Outlook via OAuth2. Use when the user asks to (1) check, read, or fetch emails or messages from Outlook, (2) search emails by keyword, sender, or subject, (3) download email attachments such as contracts, NDAs, or documents, (4) chain email content into other skills (e.g. \"read the latest email from X and review the attached NDA\"), or (5) any task involving Microsoft Outlook, Office 365, or Exchange email access.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/outlook-emails-lawvable/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install outlook-emails-lawvable"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "outlook-emails-lawvable. Read, search, and download emails and attachments from Microsoft Outlook via OAuth2. Use when the user asks to (1) check, read, or fetch emails or messages from Outlook, (2) search emails by keyword, sender, or subject, (3) download email attachments such as contracts, NDAs, or documents, (4) chain email content into other skills (e.g. \"read the latest email from X and review the attached NDA\"), or (5) any task involving Microsoft Outlook, Office 365, or Exchange email access. Platforms: claude_code."} -{"id": "e4f88a12a4dcf50530a04b56434abee3692924d62875f2cf18d92be943e1843e", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "pdf-processing-anthropic", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/pdf-processing-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf-processing-anthropic"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "pdf-processing-anthropic. 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. Platforms: claude_code."} -{"id": "a9fb3509e5bcfa846f68be863a902e76b19c53fd0d7f0f548929d8250c47d80c", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "pdf-processing-openai", "description": "Toolkit for comprehensive PDF reading, reviwing, and creation with visual quality control. Use to work with PDFs (.pdf files) for: (1) Reading or extracting content from existing PDFs, (2) Creating new PDF documents with professional formatting, (3) Generating reports, documents, or layouts that require precise typography and design, or any other PDF reading or generation tasks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/pdf-processing-openai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf-processing-openai"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "pdf-processing-openai. Toolkit for comprehensive PDF reading, reviwing, and creation with visual quality control. Use to work with PDFs (.pdf files) for: (1) Reading or extracting content from existing PDFs, (2) Creating new PDF documents with professional formatting, (3) Generating reports, documents, or layouts that require precise typography and design, or any other PDF reading or generation tasks. Platforms: claude_code."} -{"id": "7e0b41cf22c12bf7c82d84e2e17d6b3f6a0db043797dd8ef3bd1f5ee9f370c85", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "cookie-policy-malik-taiar", "description": "Guide for drafting cookie policies compliant with GDPR and the ePrivacy Directive. Includes CNIL 2020 recommendations, a reference template, and best practices. Use when drafting or revising a cookie policy for a website or application.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/politique-cookies-malik-taiar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cookie-policy-malik-taiar"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "cookie-policy-malik-taiar. Guide for drafting cookie policies compliant with GDPR and the ePrivacy Directive. Includes CNIL 2020 recommendations, a reference template, and best practices. Use when drafting or revising a cookie policy for a website or application. Platforms: claude_code."} -{"id": "22bc121869d0323e6c067d9da7a041c6f536eba6480aee17968e26b4c24c1a72", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "whistleblower-policy-malik-taiar", "description": "Guide for (a) auditing an existing whistleblower system or (b) drafting a compliant reporting policy from a provided template. Covers EU Directive 2019/1937, the amended Sapin II law (Waserman 2022), Decree 2022-1284, CNIL guidelines, public sector requirements, and duty of vigilance.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/politique-lanceur-alerte-malik-taiar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install whistleblower-policy-malik-taiar"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "whistleblower-policy-malik-taiar. Guide for (a) auditing an existing whistleblower system or (b) drafting a compliant reporting policy from a provided template. Covers EU Directive 2019/1937, the amended Sapin II law (Waserman 2022), Decree 2022-1284, CNIL guidelines, public sector requirements, and duty of vigilance. Platforms: claude_code."} {"id": "310ceb24f5dbe556059a65b00ab3adbf275c034a254744c382bd39b07f9b2698", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "red-team-verifier-patrick-munro", "description": "Adversarial verification for AI-generated legal content with systematic fact-checking, source validation, and quality control. Use when User requests verification of legal documents, fact-checking of regulatory content, red team review, or quality assurance before distribution to clients/stakeholders. Provides structured verification reports with severity-categorized errors, verified sources, and distribution readiness assessment.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/red-team-verifier-patrick-munro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install red-team-verifier-patrick-munro"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "red-team-verifier-patrick-munro. Adversarial verification for AI-generated legal content with systematic fact-checking, source validation, and quality control. Use when User requests verification of legal documents, fact-checking of regulatory content, red team review, or quality assurance before distribution to clients/stakeholders. Provides structured verification reports with severity-categorized errors, verified sources, and distribution readiness assessment. Platforms: claude_code."} -{"id": "3ff00678f1f462c4991f3ec95aa48c6c58fd7bb6a9de153db31673c0fcfc3609", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "requete-cph-licenciement-faute-grave-selim-brihi", "description": "R\u00e9daction de requ\u00eates devant le Conseil de prud'hommes pour contester un licenciement pour faute grave. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger une requ\u00eate CPH, contester un licenciement pour faute grave, pr\u00e9parer une saisine du CPH pour un litige li\u00e9 \u00e0 un licenciement, ou cr\u00e9er un document de contestation de licenciement en droit du travail fran\u00e7ais.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/requete-cph-licenciement-faute-grave-selim-brihi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install requete-cph-licenciement-faute-grave-selim-brihi"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "requete-cph-licenciement-faute-grave-selim-brihi. R\u00e9daction de requ\u00eates devant le Conseil de prud'hommes pour contester un licenciement pour faute grave. Utiliser ce skill quand l'utilisateur demande de r\u00e9diger une requ\u00eate CPH, contester un licenciement pour faute grave, pr\u00e9parer une saisine du CPH pour un litige li\u00e9 \u00e0 un licenciement, ou cr\u00e9er un document de contestation de licenciement en droit du travail fran\u00e7ais. Platforms: claude_code."} {"id": "cbecf2b48060216ada5dde38ee42c0f593fd0584756cf4866e50882c91e7038b", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "security-review-openai", "description": "Perform language and framework specific security best-practice reviews and suggest improvements. Trigger only when the user explicitly requests security best practices guidance, a security review/report, or secure-by-default coding help. Trigger only for supported languages (python, javascript/typescript, go). Do not trigger for general code review, debugging, or non-security tasks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/security-review-openai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install security-review-openai"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "security-review-openai. Perform language and framework specific security best-practice reviews and suggest improvements. Trigger only when the user explicitly requests security best practices guidance, a security review/report, or secure-by-default coding help. Trigger only for supported languages (python, javascript/typescript, go). Do not trigger for general code review, debugging, or non-security tasks. Platforms: claude_code."} -{"id": "f3d583d76a1326d95b073aa1881664666019b22257da88a5bc52db9e246d141e", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "skill-creator-anthropic", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/skill-creator-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator-anthropic"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "skill-creator-anthropic. 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. Platforms: claude_code."} {"id": "9693e46ed9ce6c2a11a6fcfdc065aef68463d2ab547755d5579522a4ffcc75ba", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "skill-creator-openai", "description": "Guide for creating effective skills. Use when users want to create a new skill (or update an existing skill) that extends the model's capabilities with specialized knowledge, workflows, or tool integrations.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/skill-creator-openai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator-openai"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "skill-creator-openai. Guide for creating effective skills. Use when users want to create a new skill (or update an existing skill) that extends the model's capabilities with specialized knowledge, workflows, or tool integrations. Platforms: claude_code."} {"id": "876c9feec8d68f6ac62d6aa4391ec58842e72fda157db198e653c2a18703055b", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "skill-optimizer-lawvable", "description": "Guide to analyze a current work session and propose improvements to skills. Use (1) automatically after working with a skill to capture learnings, (2) when the user suggests improvements, corrections, or additions during a skill-related session, or (3) when the user manually invokes `self-improve`.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/skill-optimizer-lawvable/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-optimizer-lawvable"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "skill-optimizer-lawvable. Guide to analyze a current work session and propose improvements to skills. Use (1) automatically after working with a skill to capture learnings, (2) when the user suggests improvements, corrections, or additions during a skill-related session, or (3) when the user manually invokes `self-improve`. Platforms: claude_code."} -{"id": "937a9d2e73a9b7b0a1a86fd54c83fb9ac895e0c246381369357050780d320b2d", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "statute-analysis-rafal-fryc", "description": "Guide for reading, interpreting, and applying statutes, regulations, and rules in legal and compliance contexts. Use when the user asks about (1) how to read and interpret statutes, regulations, or rules, (2) statutory interpretation methods and canons of construction, (3) understanding legislative intent, (4) applying statutes to specific legal situations, (5) extracting requirements from legal text, (6) distinguishing between different types of legal requirements, or (7) cross-jurisdictional compliance analysis.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/statute-analysis-rafal-fryc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install statute-analysis-rafal-fryc"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "statute-analysis-rafal-fryc. Guide for reading, interpreting, and applying statutes, regulations, and rules in legal and compliance contexts. Use when the user asks about (1) how to read and interpret statutes, regulations, or rules, (2) statutory interpretation methods and canons of construction, (3) understanding legislative intent, (4) applying statutes to specific legal situations, (5) extracting requirements from legal text, (6) distinguishing between different types of legal requirements, or (7) cross-jurisdictional compliance analysis. Platforms: claude_code."} {"id": "6d82dd1444ab46d2ee0b810c5dfb765a410b915c0daefcb70094d9a318f0d06c", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "tabular-review-lawvable", "description": "Guide to analyze multiple documents (PDF, DOCX) against user-defined columns and produce a structured Excel output with citations. Use when the user wants to: (1) Extract specific information from multiple documents into a table, (2) Compare clauses or provisions across contracts, (3) Create a document review matrix with source citations. Triggers on: 'tabular review', 'document matrix', 'extract from documents', 'compare across documents', 'review multiple contracts'.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/tabular-review-lawvable/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tabular-review-lawvable"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "tabular-review-lawvable. Guide to analyze multiple documents (PDF, DOCX) against user-defined columns and produce a structured Excel output with citations. Use when the user wants to: (1) Extract specific information from multiple documents into a table, (2) Compare clauses or provisions across contracts, (3) Create a document review matrix with source citations. Triggers on: 'tabular review', 'document matrix', 'extract from documents', 'compare across documents', 'review multiple contracts'. Platforms: claude_code."} -{"id": "73767be2f44da0d8f79949cc24de8ce84ce00042ecc8939592f1f8de359038a7", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "tech-contract-negotiation-patrick-munro", "description": "Guide to negotiating technology services agreements, professional services contracts, and commercial B2B transactions. Provides three-position frameworks (provider-favorable, balanced, client-favorable), deal-size tactics, objection handling templates, and concession roadmaps. Use when: (1) Developing negotiation strategies for SaaS, cloud, or managed services agreements, (2) Preparing position papers and fallback positions, (3) Responding to counterparty objections and demands, (4) Creating concession roadmaps that protect critical interests, (5) Assessing tactics based on deal value and leverage, or (6) Structuring balanced outcomes for liability, IP, payment, SLA, or warranty provisions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/tech-contract-negotiation-patrick-munro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tech-contract-negotiation-patrick-munro"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "tech-contract-negotiation-patrick-munro. Guide to negotiating technology services agreements, professional services contracts, and commercial B2B transactions. Provides three-position frameworks (provider-favorable, balanced, client-favorable), deal-size tactics, objection handling templates, and concession roadmaps. Use when: (1) Developing negotiation strategies for SaaS, cloud, or managed services agreements, (2) Preparing position papers and fallback positions, (3) Responding to counterparty objections and demands, (4) Creating concession roadmaps that protect critical interests, (5) Assessing tactics based on deal value and leverage, or (6) Structuring balanced outcomes for liability, IP, payment, SLA, or warranty provisions. Platforms: claude_code."} {"id": "fcc7f3f74f9fa9060ff5c4d19112825bc171bbd164f446e342a73b9d061c76ac", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "vscode-extension-builder-lawvable", "description": "Build VS Code extensions from scratch or convert existing JS/React/Vue apps. Supports commands, webviews (React/Vue), custom editors, tree views, and AI agent integration via file-bridge IPC. Use when user wants to create a VS Code extension, convert a web app to an extension, add webviews or custom UIs to VS Code, implement tree views, build custom file editors, integrate with AI agents, or package/publish extensions (.vsix).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/vscode-extension-builder-lawvable/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vscode-extension-builder-lawvable"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "vscode-extension-builder-lawvable. Build VS Code extensions from scratch or convert existing JS/React/Vue apps. Supports commands, webviews (React/Vue), custom editors, tree views, and AI agent integration via file-bridge IPC. Use when user wants to create a VS Code extension, convert a web app to an extension, add webviews or custom UIs to VS Code, implement tree views, build custom file editors, integrate with AI agents, or package/publish extensions (.vsix). Platforms: claude_code."} {"id": "6cca30dae937bbb2bfa8d43c72d4d2dd3b3271377e426cdb3bdb9dfd948e0f19", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "xlsx-processing-anthropic", "description": "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 \u2014 even casually (like \"the xlsx in my downloads\") \u2014 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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/xlsx-processing-anthropic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx-processing-anthropic"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "xlsx-processing-anthropic. 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 \u2014 even casually (like \"the xlsx in my downloads\") \u2014 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. Platforms: claude_code."} {"id": "31b1ebdba509dc13ff3775cd3a7ab2e450ab2c6553c81dcf1855c36cb7e26128", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "xlsx-processing-manus", "description": "Professional Excel spreadsheet creation with a focus on aesthetics and data analysis. Use when creating spreadsheets for organizing, analyzing, and presenting structured data in a clear and professional format.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/xlsx-processing-manus/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx-processing-manus"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "xlsx-processing-manus. Professional Excel spreadsheet creation with a focus on aesthetics and data analysis. Use when creating spreadsheets for organizing, analyzing, and presenting structured data in a clear and professional format. Platforms: claude_code."} -{"id": "7b14cfa786084a02a4520254849cb5cf194b6b981d9d1e6021b3db806fc6990f", "repo_url": "https://github.com/lawvable/awesome-legal-skills", "name": "xlsx-processing-openai", "description": "Toolkit for comprehensive Spreadsheet reading, creation, editing, and analysis with visual quality control. Use to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing tabular data, (3) Modifying existing spreadsheets while preserving formulas, (4) Building financial models with proper formatting, (5) Data visualization with in-sheet charts, or any other spreadsheet tasks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lawvable/awesome-legal-skills/blob/main/skills/xlsx-processing-openai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx-processing-openai"}, "quality": {"stars": 179, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T11:25:06Z"}, "embedding_text": "xlsx-processing-openai. Toolkit for comprehensive Spreadsheet reading, creation, editing, and analysis with visual quality control. Use to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing tabular data, (3) Modifying existing spreadsheets while preserving formulas, (4) Building financial models with proper formatting, (5) Data visualization with in-sheet charts, or any other spreadsheet tasks. Platforms: claude_code."} -{"id": "6619c33722f562deba6271fd5481bc2203e3edc37e0df1bff44876dde2cd536d", "repo_url": "https://github.com/dougtrajano/pydantic-ai-skills", "name": "arxiv-search", "description": "Search arXiv preprint repository for papers in physics, mathematics, computer science, quantitative biology, and related fields.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dougtrajano/pydantic-ai-skills/blob/main/examples/skills/arxiv-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install arxiv-search"}, "quality": {"stars": 171, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T01:14:03Z"}, "embedding_text": "arxiv-search. Search arXiv preprint repository for papers in physics, mathematics, computer science, quantitative biology, and related fields. Platforms: claude_code."} -{"id": "f194b9b656b5308b6763896ede014c651a1a529d4cf0afb4dd75a21930ca9c5f", "repo_url": "https://github.com/dougtrajano/pydantic-ai-skills", "name": "pydanticai-docs", "description": "Use this skill whenever the user is working with the Pydantic AI framework \u2014 including building AI agents, defining structured outputs with Pydantic models, wiring up tools/function calling, configuring model providers (OpenAI, Anthropic, Gemini, etc.), managing dependencies via agent context, handling streaming responses, or debugging agent runs. Trigger this skill even for adjacent tasks like \"how do I make my agent return JSON\", \"set up a multi-step agent\", \"add a tool to my agent\", or \"validate LLM output with Pydantic\" \u2014 any time Pydantic AI is mentioned or implied as the target framework.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dougtrajano/pydantic-ai-skills/blob/main/examples/skills/pydanticai-docs/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pydanticai-docs"}, "quality": {"stars": 171, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T01:14:03Z"}, "embedding_text": "pydanticai-docs. Use this skill whenever the user is working with the Pydantic AI framework \u2014 including building AI agents, defining structured outputs with Pydantic models, wiring up tools/function calling, configuring model providers (OpenAI, Anthropic, Gemini, etc.), managing dependencies via agent context, handling streaming responses, or debugging agent runs. Trigger this skill even for adjacent tasks like \"how do I make my agent return JSON\", \"set up a multi-step agent\", \"add a tool to my agent\", or \"validate LLM output with Pydantic\" \u2014 any time Pydantic AI is mentioned or implied as the target framework. Platforms: claude_code."} -{"id": "b8b546cef217ef299266574f074673e1fdebee5251341b53d1f86f12e80f9eba", "repo_url": "https://github.com/dougtrajano/pydantic-ai-skills", "name": "web-research", "description": "Use this skill for requests related to web research; it provides a structured approach to conducting comprehensive web research.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dougtrajano/pydantic-ai-skills/blob/main/examples/skills/web-research/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install web-research"}, "quality": {"stars": 171, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T01:14:03Z"}, "embedding_text": "web-research. Use this skill for requests related to web research; it provides a structured approach to conducting comprehensive web research. Platforms: claude_code."} {"id": "dff8669970c99fbc3facb3f2c11ce5f249adca646d0edd6e3eee71f2beb31345", "repo_url": "https://github.com/shinpr/mcp-local-rag", "name": "mcp-local-rag", "description": "Provides score interpretation (< 0.3 good, > 0.5 skip), query optimization, and source naming for query_documents, ingest_file, ingest_data tools. Use this skill when working with RAG, searching documents, ingesting files, saving web content, or handling PDF, HTML, DOCX, TXT, Markdown.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shinpr/mcp-local-rag/blob/main/skills/mcp-local-rag/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-local-rag"}, "quality": {"stars": 168, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T14:42:50Z"}, "embedding_text": "mcp-local-rag. Provides score interpretation (< 0.3 good, > 0.5 skip), query optimization, and source naming for query_documents, ingest_file, ingest_data tools. Use this skill when working with RAG, searching documents, ingesting files, saving web content, or handling PDF, HTML, DOCX, TXT, Markdown. Platforms: claude_code."} {"id": "31bcd5579356dd7f3c1aec94a239fec4adf182bef3315ce202a712b586b010df", "repo_url": "https://github.com/partme-ai/full-stack-skills", "name": "adobe-xd", "description": "Provides comprehensive guidance for Adobe XD including design creation, prototyping, components, and collaboration. Use when the user asks about Adobe XD, needs to create UI/UX designs, build prototypes, or work with Adobe XD components.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/partme-ai/full-stack-skills/blob/main/skills/adobe-xd/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install adobe-xd"}, "quality": {"stars": 157, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-28T18:04:50Z"}, "embedding_text": "adobe-xd. Provides comprehensive guidance for Adobe XD including design creation, prototyping, components, and collaboration. Use when the user asks about Adobe XD, needs to create UI/UX designs, build prototypes, or work with Adobe XD components. Platforms: claude_code."} {"id": "288b8a571ab5d11f35d09d8ecebfe589c9560c996f952fdefda77b204dd1f72e", "repo_url": "https://github.com/partme-ai/full-stack-skills", "name": "agent-browser", "description": "A comprehensive skill for using agent-browser, a CLI tool for browser automation designed for AI agents, developed by Vercel Labs. This skill covers installation, core commands, selectors (refs, CSS, XPath, semantic locators), agent mode, sessions, options, and best practices. Use this skill whenever the user needs to automate browser interactions via CLI commands, especially for AI agents that need to interact with web pages.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/partme-ai/full-stack-skills/blob/main/skills/agent-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-browser"}, "quality": {"stars": 157, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-28T18:04:50Z"}, "embedding_text": "agent-browser. A comprehensive skill for using agent-browser, a CLI tool for browser automation designed for AI agents, developed by Vercel Labs. This skill covers installation, core commands, selectors (refs, CSS, XPath, semantic locators), agent mode, sessions, options, and best practices. Use this skill whenever the user needs to automate browser interactions via CLI commands, especially for AI agents that need to interact with web pages. Platforms: claude_code."} @@ -29727,11 +33989,6 @@ {"id": "188b16eb23f6ddcfb051331edc1d3cf0571d7bdf1b6e5ea8db7795843c4dae84", "repo_url": "https://github.com/partme-ai/full-stack-skills", "name": "webpack", "description": "Provides comprehensive guidance for Webpack bundler including configuration, loaders, plugins, code splitting, optimization, and development setup. Use when the user asks about Webpack, needs to configure Webpack, set up build pipelines, optimize bundles, or work with Webpack plugins.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/partme-ai/full-stack-skills/blob/main/skills/webpack/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install webpack"}, "quality": {"stars": 157, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-28T18:04:50Z"}, "embedding_text": "webpack. Provides comprehensive guidance for Webpack bundler including configuration, loaders, plugins, code splitting, optimization, and development setup. Use when the user asks about Webpack, needs to configure Webpack, set up build pipelines, optimize bundles, or work with Webpack plugins. Platforms: claude_code."} {"id": "859e432b66a1f1723354205aea4fc9016a8c82bb5e5455a80629f2e795d870b8", "repo_url": "https://github.com/partme-ai/full-stack-skills", "name": "xlsx", "description": "Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/partme-ai/full-stack-skills/blob/main/skills/xlsx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xlsx"}, "quality": {"stars": 157, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-28T18:04:50Z"}, "embedding_text": "xlsx. Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas Platforms: claude_code."} {"id": "b93aa87806e36fdae372ba3374d9e21078ad23e34c12815179b45888e23e148d", "repo_url": "https://github.com/partme-ai/full-stack-skills", "name": "template-skill", "description": "Replace with description of the skill and when Claude should use it.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/partme-ai/full-stack-skills/blob/main/template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install template-skill"}, "quality": {"stars": 157, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-28T18:04:50Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Claude should use it. Platforms: claude_code."} -{"id": "abc2d5eec028dbb85523e8dbef99e80731e4931ea83353effae3cd44035e7cc9", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "analyze-test-run", "description": "Analyze a GitHub Actions integration test run and produce a skill invocation report with failure root-cause issues. TRIGGERS: analyze test run, skill invocation rate, test run report, compare test runs, skill invocation summary, test failure analysis, run report, test results, action run report", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/analyze-test-run/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install analyze-test-run"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "analyze-test-run. Analyze a GitHub Actions integration test run and produce a skill invocation report with failure root-cause issues. TRIGGERS: analyze test run, skill invocation rate, test run report, compare test runs, skill invocation summary, test failure analysis, run report, test results, action run report Platforms: claude_code."} -{"id": "cb7cee3052df5bbf028ef66e0b825db3536979e2adf99ffe8b99a70373aecf5b", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "file-test-bug", "description": "File a GitHub issue for local integration test failures. TRIGGERS: file test bug, report test failure, create bug for test, integration test failed, test failure issue, junit failure", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/file-test-bug/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install file-test-bug"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "file-test-bug. File a GitHub issue for local integration test failures. TRIGGERS: file test bug, report test failure, create bug for test, integration test failed, test failure issue, junit failure Platforms: claude_code."} -{"id": "33ab796fd70ed5a4279e8d3bc11402e622e4db14829cce0f9642efa7581b3c40", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "markdown-token-optimizer", "description": "Analyzes markdown files for token efficiency. TRIGGERS: optimize markdown, reduce tokens, token count, token bloat, too many tokens, make concise, shrink file, file too large, optimize for AI, token efficiency, verbose markdown, reduce file size", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/markdown-token-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install markdown-token-optimizer"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "markdown-token-optimizer. Analyzes markdown files for token efficiency. TRIGGERS: optimize markdown, reduce tokens, token count, token bloat, too many tokens, make concise, shrink file, file too large, optimize for AI, token efficiency, verbose markdown, reduce file size Platforms: claude_code."} -{"id": "e5f16b39745e9379b4ea6104083a719e4225efdf972c9ded2f885abe9d7b7654", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "sensei", "description": "**WORKFLOW SKILL** \u2014 Iteratively improve skill frontmatter compliance using the Ralph loop pattern. WHEN: \"run sensei\", \"sensei help\", \"improve skill\", \"fix frontmatter\", \"skill compliance\", \"frontmatter audit\", \"score skill\", \"check skill tokens\". INVOKES: token counting tools, test runners, git commands. FOR SINGLE OPERATIONS: use token CLI directly for counts/checks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/sensei/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sensei"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "sensei. **WORKFLOW SKILL** \u2014 Iteratively improve skill frontmatter compliance using the Ralph loop pattern. WHEN: \"run sensei\", \"sensei help\", \"improve skill\", \"fix frontmatter\", \"skill compliance\", \"frontmatter audit\", \"score skill\", \"check skill tokens\". INVOKES: token counting tools, test runners, git commands. FOR SINGLE OPERATIONS: use token CLI directly for counts/checks. Platforms: claude_code."} -{"id": "adeef1d14f86f510c6975292dae0fa8d2bd69643339ab9450d8af84f42e5528a", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "skill-authoring", "description": "Guidelines for writing Agent Skills that comply with the agentskills.io specification. WHEN: \"create a skill\", \"new skill\", \"write a skill\", \"skill template\", \"skill structure\", \"review skill\", \"skill PR\", \"skill compliance\", \"SKILL.md format\", \"skill frontmatter\", \"skill best practices\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/.github/skills/skill-authoring/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-authoring"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "skill-authoring. Guidelines for writing Agent Skills that comply with the agentskills.io specification. WHEN: \"create a skill\", \"new skill\", \"write a skill\", \"skill template\", \"skill structure\", \"review skill\", \"skill PR\", \"skill compliance\", \"SKILL.md format\", \"skill frontmatter\", \"skill best practices\". Platforms: claude_code."} {"id": "8fbfac2c9294779e8d64d4f073436d353b0bd5cef69d69a0b9db159aea05ff08", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "appinsights-instrumentation", "description": "Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/appinsights-instrumentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install appinsights-instrumentation"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "appinsights-instrumentation. Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices. Platforms: claude_code."} {"id": "76132e083b74e06a4bd596e4e3be8b818b3b37c710c6c30eb14e551fff5d4d59", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-ai", "description": "Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-ai"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "azure-ai. Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech. Platforms: claude_code."} {"id": "674ba27e39e40b32cf94a5bea0659dfe7300e138c17cfa23031e4c23a33824ff", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-aigateway", "description": "Configure Azure API Management as an AI Gateway for AI models, MCP tools, and agents. WHEN: semantic caching, token limit, content safety, load balancing, AI model governance, MCP rate limiting, jailbreak detection, add Azure OpenAI backend, add AI Foundry model, test AI gateway, LLM policies, configure AI backend, token metrics, AI cost control, convert API to MCP, import OpenAPI to gateway.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-aigateway/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-aigateway"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "azure-aigateway. Configure Azure API Management as an AI Gateway for AI models, MCP tools, and agents. WHEN: semantic caching, token limit, content safety, load balancing, AI model governance, MCP rate limiting, jailbreak detection, add Azure OpenAI backend, add AI Foundry model, test AI gateway, LLM policies, configure AI backend, token metrics, AI cost control, convert API to MCP, import OpenAPI to gateway. Platforms: claude_code."} @@ -29745,7 +34002,6 @@ {"id": "e170703fcc32ccc1b138e7f5466d2d5868d9724b6a19022f54d57ae3b5924c93", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-kusto", "description": "Query and analyze data in Azure Data Explorer (Kusto/ADX) using KQL for log analytics, telemetry, and time series analysis. WHEN: KQL queries, Kusto database queries, Azure Data Explorer, ADX clusters, log analytics, time series data, IoT telemetry, anomaly detection.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-kusto/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-kusto"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "azure-kusto. Query and analyze data in Azure Data Explorer (Kusto/ADX) using KQL for log analytics, telemetry, and time series analysis. WHEN: KQL queries, Kusto database queries, Azure Data Explorer, ADX clusters, log analytics, time series data, IoT telemetry, anomaly detection. Platforms: claude_code."} {"id": "1901f8495db213c0825bf472c77cf7d8198b2c7ef90eabc1888c22c4434ad069", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-messaging", "description": "Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-messaging"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "azure-messaging. Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter. Platforms: claude_code."} {"id": "2322d24a585c663993f7ae13de6e83364904a1b72ce703bd75b94c586d10f1a6", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-prepare", "description": "Prepare Azure apps for deployment (infra Bicep/Terraform, azure.yaml, Dockerfiles). Use for create/modernize or create+deploy; not cross-cloud migration (use azure-cloud-migrate). WHEN: \"create app\", \"build web app\", \"create API\", \"create serverless HTTP API\", \"create frontend\", \"create back end\", \"build a service\", \"modernize application\", \"update application\", \"add authentication\", \"add caching\", \"host on Azure\", \"create and deploy\", \"deploy to Azure\", \"deploy to Azure using Terraform\", \"deploy to Azure App Service\", \"deploy to Azure App Service using Terraform\", \"deploy to Azure Container Apps\", \"deploy to Azure Container Apps using Terraform\", \"generate Terraform\", \"generate Bicep\", \"function app\", \"timer trigger\", \"service bus trigger\", \"event-driven function\", \"containerized Node.js app\", \"social media app\", \"static portfolio website\", \"todo list with frontend and API\", \"prepare my Azure application to use Key Vault\", \"managed identity\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-prepare/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-prepare"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "azure-prepare. Prepare Azure apps for deployment (infra Bicep/Terraform, azure.yaml, Dockerfiles). Use for create/modernize or create+deploy; not cross-cloud migration (use azure-cloud-migrate). WHEN: \"create app\", \"build web app\", \"create API\", \"create serverless HTTP API\", \"create frontend\", \"create back end\", \"build a service\", \"modernize application\", \"update application\", \"add authentication\", \"add caching\", \"host on Azure\", \"create and deploy\", \"deploy to Azure\", \"deploy to Azure using Terraform\", \"deploy to Azure App Service\", \"deploy to Azure App Service using Terraform\", \"deploy to Azure Container Apps\", \"deploy to Azure Container Apps using Terraform\", \"generate Terraform\", \"generate Bicep\", \"function app\", \"timer trigger\", \"service bus trigger\", \"event-driven function\", \"containerized Node.js app\", \"social media app\", \"static portfolio website\", \"todo list with frontend and API\", \"prepare my Azure application to use Key Vault\", \"managed identity\". Platforms: claude_code."} -{"id": "0f550b9a62c7999dacd3b25c7a3c275305c0441b04bdd15df295c5a1fca6b987", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-quotas", "description": "Check/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection. WHEN: \"check quotas\", \"service limits\", \"current usage\", \"request quota increase\", \"quota exceeded\", \"validate capacity\", \"regional availability\", \"provisioning limits\", \"vCPU limit\", \"how many vCPUs available in my subscription\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-quotas/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-quotas"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "azure-quotas. Check/manage Azure quotas and usage across providers. For deployment planning, capacity validation, region selection. WHEN: \"check quotas\", \"service limits\", \"current usage\", \"request quota increase\", \"quota exceeded\", \"validate capacity\", \"regional availability\", \"provisioning limits\", \"vCPU limit\", \"how many vCPUs available in my subscription\". Platforms: claude_code."} {"id": "421164189764a906d1416065744abede33f0c629501ca7beada8a9add8f703ff", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-rbac", "description": "Helps users find the right Azure RBAC role for an identity with least privilege access, then generate CLI commands and Bicep code to assign it. Also provides guidance on permissions required to grant roles. WHEN: what role should I assign, least privilege role, RBAC role for, role to read blobs, role for managed identity, custom role definition, assign role to identity, what role do I need to grant access, permissions to assign roles.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-rbac/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-rbac"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "azure-rbac. Helps users find the right Azure RBAC role for an identity with least privilege access, then generate CLI commands and Bicep code to assign it. Also provides guidance on permissions required to grant roles. WHEN: what role should I assign, least privilege role, RBAC role for, role to read blobs, role for managed identity, custom role definition, assign role to identity, what role do I need to grant access, permissions to assign roles. Platforms: claude_code."} {"id": "d1bc03da826d36777af90287c58f6161f09a04e3a81d4827f0d5767ced759814", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-resource-lookup", "description": "List, find, and show Azure resources. Answers \"list my VMs\", \"show my storage accounts\", \"list websites\", \"find container apps\", \"what resources do I have\", and similar queries for any Azure resource type. USE FOR: list resources, list virtual machines, list VMs, list storage accounts, list websites, list web apps, list container apps, show resources, find resources, what resources do I have, list resources in resource group, list resources in subscription, find resources by tag, find orphaned resources, resource inventory, count resources by type, cross-subscription resource query, Azure Resource Graph, resource discovery, list container registries, list SQL servers, list Key Vaults, show resource groups, list app services, find resources across subscriptions, find unattached disks, tag analysis. DO NOT USE FOR: deploying resources (use azure-deploy), creating or modifying resources, cost optimization (use azure-cost-optimization), writing application code, non-Azure clouds.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-resource-lookup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-resource-lookup"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "azure-resource-lookup. List, find, and show Azure resources. Answers \"list my VMs\", \"show my storage accounts\", \"list websites\", \"find container apps\", \"what resources do I have\", and similar queries for any Azure resource type. USE FOR: list resources, list virtual machines, list VMs, list storage accounts, list websites, list web apps, list container apps, show resources, find resources, what resources do I have, list resources in resource group, list resources in subscription, find resources by tag, find orphaned resources, resource inventory, count resources by type, cross-subscription resource query, Azure Resource Graph, resource discovery, list container registries, list SQL servers, list Key Vaults, show resource groups, list app services, find resources across subscriptions, find unattached disks, tag analysis. DO NOT USE FOR: deploying resources (use azure-deploy), creating or modifying resources, cost optimization (use azure-cost-optimization), writing application code, non-Azure clouds. Platforms: claude_code."} {"id": "4301c00f411641f8fe0bb753867126bb39e5d4cfc9bc47f953c63b221dc4853f", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "azure-resource-visualizer", "description": "Analyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources. USE FOR: create architecture diagram, visualize Azure resources, show resource relationships, generate Mermaid diagram, analyze resource group, diagram my resources, architecture visualization, resource topology, map Azure infrastructure DO NOT USE FOR: creating/modifying resources (use azure-deploy), security scanning (use azure-security), performance troubleshooting (use azure-diagnostics), code generation (use relevant service skill)", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/azure-resource-visualizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-resource-visualizer"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "azure-resource-visualizer. Analyze Azure resource groups and generate detailed Mermaid architecture diagrams showing the relationships between individual resources. USE FOR: create architecture diagram, visualize Azure resources, show resource relationships, generate Mermaid diagram, analyze resource group, diagram my resources, architecture visualization, resource topology, map Azure infrastructure DO NOT USE FOR: creating/modifying resources (use azure-deploy), security scanning (use azure-security), performance troubleshooting (use azure-diagnostics), code generation (use relevant service skill) Platforms: claude_code."} @@ -29758,7 +34014,6 @@ {"id": "61181b4e4772c723200f969178f6cbf86a4f335f5ace91be93d532cef2aa6b7f", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "capacity", "description": "Discovers available Azure OpenAI model capacity across regions and projects. Analyzes quota limits, compares availability, and recommends optimal deployment locations based on capacity requirements. USE FOR: find capacity, check quota, where can I deploy, capacity discovery, best region for capacity, multi-project capacity search, quota analysis, model availability, region comparison, check TPM availability. DO NOT USE FOR: actual deployment (hand off to preset or customize after discovery), quota increase requests (direct user to Azure Portal), listing existing deployments.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/microsoft-foundry/models/deploy-model/capacity/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install capacity"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "capacity. Discovers available Azure OpenAI model capacity across regions and projects. Analyzes quota limits, compares availability, and recommends optimal deployment locations based on capacity requirements. USE FOR: find capacity, check quota, where can I deploy, capacity discovery, best region for capacity, multi-project capacity search, quota analysis, model availability, region comparison, check TPM availability. DO NOT USE FOR: actual deployment (hand off to preset or customize after discovery), quota increase requests (direct user to Azure Portal), listing existing deployments. Platforms: claude_code."} {"id": "4a348655a6fd9205bbdbcabdb015a6c53972892ec36b7e4d90837f0330bceb20", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "customize", "description": "Interactive guided deployment flow for Azure OpenAI models with full customization control. Step-by-step selection of model version, SKU (GlobalStandard/Standard/ProvisionedManaged), capacity, RAI policy (content filter), and advanced options (dynamic quota, priority processing, spillover). USE FOR: custom deployment, customize model deployment, choose version, select SKU, set capacity, configure content filter, RAI policy, deployment options, detailed deployment, advanced deployment, PTU deployment, provisioned throughput. DO NOT USE FOR: quick deployment to optimal region (use preset).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/microsoft-foundry/models/deploy-model/customize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install customize"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "customize. Interactive guided deployment flow for Azure OpenAI models with full customization control. Step-by-step selection of model version, SKU (GlobalStandard/Standard/ProvisionedManaged), capacity, RAI policy (content filter), and advanced options (dynamic quota, priority processing, spillover). USE FOR: custom deployment, customize model deployment, choose version, select SKU, set capacity, configure content filter, RAI policy, deployment options, detailed deployment, advanced deployment, PTU deployment, provisioned throughput. DO NOT USE FOR: quick deployment to optimal region (use preset). Platforms: claude_code."} {"id": "1ab8c3526782ae6ab3d76f2f2a37013907f20c64cf974b91956d70ccf5b263f4", "repo_url": "https://github.com/microsoft/github-copilot-for-azure", "name": "preset", "description": "Intelligently deploys Azure OpenAI models to optimal regions by analyzing capacity across all available regions. Automatically checks current region first and shows alternatives if needed. USE FOR: quick deployment, optimal region, best region, automatic region selection, fast setup, multi-region capacity check, high availability deployment, deploy to best location. DO NOT USE FOR: custom SKU selection (use customize), specific version selection (use customize), custom capacity configuration (use customize), PTU deployments (use customize).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/microsoft/github-copilot-for-azure/blob/main/plugin/skills/microsoft-foundry/models/deploy-model/preset/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install preset"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T00:05:25Z"}, "embedding_text": "preset. Intelligently deploys Azure OpenAI models to optimal regions by analyzing capacity across all available regions. Automatically checks current region first and shows alternatives if needed. USE FOR: quick deployment, optimal region, best region, automatic region selection, fast setup, multi-region capacity check, high availability deployment, deploy to best location. DO NOT USE FOR: custom SKU selection (use customize), specific version selection (use customize), custom capacity configuration (use customize), PTU deployments (use customize). Platforms: claude_code."} -{"id": "ac980d69e4ed1cb9e406ef131e670c4860dbdec7e7e72d4b658bd78dea63670d", "repo_url": "https://github.com/aannoo/hcom", "name": "hcom-agent-messaging", "description": "Let AI agents message, watch, and spawn each other across terminals. Claude Code, Gemini CLI, Codex, OpenCode. Use this skill when the human user needs help, status, or reference about hcom - when user asks questions like \"how to setup hcom\", \"hcom not working\", \"explain hcom\", or any hcom troubleshooting.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aannoo/hcom/blob/main/skills/hcom-agent-messaging/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hcom-agent-messaging"}, "quality": {"stars": 145, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T06:54:58Z"}, "embedding_text": "hcom-agent-messaging. Let AI agents message, watch, and spawn each other across terminals. Claude Code, Gemini CLI, Codex, OpenCode. Use this skill when the human user needs help, status, or reference about hcom - when user asks questions like \"how to setup hcom\", \"hcom not working\", \"explain hcom\", or any hcom troubleshooting.\n Platforms: claude_code."} {"id": "0b96c85036fb503264fa4b3bbf639120f2311624eef72e89309bf7b4173bd81f", "repo_url": "https://github.com/team-telnyx/telnyx-skills", "name": "telnyx-cli", "description": "Use the Telnyx CLI to manage phone numbers, send messages, make calls, and access all Telnyx APIs from the terminal. 946 commands auto-generated from the OpenAPI spec \u2014 every API endpoint is a CLI command.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-telnyx/telnyx-skills/blob/main/telnyx-cli/skills/telnyx-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install telnyx-cli"}, "quality": {"stars": 142, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T08:18:31Z"}, "embedding_text": "telnyx-cli. Use the Telnyx CLI to manage phone numbers, send messages, make calls, and access all Telnyx APIs from the terminal. 946 commands auto-generated from the OpenAPI spec \u2014 every API endpoint is a CLI command. Platforms: claude_code."} {"id": "33154b3f4225a7e34e5be93b7ca92b53b3b7a27582c864b6ff67167c6435fe69", "repo_url": "https://github.com/team-telnyx/telnyx-skills", "name": "telnyx-10dlc-curl", "description": "10DLC brand and campaign registration for US A2P messaging compliance. Assign phone numbers to campaigns.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-telnyx/telnyx-skills/blob/main/telnyx-curl/skills/telnyx-10dlc-curl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install telnyx-10dlc-curl"}, "quality": {"stars": 142, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T08:18:31Z"}, "embedding_text": "telnyx-10dlc-curl. 10DLC brand and campaign registration for US A2P messaging compliance. Assign phone numbers to campaigns. Platforms: claude_code."} {"id": "feb5dff44a57790c887ee1d6aa8ad0f487bce8382131e9bf7ed0d9a7f16895d6", "repo_url": "https://github.com/team-telnyx/telnyx-skills", "name": "telnyx-account-access-curl", "description": "Configure account addresses, authentication providers, IP access controls, billing groups, and integration secrets. This skill provides REST API (curl) examples.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/team-telnyx/telnyx-skills/blob/main/telnyx-curl/skills/telnyx-account-access-curl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install telnyx-account-access-curl"}, "quality": {"stars": 142, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T08:18:31Z"}, "embedding_text": "telnyx-account-access-curl. Configure account addresses, authentication providers, IP access controls, billing groups, and integration secrets. This skill provides REST API (curl) examples. Platforms: claude_code."} @@ -30177,11 +34432,8 @@ {"id": "023d53aa6609a037ea587ea82e5461240516741a235399630ecfe2b659a350ed", "repo_url": "https://github.com/nicepkg/ai-workflow", "name": "youtube-seo-optimizer", "description": "Optimize YouTube videos for search and discovery. Generates SEO-optimized titles, descriptions, tags, hashtags, and chapters. Includes keyword research and competitor analysis. Use when publishing videos, improving discoverability, or optimizing existing content.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nicepkg/ai-workflow/blob/main/workflows/video-creator-workflow/.claude/skills/youtube-seo-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-seo-optimizer"}, "quality": {"stars": 135, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-20T08:50:30Z"}, "embedding_text": "youtube-seo-optimizer. Optimize YouTube videos for search and discovery. Generates SEO-optimized titles, descriptions, tags, hashtags, and chapters. Includes keyword research and competitor analysis. Use when publishing videos, improving discoverability, or optimizing existing content. Platforms: claude_code."} {"id": "5331c45898bae1c441421e232f041c6e23fe98a4eafca6132b4b25a4862e4068", "repo_url": "https://github.com/nicepkg/ai-workflow", "name": "youtube-to-markdown", "description": "Use when user asks YouTube video extraction, get, fetch, transcripts, subtitles, or captions. Writes video details and transcription into structured markdown file.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nicepkg/ai-workflow/blob/main/workflows/video-creator-workflow/.claude/skills/youtube-to-markdown/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-to-markdown"}, "quality": {"stars": 135, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-20T08:50:30Z"}, "embedding_text": "youtube-to-markdown. Use when user asks YouTube video extraction, get, fetch, transcripts, subtitles, or captions. Writes video details and transcription into structured markdown file. Platforms: claude_code."} {"id": "248d4e9f57a7bebce002f7c535fe25e41e0bad77b7eb1ef9b24b783ba67d41c5", "repo_url": "https://github.com/nicepkg/ai-workflow", "name": "youtube-transcript", "description": "Download YouTube video transcripts when user provides a YouTube URL or asks to download/get/fetch a transcript from YouTube. Also use when user wants to transcribe or get captions/subtitles from a YouTube video.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nicepkg/ai-workflow/blob/main/workflows/video-creator-workflow/.claude/skills/youtube-transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-transcript"}, "quality": {"stars": 135, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-20T08:50:30Z"}, "embedding_text": "youtube-transcript. Download YouTube video transcripts when user provides a YouTube URL or asks to download/get/fetch a transcript from YouTube. Also use when user wants to transcribe or get captions/subtitles from a YouTube video. Platforms: claude_code."} -{"id": "f39ea980e7ccae7efa0e375e24098c1be4bb743a644f00d9e3981e7bbd5b5d1e", "repo_url": "https://github.com/wiz-sec-public/sitf", "name": "attack-flow", "description": "Generate SITF-compliant attack flow JSON files from attack descriptions or incident reports. Use when analyzing supply chain attacks, breaches, or security incidents.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wiz-sec-public/sitf/blob/main/.claude/skills/attack-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install attack-flow"}, "quality": {"stars": 132, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T13:20:41Z"}, "embedding_text": "attack-flow. Generate SITF-compliant attack flow JSON files from attack descriptions or incident reports. Use when analyzing supply chain attacks, breaches, or security incidents. Platforms: claude_code."} -{"id": "4acc3bef0a1edaf0dcc951faec9b6c7833d8dd1a9824da2a8fe5aa56760c7b3b", "repo_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow", "name": "Audio to SRT Converter", "description": "This skill should be used when the user asks to \"convert audio to srt\", \"generate subtitles from audio\", \"create srt from mp3/wav/m4a/flac\", \"transcribe audio to subtitles\", or needs to generate SRT subtitle files from audio files (MP3, WAV, M4A, FLAC, etc.) with customizable character limits and timeline adjustments.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow/blob/master/.agent/skills/audio-to-srt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Audio to SRT Converter"}, "quality": {"stars": 120, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T06:28:55Z"}, "embedding_text": "Audio to SRT Converter. This skill should be used when the user asks to \"convert audio to srt\", \"generate subtitles from audio\", \"create srt from mp3/wav/m4a/flac\", \"transcribe audio to subtitles\", or needs to generate SRT subtitle files from audio files (MP3, WAV, M4A, FLAC, etc.) with customizable character limits and timeline adjustments. Platforms: claude_code."} {"id": "bc8eb09b71625fa79d7f08fc70f43132a613d8e0c2419bb4d735bac07916c6ea", "repo_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow", "name": "SRT Card Annotator", "description": "This skill should be used when the user asks to \"add reference cards to srt\", \"annotate srt with cards\", \"insert cards into subtitles\", \"generate srt with card annotations\", \"add \u5b57\u5361 to srt\", or needs to add contextual reference cards below subtitle text blocks in SRT files.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow/blob/master/.agent/skills/srt-card-annotator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install SRT Card Annotator"}, "quality": {"stars": 120, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T06:28:55Z"}, "embedding_text": "SRT Card Annotator. This skill should be used when the user asks to \"add reference cards to srt\", \"annotate srt with cards\", \"insert cards into subtitles\", \"generate srt with card annotations\", \"add \u5b57\u5361 to srt\", or needs to add contextual reference cards below subtitle text blocks in SRT files. Platforms: claude_code."} {"id": "aeabaf61370d0adb140a40a27dbfdbf6ea4249fb82f4c9f286344b1e3be04a11", "repo_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow", "name": "SRT Enhancer", "description": "This skill should be used when the user asks to \"enhance srt subtitles\", \"optimize srt with original script\", \"fix srt typos from markdown\", \"compare srt with origin.md\", \"improve subtitle accuracy\", \"add spaces to srt\", \"\u512a\u5316 srt \u9010\u5b57\u7a3f\", \"\u6bd4\u5c0d\u539f\u7a3f\u4fee\u6b63\u5b57\u5e55\", or needs to refine SRT subtitle files by comparing them with an original markdown reference document.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow/blob/master/.agent/skills/srt-enhancer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install SRT Enhancer"}, "quality": {"stars": 120, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T06:28:55Z"}, "embedding_text": "SRT Enhancer. This skill should be used when the user asks to \"enhance srt subtitles\", \"optimize srt with original script\", \"fix srt typos from markdown\", \"compare srt with origin.md\", \"improve subtitle accuracy\", \"add spaces to srt\", \"\u512a\u5316 srt \u9010\u5b57\u7a3f\", \"\u6bd4\u5c0d\u539f\u7a3f\u4fee\u6b63\u5b57\u5e55\", or needs to refine SRT subtitle files by comparing them with an original markdown reference document. Platforms: claude_code."} -{"id": "836e35e9e5f0988689ebf9a77de5caf1aebf7f5265b76d9042c993bfd6e60211", "repo_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow", "name": "SRT Social Summary", "description": "This skill should be used when the user asks to \"generate social media summary from srt\", \"create platform-specific descriptions\", \"generate Facebook post from transcript\", \"create YouTube description from srt\", \"write Thread post from subtitles\", \"\u751f\u6210\u5f71\u7247\u4ecb\u7d39\", \"\u6839\u64da\u9010\u5b57\u7a3f\u751f\u6210\u8cbc\u6587\", or needs to create engaging social media content from SRT subtitle files for Facebook, Thread, or YouTube platforms.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow/blob/master/.agent/skills/srt-social-summary/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install SRT Social Summary"}, "quality": {"stars": 120, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T06:28:55Z"}, "embedding_text": "SRT Social Summary. This skill should be used when the user asks to \"generate social media summary from srt\", \"create platform-specific descriptions\", \"generate Facebook post from transcript\", \"create YouTube description from srt\", \"write Thread post from subtitles\", \"\u751f\u6210\u5f71\u7247\u4ecb\u7d39\", \"\u6839\u64da\u9010\u5b57\u7a3f\u751f\u6210\u8cbc\u6587\", or needs to create engaging social media content from SRT subtitle files for Facebook, Thread, or YouTube platforms. Platforms: claude_code."} {"id": "5f2a21c72056f992569b80b2851b4e8a2a2ff0a4d6a3aa004bf97deef544a0b8", "repo_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow", "name": "Skill Development", "description": "This skill should be used when the user wants to \"create a skill\", \"add a skill to plugin\", \"write a new skill\", \"improve skill description\", \"organize skill content\", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dean9703111/ai-agent-skill-for-video-workflow/blob/master/.agents/skills/Skill Development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Skill Development"}, "quality": {"stars": 120, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T06:28:55Z"}, "embedding_text": "Skill Development. This skill should be used when the user wants to \"create a skill\", \"add a skill to plugin\", \"write a new skill\", \"improve skill description\", \"organize skill content\", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins. Platforms: claude_code."} {"id": "381bdb2b3fd5eaa0171df56d4e27cf46876b1d414494876919f842d630d6b44a", "repo_url": "https://github.com/affaan-m/everything-claude-code", "name": "article-writing", "description": "Write articles, guides, blog posts, tutorials, newsletter issues, and other long-form content in a distinctive voice derived from supplied examples or brand guidance. Use when the user wants polished written content longer than a paragraph, especially when voice consistency, structure, and credibility matter.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/affaan-m/everything-claude-code/blob/main/.agents/skills/article-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install article-writing"}, "quality": {"stars": 80594, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T21:32:25Z"}, "embedding_text": "article-writing. Write articles, guides, blog posts, tutorials, newsletter issues, and other long-form content in a distinctive voice derived from supplied examples or brand guidance. Use when the user wants polished written content longer than a paragraph, especially when voice consistency, structure, and credibility matter. Platforms: claude_code."} {"id": "92d5f831c86fc970d39b339db0259cd2a8a4d4f7397c7f307260a40eaa02a6c6", "repo_url": "https://github.com/affaan-m/everything-claude-code", "name": "bun-runtime", "description": "Bun as runtime, package manager, bundler, and test runner. When to choose Bun vs Node, migration notes, and Vercel support.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/affaan-m/everything-claude-code/blob/main/.agents/skills/bun-runtime/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bun-runtime"}, "quality": {"stars": 80594, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T21:32:25Z"}, "embedding_text": "bun-runtime. Bun as runtime, package manager, bundler, and test runner. When to choose Bun vs Node, migration notes, and Vercel support. Platforms: claude_code."} @@ -31622,18 +35874,13 @@ {"id": "c319cfc7cda3e692b6e64f62229b881b397f0eb7a1f9daba2c35774fe8505476", "repo_url": "https://github.com/wlzh/skills", "name": "youtube-publisher", "description": "Upload and publish videos to YouTube with title, description, tags, thumbnail and subtitles. Use for: youtube upload, publish video, share on youtube.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wlzh/skills/blob/main/youtube-publisher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-publisher"}, "quality": {"stars": 393, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T01:49:44Z"}, "embedding_text": "youtube-publisher. Upload and publish videos to YouTube with title, description, tags, thumbnail and subtitles. Use for: youtube upload, publish video, share on youtube. Platforms: claude_code."} {"id": "c2b8cc8d7e28c0e19c9ef5569d477a90b860b9a7ab4257b17229dbd9ac162e40", "repo_url": "https://github.com/wlzh/skills", "name": "youtube-to-blog-post", "description": "Convert YouTube videos to SEO-optimized blog posts. Extract video title, description, and content, then generate a search-engine-friendly blog post with embedded video, cover images, and optimized metadata. Auto-generates English filenames and saves to the configured Hexo blog posts directory.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wlzh/skills/blob/main/youtube-to-blog-post/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-to-blog-post"}, "quality": {"stars": 393, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T01:49:44Z"}, "embedding_text": "youtube-to-blog-post. Convert YouTube videos to SEO-optimized blog posts. Extract video title, description, and content, then generate a search-engine-friendly blog post with embedded video, cover images, and optimized metadata. Auto-generates English filenames and saves to the configured Hexo blog posts directory. Platforms: claude_code."} {"id": "1e483d693d83b0401c72bbf4242ba47be407d7c3a741f0dace8304d06cd97b76", "repo_url": "https://github.com/wlzh/skills", "name": "youtube-tracker", "description": "Track YouTube channels for new uploads. Supports both RSS mode (no API key needed, unlimited quota) and API mode. Use when: add/remove/list tracked YouTube channels, check for new videos, or run scheduled YouTube channel monitoring.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wlzh/skills/blob/main/youtube-tracker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-tracker"}, "quality": {"stars": 393, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T01:49:44Z"}, "embedding_text": "youtube-tracker. Track YouTube channels for new uploads. Supports both RSS mode (no API key needed, unlimited quota) and API mode. Use when: add/remove/list tracked YouTube channels, check for new videos, or run scheduled YouTube channel monitoring. Platforms: claude_code."} -{"id": "9e840549e7b349ede552f9f656c2fff334dd38c1b6a835c32114dc6abd1bd532", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-audit", "description": "Full website SEO audit with parallel subagent delegation. Crawls up to 500 pages, detects business type, delegates to 7 specialists, generates health score. Use when user says \"audit\", \"full SEO check\", \"analyze my site\", or \"website health check\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-audit"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-audit. Full website SEO audit with parallel subagent delegation. Crawls up to 500 pages, detects business type, delegates to 7 specialists, generates health score. Use when user says \"audit\", \"full SEO check\", \"analyze my site\", or \"website health check\". Platforms: claude_code."} -{"id": "ea087e0b803ba89460ac122fb4a6e28fad51a9c67ae68c573892266e1db84e6e", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-competitor-pages", "description": "Generate SEO-optimized competitor comparison and alternatives pages. Covers \"X vs Y\" layouts, \"alternatives to X\" pages, feature matrices, schema markup, and conversion optimization. Use when user says \"comparison page\", \"vs page\", \"alternatives page\", \"competitor comparison\", or \"X vs Y\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-competitor-pages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-competitor-pages"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-competitor-pages. Generate SEO-optimized competitor comparison and alternatives pages. Covers \"X vs Y\" layouts, \"alternatives to X\" pages, feature matrices, schema markup, and conversion optimization. Use when user says \"comparison page\", \"vs page\", \"alternatives page\", \"competitor comparison\", or \"X vs Y\". Platforms: claude_code."} {"id": "2306538b7c9f3a8f707c053af42f5d01cde14431eccf18c5ac88cd54382f64c8", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-content", "description": "Content quality and E-E-A-T analysis with AI citation readiness assessment. Use when user says \"content quality\", \"E-E-A-T\", \"content analysis\", \"readability check\", \"thin content\", or \"content audit\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-content/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-content"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-content. Content quality and E-E-A-T analysis with AI citation readiness assessment. Use when user says \"content quality\", \"E-E-A-T\", \"content analysis\", \"readability check\", \"thin content\", or \"content audit\". Platforms: claude_code."} {"id": "5b89177799d5949a93f8441a4578406ee69185b08a767cfd8748eb313018d238", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-geo", "description": "Optimize content for AI Overviews (formerly SGE), ChatGPT web search, Perplexity, and other AI-powered search experiences. Generative Engine Optimization (GEO) analysis including brand mention signals, AI crawler accessibility, llms.txt compliance, passage-level citability scoring, and platform-specific optimization. Use when user says \"AI Overviews\", \"SGE\", \"GEO\", \"AI search\", \"LLM optimization\", \"Perplexity\", \"AI citations\", \"ChatGPT search\", or \"AI visibility\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-geo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-geo"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-geo. Optimize content for AI Overviews (formerly SGE), ChatGPT web search, Perplexity, and other AI-powered search experiences. Generative Engine Optimization (GEO) analysis including brand mention signals, AI crawler accessibility, llms.txt compliance, passage-level citability scoring, and platform-specific optimization. Use when user says \"AI Overviews\", \"SGE\", \"GEO\", \"AI search\", \"LLM optimization\", \"Perplexity\", \"AI citations\", \"ChatGPT search\", or \"AI visibility\". Platforms: claude_code."} {"id": "cedaed2dfe03bfe46819c745d3bb1f82518ed8e127a09cb75ecb9da5329c7dea", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-hreflang", "description": "Hreflang and international SEO audit, validation, and generation. Detects common mistakes, validates language/region codes, and generates correct hreflang implementations. Use when user says \"hreflang\", \"i18n SEO\", \"international SEO\", \"multi-language\", \"multi-region\", or \"language tags\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-hreflang/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-hreflang"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-hreflang. Hreflang and international SEO audit, validation, and generation. Detects common mistakes, validates language/region codes, and generates correct hreflang implementations. Use when user says \"hreflang\", \"i18n SEO\", \"international SEO\", \"multi-language\", \"multi-region\", or \"language tags\". Platforms: claude_code."} -{"id": "b86f229c443b3bb91309a6e4fcee38204168737218a0ffe4b8f35c5fb6626b1c", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-images", "description": "Image optimization analysis for SEO and performance. Checks alt text, file sizes, formats, responsive images, lazy loading, and CLS prevention. Use when user says \"image optimization\", \"alt text\", \"image SEO\", \"image size\", or \"image audit\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-images/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-images"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-images. Image optimization analysis for SEO and performance. Checks alt text, file sizes, formats, responsive images, lazy loading, and CLS prevention. Use when user says \"image optimization\", \"alt text\", \"image SEO\", \"image size\", or \"image audit\". Platforms: claude_code."} {"id": "b30dab488cb54487298f7f5b6da73da33b3467529583c40bb6ae992ab60e5199", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-page", "description": "Deep single-page SEO analysis covering on-page elements, content quality, technical meta tags, schema, images, and performance. Use when user says \"analyze this page\", \"check page SEO\", or provides a single URL for review.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-page/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-page"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-page. Deep single-page SEO analysis covering on-page elements, content quality, technical meta tags, schema, images, and performance. Use when user says \"analyze this page\", \"check page SEO\", or provides a single URL for review. Platforms: claude_code."} {"id": "59324fa0530703ff94f5dace3a44bbdac0b16343ce1850286e317018005eb1d3", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-plan", "description": "Strategic SEO planning for new or existing websites. Industry-specific templates, competitive analysis, content strategy, and implementation roadmap. Use when user says \"SEO plan\", \"SEO strategy\", \"content strategy\", \"site architecture\", or \"SEO roadmap\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-plan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-plan"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-plan. Strategic SEO planning for new or existing websites. Industry-specific templates, competitive analysis, content strategy, and implementation roadmap. Use when user says \"SEO plan\", \"SEO strategy\", \"content strategy\", \"site architecture\", or \"SEO roadmap\". Platforms: claude_code."} {"id": "493338fdf41b64327629b39f0ae3f11ee466a79e18e1323d49deb71d0744894d", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-programmatic", "description": "Programmatic SEO planning and analysis for pages generated at scale from data sources. Covers template engines, URL patterns, internal linking automation, thin content safeguards, and index bloat prevention. Use when user says \"programmatic SEO\", \"pages at scale\", \"dynamic pages\", \"template pages\", \"generated pages\", or \"data-driven SEO\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-programmatic/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-programmatic"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-programmatic. Programmatic SEO planning and analysis for pages generated at scale from data sources. Covers template engines, URL patterns, internal linking automation, thin content safeguards, and index bloat prevention. Use when user says \"programmatic SEO\", \"pages at scale\", \"dynamic pages\", \"template pages\", \"generated pages\", or \"data-driven SEO\". Platforms: claude_code."} {"id": "681ffaf8a80f4500ab87dc79b919756d0d5a052703407f37a8556a768f67b0e8", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-schema", "description": "Detect, validate, and generate Schema.org structured data. JSON-LD format preferred. Use when user says \"schema\", \"structured data\", \"rich results\", \"JSON-LD\", or \"markup\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-schema/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-schema"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-schema. Detect, validate, and generate Schema.org structured data. JSON-LD format preferred. Use when user says \"schema\", \"structured data\", \"rich results\", \"JSON-LD\", or \"markup\". Platforms: claude_code."} -{"id": "46d6e856e1ac0d301a8322bbcd7bde57c120f3e637da639120629d45f2549986", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-sitemap", "description": "Analyze existing XML sitemaps or generate new ones with industry templates. Validates format, URLs, and structure. Use when user says \"sitemap\", \"generate sitemap\", \"sitemap issues\", or \"XML sitemap\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-sitemap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-sitemap"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-sitemap. Analyze existing XML sitemaps or generate new ones with industry templates. Validates format, URLs, and structure. Use when user says \"sitemap\", \"generate sitemap\", \"sitemap issues\", or \"XML sitemap\". Platforms: claude_code."} -{"id": "bb12a3cee0293a23c8009c011a907bab6f2eaac7278d686311e8d65b77802ea4", "repo_url": "https://github.com/agricidaniel/claude-seo", "name": "seo-technical", "description": "Technical SEO audit across 9 categories: crawlability, indexability, security, URL structure, mobile, Core Web Vitals, structured data, JavaScript rendering, and IndexNow protocol. Use when user says \"technical SEO\", \"crawl issues\", \"robots.txt\", \"Core Web Vitals\", \"site speed\", or \"security headers\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-seo/blob/main/skills/seo-technical/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo-technical"}, "quality": {"stars": 2433, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T18:33:33Z"}, "embedding_text": "seo-technical. Technical SEO audit across 9 categories: crawlability, indexability, security, URL structure, mobile, Core Web Vitals, structured data, JavaScript rendering, and IndexNow protocol. Use when user says \"technical SEO\", \"crawl issues\", \"robots.txt\", \"Core Web Vitals\", \"site speed\", or \"security headers\". Platforms: claude_code."} {"id": "653a65d8128687de2f298e465b4734d54f5c57085ce573af4f955faff503a290", "repo_url": "https://github.com/tanweai/wooyun-legacy", "name": "wooyun-legacy", "description": "WooYun business logic vulnerability methodology \u2014 22,132 real cases across 6 domains (authentication bypass, authorization bypass, payment tampering, information disclosure, logic flaws, misconfiguration) and 33 vulnerability classes. Use for ANY security testing, auditing, or code review of web apps, APIs, or business systems \u2014 even without explicit \"security\" keywords. Triggers: penetration testing, security audit, vulnerability, bug bounty, payment security, IDOR, password reset, weak credentials, unauthorized access, race condition, parameter tampering, code review, \u6e17\u900f\u6d4b\u8bd5, \u5b89\u5168\u5ba1\u8ba1, \u6f0f\u6d1e\u6316\u6398, \u652f\u4ed8\u5b89\u5168, \u8d8a\u6743, \u903b\u8f91\u6f0f\u6d1e, \u4e1a\u52a1\u5b89\u5168, SRC, \u4ee3\u7801\u5ba1\u8ba1. Also triggers on implicit intent: \"test this endpoint\", \"find bugs\", \"can I bypass this\", \"\u5e2e\u6211\u6d4b\u6d4b\u8fd9\u4e2a\u63a5\u53e3\", \"\u8fd9\u4e2a\u53c2\u6570\u80fd\u4e0d\u80fd\u6539\", \"\u5e2e\u6211\u627ebug\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tanweai/wooyun-legacy/blob/main/plugins/wooyun-legacy/skills/wooyun-legacy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wooyun-legacy"}, "quality": {"stars": 1462, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T05:53:30Z"}, "embedding_text": "wooyun-legacy. WooYun business logic vulnerability methodology \u2014 22,132 real cases across 6 domains (authentication bypass, authorization bypass, payment tampering, information disclosure, logic flaws, misconfiguration) and 33 vulnerability classes. Use for ANY security testing, auditing, or code review of web apps, APIs, or business systems \u2014 even without explicit \"security\" keywords. Triggers: penetration testing, security audit, vulnerability, bug bounty, payment security, IDOR, password reset, weak credentials, unauthorized access, race condition, parameter tampering, code review, \u6e17\u900f\u6d4b\u8bd5, \u5b89\u5168\u5ba1\u8ba1, \u6f0f\u6d1e\u6316\u6398, \u652f\u4ed8\u5b89\u5168, \u8d8a\u6743, \u903b\u8f91\u6f0f\u6d1e, \u4e1a\u52a1\u5b89\u5168, SRC, \u4ee3\u7801\u5ba1\u8ba1. Also triggers on implicit intent: \"test this endpoint\", \"find bugs\", \"can I bypass this\", \"\u5e2e\u6211\u6d4b\u6d4b\u8fd9\u4e2a\u63a5\u53e3\", \"\u8fd9\u4e2a\u53c2\u6570\u80fd\u4e0d\u80fd\u6539\", \"\u5e2e\u6211\u627ebug\". Platforms: claude_code."} {"id": "8dfac9b172c8b5f9e810e4747d920567427e36650df915cafe047f1ad8fc93a9", "repo_url": "https://github.com/jamesrochabrun/skills", "name": "releasing-macos-apps", "description": "Create notarized macOS app releases with Sparkle auto-updates, DMG installers, and GitHub releases. Use when releasing macOS apps, creating DMG files, notarizing apps, or setting up Sparkle updates. Handles version updates, code signing, notarization, and distribution.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jamesrochabrun/skills/blob/main/skills/releasing-macos-apps/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install releasing-macos-apps"}, "quality": {"stars": 98, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-14T07:21:27Z"}, "embedding_text": "releasing-macos-apps. Create notarized macOS app releases with Sparkle auto-updates, DMG installers, and GitHub releases. Use when releasing macOS apps, creating DMG files, notarizing apps, or setting up Sparkle updates. Handles version updates, code signing, notarization, and distribution. Platforms: claude_code."} {"id": "d04031a6920749cfe573387e66917448f159b8c11b7d08e0d9095800eefdf283", "repo_url": "https://github.com/rohitg00/awesome-claude-code-toolkit", "name": "accessibility-wcag", "description": "Web accessibility patterns for WCAG 2.2 compliance including ARIA, keyboard navigation, screen readers, and testing", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/skills/accessibility-wcag/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install accessibility-wcag"}, "quality": {"stars": 829, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T08:28:33Z"}, "embedding_text": "accessibility-wcag. Web accessibility patterns for WCAG 2.2 compliance including ARIA, keyboard navigation, screen readers, and testing Platforms: claude_code."} @@ -31670,7 +35917,6 @@ {"id": "7607c2da23fc243a95a085f61a4126f9c58a3b8ec26381959881af04ba2d8c31", "repo_url": "https://github.com/rohitg00/awesome-claude-code-toolkit", "name": "testing-strategies", "description": "Testing strategies including contract testing, snapshot testing, mutation testing, property-based testing, and test organization", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/skills/testing-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-strategies"}, "quality": {"stars": 829, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T08:28:33Z"}, "embedding_text": "testing-strategies. Testing strategies including contract testing, snapshot testing, mutation testing, property-based testing, and test organization Platforms: claude_code."} {"id": "eda70fade22771663087b18a87e795fc590c27b14f9e86ee318a8b1825409654", "repo_url": "https://github.com/rohitg00/awesome-claude-code-toolkit", "name": "typescript-advanced", "description": "Advanced TypeScript patterns including generics, conditional types, mapped types, template literals, and type guards", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/skills/typescript-advanced/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install typescript-advanced"}, "quality": {"stars": 829, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T08:28:33Z"}, "embedding_text": "typescript-advanced. Advanced TypeScript patterns including generics, conditional types, mapped types, template literals, and type guards Platforms: claude_code."} {"id": "79c6dd748b57346edbfcb26feb15fce4d2ee42a6579b3878bc39bc01653922d8", "repo_url": "https://github.com/rohitg00/awesome-claude-code-toolkit", "name": "websocket-realtime", "description": "Real-time communication patterns with WebSocket, Socket.io, Server-Sent Events, and scaling strategies", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/skills/websocket-realtime/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install websocket-realtime"}, "quality": {"stars": 829, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T08:28:33Z"}, "embedding_text": "websocket-realtime. Real-time communication patterns with WebSocket, Socket.io, Server-Sent Events, and scaling strategies Platforms: claude_code."} -{"id": "4d8ab310725bf4203898f1fbc44aee0a1437e396aa658a651a621e15ee744f3b", "repo_url": "https://github.com/coleam00/second-brain-skills", "name": "mcp-client", "description": "Universal MCP client for connecting to any MCP server with progressive disclosure. Wraps MCP servers as skills to avoid context window bloat from tool definitions. Use when interacting with external MCP servers (Zapier, Sequential Thinking, GitHub, filesystem, etc.), listing available tools, or executing MCP tool calls. Triggers on requests like \"connect to Zapier\", \"use MCP server\", \"list MCP tools\", \"call Zapier action\", \"use sequential thinking\", or any MCP server interaction.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/coleam00/second-brain-skills/blob/main/.claude/skills/mcp-client/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-client"}, "quality": {"stars": 473, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-24T15:50:47Z"}, "embedding_text": "mcp-client. Universal MCP client for connecting to any MCP server with progressive disclosure. Wraps MCP servers as skills to avoid context window bloat from tool definitions. Use when interacting with external MCP servers (Zapier, Sequential Thinking, GitHub, filesystem, etc.), listing available tools, or executing MCP tool calls. Triggers on requests like \"connect to Zapier\", \"use MCP server\", \"list MCP tools\", \"call Zapier action\", \"use sequential thinking\", or any MCP server interaction. Platforms: claude_code."} {"id": "cfef3700499531ce1707c79deceab3c219f954a6126a2db69c15e1322ed674b1", "repo_url": "https://github.com/ceeon/videocut-skills", "name": "videocut:\u526a\u53e3\u64ad", "description": "\u53e3\u64ad\u89c6\u9891\u8f6c\u5f55\u548c\u53e3\u8bef\u8bc6\u522b\u3002\u751f\u6210\u5ba1\u67e5\u7a3f\u548c\u5220\u9664\u4efb\u52a1\u6e05\u5355\u3002\u89e6\u53d1\u8bcd\uff1a\u526a\u53e3\u64ad\u3001\u5904\u7406\u89c6\u9891\u3001\u8bc6\u522b\u53e3\u8bef", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ceeon/videocut-skills/blob/main/\u526a\u53e3\u64ad/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install videocut:\u526a\u53e3\u64ad"}, "quality": {"stars": 1141, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-09T05:54:19Z"}, "embedding_text": "videocut:\u526a\u53e3\u64ad. \u53e3\u64ad\u89c6\u9891\u8f6c\u5f55\u548c\u53e3\u8bef\u8bc6\u522b\u3002\u751f\u6210\u5ba1\u67e5\u7a3f\u548c\u5220\u9664\u4efb\u52a1\u6e05\u5355\u3002\u89e6\u53d1\u8bcd\uff1a\u526a\u53e3\u64ad\u3001\u5904\u7406\u89c6\u9891\u3001\u8bc6\u522b\u53e3\u8bef Platforms: claude_code."} {"id": "0768089ffb6f23e8ea4e472f4b131361794721cccc4725cf8fbcaeda3089ebd5", "repo_url": "https://github.com/ceeon/videocut-skills", "name": "videocut:\u5b57\u5e55", "description": "\u5b57\u5e55\u751f\u6210\u4e0e\u70e7\u5f55\u3002\u706b\u5c71\u5f15\u64ce\u8f6c\u5f55\u2192\u8bcd\u5178\u7ea0\u9519\u2192\u5ba1\u6838\u2192\u70e7\u5f55\u3002\u89e6\u53d1\u8bcd\uff1a\u52a0\u5b57\u5e55\u3001\u751f\u6210\u5b57\u5e55\u3001\u5b57\u5e55", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ceeon/videocut-skills/blob/main/\u5b57\u5e55/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install videocut:\u5b57\u5e55"}, "quality": {"stars": 1141, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-09T05:54:19Z"}, "embedding_text": "videocut:\u5b57\u5e55. \u5b57\u5e55\u751f\u6210\u4e0e\u70e7\u5f55\u3002\u706b\u5c71\u5f15\u64ce\u8f6c\u5f55\u2192\u8bcd\u5178\u7ea0\u9519\u2192\u5ba1\u6838\u2192\u70e7\u5f55\u3002\u89e6\u53d1\u8bcd\uff1a\u52a0\u5b57\u5e55\u3001\u751f\u6210\u5b57\u5e55\u3001\u5b57\u5e55 Platforms: claude_code."} {"id": "14fd63a2215d6b6cda1b89deb7653af10d9cca9dab1e2da133745321e4ae7918", "repo_url": "https://github.com/ceeon/videocut-skills", "name": "videocut:\u5b89\u88c5", "description": "\u73af\u5883\u51c6\u5907\u3002\u5b89\u88c5\u4f9d\u8d56\u3001\u914d\u7f6e API Key\u3001\u9a8c\u8bc1\u73af\u5883\u3002\u89e6\u53d1\u8bcd\uff1a\u5b89\u88c5\u3001\u73af\u5883\u51c6\u5907\u3001\u521d\u59cb\u5316", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ceeon/videocut-skills/blob/main/\u5b89\u88c5/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install videocut:\u5b89\u88c5"}, "quality": {"stars": 1141, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-09T05:54:19Z"}, "embedding_text": "videocut:\u5b89\u88c5. \u73af\u5883\u51c6\u5907\u3002\u5b89\u88c5\u4f9d\u8d56\u3001\u914d\u7f6e API Key\u3001\u9a8c\u8bc1\u73af\u5883\u3002\u89e6\u53d1\u8bcd\uff1a\u5b89\u88c5\u3001\u73af\u5883\u51c6\u5907\u3001\u521d\u59cb\u5316 Platforms: claude_code."} @@ -31693,7 +35939,6 @@ {"id": "b24e2b48f6ae9488e793bd3aac1873d527d90c12ae04a95e66137fa3dcec8b33", "repo_url": "https://github.com/aj-geddes/claude-code-bmad-skills", "name": "UX Designer", "description": "User experience and interface design specialist", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aj-geddes/claude-code-bmad-skills/blob/main/bmad-v6/skills/bmm/ux-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install UX Designer"}, "quality": {"stars": 344, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T08:58:37Z"}, "embedding_text": "UX Designer. User experience and interface design specialist Platforms: claude_code."} {"id": "58497e843295b1860ffc3490007b27ce81dcd2ce94ac8f73cd68fda957f02a56", "repo_url": "https://github.com/aj-geddes/claude-code-bmad-skills", "name": "Creative Intelligence", "description": "Brainstorming and research automation specialist", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aj-geddes/claude-code-bmad-skills/blob/main/bmad-v6/skills/cis/creative-intelligence/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Creative Intelligence"}, "quality": {"stars": 344, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T08:58:37Z"}, "embedding_text": "Creative Intelligence. Brainstorming and research automation specialist Platforms: claude_code."} {"id": "7b16847f86dbe2bb70606938356c5c243b06ea440f4d2981bea74da9a6b53224", "repo_url": "https://github.com/aj-geddes/claude-code-bmad-skills", "name": "BMad Master", "description": "Core BMAD Method orchestrator and workflow manager", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aj-geddes/claude-code-bmad-skills/blob/main/bmad-v6/skills/core/bmad-master/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install BMad Master"}, "quality": {"stars": 344, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T08:58:37Z"}, "embedding_text": "BMad Master. Core BMAD Method orchestrator and workflow manager Platforms: claude_code."} -{"id": "61f7b0275e406bc4e06907a224473e6d1601c1488f2ac9866e3a9a1fff357467", "repo_url": "https://github.com/thedecipherist/claude-code-mastery", "name": "commit-messages", "description": "Generate clear, conventional commit messages from git diffs. Use when writing commit messages, reviewing staged changes, or preparing releases.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedecipherist/claude-code-mastery/blob/main/skills/commit-messages/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit-messages"}, "quality": {"stars": 461, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-14T13:51:10Z"}, "embedding_text": "commit-messages. Generate clear, conventional commit messages from git diffs. Use when writing commit messages, reviewing staged changes, or preparing releases. Platforms: claude_code."} {"id": "45a05fc30057c4ce354d9d5130bfc6bf18520dd9d50a2c0c1837b2ee87fd18a9", "repo_url": "https://github.com/thedecipherist/claude-code-mastery", "name": "security-audit", "description": "Audit code and dependencies for security vulnerabilities. Use when reviewing PRs, checking dependencies, preparing for deployment, or when user mentions security, vulnerabilities, or audit.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/thedecipherist/claude-code-mastery/blob/main/skills/security-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install security-audit"}, "quality": {"stars": 461, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-14T13:51:10Z"}, "embedding_text": "security-audit. Audit code and dependencies for security vulnerabilities. Use when reviewing PRs, checking dependencies, preparing for deployment, or when user mentions security, vulnerabilities, or audit. Platforms: claude_code."} {"id": "4fa610c1f4d1445d2199803530821097fdc69d2e5537e54c022d970ead5a120e", "repo_url": "https://github.com/obra/superpowers-skills", "name": "Preserving Productive Tensions", "description": "Recognize when disagreements reveal valuable context, preserve multiple valid approaches instead of forcing premature resolution", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/obra/superpowers-skills/blob/main/skills/architecture/preserving-productive-tensions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Preserving Productive Tensions"}, "quality": {"stars": 560, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-14T20:52:50Z"}, "embedding_text": "Preserving Productive Tensions. Recognize when disagreements reveal valuable context, preserve multiple valid approaches instead of forcing premature resolution Platforms: claude_code."} {"id": "879c821d37c7f2b0c25f1eb632989fb15cfa3064620c5d6ebe4c67bdf021594b", "repo_url": "https://github.com/obra/superpowers-skills", "name": "Brainstorming Ideas Into Designs", "description": "Interactive idea refinement using Socratic method to develop fully-formed designs", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/obra/superpowers-skills/blob/main/skills/collaboration/brainstorming/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Brainstorming Ideas Into Designs"}, "quality": {"stars": 560, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-14T20:52:50Z"}, "embedding_text": "Brainstorming Ideas Into Designs. Interactive idea refinement using Socratic method to develop fully-formed designs Platforms: claude_code."} @@ -31727,14 +35972,12 @@ {"id": "a8129e3edf409f11bf0d670875ce66ac3f520eb3983b8dee324e6df1e3f4f601", "repo_url": "https://github.com/obra/superpowers-skills", "name": "Testing Anti-Patterns", "description": "Never test mock behavior. Never add test-only methods to production classes. Understand dependencies before mocking.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/obra/superpowers-skills/blob/main/skills/testing/testing-anti-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Testing Anti-Patterns"}, "quality": {"stars": 560, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-14T20:52:50Z"}, "embedding_text": "Testing Anti-Patterns. Never test mock behavior. Never add test-only methods to production classes. Understand dependencies before mocking. Platforms: claude_code."} {"id": "6f5d6f5bbdc69dd8d7a2f33dc8508fafc96c5680dd9ca677c1e7207dc606aef0", "repo_url": "https://github.com/obra/superpowers-skills", "name": "Getting Started with Skills", "description": "Skills wiki intro - mandatory workflows, search tool, brainstorming triggers", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/obra/superpowers-skills/blob/main/skills/using-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Getting Started with Skills"}, "quality": {"stars": 560, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-14T20:52:50Z"}, "embedding_text": "Getting Started with Skills. Skills wiki intro - mandatory workflows, search tool, brainstorming triggers Platforms: claude_code."} {"id": "ee37eb0cac6e3570450b0daebdf8c54e4159d33cfe70d2c8a0693fb49de971b2", "repo_url": "https://github.com/sundial-org/skills", "name": "ai-co-scientist", "description": "Transform Claude Code into an AI Scientist that orchestrates research workflows using tree-based hypothesis exploration. Triggers on \"research project\", \"scientific experiment\", \"run experiments\", \"AI scientist\", \"tree search experimentation\", \"systematic study\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/ai-co-scientist/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-co-scientist"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "ai-co-scientist. Transform Claude Code into an AI Scientist that orchestrates research workflows using tree-based hypothesis exploration. Triggers on \"research project\", \"scientific experiment\", \"run experiments\", \"AI scientist\", \"tree search experimentation\", \"systematic study\". Platforms: claude_code."} -{"id": "b0318625994e6ad6704ed8fda6c5782a73a9d54fc1e4477a22dcd7f3107d9283", "repo_url": "https://github.com/sundial-org/skills", "name": "codex", "description": "Run OpenAI's Codex CLI agent in non-interactive mode using `codex exec`. Use when delegating coding tasks to Codex, running Codex in scripts/automation, or when needing a second agent to work on a task in parallel.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/codex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codex"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "codex. Run OpenAI's Codex CLI agent in non-interactive mode using `codex exec`. Use when delegating coding tasks to Codex, running Codex in scripts/automation, or when needing a second agent to work on a task in parallel. Platforms: claude_code."} {"id": "650c27fbdc3b5c01337df0803cfa4d71d95562d0d84f3386da702f99dc54dc49", "repo_url": "https://github.com/sundial-org/skills", "name": "commit-splitter", "description": "Split large sets of uncommitted changes into logical, well-organized commits. Use when the user has many uncommitted changes and wants structured commits, or proactively suggest when detecting a large diff that would benefit from splitting.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/commit-splitter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install commit-splitter"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "commit-splitter. Split large sets of uncommitted changes into logical, well-organized commits. Use when the user has many uncommitted changes and wants structured commits, or proactively suggest when detecting a large diff that would benefit from splitting. Platforms: claude_code."} {"id": "dfca239695dfcdd856f1ff5d2248f05eb72361d93942a461a4620d717cfc3ac8", "repo_url": "https://github.com/sundial-org/skills", "name": "cs-research-methodology", "description": "Conduct a literature review and develop a CS research proposal. Use when asked to review a research area, find gaps in existing work, and propose a novel research contribution. The output is a research proposal identifying an assumption to challenge (the \"bit flip\") and how to validate it.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/cs-research-methodology/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cs-research-methodology"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "cs-research-methodology. Conduct a literature review and develop a CS research proposal. Use when asked to review a research area, find gaps in existing work, and propose a novel research contribution. The output is a research proposal identifying an assumption to challenge (the \"bit flip\") and how to validate it. Platforms: claude_code."} {"id": "f7942815d5141b0967bd54809060194ea4acef9a5f972be257769bae6c931047", "repo_url": "https://github.com/sundial-org/skills", "name": "icml-reviewer", "description": "Paper reviewer that evaluates machine learning research projects following official ICML reviewer guidelines. Provides comprehensive reviews with actionable feedback across all key dimensions: claims/evidence, relation to prior work, originality, significance, clarity, and reproducibility. Also provides formative feedback on incomplete drafts, proposals, and research code repositories.\n\nMANDATORY TRIGGERS: review paper, ICML review, paper review, evaluate paper, research paper feedback, ML paper review, conference review, academic review, paper critique, NeurIPS review, ICLR review, project proposal, research proposal, paper draft, early feedback, incomplete paper, work in progress, WIP review, review repo, review codebase, research project review", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/icml-reviewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install icml-reviewer"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "icml-reviewer. Paper reviewer that evaluates machine learning research projects following official ICML reviewer guidelines. Provides comprehensive reviews with actionable feedback across all key dimensions: claims/evidence, relation to prior work, originality, significance, clarity, and reproducibility. Also provides formative feedback on incomplete drafts, proposals, and research code repositories.\n\nMANDATORY TRIGGERS: review paper, ICML review, paper review, evaluate paper, research paper feedback, ML paper review, conference review, academic review, paper critique, NeurIPS review, ICLR review, project proposal, research proposal, paper draft, early feedback, incomplete paper, work in progress, WIP review, review repo, review codebase, research project review Platforms: claude_code."} {"id": "b814c1d94f03ef2490108d7c3cd5cda956a34d294f2cacc1e0a87ef2053d09cf", "repo_url": "https://github.com/sundial-org/skills", "name": "neuro-symbolic-reasoning", "description": "Neuro-symbolic AI combining LLMs with symbolic solvers. Use when exploring neuro-symbolic approaches (ideation, no code) or implementing solver integrations (code).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/neuro-symbolic-reasoning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install neuro-symbolic-reasoning"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "neuro-symbolic-reasoning. Neuro-symbolic AI combining LLMs with symbolic solvers. Use when exploring neuro-symbolic approaches (ideation, no code) or implementing solver integrations (code). Platforms: claude_code."} {"id": "98561b5484b8cdd3c841890416b05acdd20882067646524045a7d89f890326fb", "repo_url": "https://github.com/sundial-org/skills", "name": "project-referee", "description": "Critiques ML conference papers with reviewer-style feedback. Use when users want to anticipate reviewer concerns, identify weaknesses, check claim-evidence gaps, or find missing citations.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/project-referee/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install project-referee"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "project-referee. Critiques ML conference papers with reviewer-style feedback. Use when users want to anticipate reviewer concerns, identify weaknesses, check claim-evidence gaps, or find missing citations. Platforms: claude_code."} {"id": "750f78ac553cc9ac39e6b50d2ff6df7ec4528fdb07e15bfda6037d1dd9b011ff", "repo_url": "https://github.com/sundial-org/skills", "name": "skill-to-card", "description": "End-to-end workflow that creates a skill from a description and attached files, publishes it to Sundial as a private skill, generates a trading card (front + back with QR code), and sends it to a printer. Use when the user wants to create a skill and get a printed trading card, or says \"skill to card\", \"create and print a skill card\", \"make me a skill with a card\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/skill-to-card/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-to-card"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "skill-to-card. End-to-end workflow that creates a skill from a description and attached files, publishes it to Sundial as a private skill, generates a trading card (front + back with QR code), and sends it to a printer. Use when the user wants to create a skill and get a printed trading card, or says \"skill to card\", \"create and print a skill card\", \"make me a skill with a card\". Platforms: claude_code."} -{"id": "8c303e978efcae27ad6bc0dfe2d89c6ce6ff563eaede586a78f819a1ef98e9dc", "repo_url": "https://github.com/sundial-org/skills", "name": "skill", "description": "Find, install, create, improve, and publish AI agent skills through the Sundial ecosystem. Use when the user wants to find or search for skills, install a skill, create a new skill, improve or evaluate an existing skill, or publish a skill to Sundial Hub. Trigger phrases include \"find a skill\", \"install skill\", \"create a skill\", \"make a skill\", \"improve this skill\", \"evaluate skill\", \"publish skill\", \"push skill\", \"search for skills\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "skill. Find, install, create, improve, and publish AI agent skills through the Sundial ecosystem. Use when the user wants to find or search for skills, install a skill, create a new skill, improve or evaluate an existing skill, or publish a skill to Sundial Hub. Trigger phrases include \"find a skill\", \"install skill\", \"create a skill\", \"make a skill\", \"improve this skill\", \"evaluate skill\", \"publish skill\", \"push skill\", \"search for skills\". Platforms: claude_code."} {"id": "2dce72d49720a634062262452cd9d6157253010432f22394fa359930c7168901", "repo_url": "https://github.com/sundial-org/skills", "name": "tinker", "description": "Fine-tune LLMs using the Tinker API. Covers supervised fine-tuning, reinforcement learning, LoRA training, vision-language models, and both high-level Cookbook patterns and low-level API usage.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/tinker/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tinker"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "tinker. Fine-tune LLMs using the Tinker API. Covers supervised fine-tuning, reinforcement learning, LoRA training, vision-language models, and both high-level Cookbook patterns and low-level API usage. Platforms: claude_code."} {"id": "8b018b762741ed60483742e3afe975024ed66546c88f355a334251569afa8916", "repo_url": "https://github.com/sundial-org/skills", "name": "cs448b-visualization", "description": "Data visualization design based on Stanford CS448B. Use for: (1) choosing chart types, (2) selecting visual encodings, (3) critiquing visualizations, (4) building D3.js visualizations, (5) designing interactions/animations, (6) choosing colors, (7) visualizing networks, (8) visualizing text. Covers Bertin, Mackinlay, Cleveland & McGill.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/skills/blob/main/skills/visualization-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cs448b-visualization"}, "quality": {"stars": 146, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T17:23:46Z"}, "embedding_text": "cs448b-visualization. Data visualization design based on Stanford CS448B. Use for: (1) choosing chart types, (2) selecting visual encodings, (3) critiquing visualizations, (4) building D3.js visualizations, (5) designing interactions/animations, (6) choosing colors, (7) visualizing networks, (8) visualizing text. Covers Bertin, Mackinlay, Cleveland & McGill. Platforms: claude_code."} {"id": "5cf4bf33be079493baf82d49b10f2a47e7ecee4ce0620a424c415afeae8e95bc", "repo_url": "https://github.com/badlogic/pi-skills", "name": "brave-search", "description": "Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/badlogic/pi-skills/blob/main/brave-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install brave-search"}, "quality": {"stars": 836, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-02T22:08:32Z"}, "embedding_text": "brave-search. Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. Lightweight, no browser required. Platforms: claude_code."} @@ -31745,31 +35988,14 @@ {"id": "33d00105a5de0b36172373e2dfc4b748c39db35f28f74aeb05880e683c2ac22f", "repo_url": "https://github.com/badlogic/pi-skills", "name": "transcribe", "description": "Speech-to-text transcription using Groq Whisper API. Supports m4a, mp3, wav, ogg, flac, webm.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/badlogic/pi-skills/blob/main/transcribe/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install transcribe"}, "quality": {"stars": 836, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-02T22:08:32Z"}, "embedding_text": "transcribe. Speech-to-text transcription using Groq Whisper API. Supports m4a, mp3, wav, ogg, flac, webm. Platforms: claude_code."} {"id": "b5856cb446d822bd2cb75afb3bddc1b670bf17a9119efb55dfb764392fa542b0", "repo_url": "https://github.com/badlogic/pi-skills", "name": "vscode", "description": "VS Code integration for viewing diffs and comparing files. Use when showing file differences to the user.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/badlogic/pi-skills/blob/main/vscode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vscode"}, "quality": {"stars": 836, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-02T22:08:32Z"}, "embedding_text": "vscode. VS Code integration for viewing diffs and comparing files. Use when showing file differences to the user. Platforms: claude_code."} {"id": "d982a44c219e22a0de83f01335aca716c597177ad093bc876e9606ac0eff027e", "repo_url": "https://github.com/badlogic/pi-skills", "name": "youtube-transcript", "description": "Fetch transcripts from YouTube videos for summarization and analysis.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/badlogic/pi-skills/blob/main/youtube-transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-transcript"}, "quality": {"stars": 836, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-02T22:08:32Z"}, "embedding_text": "youtube-transcript. Fetch transcripts from YouTube videos for summarization and analysis. Platforms: claude_code."} -{"id": "33438dc98931cb43064c681d07278ef6100f6d984c250506e3c71f6360520031", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "react-composition-patterns", "description": "React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes. Do NOT use for React/Next.js performance optimization (use react-best-practices instead).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(architecture)/react-composition-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install react-composition-patterns"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "react-composition-patterns. React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes. Do NOT use for React/Next.js performance optimization (use react-best-practices instead). Platforms: claude_code."} -{"id": "79f7af4abd68ba0d1fdf01b4bcb886b513fd715cc5e78680ed96c7ebab4e2e97", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "create-adr", "description": "Creates Architecture Decision Records (ADRs) to document significant architectural choices and their rationale for future team members. Use when the user says \"write an ADR\", \"document this decision\", \"record why we chose X\", \"add an architecture decision record\", \"create an ADR for\", or wants to capture the reasoning behind a technical choice so the team understands it later. Do NOT use when the decision hasn't been made yet (use create-rfc instead), for implementation planning (use technical-design-doc-creator), or for general documentation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(creation)/create-adr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-adr"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "create-adr. Creates Architecture Decision Records (ADRs) to document significant architectural choices and their rationale for future team members. Use when the user says \"write an ADR\", \"document this decision\", \"record why we chose X\", \"add an architecture decision record\", \"create an ADR for\", or wants to capture the reasoning behind a technical choice so the team understands it later. Do NOT use when the decision hasn't been made yet (use create-rfc instead), for implementation planning (use technical-design-doc-creator), or for general documentation. Platforms: claude_code."} -{"id": "f42a5efd9b69ff9f49c5682011981c6ccfd7e4db979c0c3f96d16665cbef12a8", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "create-rfc", "description": "Creates structured Request for Comments (RFC) documents for proposing and deciding on significant changes. Use when the user says \"write an RFC\", \"create a proposal\", \"I need to propose a change\", \"draft an RFC\", \"document a decision\", or needs stakeholder alignment before making a major technical or process decision. Do NOT use for TDDs/implementation docs (use technical-design-doc-creator instead), README files, or general documentation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(creation)/create-rfc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-rfc"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "create-rfc. Creates structured Request for Comments (RFC) documents for proposing and deciding on significant changes. Use when the user says \"write an RFC\", \"create a proposal\", \"I need to propose a change\", \"draft an RFC\", \"document a decision\", or needs stakeholder alignment before making a major technical or process decision. Do NOT use for TDDs/implementation docs (use technical-design-doc-creator instead), README files, or general documentation. Platforms: claude_code."} {"id": "ca9dde8ea6fa299915db3a4dd3a9afbe17b38488e190da35435d67168aec032b", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "technical-design-doc-creator", "description": "Creates comprehensive Technical Design Documents (TDD) with mandatory and optional sections through interactive discovery. Use when user asks to \"write a design doc\", \"create a TDD\", \"technical spec\", \"architecture document\", \"RFC\", \"design proposal\", or needs to document a technical decision before implementation. Do NOT use for README files, API docs, or general documentation (use docs-writer instead).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(creation)/create-technical-design-doc/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technical-design-doc-creator"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "technical-design-doc-creator. Creates comprehensive Technical Design Documents (TDD) with mandatory and optional sections through interactive discovery. Use when user asks to \"write a design doc\", \"create a TDD\", \"technical spec\", \"architecture document\", \"RFC\", \"design proposal\", or needs to document a technical decision before implementation. Do NOT use for README files, API docs, or general documentation (use docs-writer instead). Platforms: claude_code."} {"id": "4ba0eee5a0f72114e2fb2545bfd8958a92ab153dfe21c28a21bdadd3d90e1afe", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "subagent-creator", "description": "Guide for creating AI subagents with isolated context for complex multi-step workflows. Use when users want to create a subagent, specialized agent, verifier, debugger, or orchestrator that requires isolated context and deep specialization. Works with any agent that supports subagent delegation. Triggers on \"create subagent\", \"new agent\", \"specialized assistant\", \"create verifier\". Do NOT use for Cursor-specific subagents (use cursor-subagent-creator instead).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(creation)/subagent-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install subagent-creator"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "subagent-creator. Guide for creating AI subagents with isolated context for complex multi-step workflows. Use when users want to create a subagent, specialized agent, verifier, debugger, or orchestrator that requires isolated context and deep specialization. Works with any agent that supports subagent delegation. Triggers on \"create subagent\", \"new agent\", \"specialized assistant\", \"create verifier\". Do NOT use for Cursor-specific subagents (use cursor-subagent-creator instead). Platforms: claude_code."} {"id": "7996d5177d2c8795cc73b9ff42d05930dca19299fc271587b13191251897da11", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "figma", "description": "Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Use when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting. Covers general Figma data fetching and exploration. Do NOT use when the goal is specifically pixel-perfect code implementation from a Figma design (use figma-implement-design instead).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(design)/figma/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install figma"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "figma. Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Use when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting. Covers general Figma data fetching and exploration. Do NOT use when the goal is specifically pixel-perfect code implementation from a Figma design (use figma-implement-design instead). Platforms: claude_code."} -{"id": "b4639f614820eb355b8340c4ff71df914fff6125be04a47002a106dbacf9c627", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "frontend-design", "description": "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. Generates creative, polished code that avoids generic AI aesthetics. Do NOT use for design review or audit (use web-design-guidelines or web-quality-audit).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(design)/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-design"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "frontend-design. 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. Generates creative, polished code that avoids generic AI aesthetics. Do NOT use for design review or audit (use web-design-guidelines or web-quality-audit). Platforms: claude_code."} -{"id": "911ed7d48c42efc2fa4d65874a80cd855b5564bb2ec053a932ac5817d7edc485", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "coding-guidelines", "description": "Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, modifying, or reviewing code \u2014 implementation tasks, code changes, refactoring, bug fixes, or feature development. Do NOT use for architecture design, documentation, or non-code tasks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(development)/coding-guidelines/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coding-guidelines"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "coding-guidelines. Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, modifying, or reviewing code \u2014 implementation tasks, code changes, refactoring, bug fixes, or feature development. Do NOT use for architecture design, documentation, or non-code tasks. Platforms: claude_code."} -{"id": "c0596a28e7dcb484a9afa1708903f2a70582c6bfbd1aa8899a6a59450b9d1550", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "confluence-assistant", "description": "Expert in Confluence operations using Atlassian MCP. Use when the user says \"search Confluence\", \"create a Confluence page\", \"update a page\", \"find documentation in Confluence\", \"list spaces\", or \"add a comment to a page\". Do NOT use for Jira issues, general web search, or local file creation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(development)/confluence-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install confluence-assistant"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "confluence-assistant. Expert in Confluence operations using Atlassian MCP. Use when the user says \"search Confluence\", \"create a Confluence page\", \"update a page\", \"find documentation in Confluence\", \"list spaces\", or \"add a comment to a page\". Do NOT use for Jira issues, general web search, or local file creation. Platforms: claude_code."} {"id": "8fa105b94fb29e49d2bb1b62fee75ba34258fa64def46ef17bb2f23fc2281d15", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "ai-cold-outreach", "description": "When the user wants to build an AI-powered outreach system, write cold emails, improve deliverability, or scale personalized outreach. Also use when the user mentions 'cold email,' 'cold outreach,' 'outreach automation,' 'Instantly,' 'Smartlead,' 'Clay,' 'email sequences,' 'deliverability,' 'personalization at scale,' 'reply rate,' or 'outreach stack.' This skill covers the complete AI cold outreach system from signal detection through conversion. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/ai-cold-outreach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-cold-outreach"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "ai-cold-outreach. When the user wants to build an AI-powered outreach system, write cold emails, improve deliverability, or scale personalized outreach. Also use when the user mentions 'cold email,' 'cold outreach,' 'outreach automation,' 'Instantly,' 'Smartlead,' 'Clay,' 'email sequences,' 'deliverability,' 'personalization at scale,' 'reply rate,' or 'outreach stack.' This skill covers the complete AI cold outreach system from signal detection through conversion. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} {"id": "2dfb0b302db9a766ddcbd62d4e1052a90e1d85489bdfeba8be3dabc3fbfaf3e6", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "ai-pricing", "description": "When the user wants to price an AI product, choose a charge metric, design pricing tiers, or optimize margins. Also use when the user mentions 'AI pricing,' 'usage-based pricing,' 'consumption pricing,' 'outcome pricing,' 'BYOK,' 'bring your own key,' 'per-seat pricing,' 'pricing tiers,' 'AI margins,' 'cost per token,' or 'pricing model.' This skill covers pricing strategy, packaging, and margin management for AI-native products. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/ai-pricing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-pricing"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "ai-pricing. When the user wants to price an AI product, choose a charge metric, design pricing tiers, or optimize margins. Also use when the user mentions 'AI pricing,' 'usage-based pricing,' 'consumption pricing,' 'outcome pricing,' 'BYOK,' 'bring your own key,' 'per-seat pricing,' 'pricing tiers,' 'AI margins,' 'cost per token,' or 'pricing model.' This skill covers pricing strategy, packaging, and margin management for AI-native products. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "33bcc1e57fcd0f45ac9ea0295995a4c0925cb267ffbae275787448eaf3be524e", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "ai-sdr", "description": "When the user wants to deploy AI sales development reps, automate sales qualification, build signal-to-action routing, or design AI agent architecture for sales. Also use when the user mentions 'AI SDR,' 'AI sales agent,' 'automated qualification,' 'signal routing,' 'sales automation,' '11x,' 'Artisan,' 'AiSDR,' 'AI BDR,' or 'autonomous sales.' This skill covers AI SDR deployment, qualification automation, and agent architecture for sales development. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/ai-sdr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-sdr"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "ai-sdr. When the user wants to deploy AI sales development reps, automate sales qualification, build signal-to-action routing, or design AI agent architecture for sales. Also use when the user mentions 'AI SDR,' 'AI sales agent,' 'automated qualification,' 'signal routing,' 'sales automation,' '11x,' 'Artisan,' 'AiSDR,' 'AI BDR,' or 'autonomous sales.' This skill covers AI SDR deployment, qualification automation, and agent architecture for sales development. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "801478731245ec3358d39c32331119ad2f6b8f817de0126da97e83beaa781afb", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "ai-ugc-ads", "description": "When the user wants to create UGC ad campaigns, recruit UGC creators, generate AI UGC content, or scale with user-generated content. Also use when the user mentions 'UGC,' 'user-generated content,' 'creator ads,' 'Spark Ads,' 'whitelisting,' 'AI UGC,' 'Arcads,' 'Creatify,' 'creator brief,' or 'UGC testing.' This skill covers the UGC growth framework from creator recruitment through AI-powered scaling. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/ai-ugc-ads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai-ugc-ads"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "ai-ugc-ads. When the user wants to create UGC ad campaigns, recruit UGC creators, generate AI UGC content, or scale with user-generated content. Also use when the user mentions 'UGC,' 'user-generated content,' 'creator ads,' 'Spark Ads,' 'whitelisting,' 'AI UGC,' 'Arcads,' 'Creatify,' 'creator brief,' or 'UGC testing.' This skill covers the UGC growth framework from creator recruitment through AI-powered scaling. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "012c2c1bf6f03e35f15a4c9e683897ea8a02843795f6638dc90430c5e215cd53", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "content-to-pipeline", "description": "When the user wants to turn content into revenue, build a content-led GTM motion, reverse engineer distribution, or repurpose content across platforms. Also use when the user mentions 'content marketing,' 'content-led growth,' 'content to pipeline,' 'distribution,' 'content repurposing,' 'content strategy,' 'thought leadership,' 'newsletter,' 'content flywheel,' 'organic growth.' This skill covers content-to-revenue systems from creation through pipeline attribution. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/content-to-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install content-to-pipeline"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "content-to-pipeline. When the user wants to turn content into revenue, build a content-led GTM motion, reverse engineer distribution, or repurpose content across platforms. Also use when the user mentions 'content marketing,' 'content-led growth,' 'content to pipeline,' 'distribution,' 'content repurposing,' 'content strategy,' 'thought leadership,' 'newsletter,' 'content flywheel,' 'organic growth.' This skill covers content-to-revenue systems from creation through pipeline attribution. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "83af44f42b232cf7f78f2dc9fedec1ab008e94ba51ea31c6582142a593a09609", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "expansion-retention", "description": "When the user wants to reduce churn, build expansion revenue, automate customer success, or optimize net revenue retention. Also use when the user mentions 'churn,' 'retention,' 'expansion revenue,' 'upsell,' 'NRR,' 'net revenue retention,' 'customer success,' 'land and expand,' 'closed-lost,' or 'renewal.' This skill covers expansion and retention systems from usage triggers through automated customer success. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/expansion-retention/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install expansion-retention"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "expansion-retention. When the user wants to reduce churn, build expansion revenue, automate customer success, or optimize net revenue retention. Also use when the user mentions 'churn,' 'retention,' 'expansion revenue,' 'upsell,' 'NRR,' 'net revenue retention,' 'customer success,' 'land and expand,' 'closed-lost,' or 'renewal.' This skill covers expansion and retention systems from usage triggers through automated customer success. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} {"id": "b3ae6f8714ef10ae597989f64c67aef0a4e74e3c0dba88992207827ddb35c445", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "gtm-engineering", "description": "When the user wants to build GTM automation with code, design workflow architectures, use AI agents for GTM tasks, or implement the 'architecture over tools' principle. Also use when the user mentions 'GTM engineering,' 'GTM automation,' 'n8n,' 'Make,' 'Zapier,' 'workflow automation,' 'Clay API,' 'instruction stacks,' 'AI agents for GTM,' or 'revenue automation.' This skill covers technical GTM infrastructure from workflow design through agent orchestration. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/gtm-engineering/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gtm-engineering"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "gtm-engineering. When the user wants to build GTM automation with code, design workflow architectures, use AI agents for GTM tasks, or implement the 'architecture over tools' principle. Also use when the user mentions 'GTM engineering,' 'GTM automation,' 'n8n,' 'Make,' 'Zapier,' 'workflow automation,' 'Clay API,' 'instruction stacks,' 'AI agents for GTM,' or 'revenue automation.' This skill covers technical GTM infrastructure from workflow design through agent orchestration. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} {"id": "5d9482e012f57ef9948445059fdcff07c18c22e4e13a390cb9c0e3490ce26fda", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "gtm-metrics", "description": "When the user wants to define GTM metrics, build a metrics dashboard, measure pipeline efficiency, or track AI product performance. Also use when the user mentions 'GTM metrics,' 'revenue latency,' 'pipeline metrics,' 'TTFV,' 'time-to-first-value,' 'data health,' 'attribution,' 'conversion rate,' 'CAC,' 'LTV,' 'NRR,' 'GTM dashboard,' 'magic number,' 'pipeline velocity,' or 'funnel metrics.' This skill covers GTM measurement from metric selection through dashboard design, including AI-specific cost metrics, attribution models, and weekly review cadences. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/gtm-metrics/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gtm-metrics"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "gtm-metrics. When the user wants to define GTM metrics, build a metrics dashboard, measure pipeline efficiency, or track AI product performance. Also use when the user mentions 'GTM metrics,' 'revenue latency,' 'pipeline metrics,' 'TTFV,' 'time-to-first-value,' 'data health,' 'attribution,' 'conversion rate,' 'CAC,' 'LTV,' 'NRR,' 'GTM dashboard,' 'magic number,' 'pipeline velocity,' or 'funnel metrics.' This skill covers GTM measurement from metric selection through dashboard design, including AI-specific cost metrics, attribution models, and weekly review cadences. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "d00bba04345ded0356d99375f087e7220c9f7a8ced62f11242175187ad4dcd29", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "lead-enrichment", "description": "When the user wants to build data enrichment workflows, score leads against ICP, set up Clay waterfalls, or improve contact data quality. Also use when the user mentions 'enrichment,' 'data enrichment,' 'Clay,' 'waterfall enrichment,' 'ICP scoring,' 'lead scoring,' 'intent data,' 'contact verification,' 'Apollo,' 'ZoomInfo,' or 'data quality.' This skill covers lead enrichment waterfalls, ICP scoring frameworks, and contact verification systems. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/lead-enrichment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install lead-enrichment"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "lead-enrichment. When the user wants to build data enrichment workflows, score leads against ICP, set up Clay waterfalls, or improve contact data quality. Also use when the user mentions 'enrichment,' 'data enrichment,' 'Clay,' 'waterfall enrichment,' 'ICP scoring,' 'lead scoring,' 'intent data,' 'contact verification,' 'Apollo,' 'ZoomInfo,' or 'data quality.' This skill covers lead enrichment waterfalls, ICP scoring frameworks, and contact verification systems. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "6366ef8d5bfcdd1abf0e409f6db9a084e78eedd42a864b39888dd76b1673ea8c", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "multi-platform-launch", "description": "When the user wants to launch a product across multiple platforms, plan a Product Hunt launch, build a waitlist, or execute a multi-channel launch strategy. Also use when the user mentions 'product launch,' 'Product Hunt,' 'launch strategy,' 'waitlist,' 'beta launch,' 'BetaList,' 'Hacker News,' 'launch day,' 'AppSumo,' 'multi-channel launch.' This skill covers multi-platform launch execution from pre-launch through post-launch optimization. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/multi-platform-launch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install multi-platform-launch"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "multi-platform-launch. When the user wants to launch a product across multiple platforms, plan a Product Hunt launch, build a waitlist, or execute a multi-channel launch strategy. Also use when the user mentions 'product launch,' 'Product Hunt,' 'launch strategy,' 'waitlist,' 'beta launch,' 'BetaList,' 'Hacker News,' 'launch day,' 'AppSumo,' 'multi-channel launch.' This skill covers multi-platform launch execution from pre-launch through post-launch optimization. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "4fd1ea9622afccd80794d88ab838df6bd9ec3bd8f22a20e1bd7a7e324f3d2a41", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "paid-creative-ai", "description": "When the user wants to create AI-generated ad creative, test performance creative, manage creative fatigue, or optimize paid media with AI tools. Also use when the user mentions 'ad creative,' 'performance creative,' 'creative testing,' 'creative fatigue,' 'Meta ads,' 'Google ads,' 'TikTok ads,' 'AI ads,' 'ad budget,' 'ROAS,' 'Advantage+,' or 'Performance Max.' This skill covers AI-powered paid creative from generation through performance optimization. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/paid-creative-ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install paid-creative-ai"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "paid-creative-ai. When the user wants to create AI-generated ad creative, test performance creative, manage creative fatigue, or optimize paid media with AI tools. Also use when the user mentions 'ad creative,' 'performance creative,' 'creative testing,' 'creative fatigue,' 'Meta ads,' 'Google ads,' 'TikTok ads,' 'AI ads,' 'ad budget,' 'ROAS,' 'Advantage+,' or 'Performance Max.' This skill covers AI-powered paid creative from generation through performance optimization. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "9eb8dbc5b9b0c2abbda5d7bc93e6649fd6b9a9c2f486903b1b10d8299d878994", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "partner-affiliate", "description": "When the user wants to build a partner program, launch an affiliate program, design integration partnerships, or create distribution partnerships. Also use when the user mentions 'partnerships,' 'affiliate program,' 'referral program,' 'partner ecosystem,' 'integration partner,' 'reseller,' 'co-marketing,' 'PartnerStack,' or 'revenue share.' This skill covers partner and affiliate program design from recruitment through performance optimization. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/partner-affiliate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install partner-affiliate"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "partner-affiliate. When the user wants to build a partner program, launch an affiliate program, design integration partnerships, or create distribution partnerships. Also use when the user mentions 'partnerships,' 'affiliate program,' 'referral program,' 'partner ecosystem,' 'integration partner,' 'reseller,' 'co-marketing,' 'PartnerStack,' or 'revenue share.' This skill covers partner and affiliate program design from recruitment through performance optimization. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "fd8791862bae1d2ef84de9c574f69ad97caf0421cb047d8183c368b53876f6a8", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "positioning-icp", "description": "When the user wants to define their ideal customer profile, position an AI product, build messaging architecture, or validate product-market fit. Also use when the user mentions 'ICP,' 'ideal customer profile,' 'positioning,' 'PMF,' 'product-market fit,' 'messaging,' 'buyer persona,' 'enrichment signals,' 'market positioning,' or 'competitive positioning.' This skill covers market positioning, ICP definition, messaging architecture, and PMF validation for AI-native products. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/positioning-icp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install positioning-icp"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "positioning-icp. When the user wants to define their ideal customer profile, position an AI product, build messaging architecture, or validate product-market fit. Also use when the user mentions 'ICP,' 'ideal customer profile,' 'positioning,' 'PMF,' 'product-market fit,' 'messaging,' 'buyer persona,' 'enrichment signals,' 'market positioning,' or 'competitive positioning.' This skill covers market positioning, ICP definition, messaging architecture, and PMF validation for AI-native products. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "7e664b2fa8388d6517e7127d582d7a5db5df618886b4e2d39afe7aebd15aa35f", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "sales-motion-design", "description": "When the user wants to choose between PLG and sales-led, design a sales motion, optimize time-to-first-value, or build a value-before-purchase experience. Also use when the user mentions 'PLG,' 'product-led growth,' 'sales-led,' 'sales motion,' 'free trial,' 'freemium,' 'self-serve,' 'demo-first,' 'time-to-first-value,' 'TTFV,' or 'agent-led sales.' This skill covers sales motion selection, value delivery design, and go-to-market motion architecture. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/sales-motion-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sales-motion-design"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "sales-motion-design. When the user wants to choose between PLG and sales-led, design a sales motion, optimize time-to-first-value, or build a value-before-purchase experience. Also use when the user mentions 'PLG,' 'product-led growth,' 'sales-led,' 'sales motion,' 'free trial,' 'freemium,' 'self-serve,' 'demo-first,' 'time-to-first-value,' 'TTFV,' or 'agent-led sales.' This skill covers sales motion selection, value delivery design, and go-to-market motion architecture. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} {"id": "a64c3fbe65040a41bb3f10389c5300775c55c24cb6cbf6401e65826346a6d494", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "social-selling", "description": "When the user wants to sell through social media, optimize LinkedIn for sales, build DM sequences, or convert content engagement into pipeline. Also use when the user mentions 'social selling,' 'LinkedIn selling,' 'LinkedIn DMs,' 'social prospecting,' 'LinkedIn Sales Navigator,' 'DM sequences,' 'LinkedIn outreach,' 'social pipeline,' or 'LinkedIn optimization.' This skill covers social selling strategy from profile optimization through DM-to-deal conversion. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/social-selling/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install social-selling"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "social-selling. When the user wants to sell through social media, optimize LinkedIn for sales, build DM sequences, or convert content engagement into pipeline. Also use when the user mentions 'social selling,' 'LinkedIn selling,' 'LinkedIn DMs,' 'social prospecting,' 'LinkedIn Sales Navigator,' 'DM sequences,' 'LinkedIn outreach,' 'social pipeline,' or 'LinkedIn optimization.' This skill covers social selling strategy from profile optimization through DM-to-deal conversion. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} -{"id": "1e5479ebe246bb07cef3b7284bbfdf6b62f837007feffa20b4125433a7bc6103", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "solo-founder-gtm", "description": "When the user is a solo founder building their GTM motion, wants to scale without hiring, or needs to design an AI agent team for go-to-market. Also use when the user mentions 'solo founder,' 'one-person startup,' 'solopreneur,' 'bootstrapped,' 'no team,' 'AI agents as team,' 'scaling without hiring,' 'founder-led sales,' 'lean GTM,' 'one-person company,' or 'no employees.' This skill covers the complete solo founder GTM playbook from stack selection through agent team design, revenue-stage transitions, time allocation, and when to finally hire. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/solo-founder-gtm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solo-founder-gtm"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "solo-founder-gtm. When the user is a solo founder building their GTM motion, wants to scale without hiring, or needs to design an AI agent team for go-to-market. Also use when the user mentions 'solo founder,' 'one-person startup,' 'solopreneur,' 'bootstrapped,' 'no team,' 'AI agents as team,' 'scaling without hiring,' 'founder-led sales,' 'lean GTM,' 'one-person company,' or 'no employees.' This skill covers the complete solo founder GTM playbook from stack selection through agent team design, revenue-stage transitions, time allocation, and when to finally hire. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} {"id": "ef5ff95dc016defa4b20c573a196af72b41a7eb04f46bf7801327192581a3f20", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "video-outreach", "description": "When the user wants to build video-first cold outreach, create personalized video at scale, implement async selling, or use AI demo generation for prospecting. Also use when the user mentions 'video outreach,' 'personalized video,' 'video prospecting,' 'Tavus,' 'Sendspark,' 'HeyGen,' 'video email,' 'async selling,' 'video demo,' or 'made this for you.' This skill covers video-first outreach systems from personalization through conversion optimization. Do NOT use for technical implementation, code review, or software architecture.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(gtm)/video-outreach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install video-outreach"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "video-outreach. When the user wants to build video-first cold outreach, create personalized video at scale, implement async selling, or use AI demo generation for prospecting. Also use when the user mentions 'video outreach,' 'personalized video,' 'video prospecting,' 'Tavus,' 'Sendspark,' 'HeyGen,' 'video email,' 'async selling,' 'video demo,' or 'made this for you.' This skill covers video-first outreach systems from personalization through conversion optimization. Do NOT use for technical implementation, code review, or software architecture. Platforms: claude_code."} {"id": "2c5547857182223292e89fb48e84d6ffe044d1b604ec993a6967feff60688145", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "seo", "description": "Optimize for search engine visibility and ranking. Use when asked to \"improve SEO\", \"optimize for search\", \"fix meta tags\", \"add structured data\", \"sitemap optimization\", or \"search engine optimization\". Do NOT use for accessibility (use web-accessibility), performance (use core-web-vitals), or comprehensive site audits covering multiple areas (use web-quality-audit).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(quality)/seo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install seo"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "seo. Optimize for search engine visibility and ranking. Use when asked to \"improve SEO\", \"optimize for search\", \"fix meta tags\", \"add structured data\", \"sitemap optimization\", or \"search engine optimization\". Do NOT use for accessibility (use web-accessibility), performance (use core-web-vitals), or comprehensive site audits covering multiple areas (use web-quality-audit). Platforms: claude_code."} {"id": "5af3230114f5b6b30150cd7e64cd001787aee1d93360f35ab0bf209e9a361e03", "repo_url": "https://github.com/tech-leads-club/agent-skills", "name": "best-practices", "description": "Apply modern web development best practices for security, compatibility, and code quality. Use when asked to \"apply best practices\", \"security audit\", \"modernize code\", \"code quality review\", or \"check for vulnerabilities\". Do NOT use for accessibility (use web-accessibility), SEO (use seo), performance (use core-web-vitals), or comprehensive multi-area audits (use web-quality-audit).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tech-leads-club/agent-skills/blob/main/packages/skills-catalog/skills/(quality)/web-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install best-practices"}, "quality": {"stars": 1728, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T12:10:44Z"}, "embedding_text": "best-practices. Apply modern web development best practices for security, compatibility, and code quality. Use when asked to \"apply best practices\", \"security audit\", \"modernize code\", \"code quality review\", or \"check for vulnerabilities\". Do NOT use for accessibility (use web-accessibility), SEO (use seo), performance (use core-web-vitals), or comprehensive multi-area audits (use web-quality-audit). Platforms: claude_code."} @@ -31965,17 +36191,14 @@ {"id": "99060ac1cff67392d00c00cf20ed1aa7bb7d68331a5acc69bde8f183b008143d", "repo_url": "https://github.com/letta-ai/skills", "name": "imessage", "description": "Send and read iMessages/SMS from macOS. Use for texting contacts, scheduling services, or automating message-based workflows. Triggers on queries about texting, messaging, SMS, iMessage, or contacting someone via text.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/skills/blob/main/tools/imessage/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install imessage"}, "quality": {"stars": 70, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:24:29Z"}, "embedding_text": "imessage. Send and read iMessages/SMS from macOS. Use for texting contacts, scheduling services, or automating message-based workflows. Triggers on queries about texting, messaging, SMS, iMessage, or contacting someone via text. Platforms: claude_code."} {"id": "8d2f02c81a879ebc38ec9d6dfbbe0d7414845d2383d739b94f58a34d9f6e3e91", "repo_url": "https://github.com/letta-ai/skills", "name": "linear", "description": "Manage Linear issues via GraphQL API. List, filter, update, prioritize, comment, and search issues. Use when the user asks about Linear, issues, project management, or backlog.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/skills/blob/main/tools/linear/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install linear"}, "quality": {"stars": 70, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:24:29Z"}, "embedding_text": "linear. Manage Linear issues via GraphQL API. List, filter, update, prioritize, comment, and search issues. Use when the user asks about Linear, issues, project management, or backlog. Platforms: claude_code."} {"id": "cc0fbb57f4f8e90d38c5aaaebe42e114d328acc0b9aed485dbe5f9b3cb6af4d1", "repo_url": "https://github.com/letta-ai/skills", "name": "mcp-builder", "description": "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).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/skills/blob/main/tools/mcp-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mcp-builder"}, "quality": {"stars": 70, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:24:29Z"}, "embedding_text": "mcp-builder. 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). Platforms: claude_code."} -{"id": "4ac6d000e48ebe95f564a2393e21b49bb8ab149c6c95344f76f5c7e330891a09", "repo_url": "https://github.com/letta-ai/skills", "name": "morph-warpgrep", "description": "Integration guide for Morph's WarpGrep (fast agentic code search) and Fast Apply (10,500 tok/s code editing). Use when building coding agents that need fast, accurate code search or need to apply AI-generated edits to code efficiently. Particularly useful for large codebases, deep logic queries, bug tracing, and code path analysis.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/skills/blob/main/tools/morph-warpgrep/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install morph-warpgrep"}, "quality": {"stars": 70, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:24:29Z"}, "embedding_text": "morph-warpgrep. Integration guide for Morph's WarpGrep (fast agentic code search) and Fast Apply (10,500 tok/s code editing). Use when building coding agents that need fast, accurate code search or need to apply AI-generated edits to code efficiently. Particularly useful for large codebases, deep logic queries, bug tracing, and code path analysis. Platforms: claude_code."} {"id": "4bbb5111b18a7064b50c9a24ac6bb18c20b39cf799ec970b95b7be77f88d838f", "repo_url": "https://github.com/letta-ai/skills", "name": "obsidian-cli", "description": "Work with Obsidian vaults using the official Obsidian CLI. Read, create, append, search, and manage notes, daily notes, properties, tags, tasks, sync, and more from the terminal. Use when the user mentions Obsidian, notes, vault, daily notes, or when working with markdown knowledge bases. Requires Obsidian desktop app running with CLI enabled in Settings > General.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/skills/blob/main/tools/obsidian-cli/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install obsidian-cli"}, "quality": {"stars": 70, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:24:29Z"}, "embedding_text": "obsidian-cli. Work with Obsidian vaults using the official Obsidian CLI. Read, create, append, search, and manage notes, daily notes, properties, tags, tasks, sync, and more from the terminal. Use when the user mentions Obsidian, notes, vault, daily notes, or when working with markdown knowledge bases. Requires Obsidian desktop app running with CLI enabled in Settings > General. Platforms: claude_code."} {"id": "54051fa1761799522f2dc0b17d57b905ea6fbb0020eca98c5c728403f513e94e", "repo_url": "https://github.com/letta-ai/skills", "name": "slack", "description": "Search messages, read threads, and send messages in Slack. Use when looking up discussions, finding context about a topic, or sending notifications to channels.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/skills/blob/main/tools/slack/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install slack"}, "quality": {"stars": 70, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:24:29Z"}, "embedding_text": "slack. Search messages, read threads, and send messages in Slack. Use when looking up discussions, finding context about a topic, or sending notifications to channels. Platforms: claude_code."} {"id": "330b0df389ec61dd2c9162c904da48870a5c0b47ef22872bd5a71968f07dc95a", "repo_url": "https://github.com/letta-ai/skills", "name": "webapp-testing", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/skills/blob/main/tools/webapp-testing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install webapp-testing"}, "quality": {"stars": 70, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:24:29Z"}, "embedding_text": "webapp-testing. 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. Platforms: claude_code."} {"id": "629785fceaa25c778a6f296e5f4f370e8c591477b9e3b6dc15f0cf698175bca9", "repo_url": "https://github.com/letta-ai/skills", "name": "yelp-search", "description": "Search Yelp for local businesses, get contact info, ratings, and hours. Use when finding services (cleaners, groomers, restaurants, etc.), looking up business phone numbers to text, or checking ratings before booking. Triggers on queries about finding businesses, restaurants, services, or \"look up on Yelp\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/letta-ai/skills/blob/main/tools/yelp-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install yelp-search"}, "quality": {"stars": 70, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T23:24:29Z"}, "embedding_text": "yelp-search. Search Yelp for local businesses, get contact info, ratings, and hours. Use when finding services (cleaners, groomers, restaurants, etc.), looking up business phone numbers to text, or checking ratings before booking. Triggers on queries about finding businesses, restaurants, services, or \"look up on Yelp\". Platforms: claude_code."} {"id": "ae6405cfcff322cf485d526a54d65d7a29a31365fcfe69bc82d7752ccd30fe35", "repo_url": "https://github.com/artemxtech/personal-os-skills", "name": "granola", "description": "Query and sync Granola meetings to Obsidian vault. Use when user mentions Granola, meeting transcripts, or wants to sync meeting notes. Reads from local cache - no API needed.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/personal-os-skills/blob/main/skills/granola/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install granola"}, "quality": {"stars": 241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T03:35:00Z"}, "embedding_text": "granola. Query and sync Granola meetings to Obsidian vault. Use when user mentions Granola, meeting transcripts, or wants to sync meeting notes. Reads from local cache - no API needed. Platforms: claude_code."} {"id": "b2b1b60e53ca55c62850bf91c1a7d216fdae886e116f20fe459ee3465f466715", "repo_url": "https://github.com/artemxtech/personal-os-skills", "name": "notebooklm", "description": "Import NotebookLM notebooks into your Obsidian vault as linked knowledge graphs. Sources become wikilink-able files, Q&A answers get citations resolved to [[wikilinks]] with passage-level deep links. Use when user says \"notebooklm import\", \"import notebook\", \"notebooklm ask\", \"notebooklm sources\", or wants to turn NotebookLM research into vault knowledge.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/personal-os-skills/blob/main/skills/notebooklm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install notebooklm"}, "quality": {"stars": 241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T03:35:00Z"}, "embedding_text": "notebooklm. Import NotebookLM notebooks into your Obsidian vault as linked knowledge graphs. Sources become wikilink-able files, Q&A answers get citations resolved to [[wikilinks]] with passage-level deep links. Use when user says \"notebooklm import\", \"import notebook\", \"notebooklm ask\", \"notebooklm sources\", or wants to turn NotebookLM research into vault knowledge. Platforms: claude_code."} -{"id": "a7ebffa248083d9a6e74c9f4587290cc49066452dea20bc39528a7b523d06479", "repo_url": "https://github.com/artemxtech/personal-os-skills", "name": "recall", "description": "Load context from vault memory. Temporal queries (yesterday, last week, session history) use native JSONL timeline. Topic queries use QMD BM25 search. \"recall graph\" generates interactive temporal graph of sessions and files. Every recall ends with \"One Thing\" - the single highest-leverage next action synthesized from results. Use when user says \"recall\", \"what did we work on\", \"load context about\", \"remember when we\", \"prime context\", \"yesterday\", \"what was I doing\", \"last week\", \"session history\", \"recall graph\", \"session graph\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/personal-os-skills/blob/main/skills/recall/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install recall"}, "quality": {"stars": 241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T03:35:00Z"}, "embedding_text": "recall. Load context from vault memory. Temporal queries (yesterday, last week, session history) use native JSONL timeline. Topic queries use QMD BM25 search. \"recall graph\" generates interactive temporal graph of sessions and files. Every recall ends with \"One Thing\" - the single highest-leverage next action synthesized from results. Use when user says \"recall\", \"what did we work on\", \"load context about\", \"remember when we\", \"prime context\", \"yesterday\", \"what was I doing\", \"last week\", \"session history\", \"recall graph\", \"session graph\". Platforms: claude_code."} {"id": "360c6584cc6553a4b613ecf280d24542fce027153aa8bacfc497a264a926e95f", "repo_url": "https://github.com/artemxtech/personal-os-skills", "name": "sync-claude-sessions", "description": "Sync Claude Code sessions to Obsidian markdown. Export, resume, add notes, close sessions. USE WHEN user says \"sync sessions\", \"export sessions\", \"resume session\", \"add session note\", \"close session\", \"log session\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/personal-os-skills/blob/main/skills/sync-claude-sessions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sync-claude-sessions"}, "quality": {"stars": 241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T03:35:00Z"}, "embedding_text": "sync-claude-sessions. Sync Claude Code sessions to Obsidian markdown. Export, resume, add notes, close sessions. USE WHEN user says \"sync sessions\", \"export sessions\", \"resume session\", \"add session note\", \"close session\", \"log session\". Platforms: claude_code."} {"id": "ffee29352f437f9342d3db4872d5f235c6f0222ec3ec1b2d8cbe2d6b3c6b4d3f", "repo_url": "https://github.com/artemxtech/personal-os-skills", "name": "tasknotes", "description": "Manage tasks in Obsidian via TaskNotes plugin API. Use when user wants to create tasks, list tasks, query by status or project, update task status, delete tasks, or check what they need to do.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/personal-os-skills/blob/main/skills/tasknotes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tasknotes"}, "quality": {"stars": 241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T03:35:00Z"}, "embedding_text": "tasknotes. Manage tasks in Obsidian via TaskNotes plugin API. Use when user wants to create tasks, list tasks, query by status or project, update task status, delete tasks, or check what they need to do. Platforms: claude_code."} -{"id": "03098a2dbfa5a3f1ef4664c66c18068a5e760df57b3c8aefb8c6e8d89fc29624", "repo_url": "https://github.com/artemxtech/personal-os-skills", "name": "wispr-flow", "description": "Analyze Wispr Flow voice dictation data. Stats, search, export, visualizations. Use when user says \"dictation history\", \"word counts\", \"voice analytics\", \"how much did I dictate\", \"search my dictation\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/personal-os-skills/blob/main/skills/wispr-flow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wispr-flow"}, "quality": {"stars": 241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-02T03:35:00Z"}, "embedding_text": "wispr-flow. Analyze Wispr Flow voice dictation data. Stats, search, export, visualizations. Use when user says \"dictation history\", \"word counts\", \"voice analytics\", \"how much did I dictate\", \"search my dictation\". Platforms: claude_code."} {"id": "17a0ab6401d89784d76561af8caf28a0ca8213805e021ad0897f9045c8ea2339", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "debugging-strategies", "description": "Master systematic debugging techniques, profiling tools, and root cause analysis to efficiently track down bugs across any codebase or technology stack. Use when investigating bugs, performance issues, or unexpected behavior.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/commands/debugging-strategies/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debugging-strategies"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "debugging-strategies. Master systematic debugging techniques, profiling tools, and root cause analysis to efficiently track down bugs across any codebase or technology stack. Use when investigating bugs, performance issues, or unexpected behavior. Platforms: claude_code."} {"id": "b588e37d5a4127a3dd28ffd44e4a1a86248fe20ccab6ff58d41cc5b1829302a5", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "dependency-upgrade", "description": "Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/commands/dependency-upgrade/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dependency-upgrade"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "dependency-upgrade. Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries. Platforms: claude_code."} {"id": "f12977afad1cfe86e5f29df900f898f30487e27a5ba12c82026fac47bd52b85d", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "evaluating-code-models", "description": "Evaluates code generation models across HumanEval, MBPP, MultiPL-E, and 15+ benchmarks with pass@k metrics. Use when benchmarking code models, comparing coding abilities, testing multi-language support, or measuring code generation quality. Industry standard from BigCode Project used by HuggingFace leaderboards.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/commands/evaluating-code-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install evaluating-code-models"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "evaluating-code-models. Evaluates code generation models across HumanEval, MBPP, MultiPL-E, and 15+ benchmarks with pass@k metrics. Use when benchmarking code models, comparing coding abilities, testing multi-language support, or measuring code generation quality. Industry standard from BigCode Project used by HuggingFace leaderboards. Platforms: claude_code."} @@ -31983,13 +36206,6 @@ {"id": "946fd4b510204f65083e9b3f8e11f14790770320dcd594180216568a8e2a15b7", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "stride-analysis-patterns", "description": "Apply STRIDE methodology to systematically identify threats. Use when analyzing system security, conducting threat modeling sessions, or creating security documentation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/commands/stride-analysis-patterns/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install stride-analysis-patterns"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "stride-analysis-patterns. Apply STRIDE methodology to systematically identify threats. Use when analyzing system security, conducting threat modeling sessions, or creating security documentation. Platforms: claude_code."} {"id": "92b20b1bfcc8bc3c8e1fe32dbce4b3b015fbca4eee400abf8804a220ef522032", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "summarize", "description": "Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for \u201ctranscribe this YouTube/video\u201d).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/commands/summarize/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install summarize"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "summarize. Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for \u201ctranscribe this YouTube/video\u201d). Platforms: claude_code."} {"id": "af08a17c9dede5964c3ede3dd134ff569bfaa6a6c642c69227db5a56b9c80c29", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "cache-components", "description": "Expert guidance for Next.js Cache Components and Partial Prerendering (PPR).\n\n**PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations.\n\n**DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions.\n\n**USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/cache-components/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cache-components"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "cache-components. Expert guidance for Next.js Cache Components and Partial Prerendering (PPR).\n\n**PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations.\n\n**DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions.\n\n**USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations. Platforms: claude_code."} -{"id": "72450f13637bcec0a42b5da00e87d78a5866a70e6a7affb2550271154bb2b360", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "cc-dev-agent", "description": "Claude Code \uac1c\ubc1c \uc6cc\ud06c\ud50c\ub85c\uc6b0 \ucd5c\uc801\ud654. Context Engineering, Sub-agents, TDD, \uac1c\ubc1c \ud6c4 \uac80\uc99d \uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc81c\uacf5. \ud2b8\ub9ac\uac70: CC \ud504\ub85c\uc81d\ud2b8 \uc2dc\uc791, CLAUDE.md/spec.md \uc791\uc131, /handoff /verify /commit-push-pr, sub-agent/Explore, Agent Teams \ubcd1\ub82c \uac1c\ubc1c \uc694\uccad \uc2dc.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/cc-dev-agent/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cc-dev-agent"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "cc-dev-agent. Claude Code \uac1c\ubc1c \uc6cc\ud06c\ud50c\ub85c\uc6b0 \ucd5c\uc801\ud654. Context Engineering, Sub-agents, TDD, \uac1c\ubc1c \ud6c4 \uac80\uc99d \uc6cc\ud06c\ud50c\ub85c\uc6b0 \uc81c\uacf5. \ud2b8\ub9ac\uac70: CC \ud504\ub85c\uc81d\ud2b8 \uc2dc\uc791, CLAUDE.md/spec.md \uc791\uc131, /handoff /verify /commit-push-pr, sub-agent/Explore, Agent Teams \ubcd1\ub82c \uac1c\ubc1c \uc694\uccad \uc2dc. Platforms: claude_code."} -{"id": "a0e3e5dd413876b9bd87fb02327a03921fd40930666bd6558eb341eaedf319a7", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "continuous-learning-v2", "description": "Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/continuous-learning-v2/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install continuous-learning-v2"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "continuous-learning-v2. Instinct-based learning system that observes sessions via hooks, creates atomic instincts with confidence scoring, and evolves them into skills/commands/agents. Platforms: claude_code."} -{"id": "6baba4573be72188bd60b6204725ae7d5b5c2e6b4270bbbb33d4b2d06eab5121", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "frontend-code-review", "description": "Trigger when the user requests a review of frontend files (e.g., `.tsx`, `.ts`, `.js`). Support both pending-change reviews and focused file reviews while applying the checklist rules.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/frontend-code-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-code-review"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "frontend-code-review. Trigger when the user requests a review of frontend files (e.g., `.tsx`, `.ts`, `.js`). Support both pending-change reviews and focused file reviews while applying the checklist rules. Platforms: claude_code."} -{"id": "bd7482d49bf87733da22c2614bdd442de5b48b3a0832c6b51473f9dda2c7a528", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "prompts-chat", "description": "\uc2a4\ud0ac/\ud504\ub86c\ud504\ud2b8 \ud0d0\uc0c9 \ubc0f \uac80\uc0c9 \ud1b5\ud569 \uc2a4\ud0ac. \uc0ac\uc6a9\uc790\uac00 \uc2a4\ud0ac \uc124\uce58, \ud504\ub86c\ud504\ud2b8 \uac80\uc0c9, \ud504\ub86c\ud504\ud2b8 \uac1c\uc120\uc744 \uc694\uccad\ud560 \ub54c \ud65c\uc131\ud654.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/prompts-chat/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install prompts-chat"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "prompts-chat. \uc2a4\ud0ac/\ud504\ub86c\ud504\ud2b8 \ud0d0\uc0c9 \ubc0f \uac80\uc0c9 \ud1b5\ud569 \uc2a4\ud0ac. \uc0ac\uc6a9\uc790\uac00 \uc2a4\ud0ac \uc124\uce58, \ud504\ub86c\ud504\ud2b8 \uac80\uc0c9, \ud504\ub86c\ud504\ud2b8 \uac1c\uc120\uc744 \uc694\uccad\ud560 \ub54c \ud65c\uc131\ud654. Platforms: claude_code."} -{"id": "78853359cdba3c12ec67e3188d4150c344137c95759928d19b3e5f9bf7f85bbb", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "security-pipeline", "description": "\ubcf4\uc548 \ud30c\uc774\ud504\ub77c\uc778 - CWE Top 25 + STRIDE \uc790\ub3d9 \uac80\uc99d", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/security-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install security-pipeline"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "security-pipeline. \ubcf4\uc548 \ud30c\uc774\ud504\ub77c\uc778 - CWE Top 25 + STRIDE \uc790\ub3d9 \uac80\uc99d Platforms: claude_code."} -{"id": "538f6b6d02d013d4baace0717f89d9f0df7bcc17cd44873f328052cc6b77be89", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "session-wrap", "description": "\uc138\uc158 \uc885\ub8cc \uc804 \uc790\ub3d9 \uc815\ub9ac \uc2a4\ud0ac. 4\uac1c \ubcd1\ub82c subagent\uac00 \ubb38\uc11c \uc5c5\ub370\uc774\ud2b8, \ubc18\ubcf5 \ud328\ud134, \ud559\uc2b5 \ud3ec\uc778\ud2b8, \ud6c4\uc18d \uc791\uc5c5\uc744 \ub3d9\uc2dc \ud0d0\uc9c0\ud558\uace0, 1\uac1c \uac80\uc99d subagent\uac00 \uc911\ubcf5 \uc81c\uac70 \ud6c4 \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc120\ud0dd\uc9c0\ub97c \uc81c\uc2dc\ud55c\ub2e4.\n\ud2b8\ub9ac\uac70: /session-wrap, \uc138\uc158 \ub9c8\ubb34\ub9ac, \uc138\uc158 \uc815\ub9ac, \uc791\uc5c5 \ub9c8\ubb34\ub9ac\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/session-wrap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install session-wrap"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "session-wrap. \uc138\uc158 \uc885\ub8cc \uc804 \uc790\ub3d9 \uc815\ub9ac \uc2a4\ud0ac. 4\uac1c \ubcd1\ub82c subagent\uac00 \ubb38\uc11c \uc5c5\ub370\uc774\ud2b8, \ubc18\ubcf5 \ud328\ud134, \ud559\uc2b5 \ud3ec\uc778\ud2b8, \ud6c4\uc18d \uc791\uc5c5\uc744 \ub3d9\uc2dc \ud0d0\uc9c0\ud558\uace0, 1\uac1c \uac80\uc99d subagent\uac00 \uc911\ubcf5 \uc81c\uac70 \ud6c4 \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc120\ud0dd\uc9c0\ub97c \uc81c\uc2dc\ud55c\ub2e4.\n\ud2b8\ub9ac\uac70: /session-wrap, \uc138\uc158 \ub9c8\ubb34\ub9ac, \uc138\uc158 \uc815\ub9ac, \uc791\uc5c5 \ub9c8\ubb34\ub9ac\n Platforms: claude_code."} -{"id": "010214415c8b92fc0006f7254730cc326ecedf929c18b0629e7697fe7b6d0aa5", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "skill-factory", "description": "Analyze session work and automatically convert reusable patterns into Claude Code skills. Use when: \"\uc138\uc158\uc744 \uc2a4\ud0ac\ub85c\", \"\uc2a4\ud0ac \ub9cc\ub4e4\uc5b4\", \"\uc774\uac70 \uc2a4\ud0ac\ub85c\", \"skill factory\", \"\uc774 \uc791\uc5c5 \uc790\ub3d9\ud654\ud574\", \"\uc2a4\ud0ac \ucd94\ucd9c\", \"make this a skill\", \"extract skill\", \"convert to skill\", \"\uc2a4\ud0ac \ud329\ud1a0\ub9ac\", \"\uc790\ub3d9 \uc2a4\ud0ac \uc0dd\uc131\". Differs from skill-creator (archived) and manage-skills (drift detection): this skill actively analyzes sessions, checks for duplicates, and creates skills via Agent Teams.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/skill-factory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-factory"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "skill-factory. Analyze session work and automatically convert reusable patterns into Claude Code skills. Use when: \"\uc138\uc158\uc744 \uc2a4\ud0ac\ub85c\", \"\uc2a4\ud0ac \ub9cc\ub4e4\uc5b4\", \"\uc774\uac70 \uc2a4\ud0ac\ub85c\", \"skill factory\", \"\uc774 \uc791\uc5c5 \uc790\ub3d9\ud654\ud574\", \"\uc2a4\ud0ac \ucd94\ucd9c\", \"make this a skill\", \"extract skill\", \"convert to skill\", \"\uc2a4\ud0ac \ud329\ud1a0\ub9ac\", \"\uc790\ub3d9 \uc2a4\ud0ac \uc0dd\uc131\". Differs from skill-creator (archived) and manage-skills (drift detection): this skill actively analyzes sessions, checks for duplicates, and creates skills via Agent Teams.\n Platforms: claude_code."} {"id": "abaa4a073dea7651ad03247cdcb11b4c5cfb1a54887a30729e0073eb2c4ac6aa", "repo_url": "https://github.com/sangrokjung/claude-forge", "name": "verification-engine", "description": "\ud1b5\ud569 \uac80\uc99d \uc5d4\uc9c4 - \uc11c\ube0c\uc5d0\uc774\uc804\ud2b8 \uae30\ubc18 fresh-context \uac80\uc99d \ub8e8\ud504 (v6)", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sangrokjung/claude-forge/blob/main/skills/verification-engine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install verification-engine"}, "quality": {"stars": 517, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T12:11:34Z"}, "embedding_text": "verification-engine. \ud1b5\ud569 \uac80\uc99d \uc5d4\uc9c4 - \uc11c\ube0c\uc5d0\uc774\uc804\ud2b8 \uae30\ubc18 fresh-context \uac80\uc99d \ub8e8\ud504 (v6) Platforms: claude_code."} {"id": "2eda2f262efdeccf4a08d3014154862d63e1e113a33834f83a633ba4700d26f6", "repo_url": "https://github.com/tfriedel/claude-office-skills", "name": "docx", "description": "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tfriedel/claude-office-skills/blob/main/public/docx/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install docx"}, "quality": {"stars": 377, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-04T15:46:08Z"}, "embedding_text": "docx. Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks Platforms: claude_code."} {"id": "c23fada57d7007146a7d0da2bea42db29638f1bd5e467c3d610545999d75fcbc", "repo_url": "https://github.com/tfriedel/claude-office-skills", "name": "pdf", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tfriedel/claude-office-skills/blob/main/public/pdf/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pdf"}, "quality": {"stars": 377, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-04T15:46:08Z"}, "embedding_text": "pdf. 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. Platforms: claude_code."} @@ -32002,12 +36218,7 @@ {"id": "109747bff3ce6575320ff15c0662bdd6b1303ab3aeebdac498cbbfef37f7cd4b", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "aspire-configuration", "description": "Configure Aspire AppHost to emit explicit app config via environment variables; keep app code free of Aspire clients and service discovery.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/aspire-configuration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aspire-configuration"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "aspire-configuration. Configure Aspire AppHost to emit explicit app config via environment variables; keep app code free of Aspire clients and service discovery. Platforms: claude_code."} {"id": "35848a00eb4e237f826dc0db68f98aea8c253f27aaa3c3ae85fa1f2711f6a84b", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "mailpit-integration", "description": "Test email sending locally using Mailpit with .NET Aspire. Captures all outgoing emails without sending them. View rendered HTML, inspect headers, and verify delivery in integration tests.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/aspire-mailpit-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mailpit-integration"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "mailpit-integration. Test email sending locally using Mailpit with .NET Aspire. Captures all outgoing emails without sending them. View rendered HTML, inspect headers, and verify delivery in integration tests. Platforms: claude_code."} {"id": "ab12bb06746274937f4be35f0d2f083cb8311c8f605007e542d12bd8c5188c2d", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "database-performance", "description": "Database access patterns for performance. Separate read/write models, avoid N+1 queries, use AsNoTracking, apply row limits, and never do application-side joins. Works with EF Core and Dapper.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/database-performance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install database-performance"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "database-performance. Database access patterns for performance. Separate read/write models, avoid N+1 queries, use AsNoTracking, apply row limits, and never do application-side joins. Works with EF Core and Dapper. Platforms: claude_code."} -{"id": "bffe0227c89daddc3aa2023e5eb684e12e39e94c2f7d71887b9a219a532d4bd1", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "dotnet-devcert-trust", "description": "Diagnose and fix .NET HTTPS dev certificate trust issues on Linux. Covers the full certificate lifecycle from generation to system CA bundle inclusion, with distro-specific guidance for Ubuntu, Fedora, Arch, and WSL2.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/dotnet-devcert-trust/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dotnet-devcert-trust"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "dotnet-devcert-trust. Diagnose and fix .NET HTTPS dev certificate trust issues on Linux. Covers the full certificate lifecycle from generation to system CA bundle inclusion, with distro-specific guidance for Ubuntu, Fedora, Arch, and WSL2. Platforms: claude_code."} -{"id": "eda7808439982058a02334055a280ef7925cb8a1522eb3a5d9bcbf70945a8eb8", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "ilspy-decompile", "description": "Understand implementation details of .NET code by decompiling assemblies. Use when you want to see how a .NET API works internally, inspect NuGet package source, view framework implementation, or understand compiled .NET binaries.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/ilspy-decompile/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ilspy-decompile"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "ilspy-decompile. Understand implementation details of .NET code by decompiling assemblies. Use when you want to see how a .NET API works internally, inspect NuGet package source, view framework implementation, or understand compiled .NET binaries. Platforms: claude_code."} -{"id": "7947d2a8cb16a59ff9278ac3163dd6a76589235b1c8086edec81c8a0282013f9", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "marketplace-publishing", "description": "Workflow for publishing skills and agents to the dotnet-skills Claude Code marketplace. Covers adding new content, updating plugin.json, validation, and release tagging.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/marketplace-publishing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install marketplace-publishing"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "marketplace-publishing. Workflow for publishing skills and agents to the dotnet-skills Claude Code marketplace. Covers adding new content, updating plugin.json, validation, and release tagging. Platforms: claude_code."} {"id": "747f2597f2e80c44e116c74c2fa86860212ce11f2b1a70195f4884a3b92ac777", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "dependency-injection-patterns", "description": "Organize DI registrations using IServiceCollection extension methods. Group related services into composable Add* methods for clean Program.cs and reusable configuration in tests.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/microsoft-extensions-dependency-injection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dependency-injection-patterns"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "dependency-injection-patterns. Organize DI registrations using IServiceCollection extension methods. Group related services into composable Add* methods for clean Program.cs and reusable configuration in tests. Platforms: claude_code."} -{"id": "381498d026456c7c837e496b8217cab4a4d34716eccd6870c269ae3a012b9cdc", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "playwright-ci-caching", "description": "Cache Playwright browser binaries in CI/CD pipelines (GitHub Actions, Azure DevOps) to avoid 1-2 minute download overhead on every build.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/playwright-ci-caching/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install playwright-ci-caching"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "playwright-ci-caching. Cache Playwright browser binaries in CI/CD pipelines (GitHub Actions, Azure DevOps) to avoid 1-2 minute download overhead on every build. Platforms: claude_code."} -{"id": "8216c1acbcc73359a3a67ada8e2510269e6b3f8c4a42a6b6a61acd2cc220ff71", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "skills-index-snippets", "description": "Create and maintain AGENTS.md / CLAUDE.md snippet indexes that route tasks to the correct dotnet-skills skills and agents (including compressed Vercel-style indexes).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/skills-index-snippets/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skills-index-snippets"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "skills-index-snippets. Create and maintain AGENTS.md / CLAUDE.md snippet indexes that route tasks to the correct dotnet-skills skills and agents (including compressed Vercel-style indexes). Platforms: claude_code."} {"id": "54bdcf15521f81b9f27fcb48494f4b4d30c10d81e512b442f78d9cc7cda95e78", "repo_url": "https://github.com/aaronontheweb/dotnet-skills", "name": "verify-email-snapshots", "description": "Snapshot test email templates using Verify to catch regressions. Validates rendered HTML output matches approved baseline. Works with MJML templates and any email renderer.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aaronontheweb/dotnet-skills/blob/master/skills/verify-email-snapshots/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install verify-email-snapshots"}, "quality": {"stars": 628, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T19:03:29Z"}, "embedding_text": "verify-email-snapshots. Snapshot test email templates using Verify to catch regressions. Validates rendered HTML output matches approved baseline. Works with MJML templates and any email renderer. Platforms: claude_code."} {"id": "fd292c0f0cc36c438d045cc3a1b99455647bd747bc7c58226834ca20883a27cc", "repo_url": "https://github.com/p4nda0s/reverse-skills", "name": "rev-struct", "description": "Reconstruct data structures by analyzing memory access patterns across functions", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/p4nda0s/reverse-skills/blob/main/plugins/reverse-engineering/skills/rev-struct/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rev-struct"}, "quality": {"stars": 342, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-22T17:08:22Z"}, "embedding_text": "rev-struct. Reconstruct data structures by analyzing memory access patterns across functions Platforms: claude_code."} {"id": "1c699768a3db803bf64413c5040c3459a7a02d1fc4618416cd2573bd56cb5a9c", "repo_url": "https://github.com/p4nda0s/reverse-skills", "name": "rev-symbol", "description": "Restore function symbols by analyzing code patterns, strings, constants, and cross-references", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/p4nda0s/reverse-skills/blob/main/plugins/reverse-engineering/skills/rev-symbol/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rev-symbol"}, "quality": {"stars": 342, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-22T17:08:22Z"}, "embedding_text": "rev-symbol. Restore function symbols by analyzing code patterns, strings, constants, and cross-references Platforms: claude_code."} @@ -32061,21 +36272,11 @@ {"id": "aed4ecc7fe15e188b1c8d07ddc2f7f86b5d179a563415318230a6afef3f148da", "repo_url": "https://github.com/nagisanzenin/claude-code-production-grade-plugin", "name": "sre", "description": "[production-grade internal] Makes systems reliable in production \u2014 SLOs, monitoring, alerting, chaos engineering, incident runbooks, capacity planning. Routed via the production-grade orchestrator.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nagisanzenin/claude-code-production-grade-plugin/blob/main/skills/sre/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sre"}, "quality": {"stars": 117, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T14:11:59Z"}, "embedding_text": "sre. [production-grade internal] Makes systems reliable in production \u2014 SLOs, monitoring, alerting, chaos engineering, incident runbooks, capacity planning. Routed via the production-grade orchestrator. Platforms: claude_code."} {"id": "6b8f4e861c6a3fedca39e483d12e670d2edf492a6f85ce1561c73a6053879526", "repo_url": "https://github.com/nagisanzenin/claude-code-production-grade-plugin", "name": "technical-writer", "description": "[production-grade internal] Generates documentation when you need to explain code \u2014 API references, developer guides, READMEs, architecture overviews. Routed via the production-grade orchestrator.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/nagisanzenin/claude-code-production-grade-plugin/blob/main/skills/technical-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install technical-writer"}, "quality": {"stars": 117, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T14:11:59Z"}, "embedding_text": "technical-writer. [production-grade internal] Generates documentation when you need to explain code \u2014 API references, developer guides, READMEs, architecture overviews. Routed via the production-grade orchestrator. Platforms: claude_code."} {"id": "4f6c0fc1e66aecc5cec5d8c6b8970536157598c61e780f569309e7bd1fa2c8e2", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "aws-ami-builder", "description": "Build Amazon Machine Images (AMIs) with Packer using the amazon-ebs builder. Use when creating custom AMIs for EC2 instances.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/packer/builders/skills/aws-ami-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install aws-ami-builder"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "aws-ami-builder. Build Amazon Machine Images (AMIs) with Packer using the amazon-ebs builder. Use when creating custom AMIs for EC2 instances. Platforms: claude_code."} -{"id": "12745caf7ff85626e0944d979582c2d3b1154ee6a8421087201b8aa4ead268c1", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "azure-image-builder", "description": "Build Azure managed images and Azure Compute Gallery images with Packer. Use when creating custom images for Azure VMs.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/packer/builders/skills/azure-image-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-image-builder"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "azure-image-builder. Build Azure managed images and Azure Compute Gallery images with Packer. Use when creating custom images for Azure VMs. Platforms: claude_code."} -{"id": "5915f3c14755731e807b8d07fe017e097665690f51d4871e2753a23b3a538470", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "push-to-registry", "description": "Push Packer build metadata to HCP Packer registry for tracking and managing image lifecycle. Use when integrating Packer builds with HCP Packer for version control and governance.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/packer/hcp/skills/push-to-registry/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install push-to-registry"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "push-to-registry. Push Packer build metadata to HCP Packer registry for tracking and managing image lifecycle. Use when integrating Packer builds with HCP Packer for version control and governance. Platforms: claude_code."} -{"id": "73545f037876381ec52622125295899c5f480c3ce953d91a1f6b6901558ee406", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "azure-verified-modules", "description": "Azure Verified Modules (AVM) requirements and best practices for developing certified Azure Terraform modules. Use when creating or reviewing Azure modules that need AVM certification.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/code-generation/skills/azure-verified-modules/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install azure-verified-modules"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "azure-verified-modules. Azure Verified Modules (AVM) requirements and best practices for developing certified Azure Terraform modules. Use when creating or reviewing Azure modules that need AVM certification. Platforms: claude_code."} {"id": "02d2854fa82ec073067a2e4eb0ce09de26cdf7af3751d5879a8e5a2089b52f10", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "terraform-search-import", "description": "Discover existing cloud resources using Terraform Search queries and bulk import them into Terraform management. Use when bringing unmanaged infrastructure under Terraform control, auditing cloud resources, or migrating to IaC.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/code-generation/skills/terraform-search-import/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-search-import"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "terraform-search-import. Discover existing cloud resources using Terraform Search queries and bulk import them into Terraform management. Use when bringing unmanaged infrastructure under Terraform control, auditing cloud resources, or migrating to IaC. Platforms: claude_code."} {"id": "ac8aa9ef90961a8143c9324b8cb568a8cdf56b3389e5d2e8e9a6a8307e544b43", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "terraform-style-guide", "description": "Generate Terraform HCL code following HashiCorp's official style conventions and best practices. Use when writing, reviewing, or generating Terraform configurations.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/code-generation/skills/terraform-style-guide/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-style-guide"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "terraform-style-guide. Generate Terraform HCL code following HashiCorp's official style conventions and best practices. Use when writing, reviewing, or generating Terraform configurations. Platforms: claude_code."} -{"id": "9578284f2094ca44a26a011b80a950155b83dcc2c25f4abda46e7488fc36afa8", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "terraform-test", "description": "Comprehensive guide for writing and running Terraform tests. Use when creating test files (.tftest.hcl), writing test scenarios with run blocks, validating infrastructure behavior with assertions, mocking providers and data sources, testing module outputs and resource configurations, or troubleshooting Terraform test syntax and execution.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/code-generation/skills/terraform-test/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-test"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "terraform-test. Comprehensive guide for writing and running Terraform tests. Use when creating test files (.tftest.hcl), writing test scenarios with run blocks, validating infrastructure behavior with assertions, mocking providers and data sources, testing module outputs and resource configurations, or troubleshooting Terraform test syntax and execution. Platforms: claude_code."} -{"id": "a80269b9148a742a3cae3e6fe71fbfc0312df5ebb06986d4b691e22dce0c7372", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "refactor-module", "description": "Transform monolithic Terraform configurations into reusable, maintainable modules following HashiCorp's module design principles and community best practices.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/module-generation/skills/refactor-module/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refactor-module"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "refactor-module. Transform monolithic Terraform configurations into reusable, maintainable modules following HashiCorp's module design principles and community best practices. Platforms: claude_code."} -{"id": "75396efdf9e67f3c6f5a184cb7e243f6dc1092f3f25c7b8e4ba21be4a722deb5", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "terraform-stacks", "description": "Comprehensive guide for working with HashiCorp Terraform Stacks. Use when creating, modifying, or validating Terraform Stack configurations (.tfcomponent.hcl, .tfdeploy.hcl files), working with stack components and deployments from local modules, public registry, or private registry sources, managing multi-region or multi-environment infrastructure, or troubleshooting Terraform Stacks syntax and structure.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/module-generation/skills/terraform-stacks/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install terraform-stacks"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "terraform-stacks. Comprehensive guide for working with HashiCorp Terraform Stacks. Use when creating, modifying, or validating Terraform Stack configurations (.tfcomponent.hcl, .tfdeploy.hcl files), working with stack components and deployments from local modules, public registry, or private registry sources, managing multi-region or multi-environment infrastructure, or troubleshooting Terraform Stacks syntax and structure. Platforms: claude_code."} {"id": "df74c4d10af2f6a5c5794e6f5df692a14b3e07fc9f286bae5b6c73eeca6586de", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "new-terraform-provider", "description": "Use this when scaffolding a new Terraform provider.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/provider-development/skills/new-terraform-provider/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install new-terraform-provider"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "new-terraform-provider. Use this when scaffolding a new Terraform provider. Platforms: claude_code."} -{"id": "1b414ab29b4f373d895b11888acd0a6799b17b07ada896a45411588e6e47f8a5", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "provider-actions", "description": "Implement Terraform Provider actions using the Plugin Framework. Use when developing imperative operations that execute at lifecycle events (before/after create, update, destroy).", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/provider-development/skills/provider-actions/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install provider-actions"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "provider-actions. Implement Terraform Provider actions using the Plugin Framework. Use when developing imperative operations that execute at lifecycle events (before/after create, update, destroy). Platforms: claude_code."} -{"id": "99e261e096f07e121deeed56e5964cf557c592779cbde946b772d6202014ca0c", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "provider-resources", "description": "Implement Terraform Provider resources and data sources using the Plugin Framework. Use when developing CRUD operations, schema design, state management, and acceptance testing for provider resources.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/provider-development/skills/provider-resources/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install provider-resources"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "provider-resources. Implement Terraform Provider resources and data sources using the Plugin Framework. Use when developing CRUD operations, schema design, state management, and acceptance testing for provider resources. Platforms: claude_code."} -{"id": "850b76e691252c341172a9ef563d175330416f727a3349cf87cb99cf53d52473", "repo_url": "https://github.com/hashicorp/agent-skills", "name": "run-acceptance-tests", "description": "Guide for running acceptance tests for a Terraform provider. Use this when asked to run an acceptance test or to run a test with the prefix `TestAcc`.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/hashicorp/agent-skills/blob/main/terraform/provider-development/skills/run-acceptance-tests/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install run-acceptance-tests"}, "quality": {"stars": 466, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-04T11:59:37Z"}, "embedding_text": "run-acceptance-tests. Guide for running acceptance tests for a Terraform provider. Use this when asked to run an acceptance test or to run a test with the prefix `TestAcc`. Platforms: claude_code."} {"id": "c4c1851327308c10e1525c3d339ed1079bb955239a267769a1c78c12b35deaa0", "repo_url": "https://github.com/artemxtech/claude-code-obsidian-starter", "name": "client", "description": "Manage client relationships. USE WHEN user asks about clients, follow-ups, client emails, or who needs attention.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/claude-code-obsidian-starter/blob/main/.claude/skills/client/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install client"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-23T02:42:56Z"}, "embedding_text": "client. Manage client relationships. USE WHEN user asks about clients, follow-ups, client emails, or who needs attention. Platforms: claude_code."} {"id": "5e9091f40af37a33b8e1ebec2e00347d64300a23119cf66a2f8e26541e9af5d1", "repo_url": "https://github.com/artemxtech/claude-code-obsidian-starter", "name": "query", "description": "Query data from this vault. USE WHEN user asks about projects, clients, tasks, daily notes. Use grep to extract frontmatter - do NOT read full files.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/claude-code-obsidian-starter/blob/main/.claude/skills/query/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install query"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-23T02:42:56Z"}, "embedding_text": "query. Query data from this vault. USE WHEN user asks about projects, clients, tasks, daily notes. Use grep to extract frontmatter - do NOT read full files. Platforms: claude_code."} -{"id": "0a1e157994a6a803a988af4a1e87b5850b11e02434c87015508a14b2ded63519", "repo_url": "https://github.com/artemxtech/claude-code-obsidian-starter", "name": "review", "description": "Daily and weekly review workflows. USE WHEN user says \"morning routine\", \"evening routine\", \"weekly review\", \"start my day\", \"end of day\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/claude-code-obsidian-starter/blob/main/.claude/skills/review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install review"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-23T02:42:56Z"}, "embedding_text": "review. Daily and weekly review workflows. USE WHEN user says \"morning routine\", \"evening routine\", \"weekly review\", \"start my day\", \"end of day\". Platforms: claude_code."} {"id": "d987426d8afc2e4b8dd6c36a19be8d299061d244ac2666d6f58bc94d8d42c7cd", "repo_url": "https://github.com/artemxtech/claude-code-obsidian-starter", "name": "tasknotes", "description": "Create, update, delete, and list tasks via HTTP API. USE WHEN user wants to create tasks, mark done, update status, or manage tasks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/artemxtech/claude-code-obsidian-starter/blob/main/.claude/skills/tasknotes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tasknotes"}, "quality": {"stars": 139, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-23T02:42:56Z"}, "embedding_text": "tasknotes. Create, update, delete, and list tasks via HTTP API. USE WHEN user wants to create tasks, mark done, update status, or manage tasks. Platforms: claude_code."} {"id": "304ff1309cf1eb51e92ab69605cef81ad6b8fbbe028f15c8d829d40aa2730a2b", "repo_url": "https://github.com/shuvonsec/claude-bug-bounty", "name": "bug-bounty", "description": "Complete bug bounty workflow \u2014 recon (subdomain enumeration, asset discovery, fingerprinting, HackerOne scope, source code audit), pre-hunt learning (disclosed reports, tech stack research, mind maps, threat modeling), vulnerability hunting (IDOR, SSRF, XSS, auth bypass, CSRF, race conditions, SQLi, XXE, file upload, business logic, GraphQL, HTTP smuggling, cache poisoning, OAuth, timing side-channels, OIDC, SSTI, subdomain takeover, cloud misconfig, ATO chains, agentic AI), LLM/AI security testing (chatbot IDOR, prompt injection, indirect injection, ASCII smuggling, exfil channels, RCE via code tools, system prompt extraction, ASI01-ASI10), A-to-B bug chaining (IDOR\u2192auth bypass, SSRF\u2192cloud metadata, XSS\u2192ATO, open redirect\u2192OAuth theft, S3\u2192bundle\u2192secret\u2192OAuth), bypass tables (SSRF IP bypass, open redirect bypass, file upload bypass), language-specific grep (JS prototype pollution, Python pickle, PHP type juggling, Go template.HTML, Ruby YAML.load, Rust unwrap), and reporting (7-Question Gate, 4 validation gates, human-tone writing, templates by vuln class, CVSS 3.1, PoC generation, always-rejected list, conditional chain table, submission checklist). Use for ANY bug bounty task \u2014 starting a new target, doing recon, hunting specific vulns, auditing source code, testing AI features, validating findings, or writing reports.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/shuvonsec/claude-bug-bounty/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bug-bounty"}, "quality": {"stars": 631, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T14:59:25Z"}, "embedding_text": "bug-bounty. Complete bug bounty workflow \u2014 recon (subdomain enumeration, asset discovery, fingerprinting, HackerOne scope, source code audit), pre-hunt learning (disclosed reports, tech stack research, mind maps, threat modeling), vulnerability hunting (IDOR, SSRF, XSS, auth bypass, CSRF, race conditions, SQLi, XXE, file upload, business logic, GraphQL, HTTP smuggling, cache poisoning, OAuth, timing side-channels, OIDC, SSTI, subdomain takeover, cloud misconfig, ATO chains, agentic AI), LLM/AI security testing (chatbot IDOR, prompt injection, indirect injection, ASCII smuggling, exfil channels, RCE via code tools, system prompt extraction, ASI01-ASI10), A-to-B bug chaining (IDOR\u2192auth bypass, SSRF\u2192cloud metadata, XSS\u2192ATO, open redirect\u2192OAuth theft, S3\u2192bundle\u2192secret\u2192OAuth), bypass tables (SSRF IP bypass, open redirect bypass, file upload bypass), language-specific grep (JS prototype pollution, Python pickle, PHP type juggling, Go template.HTML, Ruby YAML.load, Rust unwrap), and reporting (7-Question Gate, 4 validation gates, human-tone writing, templates by vuln class, CVSS 3.1, PoC generation, always-rejected list, conditional chain table, submission checklist). Use for ANY bug bounty task \u2014 starting a new target, doing recon, hunting specific vulns, auditing source code, testing AI features, validating findings, or writing reports. Platforms: claude_code."} {"id": "1a0ede1453b0ac82d7e72bf9920d45ef0e5cf25ebb80c4d52b7480268e9439c8", "repo_url": "https://github.com/michalparkola/tapestry-skills", "name": "article-extractor", "description": "Extract clean article content from URLs (blog posts, articles, tutorials) and save as readable text. Use when user wants to download, extract, or save an article/blog post from a URL without ads, navigation, or clutter.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/michalparkola/tapestry-skills/blob/main/article-extractor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install article-extractor"}, "quality": {"stars": 285, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T22:36:51Z"}, "embedding_text": "article-extractor. Extract clean article content from URLs (blog posts, articles, tutorials) and save as readable text. Use when user wants to download, extract, or save an article/blog post from a URL without ads, navigation, or clutter. Platforms: claude_code."} @@ -32547,7 +36748,6 @@ {"id": "b0e97ab3f387c43ea53dfe87e8d4db0343171bab8ac96bf9a736c23fbb950cad", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-mapkit", "description": "Use when implementing maps, annotations, search, directions, or debugging MapKit display/performance issues - SwiftUI Map, MKMapView, MKLocalSearch, clustering, Look Around", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-mapkit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install axiom-mapkit"}, "quality": {"stars": 639, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:36:27Z"}, "embedding_text": "axiom-mapkit. Use when implementing maps, annotations, search, directions, or debugging MapKit display/performance issues - SwiftUI Map, MKMapView, MKLocalSearch, clustering, Look Around Platforms: claude_code."} {"id": "cf773992cf1201ddf73ad8cb9832d16b75831c013bf51ea3b5528c747e19df43", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-metal-migration", "description": "Use when porting OpenGL/DirectX to Metal - translation layer vs native rewrite decisions, migration planning, anti-patterns", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-metal-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install axiom-metal-migration"}, "quality": {"stars": 639, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:36:27Z"}, "embedding_text": "axiom-metal-migration. Use when porting OpenGL/DirectX to Metal - translation layer vs native rewrite decisions, migration planning, anti-patterns Platforms: claude_code."} {"id": "5b613e9dc2b06fac6f3168835709b8367d099fdad0258128f8d7ac93393c8cd8", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-networking-legacy", "description": "This skill should be used when working with NWConnection patterns for iOS 12-25, supporting apps that can't use async/await yet, or maintaining backward compatibility with completion handler networking.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-networking-legacy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install axiom-networking-legacy"}, "quality": {"stars": 639, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:36:27Z"}, "embedding_text": "axiom-networking-legacy. This skill should be used when working with NWConnection patterns for iOS 12-25, supporting apps that can't use async/await yet, or maintaining backward compatibility with completion handler networking. Platforms: claude_code."} -{"id": "4444cb78163fc3978f77263213a736524fe0715845353a2bf6b06799089eeccb", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-networking", "description": "Use when implementing Network.framework connections, debugging connection failures, migrating from sockets/URLSession streams, or adopting structured concurrency networking patterns - prevents deprecated API usage, reachability anti-patterns, and thread-safety violations with iOS 12-26+ APIs", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-networking/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install axiom-networking"}, "quality": {"stars": 639, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:36:27Z"}, "embedding_text": "axiom-networking. Use when implementing Network.framework connections, debugging connection failures, migrating from sockets/URLSession streams, or adopting structured concurrency networking patterns - prevents deprecated API usage, reachability anti-patterns, and thread-safety violations with iOS 12-26+ APIs Platforms: claude_code."} {"id": "5a8a436fea0ca7a1422060256b3f1a383645d1c93e8ed8e80c36911c9aefda3e", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-now-playing", "description": "Use when Now Playing metadata doesn't appear on Lock Screen/Control Center, remote commands (play/pause/skip) don't respond, artwork is missing/wrong/flickering, or playback state is out of sync - provides systematic diagnosis, correct patterns, and professional push-back for audio/video apps on iOS 18+", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-now-playing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install axiom-now-playing"}, "quality": {"stars": 639, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:36:27Z"}, "embedding_text": "axiom-now-playing. Use when Now Playing metadata doesn't appear on Lock Screen/Control Center, remote commands (play/pause/skip) don't respond, artwork is missing/wrong/flickering, or playback state is out of sync - provides systematic diagnosis, correct patterns, and professional push-back for audio/video apps on iOS 18+ Platforms: claude_code."} {"id": "a86de624f07d401a251bac009a9bff8e046ed087c0392bbec04a3c3d5a43afd7", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-photo-library", "description": "PHPicker, PhotosPicker, photo selection, limited library access, presentLimitedLibraryPicker, save to camera roll, PHPhotoLibrary, PHAssetCreationRequest, Transferable, PhotosPickerItem, photo permissions", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-photo-library/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install axiom-photo-library"}, "quality": {"stars": 639, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:36:27Z"}, "embedding_text": "axiom-photo-library. PHPicker, PhotosPicker, photo selection, limited library access, presentLimitedLibraryPicker, save to camera roll, PHPhotoLibrary, PHAssetCreationRequest, Transferable, PhotosPickerItem, photo permissions Platforms: claude_code."} {"id": "21c2db8db790212f95f4b1a7118c889f962f442215b38ef0660ceaea8ba7af7a", "repo_url": "https://github.com/charleswiltgen/axiom", "name": "axiom-push-notifications-diag", "description": "Use when push notifications fail to arrive, token registration errors occur, notifications work in development but not production, silent push does not wake app, rich notification media is missing, or Live Activity stops updating via push. Covers APNs errors, environment mismatches, Focus mode filtering, service extension failures, FCM diagnostics.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/charleswiltgen/axiom/blob/main/.claude-plugin/plugins/axiom/skills/axiom-push-notifications-diag/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install axiom-push-notifications-diag"}, "quality": {"stars": 639, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T16:36:27Z"}, "embedding_text": "axiom-push-notifications-diag. Use when push notifications fail to arrive, token registration errors occur, notifications work in development but not production, silent push does not wake app, rich notification media is missing, or Live Activity stops updating via push. Covers APNs errors, environment mismatches, Focus mode filtering, service extension failures, FCM diagnostics. Platforms: claude_code."} @@ -32602,17 +36802,10 @@ {"id": "80d4acf35c168803d5435fe314a371d9a324143bb3d71c6e2f1da0d39d2a3a29", "repo_url": "https://github.com/julianromli/ai-skills", "name": "skill-creator", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/julianromli/ai-skills/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 143, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-18T07:07:36Z"}, "embedding_text": "skill-creator. 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. Platforms: claude_code."} {"id": "dacbd13a3d63b4c6d8dd09ea19a0577ba64d701d35f9ff6562ae0d0d9dccf5d7", "repo_url": "https://github.com/julianromli/ai-skills", "name": "task-generator", "description": "Generate structured task lists from specs or requirements. IMPORTANT: After completing ANY spec via ExitSpecMode, ALWAYS ask the user: \"Would you like me to generate a task list for this spec?\" Use when user confirms or explicitly requests task generation from a plan/spec/PRD.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/julianromli/ai-skills/blob/main/skills/task-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install task-generator"}, "quality": {"stars": 143, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-18T07:07:36Z"}, "embedding_text": "task-generator. Generate structured task lists from specs or requirements. IMPORTANT: After completing ANY spec via ExitSpecMode, ALWAYS ask the user: \"Would you like me to generate a task list for this spec?\" Use when user confirms or explicitly requests task generation from a plan/spec/PRD. Platforms: claude_code."} {"id": "0792334ac14b1e15926e903a23fe6d25a261c4c0f36e00a65f67887c86872d0a", "repo_url": "https://github.com/julianromli/ai-skills", "name": "template-skill", "description": "Replace with description of the skill and when Claude should use it.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/julianromli/ai-skills/blob/main/skills/template-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install template-skill"}, "quality": {"stars": 143, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-18T07:07:36Z"}, "embedding_text": "template-skill. Replace with description of the skill and when Claude should use it. Platforms: claude_code."} -{"id": "02a4de4b5d7584037021fdbd5ecd64a551afc875a68c251ef6297121a36333ea", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "db", "description": "G\u00e8re le sch\u00e9ma Prisma et les migrations de Motivia. Utilise ce skill quand l'utilisateur demande de modifier la base de donn\u00e9es, ajouter une table, un champ, une relation, ou effectuer une migration. PostgreSQL avec Prisma ORM.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/db/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install db"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "db. G\u00e8re le sch\u00e9ma Prisma et les migrations de Motivia. Utilise ce skill quand l'utilisateur demande de modifier la base de donn\u00e9es, ajouter une table, un champ, une relation, ou effectuer une migration. PostgreSQL avec Prisma ORM. Platforms: claude_code."} -{"id": "c7fbe3d858928585803684044330abb2052935be862df1015351c4d9b8ef1c4b", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "do", "description": "Execute increment implementation following spec and plan - hooks run after EVERY task", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/do/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install do"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "do. Execute increment implementation following spec and plan - hooks run after EVERY task Platforms: claude_code."} -{"id": "1b18fb8b3d0a892d5e73e96394c9b2ef6bc587ac09fc4afc0ab23c254b6d9b22", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "k6", "description": "Load testing tool with installation and test execution commands.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/k6/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install k6"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "k6. Load testing tool with installation and test execution commands. Platforms: claude_code."} -{"id": "09b2e8bd9c322d94587769a0c8b04ef09d41d155e9fc07fa0971d986e9c126c0", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "ai", "description": "Cheat sheet for AI tools including GEMINI and CODEX configurations.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/ai/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ai"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "ai. Cheat sheet for AI tools including GEMINI and CODEX configurations. Platforms: claude_code."} -{"id": "0d4c22309d60656ce34d1710372d60e3ec4d6895335ec5ddbe9e7b2d3a21c2d7", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "vm", "description": "QCOW2 virtual machine management using libvirt. Creates VMs from pre-built\nimages downloaded from R2 CDN with cloud-init customization. Supports SSH,\nVNC, and virtiofs home directory sharing. Use when users need to create,\nmanage, or connect to bazzite-ai VMs.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/vm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vm"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "vm. QCOW2 virtual machine management using libvirt. Creates VMs from pre-built\nimages downloaded from R2 CDN with cloud-init customization. Supports SSH,\nVNC, and virtiofs home directory sharing. Use when users need to create,\nmanage, or connect to bazzite-ai VMs. Platforms: claude_code."} {"id": "bc2619c173dbe18ba190bc8240ffcb84284659d04c459427f2b4004254cd3a1e", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "elasticsearch", "description": "Elasticsearch DBA skill for index/mapping design, query tuning, cluster sizing and operations, shard/replica strategy, ILM, monitoring, troubleshooting (hot nodes, GC, rejected requests), and safe reindexing/upgrades. Use for tasks like designing search schemas, diagnosing performance issues, and operating ES in production.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/ES/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install elasticsearch"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "elasticsearch. Elasticsearch DBA skill for index/mapping design, query tuning, cluster sizing and operations, shard/replica strategy, ILM, monitoring, troubleshooting (hot nodes, GC, rejected requests), and safe reindexing/upgrades. Use for tasks like designing search schemas, diagnosing performance issues, and operating ES in production. Platforms: claude_code."} {"id": "7e6abebf88b982e3ffde1825865e5edff2ed18607e53d02a2130896c491bb1bc", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "yq", "description": "Extract specific fields from YAML files efficiently using qq instead of reading entire files, saving 80-95% context.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/yq/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install yq"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "yq. Extract specific fields from YAML files efficiently using qq instead of reading entire files, saving 80-95% context. Platforms: claude_code."} {"id": "30dbbef14893a184745226b3ec864c78da6f057fbaed3d17b077cb0d708798fa", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "jq", "description": "JSON processor for filtering, transforming, and manipulating JSON data in command line.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/jq/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jq"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "jq. JSON processor for filtering, transforming, and manipulating JSON data in command line. Platforms: claude_code."} -{"id": "e33c6aa18d486e851a18544f94660f459e997eb2c795a72ecf340dfb20a107f1", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "ue", "description": "UE (user experience engineering) skill for defining end-to-end user experience behavior and interaction logic. Use for tasks like flow design, interaction models, state machines, error recovery, input validation, usability heuristics, accessibility, and turning UX intent into testable acceptance criteria for implementation.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/UE/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ue"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "ue. UE (user experience engineering) skill for defining end-to-end user experience behavior and interaction logic. Use for tasks like flow design, interaction models, state machines, error recovery, input validation, usability heuristics, accessibility, and turning UX intent into testable acceptance criteria for implementation. Platforms: claude_code."} {"id": "1318b39d3b83f9b784252cbcaf07376d19a4774c00f10f480f1b19d189f492a0", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "XP", "description": "Extreme Programming workflow orchestrator. Use when implementing features, adding functionality, or doing test-driven development. Coordinates planning, TDD, refactoring, and commits.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/xp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install XP"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "XP. Extreme Programming workflow orchestrator. Use when implementing features, adding functionality, or doing test-driven development. Coordinates planning, TDD, refactoring, and commits. Platforms: claude_code."} -{"id": "bf546006fd8eda0335cf221c45ff955457023f880fc7c211d57e378b4dce3350", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "hk", "description": "Use when hk.pkl exists in project, hook output shows hk running, or working with git hooks in hk-managed projects. Also use when setting up, configuring, or troubleshooting hk git hooks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/hk/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hk"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "hk. Use when hk.pkl exists in project, hook output shows hk running, or working with git hooks in hk-managed projects. Also use when setting up, configuring, or troubleshooting hk git hooks. Platforms: claude_code."} {"id": "9eb60ff4767ca973622fc5d74b8223fdc4e263c1772df7c0df23b8235a0f8705", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "ui", "description": "UI/UE (user interface & user experience) skill for designing and reviewing interfaces. Use for tasks like creating UI specs, interaction states, component guidelines, visual hierarchy, responsive layouts, accessibility, design tokens, and handoff-ready requirements for engineers.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/ui/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ui"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "ui. UI/UE (user interface & user experience) skill for designing and reviewing interfaces. Use for tasks like creating UI specs, interaction states, component guidelines, visual hierarchy, responsive layouts, accessibility, design tokens, and handoff-ready requirements for engineers. Platforms: claude_code."} {"id": "4b6c008ce21a6c534036c1a4e1537c10c4e2465155ec5a5dbfd8d4c8c8f7ee1c", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "tts", "description": "Speak text aloud using the local ElevenLabs TTS script; use when the user asks to read or speak text.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/tts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tts"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "tts. Speak text aloud using the local ElevenLabs TTS script; use when the user asks to read or speak text. Platforms: claude_code."} {"id": "56b5de48e2a85e22141c9d31bc0a4ec195e8dc603568e2bd988e887ecfbc82fb", "repo_url": "https://github.com/majiayu000/claude-skill-registry", "name": "ray", "description": "Expert in Apache Ray distributed computing. Use when converting Python code to Ray workloads, debugging Ray applications, optimizing Ray performance, or working with Ray Core, Ray Data, Ray Train, Ray Serve, or Ray Tune. Automatically fetches relevant documentation from Ray, HuggingFace, PyTorch, and other ML/distributed frameworks based on code context.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/majiayu000/claude-skill-registry/blob/main/skills/data/ray/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ray"}, "quality": {"stars": 122, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T02:53:22Z"}, "embedding_text": "ray. Expert in Apache Ray distributed computing. Use when converting Python code to Ray workloads, debugging Ray applications, optimizing Ray performance, or working with Ray Core, Ray Data, Ray Train, Ray Serve, or Ray Tune. Automatically fetches relevant documentation from Ray, HuggingFace, PyTorch, and other ML/distributed frameworks based on code context. Platforms: claude_code."} @@ -33525,22 +37718,11 @@ {"id": "8d802a36e05155c4d143754638b075bf1d8cfadf79b875c4f9de24bbf819a124", "repo_url": "https://github.com/mizoreww/awesome-claude-code-config", "name": "humanizer", "description": "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.\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mizoreww/awesome-claude-code-config/blob/main/skills/humanizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install humanizer"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:07:18Z"}, "embedding_text": "humanizer. 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.\n Platforms: claude_code."} {"id": "3b4cba77cccd5c4fe882c0cc6f869ac51ff53eb55d925918b92bcbf2ad93706d", "repo_url": "https://github.com/mizoreww/awesome-claude-code-config", "name": "paper-reading", "description": "Use when user asks to read, summarize, or analyze a research paper (PDF or text). Triggers on keywords like \"read paper\", \"summarize paper\", \"paper summary\", \"literature review\", \"analyze this paper\"", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mizoreww/awesome-claude-code-config/blob/main/skills/paper-reading/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install paper-reading"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:07:18Z"}, "embedding_text": "paper-reading. Use when user asks to read, summarize, or analyze a research paper (PDF or text). Triggers on keywords like \"read paper\", \"summarize paper\", \"paper summary\", \"literature review\", \"analyze this paper\" Platforms: claude_code."} {"id": "0f3f24f95a48380d859a0818625baa0133f2100bc79651eb6e1a91c6e258f523", "repo_url": "https://github.com/mizoreww/awesome-claude-code-config", "name": "update_config", "description": "Update awesome-claude-code-config to the latest version. Checks remote for new releases, then re-runs the installer with the interactive selector. Use when user types /update_config or asks to update their Claude Code configuration.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mizoreww/awesome-claude-code-config/blob/main/skills/update/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install update_config"}, "quality": {"stars": 156, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T05:07:18Z"}, "embedding_text": "update_config. Update awesome-claude-code-config to the latest version. Checks remote for new releases, then re-runs the installer with the interactive selector. Use when user types /update_config or asks to update their Claude Code configuration. Platforms: claude_code."} -{"id": "f00ea7a51eb2177705e20ffeaf715e766802a3d15cc0f58b7e91f452177321ea", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-analyze", "description": "Audit and score blog posts on a 5-category 100-point scoring system covering content quality, SEO optimization, E-E-A-T signals, technical elements, and AI citation readiness. Includes AI content detection (burstiness, phrase flagging, vocabulary diversity). Supports export formats (markdown, JSON, table) and batch analysis with sorting. Generates prioritized recommendations (Critical/High/Medium/Low) with specific fixes. Works with any format (MDX, markdown, HTML, URL). Use when user says \"analyze blog\", \"audit blog\", \"blog score\", \"check blog quality\", \"blog review\", \"rate this blog\", \"blog health check\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-analyze/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-analyze"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-analyze. Audit and score blog posts on a 5-category 100-point scoring system covering content quality, SEO optimization, E-E-A-T signals, technical elements, and AI citation readiness. Includes AI content detection (burstiness, phrase flagging, vocabulary diversity). Supports export formats (markdown, JSON, table) and batch analysis with sorting. Generates prioritized recommendations (Critical/High/Medium/Low) with specific fixes. Works with any format (MDX, markdown, HTML, URL). Use when user says \"analyze blog\", \"audit blog\", \"blog score\", \"check blog quality\", \"blog review\", \"rate this blog\", \"blog health check\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} {"id": "7866e269328f12a007ceeacea4d49693b8b23905be4dd727d8094873ee22f7f0", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-audit", "description": "Full-site blog health assessment scanning all blog files for quality scores, orphan pages, topic cannibalization, stale content, and AI citation readiness. Spawns parallel subagents for comprehensive analysis. Produces per-post scores and a prioritized action queue. Use when user says \"audit blog\", \"blog audit\", \"site audit\", \"blog health\", \"audit all posts\", \"check all blogs\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-audit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-audit"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-audit. Full-site blog health assessment scanning all blog files for quality scores, orphan pages, topic cannibalization, stale content, and AI citation readiness. Spawns parallel subagents for comprehensive analysis. Produces per-post scores and a prioritized action queue. Use when user says \"audit blog\", \"blog audit\", \"site audit\", \"blog health\", \"audit all posts\", \"check all blogs\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} -{"id": "082ff98bd6b8662c8424bff3912744170bd7f16e4f807d3ab4cc0bc723884ccb", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-brief", "description": "Generate detailed content briefs for blog posts with target keywords, content outlines, competitive analysis, recommended statistics, image and chart suggestions, word count targets, internal linking architecture, template recommendations (12 types), TL;DR drafts, citation capsule planning, information gain prompts, and multi-channel distribution plans. Briefs are optimized for Google rankings and AI citations (GEO/AEO). Use when user says \"content brief\", \"blog brief\", \"write brief\", \"outline blog\", \"plan blog post\", \"blog outline\", \"content outline\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-brief/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-brief"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-brief. Generate detailed content briefs for blog posts with target keywords, content outlines, competitive analysis, recommended statistics, image and chart suggestions, word count targets, internal linking architecture, template recommendations (12 types), TL;DR drafts, citation capsule planning, information gain prompts, and multi-channel distribution plans. Briefs are optimized for Google rankings and AI citations (GEO/AEO). Use when user says \"content brief\", \"blog brief\", \"write brief\", \"outline blog\", \"plan blog post\", \"blog outline\", \"content outline\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} -{"id": "18a7966b0cb2736604fb312d2446343cc4ec1ef7c4ca5b7434736562f426192a", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-calendar", "description": "Generate editorial calendars for blogs with topic clusters, publishing schedules, content decay detection, freshness update plans, seasonal opportunities, content mix formula, template integration, and distribution scheduling. Plans monthly or quarterly calendars optimized for SEO topic authority and AI citation freshness requirements (30-day update cycles). Use when user says \"editorial calendar\", \"content calendar\", \"blog calendar\", \"publishing schedule\", \"blog plan\", \"content plan\", \"what should I write\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-calendar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-calendar"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-calendar. Generate editorial calendars for blogs with topic clusters, publishing schedules, content decay detection, freshness update plans, seasonal opportunities, content mix formula, template integration, and distribution scheduling. Plans monthly or quarterly calendars optimized for SEO topic authority and AI citation freshness requirements (30-day update cycles). Use when user says \"editorial calendar\", \"content calendar\", \"blog calendar\", \"publishing schedule\", \"blog plan\", \"content plan\", \"what should I write\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} -{"id": "1950388d11fa77735f311115604b3cd09fc5b5b9bb037a538bfda489ab4c8948", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-chart", "description": "Generate dark-mode-compatible inline SVG data visualization charts for blog posts. Supports horizontal bar, grouped bar, donut, line, lollipop, area, and radar charts with automatic platform detection (HTML vs JSX/MDX). Enforces chart type diversity, accessible markup (role=img, aria-label), source attribution, and transparent backgrounds. Use when user says \"blog chart\", \"generate chart\", \"data visualization\", \"svg chart\", \"blog graph\", \"visualize data\", or when the blog-write workflow identifies chart-worthy data points (3+ comparable metrics, trends, before/after data).\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-chart/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-chart"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-chart. Generate dark-mode-compatible inline SVG data visualization charts for blog posts. Supports horizontal bar, grouped bar, donut, line, lollipop, area, and radar charts with automatic platform detection (HTML vs JSX/MDX). Enforces chart type diversity, accessible markup (role=img, aria-label), source attribution, and transparent backgrounds. Use when user says \"blog chart\", \"generate chart\", \"data visualization\", \"svg chart\", \"blog graph\", \"visualize data\", or when the blog-write workflow identifies chart-worthy data points (3+ comparable metrics, trends, before/after data).\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} -{"id": "15f1d2e66f59fa834189210a4aaf1d534eb458609261a51766ef74bde6ba669c", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-geo", "description": "AI citation optimization audit scoring blog posts for ChatGPT, Perplexity, and Google AI Overview citability. Evaluates passage-level citability, Q&A formatting, entity clarity, structured data, and AI crawler accessibility. Generates citation capsules and a 0-100 AI Citation Readiness score. Use when user says \"geo\", \"ai citation\", \"ai optimization\", \"citation audit\", \"aeo\", \"perplexity optimization\", \"chatgpt citation\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-geo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-geo"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-geo. AI citation optimization audit scoring blog posts for ChatGPT, Perplexity, and Google AI Overview citability. Evaluates passage-level citability, Q&A formatting, entity clarity, structured data, and AI crawler accessibility. Generates citation capsules and a 0-100 AI Citation Readiness score. Use when user says \"geo\", \"ai citation\", \"ai optimization\", \"citation audit\", \"aeo\", \"perplexity optimization\", \"chatgpt citation\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} -{"id": "52ef2e04cf1d3a2cbc8da0ab386ede656eb9a0f67cb94b94d17b2c123b29857b", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-image", "description": "AI image generation and editing for blog content powered by Gemini via MCP. Claude acts as Creative Director \u2014 interpreting intent, selecting domain expertise, constructing optimized 6-component prompts (Subject + Action + Context + Composition + Lighting + Style), and orchestrating Gemini for blog-quality results. Generates hero images, inline illustrations, social preview cards, and OG images. Edits existing blog images. Supports 6 blog-optimized domain modes (Editorial, Product, Landscape, UI/Web, Infographic, Abstract). Works standalone via /blog image or internally from blog-write and blog-rewrite workflows. Falls back gracefully when MCP is not configured. Use when user says \"blog image\", \"generate hero image\", \"blog illustration\", \"social card\", \"generate blog image\", \"edit blog image\", \"image generate\", \"blog cover image\", \"inline image\", \"OG image\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-image/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-image"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-image. AI image generation and editing for blog content powered by Gemini via MCP. Claude acts as Creative Director \u2014 interpreting intent, selecting domain expertise, constructing optimized 6-component prompts (Subject + Action + Context + Composition + Lighting + Style), and orchestrating Gemini for blog-quality results. Generates hero images, inline illustrations, social preview cards, and OG images. Edits existing blog images. Supports 6 blog-optimized domain modes (Editorial, Product, Landscape, UI/Web, Infographic, Abstract). Works standalone via /blog image or internally from blog-write and blog-rewrite workflows. Falls back gracefully when MCP is not configured. Use when user says \"blog image\", \"generate hero image\", \"blog illustration\", \"social card\", \"generate blog image\", \"edit blog image\", \"image generate\", \"blog cover image\", \"inline image\", \"OG image\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} {"id": "f8b07d50c9019cfa40a5b150a149368a8dda03000a940cee147412c80e9db46e", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-outline", "description": "SERP-informed outline generation with H2/H3 heading hierarchy, competitive content gap analysis, section-by-section word count targets, chart and image placement markers, FAQ question planning, and internal linking zones. Lighter than a full content brief \u2014 generates article skeleton and structure only, ready for /blog write to consume. Use when user says \"outline\", \"blog outline\", \"content outline\", \"structure blog\", \"plan sections\", \"article skeleton\", \"heading structure\", \"SERP analysis\", \"competitive outline\", \"plan article\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-outline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-outline"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-outline. SERP-informed outline generation with H2/H3 heading hierarchy, competitive content gap analysis, section-by-section word count targets, chart and image placement markers, FAQ question planning, and internal linking zones. Lighter than a full content brief \u2014 generates article skeleton and structure only, ready for /blog write to consume. Use when user says \"outline\", \"blog outline\", \"content outline\", \"structure blog\", \"plan sections\", \"article skeleton\", \"heading structure\", \"SERP analysis\", \"competitive outline\", \"plan article\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} -{"id": "35403511799b99a38727a23b905c3c0b1437a6ed553d31eca4f1c0763c761b8f", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-repurpose", "description": "Repurpose blog posts for social media, email, YouTube, Reddit, and LinkedIn. Generates Twitter/X threads, LinkedIn articles, YouTube scripts, Reddit discussion posts, email newsletter excerpts. Adapts tone for each platform. Use when user says \"repurpose\", \"blog repurpose\", \"share blog\", \"social media\", \"twitter thread\", \"linkedin post\", \"youtube script\", \"reddit post\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-repurpose/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-repurpose"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-repurpose. Repurpose blog posts for social media, email, YouTube, Reddit, and LinkedIn. Generates Twitter/X threads, LinkedIn articles, YouTube scripts, Reddit discussion posts, email newsletter excerpts. Adapts tone for each platform. Use when user says \"repurpose\", \"blog repurpose\", \"share blog\", \"social media\", \"twitter thread\", \"linkedin post\", \"youtube script\", \"reddit post\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} -{"id": "ec28d6f04e67808c53aa3cfbb8125dba51b8ee5ae651cc174c454307bb17cef6", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-rewrite", "description": "Rewrite and optimize existing blog posts for Google rankings (December 2025 Core Update, E-E-A-T) and AI citations (GEO/AEO). Replaces fabricated statistics with sourced data, applies answer-first formatting, adds Pixabay/Unsplash images, generates built-in SVG charts, injects FAQ schema, performs AI content detection, adds citation capsules and information gain markers, and updates freshness signals. Works with any blog format (MDX, markdown, HTML). Use when user says \"rewrite blog\", \"optimize blog\", \"update blog\", \"improve blog\", \"fix blog\", \"refresh blog post\", \"blog optimization\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-rewrite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-rewrite"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-rewrite. Rewrite and optimize existing blog posts for Google rankings (December 2025 Core Update, E-E-A-T) and AI citations (GEO/AEO). Replaces fabricated statistics with sourced data, applies answer-first formatting, adds Pixabay/Unsplash images, generates built-in SVG charts, injects FAQ schema, performs AI content detection, adds citation capsules and information gain markers, and updates freshness signals. Works with any blog format (MDX, markdown, HTML). Use when user says \"rewrite blog\", \"optimize blog\", \"update blog\", \"improve blog\", \"fix blog\", \"refresh blog post\", \"blog optimization\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} -{"id": "a209981367271e93cf636758b8a13ebe5774f92777f5011cde895e47daef60c0", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-schema", "description": "Generate complete JSON-LD schema markup for blog posts including BlogPosting, Person, Organization, BreadcrumbList, FAQPage, and ImageObject. Validates against Google requirements and warns about deprecated types. Use when user says \"schema\", \"blog schema\", \"json-ld\", \"structured data\", \"schema markup\", \"generate schema\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-schema/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-schema"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-schema. Generate complete JSON-LD schema markup for blog posts including BlogPosting, Person, Organization, BreadcrumbList, FAQPage, and ImageObject. Validates against Google requirements and warns about deprecated types. Use when user says \"schema\", \"blog schema\", \"json-ld\", \"structured data\", \"schema markup\", \"generate schema\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} -{"id": "bfc45d1d217a1e84ad566ef67d6abf1e471a65104c41c0f540326f7d8b939492", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-seo-check", "description": "Post-writing SEO validation with pass/fail checklist covering title tag length and keyword placement, meta description quality, heading hierarchy and keyword density, internal/external link audit with anchor text analysis, canonical URL verification, Open Graph meta tags (og:title, og:description, og:image), Twitter Card validation, URL structure optimization, and image alt text presence. Produces prioritized fix list with specific recommendations. Use when user says \"seo check\", \"check seo\", \"validate seo\", \"blog seo\", \"seo validation\", \"on-page seo\", \"title tag check\", \"meta description check\", \"heading check\", \"link audit\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-seo-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-seo-check"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-seo-check. Post-writing SEO validation with pass/fail checklist covering title tag length and keyword placement, meta description quality, heading hierarchy and keyword density, internal/external link audit with anchor text analysis, canonical URL verification, Open Graph meta tags (og:title, og:description, og:image), Twitter Card validation, URL structure optimization, and image alt text presence. Produces prioritized fix list with specific recommendations. Use when user says \"seo check\", \"check seo\", \"validate seo\", \"blog seo\", \"seo validation\", \"on-page seo\", \"title tag check\", \"meta description check\", \"heading check\", \"link audit\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} {"id": "9425a2a3ef96c81cdadeca2d33f029cd3e902e5612881bb7e94bea96bacb8f79", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog-write", "description": "Write new blog articles from scratch optimized for Google rankings and AI citations. Generates full articles with template selection, answer-first formatting, TL;DR box, information gain markers, citation capsules, sourced statistics, Pixabay/Unsplash images, built-in SVG chart generation, FAQ schema, internal linking zones, and proper heading hierarchy. Supports MDX, markdown, and HTML output. Use when user says \"write blog\", \"new blog post\", \"create article\", \"write about\", \"draft blog\", \"generate blog post\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog-write/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog-write"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog-write. Write new blog articles from scratch optimized for Google rankings and AI citations. Generates full articles with template selection, answer-first formatting, TL;DR box, information gain markers, citation capsules, sourced statistics, Pixabay/Unsplash images, built-in SVG chart generation, FAQ schema, internal linking zones, and proper heading hierarchy. Supports MDX, markdown, and HTML output. Use when user says \"write blog\", \"new blog post\", \"create article\", \"write about\", \"draft blog\", \"generate blog post\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} {"id": "b6df5a51fefe596b68ceef234b3cd9fae6d58adbde1faf987b4af796949c0d15", "repo_url": "https://github.com/agricidaniel/claude-blog", "name": "blog", "description": "Full-lifecycle blog engine with 12 commands, 12 content templates, 5-category 100-point scoring, and 4 specialized agents. Optimized for Google rankings (December 2025 Core Update, E-E-A-T) and AI citations (GEO/AEO). Writes, rewrites, analyzes, outlines, audits, and repurposes blog content with answer-first formatting, sourced statistics, Pixabay/Unsplash/Pexels images, AI image generation via Gemini, built-in SVG chart generation, JSON-LD schema generation, and freshness signals. Supports any platform (WordPress, Next.js MDX, Hugo, Ghost, Astro, Jekyll, 11ty, Gatsby, HTML). Use when user says \"blog\", \"write blog\", \"blog post\", \"blog strategy\", \"content brief\", \"editorial calendar\", \"analyze blog\", \"rewrite blog\", \"update blog\", \"blog SEO\", \"blog optimization\", \"content plan\", \"blog outline\", \"seo check\", \"schema markup\", \"repurpose\", \"geo audit\", \"blog audit\", \"citation readiness\".\n", "source": ["marketplace", "topic"], "categories": ["ai-agent", "ai-citations", "blog", "blog-writing", "claude-code", "claude-code-skill", "content-optimization", "data-visualization", "e-e-a-t", "geo", "python", "seo", "skill", "svg-charts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/agricidaniel/claude-blog/blob/main/skills/blog/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install blog"}, "quality": {"stars": 252, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T11:51:50Z"}, "embedding_text": "blog. Full-lifecycle blog engine with 12 commands, 12 content templates, 5-category 100-point scoring, and 4 specialized agents. Optimized for Google rankings (December 2025 Core Update, E-E-A-T) and AI citations (GEO/AEO). Writes, rewrites, analyzes, outlines, audits, and repurposes blog content with answer-first formatting, sourced statistics, Pixabay/Unsplash/Pexels images, AI image generation via Gemini, built-in SVG chart generation, JSON-LD schema generation, and freshness signals. Supports any platform (WordPress, Next.js MDX, Hugo, Ghost, Astro, Jekyll, 11ty, Gatsby, HTML). Use when user says \"blog\", \"write blog\", \"blog post\", \"blog strategy\", \"content brief\", \"editorial calendar\", \"analyze blog\", \"rewrite blog\", \"update blog\", \"blog SEO\", \"blog optimization\", \"content plan\", \"blog outline\", \"seo check\", \"schema markup\", \"repurpose\", \"geo audit\", \"blog audit\", \"citation readiness\".\n Categories: ai-agent, ai-citations, blog, blog-writing, claude-code, claude-code-skill, content-optimization, data-visualization, e-e-a-t, geo, python, seo, skill, svg-charts. Platforms: claude_code."} {"id": "d9cc9675592953ab0d5b4d0d2b9824a9bc405f5cdf34e2e979dc271587234785", "repo_url": "https://github.com/komal-skynet/claude-skill-homeassistant", "name": "home-assistant-manager", "description": "Expert-level Home Assistant configuration management with efficient deployment workflows (git and rapid scp iteration), remote CLI access via SSH and hass-cli, automation verification protocols, log analysis, reload vs restart optimization, and comprehensive Lovelace dashboard management for tablet-optimized UIs. Includes template patterns, card types, debugging strategies, and real-world examples.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/komal-skynet/claude-skill-homeassistant/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install home-assistant-manager"}, "quality": {"stars": 313, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-29T10:57:05Z"}, "embedding_text": "home-assistant-manager. Expert-level Home Assistant configuration management with efficient deployment workflows (git and rapid scp iteration), remote CLI access via SSH and hass-cli, automation verification protocols, log analysis, reload vs restart optimization, and comprehensive Lovelace dashboard management for tablet-optimized UIs. Includes template patterns, card types, debugging strategies, and real-world examples. Platforms: claude_code."} -{"id": "1c3ed8dfae45306d5668dea489d2c749b777280b9f587d0890e9f34efc04a4e2", "repo_url": "https://github.com/wshuyi/x-article-publisher-skill", "name": "x-article-publisher", "description": "Publish Markdown articles to X (Twitter) Articles editor with proper formatting. Use when user wants to publish a Markdown file/URL to X Articles, or mentions \"publish to X\", \"post article to Twitter\", \"X article\", or wants help with X Premium article publishing. Handles cover image upload and converts Markdown to rich text automatically.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/wshuyi/x-article-publisher-skill/blob/main/skills/x-article-publisher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install x-article-publisher"}, "quality": {"stars": 656, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T00:57:07Z"}, "embedding_text": "x-article-publisher. Publish Markdown articles to X (Twitter) Articles editor with proper formatting. Use when user wants to publish a Markdown file/URL to X Articles, or mentions \"publish to X\", \"post article to Twitter\", \"X article\", or wants help with X Premium article publishing. Handles cover image upload and converts Markdown to rich text automatically. Platforms: claude_code."} {"id": "83c40d56ba748ea0d9995536b89b3443b910277b5eab0cd33bb743cb670975e8", "repo_url": "https://github.com/openclaw/skills", "name": "qgis", "description": "Run QGIS geospatial processing with qgis_process for repeatable vector/raster workflows (reproject, clip, dissolve, buffer, merge, raster warping). Use when the user asks for GIS/QGIS automation, coordinate system conversion, geodata transformation, or batch map data processing. \u4e2d\u6587\u89e6\u53d1\uff1aQGIS\u3001\u5730\u7406\u5904\u7406\u3001\u5750\u6807\u8f6c\u6362\u3001\u77e2\u91cf\u88c1\u526a\u3001\u6805\u683c\u91cd\u6295\u5f71\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openclaw/skills/blob/main/skills/jvy/qgis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install qgis"}, "quality": {"stars": 2963, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T04:16:01Z"}, "embedding_text": "qgis. Run QGIS geospatial processing with qgis_process for repeatable vector/raster workflows (reproject, clip, dissolve, buffer, merge, raster warping). Use when the user asks for GIS/QGIS automation, coordinate system conversion, geodata transformation, or batch map data processing. \u4e2d\u6587\u89e6\u53d1\uff1aQGIS\u3001\u5730\u7406\u5904\u7406\u3001\u5750\u6807\u8f6c\u6362\u3001\u77e2\u91cf\u88c1\u526a\u3001\u6805\u683c\u91cd\u6295\u5f71\u3002 Platforms: claude_code."} {"id": "6398d0eae89754424a93d6881fd655e549e7b176056d1c6d0b7b59620d60b7f0", "repo_url": "https://github.com/openclaw/skills", "name": "rili", "description": "Calendar and Chinese lunar date lookups via a bundled local Node script. Use when the user asks about dates, weekdays, month views, lunar calendar dates, traditional lunar festivals, or Gregorian\u2194lunar conversion. Triggers on \u65e5\u5386, \u6708\u5386, \u519c\u5386, \u516c\u5386, \u521d\u51e0, \u661f\u671f\u51e0, \u9ec4\u5386\u65e5\u671f, \u6625\u8282, \u5143\u5bb5, \u7aef\u5348, \u4e2d\u79cb, \u91cd\u9633. NOT for calendar event CRUD, reminders, or shared calendar integrations.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openclaw/skills/blob/main/skills/jvy/rili/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rili"}, "quality": {"stars": 2963, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T04:16:01Z"}, "embedding_text": "rili. Calendar and Chinese lunar date lookups via a bundled local Node script. Use when the user asks about dates, weekdays, month views, lunar calendar dates, traditional lunar festivals, or Gregorian\u2194lunar conversion. Triggers on \u65e5\u5386, \u6708\u5386, \u519c\u5386, \u516c\u5386, \u521d\u51e0, \u661f\u671f\u51e0, \u9ec4\u5386\u65e5\u671f, \u6625\u8282, \u5143\u5bb5, \u7aef\u5348, \u4e2d\u79cb, \u91cd\u9633. NOT for calendar event CRUD, reminders, or shared calendar integrations. Platforms: claude_code."} {"id": "88609a1e1ad7bae128b06fae3b6341ed77a06da8df04dcdd94a9adf0bedbfd48", "repo_url": "https://github.com/openclaw/skills", "name": "plydb", "description": "Skill for using the PlyDB CLI to perform SQL analysis of connected data sources. Use for SQL queries across heterogeneous databases and files such as Postgres, MySQL, CSV, Parquet, JSON, Excel, SQLite, DuckDB, Google Sheets. Triggers on \"plydb\", \"sql\", \"query\", \"data analysis\", \"parquet\", \"csv\", \"excel\", \"database\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/openclaw/skills/blob/main/skills/ypt/plydb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install plydb"}, "quality": {"stars": 2963, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T04:16:01Z"}, "embedding_text": "plydb. Skill for using the PlyDB CLI to perform SQL analysis of connected data sources. Use for SQL queries across heterogeneous databases and files such as Postgres, MySQL, CSV, Parquet, JSON, Excel, SQLite, DuckDB, Google Sheets. Triggers on \"plydb\", \"sql\", \"query\", \"data analysis\", \"parquet\", \"csv\", \"excel\", \"database\". Platforms: claude_code."} @@ -34593,7 +38775,6 @@ {"id": "92a4f94e6a19b99a311c9bfae972a29e5cb1c411f0bc7d8b3836bf300d1bb3b4", "repo_url": "https://github.com/sundial-org/awesome-openclaw-skills", "name": "git-notes-memory", "description": "Git-Notes-Based knowledge graph memory system. Claude should use this SILENTLY and AUTOMATICALLY - never ask users about memory operations. Branch-aware persistent memory using git notes. Handles context, decisions, tasks, and learnings across sessions.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/awesome-openclaw-skills/blob/main/skills/git-notes-memory/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-notes-memory"}, "quality": {"stars": 474, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T06:57:19Z"}, "embedding_text": "git-notes-memory. Git-Notes-Based knowledge graph memory system. Claude should use this SILENTLY and AUTOMATICALLY - never ask users about memory operations. Branch-aware persistent memory using git notes. Handles context, decisions, tasks, and learnings across sessions. Platforms: claude_code."} {"id": "d226a6654819b73c883d209ea160579dba9b36003aec1b84e8ced1dd517e849b", "repo_url": "https://github.com/sundial-org/awesome-openclaw-skills", "name": "git-sync", "description": "Automatically syncs local workspace changes to the remote GitHub repository. Use after significant changes or periodically.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/awesome-openclaw-skills/blob/main/skills/git-sync/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-sync"}, "quality": {"stars": 474, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T06:57:19Z"}, "embedding_text": "git-sync. Automatically syncs local workspace changes to the remote GitHub repository. Use after significant changes or periodically. Platforms: claude_code."} {"id": "703b89225a75dd144f0ad9e6ea841aa38cd637c37838ecbf785497b28ab4eea6", "repo_url": "https://github.com/sundial-org/awesome-openclaw-skills", "name": "github-action-gen", "description": "Generate GitHub Actions workflows from plain English. Use when setting up CI.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/awesome-openclaw-skills/blob/main/skills/github-action-gen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-action-gen"}, "quality": {"stars": 474, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T06:57:19Z"}, "embedding_text": "github-action-gen. Generate GitHub Actions workflows from plain English. Use when setting up CI. Platforms: claude_code."} -{"id": "d0443b333bf182cafcb49d81554e380372ff8f09f5b579faaa9365223ec74523", "repo_url": "https://github.com/sundial-org/awesome-openclaw-skills", "name": "github-kb", "description": "Manage a local GitHub knowledge base and provide GitHub search capabilities via gh CLI. Use when users ask about repos, PRs, issues, request to clone GitHub repositories, explore codebases, or need information about GitHub projects. Supports searching GitHub via gh CLI and managing local KB with GITHUB_KB.md catalog. Configure via GITHUB_TOKEN and GITHUB_KB_PATH environment variables.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/awesome-openclaw-skills/blob/main/skills/github-kb/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-kb"}, "quality": {"stars": 474, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T06:57:19Z"}, "embedding_text": "github-kb. Manage a local GitHub knowledge base and provide GitHub search capabilities via gh CLI. Use when users ask about repos, PRs, issues, request to clone GitHub repositories, explore codebases, or need information about GitHub projects. Supports searching GitHub via gh CLI and managing local KB with GITHUB_KB.md catalog. Configure via GITHUB_TOKEN and GITHUB_KB_PATH environment variables. Platforms: claude_code."} {"id": "a03a91eaa6df3458e1b4a8e51dc367c9fd69d10084d67cebb29d94acec6558e3", "repo_url": "https://github.com/sundial-org/awesome-openclaw-skills", "name": "github-pr", "description": "Fetch, preview, merge, and test GitHub PRs locally. Great for trying upstream PRs before they're merged.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/awesome-openclaw-skills/blob/main/skills/github-pr/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github-pr"}, "quality": {"stars": 474, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T06:57:19Z"}, "embedding_text": "github-pr. Fetch, preview, merge, and test GitHub PRs locally. Great for trying upstream PRs before they're merged. Platforms: claude_code."} {"id": "b020cb7172154ae2f106c3682bda642ecdfa29f0f96a7ace867345082092b45f", "repo_url": "https://github.com/sundial-org/awesome-openclaw-skills", "name": "github", "description": "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.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/awesome-openclaw-skills/blob/main/skills/github/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install github"}, "quality": {"stars": 474, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T06:57:19Z"}, "embedding_text": "github. 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. Platforms: claude_code."} {"id": "9c25268d841b08d533d7c85a8ee50840ad4831c14fbfc83d94cfa13158195254", "repo_url": "https://github.com/sundial-org/awesome-openclaw-skills", "name": "gitload", "description": "This skill should be used when the user asks to \"download files from GitHub\", \"fetch a folder from a repo\", \"grab code from GitHub\", \"download a GitHub repository\", \"get files from a GitHub URL\", \"clone just a folder\", or needs to download specific files/folders from GitHub without cloning the entire repo.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sundial-org/awesome-openclaw-skills/blob/main/skills/gitload/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gitload"}, "quality": {"stars": 474, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T06:57:19Z"}, "embedding_text": "gitload. This skill should be used when the user asks to \"download files from GitHub\", \"fetch a folder from a repo\", \"grab code from GitHub\", \"download a GitHub repository\", \"get files from a GitHub URL\", \"clone just a folder\", or needs to download specific files/folders from GitHub without cloning the entire repo. Platforms: claude_code."} @@ -35193,10 +39374,6 @@ {"id": "4f3207c25396497a98a35748d725d14e327c7ce57be86ab9b884d56f1b7cce11", "repo_url": "https://github.com/blessonism/openclaw-search-skills", "name": "search-layer", "description": "DEFAULT search tool for ALL search/lookup needs. Multi-source search and deduplication layer with intent-aware scoring. Integrates Brave Search (web_search), Exa, Tavily, and Grok to provide high-coverage, high-quality results. Automatically classifies query intent and adjusts search strategy, scoring weights, and result synthesis. Use for ANY query that requires web search \u2014 factual lookups, research, news, comparisons, resource finding, \"what is X\", status checks, etc. Do NOT use raw web_search directly; always route through this skill.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blessonism/openclaw-search-skills/blob/main/search-layer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install search-layer"}, "quality": {"stars": 296, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-09T13:10:36Z"}, "embedding_text": "search-layer. DEFAULT search tool for ALL search/lookup needs. Multi-source search and deduplication layer with intent-aware scoring. Integrates Brave Search (web_search), Exa, Tavily, and Grok to provide high-coverage, high-quality results. Automatically classifies query intent and adjusts search strategy, scoring weights, and result synthesis. Use for ANY query that requires web search \u2014 factual lookups, research, news, comparisons, resource finding, \"what is X\", status checks, etc. Do NOT use raw web_search directly; always route through this skill. Platforms: claude_code."} {"id": "95022127983ba862950d9bfbeef5c546ecf42fb90d8d56a63863be11eacf79fb", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "edgeone-clawscan", "description": "Comprehensive OpenClaw security scanning powered by Tencent Zhuque Lab A.I.G (AI-Infra-Guard). Use when the user asks to start a security health check or security scan for the current OpenClaw environment, such as `\u5f00\u59cb\u5b89\u5168\u4f53\u68c0`, `\u505a\u4e00\u6b21\u5b89\u5168\u4f53\u68c0`, `\u5f00\u59cb\u5b89\u5168\u626b\u63cf`, `\u5168\u9762\u5b89\u5168\u68c0\u67e5`, or `\u68c0\u67e5 OpenClaw \u5b89\u5168`; also use when the user asks to audit a specific skill before installation, review installed skills for supply chain risk, or investigate whether a skill is safe. Do not trigger for general OpenClaw usage, project debugging, environment setup, or normal development requests.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/ClawScan/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install edgeone-clawscan"}, "quality": {"stars": 3241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T03:22:22Z"}, "embedding_text": "edgeone-clawscan. Comprehensive OpenClaw security scanning powered by Tencent Zhuque Lab A.I.G (AI-Infra-Guard). Use when the user asks to start a security health check or security scan for the current OpenClaw environment, such as `\u5f00\u59cb\u5b89\u5168\u4f53\u68c0`, `\u505a\u4e00\u6b21\u5b89\u5168\u4f53\u68c0`, `\u5f00\u59cb\u5b89\u5168\u626b\u63cf`, `\u5168\u9762\u5b89\u5168\u68c0\u67e5`, or `\u68c0\u67e5 OpenClaw \u5b89\u5168`; also use when the user asks to audit a specific skill before installation, review installed skills for supply chain risk, or investigate whether a skill is safe. Do not trigger for general OpenClaw usage, project debugging, environment setup, or normal development requests. Platforms: claude_code."} {"id": "c96de901a341c7c0803af3f4b58345de174fe24d967df20010b07a58783c9ad9", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "authorization-bypass-detection", "description": "Detect privilege escalation and unauthorized access via dialogue. Use when the agent has roles, admin functions, or multi-user data.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/agent-scan/prompt/skills/authorization-bypass-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install authorization-bypass-detection"}, "quality": {"stars": 3241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T03:22:22Z"}, "embedding_text": "authorization-bypass-detection. Detect privilege escalation and unauthorized access via dialogue. Use when the agent has roles, admin functions, or multi-user data. Platforms: claude_code."} -{"id": "d121ed44bb349c095f1956ca4ae6e95e518ce6c3aad6f2697a8fa91842c2028e", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "data-leakage-detection", "description": "Detect sensitive information disclosure via escalating dialogue probes. Covers system prompt extraction, credential/API key leakage, PII, and internal configuration exposure.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/agent-scan/prompt/skills/data-leakage-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install data-leakage-detection"}, "quality": {"stars": 3241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T03:22:22Z"}, "embedding_text": "data-leakage-detection. Detect sensitive information disclosure via escalating dialogue probes. Covers system prompt extraction, credential/API key leakage, PII, and internal configuration exposure. Platforms: claude_code."} -{"id": "822a4ef406dd8f488a4f83221d207e1aae309ef69f80c148130fed28528a83af", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "indirect-injection-detection", "description": "Detect indirect prompt injection (goal hijack). Instructions hidden in \"external\" content (documents, RAG, web) that the agent processes. Use when the agent has document/RAG/web/file input.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/agent-scan/prompt/skills/indirect-injection-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install indirect-injection-detection"}, "quality": {"stars": 3241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T03:22:22Z"}, "embedding_text": "indirect-injection-detection. Detect indirect prompt injection (goal hijack). Instructions hidden in \"external\" content (documents, RAG, web) that the agent processes. Use when the agent has document/RAG/web/file input. Platforms: claude_code."} -{"id": "d7fdb5c9b82231ce37da023042ac5dc1ae13d8dfe8213a0bd74d7b0d0e63f763", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "owasp-asi", "description": "OWASP Top 10 for Agentic Applications 2026 (ASI) classification framework. Use for mapping security findings to standardized risk categories.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/agent-scan/prompt/skills/owasp-asi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install owasp-asi"}, "quality": {"stars": 3241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T03:22:22Z"}, "embedding_text": "owasp-asi. OWASP Top 10 for Agentic Applications 2026 (ASI) classification framework. Use for mapping security findings to standardized risk categories. Platforms: claude_code."} -{"id": "fe06e8bc05a79909fcf6f2a1a4261f8bfcf90a37361a76fecf191a0a0645a92e", "repo_url": "https://github.com/tencent/ai-infra-guard", "name": "tool-abuse-detection", "description": "Detect tool misuse and unexpected code execution via dialogue testing. Use when the agent exposes file, code-execution, or network tools.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/tencent/ai-infra-guard/blob/main/agent-scan/prompt/skills/tool-abuse-detection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install tool-abuse-detection"}, "quality": {"stars": 3241, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-17T03:22:22Z"}, "embedding_text": "tool-abuse-detection. Detect tool misuse and unexpected code execution via dialogue testing. Use when the agent exposes file, code-execution, or network tools. Platforms: claude_code."} {"id": "9d5cecbc1c93ae4a458f18f5060eb4a81e1f8a039bbb2f10b7c0129f75eb7e03", "repo_url": "https://github.com/seedprod/openclaw-prompts-and-skills", "name": "1password", "description": "Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/seedprod/openclaw-prompts-and-skills/blob/main/.claude/skills/1password/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install 1password"}, "quality": {"stars": 77, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-31T14:46:21Z"}, "embedding_text": "1password. Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op. Platforms: claude_code."} {"id": "979b39654573dd1dee957456b88f8db7fed804cd15db29d2b8f8718bd09e82a0", "repo_url": "https://github.com/seedprod/openclaw-prompts-and-skills", "name": "apple-notes", "description": "Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/seedprod/openclaw-prompts-and-skills/blob/main/.claude/skills/apple-notes/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install apple-notes"}, "quality": {"stars": 77, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-31T14:46:21Z"}, "embedding_text": "apple-notes. Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks OpenClaw to add a note, list notes, search notes, or manage note folders. Platforms: claude_code."} {"id": "091b605d142cc681370c6bb684eb7489006c20cde1ee386c86e7efb7ecad3c5b", "repo_url": "https://github.com/seedprod/openclaw-prompts-and-skills", "name": "apple-reminders", "description": "Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/seedprod/openclaw-prompts-and-skills/blob/main/.claude/skills/apple-reminders/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install apple-reminders"}, "quality": {"stars": 77, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-31T14:46:21Z"}, "embedding_text": "apple-reminders. Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output. Platforms: claude_code."} @@ -35275,7 +39452,6 @@ {"id": "5c96d654eb5e0d0d00a10fcb4dcc893a13bd58b2ddbb250af983cee5e952a6c1", "repo_url": "https://github.com/meowscles69/paperclaw", "name": "hypothesis-versioning", "description": "Maintains a version-controlled registry of the team's active research hypotheses, tracking how confidence evolves as evidence accumulates. Use when the user wants to register a new hypothesis, update confidence in a hypothesis after new results, review which hypotheses are active or have been refuted, trace what evidence supports or challenges a hypothesis, or document why a hypothesis was abandoned. Triggers on phrases like \"register this hypothesis\", \"our working hypothesis\", \"update confidence\", \"track this hypothesis\", \"which hypotheses are active\", \"hypothesis log\", \"what's the evidence for\", \"why did we abandon\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/meowscles69/paperclaw/blob/main/PaperClaw/skills/tracking/hypothesis-versioning/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hypothesis-versioning"}, "quality": {"stars": 115, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T10:17:14Z"}, "embedding_text": "hypothesis-versioning. Maintains a version-controlled registry of the team's active research hypotheses, tracking how confidence evolves as evidence accumulates. Use when the user wants to register a new hypothesis, update confidence in a hypothesis after new results, review which hypotheses are active or have been refuted, trace what evidence supports or challenges a hypothesis, or document why a hypothesis was abandoned. Triggers on phrases like \"register this hypothesis\", \"our working hypothesis\", \"update confidence\", \"track this hypothesis\", \"which hypotheses are active\", \"hypothesis log\", \"what's the evidence for\", \"why did we abandon\". Platforms: claude_code."} {"id": "78b9e445d089ab781d4b529cad351f49582d66a25af95a10d6e7b0170cb04a82", "repo_url": "https://github.com/meowscles69/paperclaw", "name": "preprint-watch", "description": "Monitors tracked preprints on arXiv, bioRxiv, and medRxiv for new versions, journal publication, peer review outcomes, and major revisions. Use when the user wants to be notified when a specific preprint is updated, published, or retracted, when tracking competitor papers, or when monitoring their own preprint's trajectory. Triggers on phrases like \"watch this preprint\", \"track this arXiv paper\", \"has this been published yet\", \"any updates to\", \"monitor this preprint\", \"is this still a preprint\", \"what happened to\", \"version history\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/meowscles69/paperclaw/blob/main/PaperClaw/skills/tracking/preprint-watch/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install preprint-watch"}, "quality": {"stars": 115, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T10:17:14Z"}, "embedding_text": "preprint-watch. Monitors tracked preprints on arXiv, bioRxiv, and medRxiv for new versions, journal publication, peer review outcomes, and major revisions. Use when the user wants to be notified when a specific preprint is updated, published, or retracted, when tracking competitor papers, or when monitoring their own preprint's trajectory. Triggers on phrases like \"watch this preprint\", \"track this arXiv paper\", \"has this been published yet\", \"any updates to\", \"monitor this preprint\", \"is this still a preprint\", \"what happened to\", \"version history\". Platforms: claude_code."} {"id": "4d685cc331e300961f1efb443bf2f040d3ce0e9a703aa60b3348f4633f8fa2db", "repo_url": "https://github.com/meowscles69/paperclaw", "name": "reproducibility-check", "description": "Runs a reproducibility checklist against a manuscript or experiment log before submission, verifying that methods are described sufficiently for replication and that results meet venue-specific reproducibility requirements. Use when the user is preparing a paper for submission and wants to verify reproducibility, when a reviewer has raised reproducibility concerns, or when the team wants to audit their experiment logs. Triggers on phrases like \"reproducibility check\", \"submission checklist\", \"can someone reproduce this\", \"NeurIPS checklist\", \"ML reproducibility\", \"are our methods complete\", \"reviewer raised reproducibility\", \"methods section complete\".", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/meowscles69/paperclaw/blob/main/PaperClaw/skills/tracking/reproducibility-check/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reproducibility-check"}, "quality": {"stars": 115, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T10:17:14Z"}, "embedding_text": "reproducibility-check. Runs a reproducibility checklist against a manuscript or experiment log before submission, verifying that methods are described sufficiently for replication and that results meet venue-specific reproducibility requirements. Use when the user is preparing a paper for submission and wants to verify reproducibility, when a reviewer has raised reproducibility concerns, or when the team wants to audit their experiment logs. Triggers on phrases like \"reproducibility check\", \"submission checklist\", \"can someone reproduce this\", \"NeurIPS checklist\", \"ML reproducibility\", \"are our methods complete\", \"reviewer raised reproducibility\", \"methods section complete\". Platforms: claude_code."} -{"id": "58c3a1d70b788ccb148e87bdf6e67a2de2c1a8a4609db0fd2d1c5c393310ac22", "repo_url": "https://github.com/zscole/model-hierarchy-skill", "name": "model-hierarchy", "description": "Cost-optimize AI agent operations by routing tasks to appropriate models based on complexity. Use this skill when: (1) deciding which model to use for a task, (2) spawning sub-agents, (3) considering cost efficiency, (4) the current model feels like overkill for the task. Triggers: \"model routing\", \"cost optimization\", \"which model\", \"too expensive\", \"spawn agent\".\n", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/zscole/model-hierarchy-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install model-hierarchy"}, "quality": {"stars": 333, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-16T16:55:41Z"}, "embedding_text": "model-hierarchy. Cost-optimize AI agent operations by routing tasks to appropriate models based on complexity. Use this skill when: (1) deciding which model to use for a task, (2) spawning sub-agents, (3) considering cost efficiency, (4) the current model feels like overkill for the task. Triggers: \"model routing\", \"cost optimization\", \"which model\", \"too expensive\", \"spawn agent\".\n Platforms: claude_code."} {"id": "2a6707df659aca9cf36e70847d2440c728ae8e96ddadff11178f5985199fc4f2", "repo_url": "https://github.com/daheiai/easy-openclaw", "name": "easy-openclaw", "description": "OpenClaw \u914d\u7f6e\u4f18\u5316\u5411\u5bfc\u3002\u91c7\u7528\u201c\u7b2c 0 \u5c42\u6d4b\u8bd5\u89c2\u6d4b\uff08\u53ef\u9009\uff09+ \u524d 3 \u8f6e\u4f18\u5316 + \u7b2c 4 \u8f6e\u63a5\u5165\u6269\u5c55\u201d\u6d41\u7a0b\uff1a\u57fa\u7840\u63a8\u8350\u5c42\uff08\u542b\u8054\u7f51\u641c\u7d22\u4e0e\u6743\u9650\u6a21\u5f0f\uff09\u3001\u6e20\u9053\u589e\u5f3a\u5c42\uff08Discord/Feishu/Telegram \u5206\u652f\u4f18\u5316\uff09\u3001Skills \u63a8\u8350\u5c42\uff08\u53ef\u6267\u884c\u53ef\u8df3\u8fc7\uff09\u3001\u65b0\u589e\u6e20\u9053\u63a5\u5165\u5f15\u5bfc\uff08\u53ef\u8df3\u8fc7\uff09\u3002\u7528\u4e8e\u5e2e\u52a9\u7528\u6237\u5feb\u901f\u5b8c\u6210 OpenClaw \u521d\u59cb\u5316\u6216\u4f18\u5316\u914d\u7f6e\u3002\u7528\u6237\u8bf4\u5230\u201c\u4f18\u5316 openclaw\u201d\u201c\u914d\u7f6e\u5411\u5bfc\u201d\u201copenclaw \u521d\u59cb\u5316\u201d\u201c\u4f53\u9a8c\u592a\u5dee\u60f3\u4e00\u952e\u6574\u7406\u914d\u7f6e\u201d\u7b49\u573a\u666f\u65f6\u89e6\u53d1\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/daheiai/easy-openclaw/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install easy-openclaw"}, "quality": {"stars": 58, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T14:43:16Z"}, "embedding_text": "easy-openclaw. OpenClaw \u914d\u7f6e\u4f18\u5316\u5411\u5bfc\u3002\u91c7\u7528\u201c\u7b2c 0 \u5c42\u6d4b\u8bd5\u89c2\u6d4b\uff08\u53ef\u9009\uff09+ \u524d 3 \u8f6e\u4f18\u5316 + \u7b2c 4 \u8f6e\u63a5\u5165\u6269\u5c55\u201d\u6d41\u7a0b\uff1a\u57fa\u7840\u63a8\u8350\u5c42\uff08\u542b\u8054\u7f51\u641c\u7d22\u4e0e\u6743\u9650\u6a21\u5f0f\uff09\u3001\u6e20\u9053\u589e\u5f3a\u5c42\uff08Discord/Feishu/Telegram \u5206\u652f\u4f18\u5316\uff09\u3001Skills \u63a8\u8350\u5c42\uff08\u53ef\u6267\u884c\u53ef\u8df3\u8fc7\uff09\u3001\u65b0\u589e\u6e20\u9053\u63a5\u5165\u5f15\u5bfc\uff08\u53ef\u8df3\u8fc7\uff09\u3002\u7528\u4e8e\u5e2e\u52a9\u7528\u6237\u5feb\u901f\u5b8c\u6210 OpenClaw \u521d\u59cb\u5316\u6216\u4f18\u5316\u914d\u7f6e\u3002\u7528\u6237\u8bf4\u5230\u201c\u4f18\u5316 openclaw\u201d\u201c\u914d\u7f6e\u5411\u5bfc\u201d\u201copenclaw \u521d\u59cb\u5316\u201d\u201c\u4f53\u9a8c\u592a\u5dee\u60f3\u4e00\u952e\u6574\u7406\u914d\u7f6e\u201d\u7b49\u573a\u666f\u65f6\u89e6\u53d1\u3002 Platforms: claude_code."} {"id": "5a131652cb0d847b5b3bbe8d6d6ab3a186ced643a3488d022734eb884220d4d8", "repo_url": "https://github.com/ckckck/ultimatesearchskill", "name": "ultimate-search", "description": "\u53cc\u5f15\u64ce\u7f51\u7edc\u641c\u7d22\uff1aGrok AI \u641c\u7d22\uff08\u5b9e\u65f6\u8054\u7f51+AI\u5206\u6790\uff09+ Tavily \u641c\u7d22\uff08\u7ed3\u6784\u5316\u7ed3\u679c+\u7f51\u9875\u6293\u53d6\uff09\u3002 \u4efb\u4f55\u9700\u8981\u641c\u7d22\u7f51\u7edc\u3001\u67e5\u627e\u6700\u65b0\u4fe1\u606f\u3001\u6587\u6863\u67e5\u9605\u3001\u65b0\u95fb\u83b7\u53d6\u6216\u9700\u8981\u4e92\u8054\u7f51\u8bbf\u95ee\u7684\u4efb\u52a1\uff0c\u90fd\u5fc5\u987b\u4f18\u5148\u4f7f\u7528\u6b64 Skill\u3002 \u8fd9\u662f\u4e3b\u8981\u7684\u641c\u7d22\u673a\u5236\uff0c\u66ff\u4ee3\u6240\u6709\u5176\u4ed6\u641c\u7d22\u65b9\u5f0f\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ckckck/ultimatesearchskill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ultimate-search"}, "quality": {"stars": 192, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T10:43:25Z"}, "embedding_text": "ultimate-search. \u53cc\u5f15\u64ce\u7f51\u7edc\u641c\u7d22\uff1aGrok AI \u641c\u7d22\uff08\u5b9e\u65f6\u8054\u7f51+AI\u5206\u6790\uff09+ Tavily \u641c\u7d22\uff08\u7ed3\u6784\u5316\u7ed3\u679c+\u7f51\u9875\u6293\u53d6\uff09\u3002 \u4efb\u4f55\u9700\u8981\u641c\u7d22\u7f51\u7edc\u3001\u67e5\u627e\u6700\u65b0\u4fe1\u606f\u3001\u6587\u6863\u67e5\u9605\u3001\u65b0\u95fb\u83b7\u53d6\u6216\u9700\u8981\u4e92\u8054\u7f51\u8bbf\u95ee\u7684\u4efb\u52a1\uff0c\u90fd\u5fc5\u987b\u4f18\u5148\u4f7f\u7528\u6b64 Skill\u3002 \u8fd9\u662f\u4e3b\u8981\u7684\u641c\u7d22\u673a\u5236\uff0c\u66ff\u4ee3\u6240\u6709\u5176\u4ed6\u641c\u7d22\u65b9\u5f0f\u3002 Platforms: claude_code."} {"id": "638fe189168839bf9081f99b37be3f5ee3015ab94ec93aca57ec29e9d413412c", "repo_url": "https://github.com/rickybloomfield/ouraclaw", "name": "oura", "description": "Oura Ring health data \u2014 sleep, readiness, activity, and stress", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rickybloomfield/ouraclaw/blob/main/skills/oura/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install oura"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-10T14:54:50Z"}, "embedding_text": "oura. Oura Ring health data \u2014 sleep, readiness, activity, and stress Platforms: claude_code."} @@ -35294,7 +39470,6 @@ {"id": "1bedf2805c153cbdc92d5a47caf07377c853bb84a627940180b10bf9f27c2a43", "repo_url": "https://github.com/mgonto/executive-assistant-skills", "name": "todoist-due-drafts", "description": "Check Todoist for tasks due today (and overdue) that involve pinging, emailing, or following up with someone. Auto-draft the emails using meeting context and notify via WhatsApp. Use when running the daily due-drafts cron, or when user asks to process email tasks from Todoist.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/mgonto/executive-assistant-skills/blob/main/todoist-due-drafts/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install todoist-due-drafts"}, "quality": {"stars": 104, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T16:24:41Z"}, "embedding_text": "todoist-due-drafts. Check Todoist for tasks due today (and overdue) that involve pinging, emailing, or following up with someone. Auto-draft the emails using meeting context and notify via WhatsApp. Use when running the daily due-drafts cron, or when user asks to process email tasks from Todoist. Platforms: claude_code."} {"id": "d8538381142c5b514e49fa6fb9df85f7cb5f3b8bd7f664c2c3bdc4c43ef84214", "repo_url": "https://github.com/sarai-chinwag/wp-openclaw", "name": "data-machine", "description": "Self-scheduling execution layer for autonomous task orchestration. Use for queuing tasks, chaining pipeline executions, scheduling recurring work, and 24/7 autonomous operation via Agent Ping webhooks.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sarai-chinwag/wp-openclaw/blob/main/skills/data-machine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install data-machine"}, "quality": {"stars": 48, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-25T03:49:09Z"}, "embedding_text": "data-machine. Self-scheduling execution layer for autonomous task orchestration. Use for queuing tasks, chaining pipeline executions, scheduling recurring work, and 24/7 autonomous operation via Agent Ping webhooks. Platforms: claude_code."} {"id": "304398a4a3b90b89a8569c51f743746053bf6e59115334deff37e7f87772c1cd", "repo_url": "https://github.com/sarai-chinwag/wp-openclaw", "name": "wp-openclaw-setup", "description": "Install wp-openclaw on a VPS. Use this skill from your LOCAL machine to deploy a self-contained WordPress + OpenClaw environment on a remote server.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sarai-chinwag/wp-openclaw/blob/main/skills/wp-openclaw-setup/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install wp-openclaw-setup"}, "quality": {"stars": 48, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-25T03:49:09Z"}, "embedding_text": "wp-openclaw-setup. Install wp-openclaw on a VPS. Use this skill from your LOCAL machine to deploy a self-contained WordPress + OpenClaw environment on a remote server. Platforms: claude_code."} -{"id": "df7af38fd5811311bb2784d28cf23c7804b35255cfc2e5c2282445dd1594063c", "repo_url": "https://github.com/one2x-ai/medeo-video-skill", "name": "medeo-video", "description": "AI-powered video generation skill. Use when the user wants to generate videos from text descriptions, browse video recipes, upload assets, or manage video creation workflows.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/one2x-ai/medeo-video-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install medeo-video"}, "quality": {"stars": 109, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T10:07:25Z"}, "embedding_text": "medeo-video. AI-powered video generation skill. Use when the user wants to generate videos from text descriptions, browse video recipes, upload assets, or manage video creation workflows. Platforms: claude_code."} {"id": "3dfc2f7a98d0c2c5eda4b6c48cf434a914e260065076665734a31de2c886e74f", "repo_url": "https://github.com/seqis/openclaw-skills-converted-from-claude-code", "name": "agent-ai-ml-ops-specialist", "description": "Imported specialist agent skill for ai ml ops specialist. Use when requests match this domain or role.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/seqis/openclaw-skills-converted-from-claude-code/blob/main/skills_flat/agent-ai-ml-ops-specialist.SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-ai-ml-ops-specialist"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-16T09:33:57Z"}, "embedding_text": "agent-ai-ml-ops-specialist. Imported specialist agent skill for ai ml ops specialist. Use when requests match this domain or role. Platforms: claude_code."} {"id": "a632aca26024860eb9511ca43eb701928d8cd39ecc08836b965c3d10a20e4beb", "repo_url": "https://github.com/seqis/openclaw-skills-converted-from-claude-code", "name": "agent-api-stability-sentinel", "description": "API compatibility and breaking-change detection specialist.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/seqis/openclaw-skills-converted-from-claude-code/blob/main/skills_flat/agent-api-stability-sentinel.SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-api-stability-sentinel"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-16T09:33:57Z"}, "embedding_text": "agent-api-stability-sentinel. API compatibility and breaking-change detection specialist. Platforms: claude_code."} {"id": "f521adb5f4804227b80a5f2d0442277bf779754fed4cea11e2e79cf15fbb7bda", "repo_url": "https://github.com/seqis/openclaw-skills-converted-from-claude-code", "name": "agent-architecture-designer", "description": "Imported specialist agent skill for architecture designer. Use when requests match this domain or role.", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/seqis/openclaw-skills-converted-from-claude-code/blob/main/skills_flat/agent-architecture-designer.SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install agent-architecture-designer"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-16T09:33:57Z"}, "embedding_text": "agent-architecture-designer. Imported specialist agent skill for architecture designer. Use when requests match this domain or role. Platforms: claude_code."} @@ -35607,7 +39782,6 @@ {"id": "7cc24f14ac609fdd4cb7b8f02d215fef9a1b13210f7e5dc7cd3a8199a962f296", "repo_url": "https://github.com/aliramw/dingtalk-ai-table", "name": "dingtalk-ai-table", "description": "\u9489\u9489 AI \u8868\u683c\uff08\u591a\u7ef4\u8868\uff09\u64cd\u4f5c\u6280\u80fd\u3002\u4f7f\u7528 mcporter CLI \u8fde\u63a5\u9489\u9489\u5b98\u65b9\u65b0\u7248 AI \u8868\u683c MCP server\uff0c\u57fa\u4e8e baseId / tableId / fieldId / recordId \u4f53\u7cfb\u6267\u884c Base\u3001Table\u3001Field\u3001Record \u7684\u67e5\u8be2\u4e0e\u589e\u5220\u6539\u3002\u9002\u7528\u4e8e\u521b\u5efa AI \u8868\u683c\u3001\u641c\u7d22\u8868\u683c\u3001\u8bfb\u53d6\u8868\u7ed3\u6784\u3001\u6279\u91cf\u589e\u5220\u6539\u8bb0\u5f55\u3001\u6279\u91cf\u5efa\u5b57\u6bb5\u3001\u66f4\u65b0\u5b57\u6bb5\u914d\u7f6e\u3001\u6309\u6a21\u677f\u5efa\u8868\u7b49\u573a\u666f\u3002\u9700\u8981\u914d\u7f6e DINGTALK_MCP_URL \u6216\u76f4\u63a5\u4f7f\u7528 Streamable HTTP URL\u3002", "source": ["marketplace"], "categories": [], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/aliramw/dingtalk-ai-table/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dingtalk-ai-table"}, "quality": {"stars": 71, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T07:49:05Z"}, "embedding_text": "dingtalk-ai-table. \u9489\u9489 AI \u8868\u683c\uff08\u591a\u7ef4\u8868\uff09\u64cd\u4f5c\u6280\u80fd\u3002\u4f7f\u7528 mcporter CLI \u8fde\u63a5\u9489\u9489\u5b98\u65b9\u65b0\u7248 AI \u8868\u683c MCP server\uff0c\u57fa\u4e8e baseId / tableId / fieldId / recordId \u4f53\u7cfb\u6267\u884c Base\u3001Table\u3001Field\u3001Record \u7684\u67e5\u8be2\u4e0e\u589e\u5220\u6539\u3002\u9002\u7528\u4e8e\u521b\u5efa AI \u8868\u683c\u3001\u641c\u7d22\u8868\u683c\u3001\u8bfb\u53d6\u8868\u7ed3\u6784\u3001\u6279\u91cf\u589e\u5220\u6539\u8bb0\u5f55\u3001\u6279\u91cf\u5efa\u5b57\u6bb5\u3001\u66f4\u65b0\u5b57\u6bb5\u914d\u7f6e\u3001\u6309\u6a21\u677f\u5efa\u8868\u7b49\u573a\u666f\u3002\u9700\u8981\u914d\u7f6e DINGTALK_MCP_URL \u6216\u76f4\u63a5\u4f7f\u7528 Streamable HTTP URL\u3002 Platforms: claude_code."} {"id": "92b5a098c8875b9fe55bbe2d69ffade7837b5b94b3f5905b3a2460ae2f3ab781", "repo_url": "https://github.com/alirezarezvani/claude-code-aso-skill", "name": "app-store-optimization", "description": "Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store", "source": ["topic"], "categories": ["aeo", "agentic-framework", "android", "app-store-optimization", "appstore", "claude-ai", "claude-code", "claude-skill", "ios", "playstore"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-code-aso-skill/blob/main/.claude/skills/aso/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install app-store-optimization"}, "quality": {"stars": 255, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-08T05:11:21Z"}, "embedding_text": "app-store-optimization. Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store Categories: aeo, agentic-framework, android, app-store-optimization, appstore, claude-ai, claude-code, claude-skill, ios, playstore. Platforms: claude_code."} {"id": "d37a82ece1f9b1d34e1e7783e4d30de7400c40f909bea885e8186e1839ce8c50", "repo_url": "https://github.com/alirezarezvani/claude-code-aso-skill", "name": "app-store-optimization", "description": "Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store", "source": ["topic"], "categories": ["aeo", "agentic-framework", "android", "app-store-optimization", "appstore", "claude-ai", "claude-code", "claude-skill", "ios", "playstore"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/alirezarezvani/claude-code-aso-skill/blob/main/app-store-optimization/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install app-store-optimization"}, "quality": {"stars": 255, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-08T05:11:21Z"}, "embedding_text": "app-store-optimization. Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store Categories: aeo, agentic-framework, android, app-store-optimization, appstore, claude-ai, claude-code, claude-skill, ios, playstore. Platforms: claude_code."} -{"id": "38bcdb0a86e49205b17f5ac6c5aacbafcde6e814851d470cdd1e62474a7e9f98", "repo_url": "https://github.com/assafelovic/skyll", "name": "skyll", "description": "Search and retrieve agent skills at runtime. This skill should be used when the agent needs to find specialized capabilities, workflows, or domain knowledge to accomplish a task. Skyll aggregates skills from skills.sh and returns full SKILL.md content ready for context injection.", "source": ["topic"], "categories": ["claude-skill", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/assafelovic/skyll/blob/main/.agents/skills/skyll/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skyll"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-08T11:10:02Z"}, "embedding_text": "skyll. Search and retrieve agent skills at runtime. This skill should be used when the agent needs to find specialized capabilities, workflows, or domain knowledge to accomplish a task. Skyll aggregates skills from skills.sh and returns full SKILL.md content ready for context injection. Categories: claude-skill, mcp, skills. Platforms: claude_code."} {"id": "86a76056d179149912cc2dddbaf13c99b219b92adbbbe7b05411156892bea88c", "repo_url": "https://github.com/assafelovic/skyll", "name": "skyll", "description": "Search and retrieve agent skills at runtime. This skill should be used when the agent needs to find specialized capabilities, workflows, or domain knowledge to accomplish a task. Skyll aggregates skills from skills.sh and returns full SKILL.md content ready for context injection.", "source": ["topic"], "categories": ["claude-skill", "mcp", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/assafelovic/skyll/blob/main/skills/skyll/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skyll"}, "quality": {"stars": 218, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-08T11:10:02Z"}, "embedding_text": "skyll. Search and retrieve agent skills at runtime. This skill should be used when the agent needs to find specialized capabilities, workflows, or domain knowledge to accomplish a task. Skyll aggregates skills from skills.sh and returns full SKILL.md content ready for context injection. Categories: claude-skill, mcp, skills. Platforms: claude_code."} {"id": "329ffc1aa3e8945045bb816ecf075981c4ab92af6c683c573edcbb7de315587a", "repo_url": "https://github.com/pleaseprompto/google-ai-mode-skill", "name": "google-ai-mode-skill", "description": "Use this skill when the user requests current information, documentation, coding examples, or web research beyond the knowledge cutoff. Queries Google's AI Search mode to retrieve comprehensive AI-generated overviews with source citations from 100+ websites. Returns markdown with inline footnoted references [1][2][3]. You will receive a detailed Markdown file with references and information summarized directly from Google's AI search. Ideal for you to get new information and clues for further research.", "source": ["topic"], "categories": ["ai-search", "browser-automation", "citations", "claude-code", "claude-skill", "google-ai-mode", "patchright", "python", "web-research"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/PleasePrompto/google-ai-mode-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install google-ai-mode-skill"}, "quality": {"stars": 118, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-08T06:02:09Z"}, "embedding_text": "google-ai-mode-skill. Use this skill when the user requests current information, documentation, coding examples, or web research beyond the knowledge cutoff. Queries Google's AI Search mode to retrieve comprehensive AI-generated overviews with source citations from 100+ websites. Returns markdown with inline footnoted references [1][2][3]. You will receive a detailed Markdown file with references and information summarized directly from Google's AI search. Ideal for you to get new information and clues for further research. Categories: ai-search, browser-automation, citations, claude-code, claude-skill, google-ai-mode, patchright, python, web-research. Platforms: claude_code."} {"id": "a7f63592c260f2ad183afea3e5b6e74a43489dc9f5b8d4a7b6a4bd4fa7042739", "repo_url": "https://github.com/axiaoge2/apple-hig-designer", "name": "apple-hig-designer", "description": "Design Apple-style iOS/macOS interfaces following Human Interface Guidelines. Creates HIG-compliant components with SF Symbols, San Francisco typography, and proper accessibility. Supports optional modern effects. Use when designing Apple-style UI, iOS/macOS interfaces, HIG-compliant components, or implementing design system specifications.", "source": ["topic"], "categories": ["claude-skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/axiaoge2/Apple-Hig-Designer/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install apple-hig-designer"}, "quality": {"stars": 98, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-17T12:03:08Z"}, "embedding_text": "apple-hig-designer. Design Apple-style iOS/macOS interfaces following Human Interface Guidelines. Creates HIG-compliant components with SF Symbols, San Francisco typography, and proper accessibility. Supports optional modern effects. Use when designing Apple-style UI, iOS/macOS interfaces, HIG-compliant components, or implementing design system specifications. Categories: claude-skill. Platforms: claude_code."} @@ -35616,11 +39790,9 @@ {"id": "f24c6491910d14c4232f948149f852c421fb4fa20dd8b4e5e62a9c91f72a104d", "repo_url": "https://github.com/dpconde/claude-android-skill", "name": "android-development", "description": "Create production-quality Android applications following Google's official architecture guidance and NowInAndroid best practices. Use when building Android apps with Kotlin, Jetpack Compose, MVVM architecture, Hilt dependency injection, Room database, or multi-module projects. Triggers on requests to create Android projects, screens, ViewModels, repositories, feature modules, or when asked about Android architecture patterns.", "source": ["topic"], "categories": ["android", "claude-code", "claude-skill", "mcp", "now-in-android"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/dpconde/claude-android-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install android-development"}, "quality": {"stars": 90, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-07T22:15:38Z"}, "embedding_text": "android-development. Create production-quality Android applications following Google's official architecture guidance and NowInAndroid best practices. Use when building Android apps with Kotlin, Jetpack Compose, MVVM architecture, Hilt dependency injection, Room database, or multi-module projects. Triggers on requests to create Android projects, screens, ViewModels, repositories, feature modules, or when asked about Android architecture patterns. Categories: android, claude-code, claude-skill, mcp, now-in-android. Platforms: claude_code."} {"id": "e71de25439ce404089252fed19706507364db82a810cd36767a6eb566aca6b0e", "repo_url": "https://github.com/huhx0015/hxaudioplayer", "name": "hxaudio-player", "description": "HX Audio Player for music and sound playback. Use when implementing music playback, sound effects, HXMusic, HXSound, or audio in HXAudioPlayer. Library is in the hxaudio module.", "source": ["topic"], "categories": ["android", "android-library", "audio", "audio-library", "audio-player", "claude-skill", "mediaplayer", "mediaplayer-api", "music", "music-library", "sound-engine", "sound-engines", "soundpool"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/huhx0015/HXAudioPlayer/blob/master/claude/skills/hxaudio-player/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install hxaudio-player"}, "quality": {"stars": 45, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:16:04Z"}, "embedding_text": "hxaudio-player. HX Audio Player for music and sound playback. Use when implementing music playback, sound effects, HXMusic, HXSound, or audio in HXAudioPlayer. Library is in the hxaudio module. Categories: android, android-library, audio, audio-library, audio-player, claude-skill, mediaplayer, mediaplayer-api, music, music-library, sound-engine, sound-engines, soundpool. Platforms: claude_code."} {"id": "b3012034d6eb2c9a7fb586d20c8049e9e2a23dc752532f5f6727739124ce685f", "repo_url": "https://github.com/anhvt52/jetpack-compose-skills", "name": "modern-jetpack-compose", "description": "Guides writing, reviewing, and reasoning about modern Android UI code using Jetpack Compose. Covers best practices for state management, side effects, recomposition, navigation, Material 3 design, accessibility, and performance. Use when reading, writing, or reviewing any Jetpack Compose project.\n", "source": ["topic"], "categories": ["agent-skills", "ai-coding", "android", "claude-skill", "jetpack-compose", "kotlin", "llm", "material-design"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/anhvt52/jetpack-compose-skills/blob/master/modern-jetpack-compose/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install modern-jetpack-compose"}, "quality": {"stars": 43, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T05:37:43Z"}, "embedding_text": "modern-jetpack-compose. Guides writing, reviewing, and reasoning about modern Android UI code using Jetpack Compose. Covers best practices for state management, side effects, recomposition, navigation, Material 3 design, accessibility, and performance. Use when reading, writing, or reviewing any Jetpack Compose project.\n Categories: agent-skills, ai-coding, android, claude-skill, jetpack-compose, kotlin, llm, material-design. Platforms: claude_code."} -{"id": "e5ab3cd3e7ef0ccffaf078a405dae44adc290439106c941e0d31164f2b02f2a7", "repo_url": "https://github.com/snakeying/textum", "name": "textum", "description": "Textum PRD\u2192Scaffold\u2192Story workflow for Codex with low-noise outputs and gate checks.", "source": ["topic"], "categories": ["claude-code", "claude-skill", "codex", "codex-skill", "skills", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/snakeying/Textum/blob/main/.claude/skills/textum/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install textum"}, "quality": {"stars": 41, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-18T16:42:20Z"}, "embedding_text": "textum. Textum PRD\u2192Scaffold\u2192Story workflow for Codex with low-noise outputs and gate checks. Categories: claude-code, claude-skill, codex, codex-skill, skills, vibe-coding. Platforms: claude_code."} {"id": "ee80687a42993ced933472b39619832e50858240ea6c7311f78684c1ffcc6541", "repo_url": "https://github.com/snakeying/textum", "name": "textum", "description": "Textum PRD\u2192Scaffold\u2192Story workflow for Codex with low-noise outputs and gate checks.", "source": ["topic"], "categories": ["claude-code", "claude-skill", "codex", "codex-skill", "skills", "vibe-coding"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/snakeying/Textum/blob/main/.codex/skills/textum/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install textum"}, "quality": {"stars": 41, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-18T16:42:20Z"}, "embedding_text": "textum. Textum PRD\u2192Scaffold\u2192Story workflow for Codex with low-noise outputs and gate checks. Categories: claude-code, claude-skill, codex, codex-skill, skills, vibe-coding. Platforms: claude_code."} {"id": "33f528a043e3ceab68b1f0a3923195c6f0bddd461920f988cbefbbdcf3e05032", "repo_url": "https://github.com/felixrieseberg/claude-coach", "name": "coach", "description": "Create personalized triathlon, marathon, and ultra-endurance training plans. Use when athletes ask for training plans, workout schedules, race preparation, or coaching advice. Can sync with Strava to analyze training history, or work from manually provided fitness data. Generates periodized plans with sport-specific workouts, zones, and race-day strategies.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skill", "garmin", "marathon", "strava", "triathlon", "zwift"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/felixrieseberg/claude-coach/blob/main/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coach"}, "quality": {"stars": 36, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-05T17:11:42Z"}, "embedding_text": "coach. Create personalized triathlon, marathon, and ultra-endurance training plans. Use when athletes ask for training plans, workout schedules, race preparation, or coaching advice. Can sync with Strava to analyze training history, or work from manually provided fitness data. Generates periodized plans with sport-specific workouts, zones, and race-day strategies. Categories: claude, claude-code, claude-skill, garmin, marathon, strava, triathlon, zwift. Platforms: claude_code."} {"id": "6d8f4cc72ff1a3e861ee0648b0455e0e8ec3adf006e19bc73c8e432039f2e29e", "repo_url": "https://github.com/ckelsoe/claude-skill-prompt-architect", "name": "prompt-architect", "description": "Analyzes and improves prompts using 27 research-backed frameworks across 7 intent categories. Use when a user wants to improve, rewrite, structure, or engineer a prompt \u2014 including requests like \"help me write a better prompt\", \"improve this prompt\", \"what framework should I use\", \"make this prompt more effective\", or any prompt engineering task. Recommends the right framework based on intent (create, transform, reason, critique, recover, clarify, agentic), asks targeted questions, and delivers a structured, high-quality result.", "source": ["topic"], "categories": ["claude-code", "claude-skill", "prompt-engineering", "prompt-frameworks", "prompt-improvement"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ckelsoe/claude-skill-prompt-architect/blob/main/prompt-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install prompt-architect"}, "quality": {"stars": 34, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-10T21:42:02Z"}, "embedding_text": "prompt-architect. Analyzes and improves prompts using 27 research-backed frameworks across 7 intent categories. Use when a user wants to improve, rewrite, structure, or engineer a prompt \u2014 including requests like \"help me write a better prompt\", \"improve this prompt\", \"what framework should I use\", \"make this prompt more effective\", or any prompt engineering task. Recommends the right framework based on intent (create, transform, reason, critique, recover, clarify, agentic), asks targeted questions, and delivers a structured, high-quality result. Categories: claude-code, claude-skill, prompt-engineering, prompt-frameworks, prompt-improvement. Platforms: claude_code."} -{"id": "11b3025b0df323ae5826c3c5a780939d8327974dc9087e3d1c08a64fd42d6290", "repo_url": "https://github.com/iamzifei/gtd-coach-plugin", "name": "gtd-coach", "description": "Personal GTD (Getting Things Done) coach that helps users achieve their annual goals. Use when users mention goals, plans, daily tasks, productivity, time management, task tracking, reviews, or need help breaking down objectives into actionable steps. Automatically remembers user's goals and progress across conversations. Supports multiple languages.", "source": ["topic"], "categories": ["ai", "claude", "claude-code", "claude-skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/iamzifei/gtd-coach-plugin/blob/main/skills/gtd-coach/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gtd-coach"}, "quality": {"stars": 29, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-10T00:31:50Z"}, "embedding_text": "gtd-coach. Personal GTD (Getting Things Done) coach that helps users achieve their annual goals. Use when users mention goals, plans, daily tasks, productivity, time management, task tracking, reviews, or need help breaking down objectives into actionable steps. Automatically remembers user's goals and progress across conversations. Supports multiple languages. Categories: ai, claude, claude-code, claude-skill. Platforms: claude_code."} {"id": "c494753234700f81a3da4f8d497fe9fbed16d60812c262040c56acb3f74b6e03", "repo_url": "https://github.com/smixs/creative-director-skill", "name": "creative-director", "description": "AI creative director with recursive self-assessment. Generates concepts using world-class methodologies (SIT, TRIZ, Lateral Thinking, bisociation), scores against 6 weighted criteria with Cannes/D&AD/HumanKind calibration, and recursively refines until the 9+ threshold is reached. Accepts briefs in any format \u2014 text, voice transcript, PDF, or raw notes. Use when the user asks to generate creative concepts, brainstorm campaign ideas, develop a Big Idea or campaign platform, evaluate or critique existing creative work, find consumer insights, or shares a brief for ideation. Do not use for media planning, production budgeting, brand identity/logo design, copywriting final drafts, or market research data collection.", "source": ["topic"], "categories": ["advertising", "agent-skill", "ai-agent", "ai-creative", "brainstorming", "cannes-lions", "claude-code", "claude-skill", "creative-director", "cursor", "gemini-cli", "ideation", "marketing", "prompt-engineering", "triz"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/smixs/creative-director-skill/blob/main/creative-director/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install creative-director"}, "quality": {"stars": 29, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-27T00:58:44Z"}, "embedding_text": "creative-director. AI creative director with recursive self-assessment. Generates concepts using world-class methodologies (SIT, TRIZ, Lateral Thinking, bisociation), scores against 6 weighted criteria with Cannes/D&AD/HumanKind calibration, and recursively refines until the 9+ threshold is reached. Accepts briefs in any format \u2014 text, voice transcript, PDF, or raw notes. Use when the user asks to generate creative concepts, brainstorm campaign ideas, develop a Big Idea or campaign platform, evaluate or critique existing creative work, find consumer insights, or shares a brief for ideation. Do not use for media planning, production budgeting, brand identity/logo design, copywriting final drafts, or market research data collection. Categories: advertising, agent-skill, ai-agent, ai-creative, brainstorming, cannes-lions, claude-code, claude-skill, creative-director, cursor, gemini-cli, ideation, marketing, prompt-engineering, triz. Platforms: claude_code."} {"id": "181bc6d24a480ffa6e7321f633362af3c936e730b617ad4474ca8b3a3d01d6b4", "repo_url": "https://github.com/phy041/claude-skill-reddit", "name": "reddit-cultivate", "description": "Reddit account cultivation for indie developers. Uses AppleScript to control real Chrome \u2014 undetectable by anti-bot systems. Checks karma, finds rising posts, drafts comments, and posts directly. Triggers on \"/reddit-cultivate\", \"check my reddit\", \"reddit maintenance\", \"find reddit opportunities\", \"build reddit karma\".", "source": ["topic"], "categories": ["agent-skills", "applescript", "automation", "chrome-automation", "claude-code", "claude-skill", "karma", "macos", "reddit", "reddit-bot"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/PHY041/claude-skill-reddit/blob/main/.claude/skills/reddit-cultivate/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reddit-cultivate"}, "quality": {"stars": 24, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-09T18:15:10Z"}, "embedding_text": "reddit-cultivate. Reddit account cultivation for indie developers. Uses AppleScript to control real Chrome \u2014 undetectable by anti-bot systems. Checks karma, finds rising posts, drafts comments, and posts directly. Triggers on \"/reddit-cultivate\", \"check my reddit\", \"reddit maintenance\", \"find reddit opportunities\", \"build reddit karma\". Categories: agent-skills, applescript, automation, chrome-automation, claude-code, claude-skill, karma, macos, reddit, reddit-bot. Platforms: claude_code."} {"id": "9bccb66e62a356ae3767d6c8a98645925e652082d0f01c4548221cb5d1013713", "repo_url": "https://github.com/phy041/claude-skill-reddit", "name": "reddit-post", "description": "Post to Reddit using AppleScript Chrome control. Use when user wants to post to Reddit, share on subreddits, or promote open source projects on Reddit. Triggers on \"post to reddit\", \"share on reddit\", \"reddit post\", \"submit to subreddit\", or any Reddit posting request.", "source": ["topic"], "categories": ["agent-skills", "applescript", "automation", "chrome-automation", "claude-code", "claude-skill", "karma", "macos", "reddit", "reddit-bot"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/PHY041/claude-skill-reddit/blob/main/.claude/skills/reddit-post/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install reddit-post"}, "quality": {"stars": 24, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-09T18:15:10Z"}, "embedding_text": "reddit-post. Post to Reddit using AppleScript Chrome control. Use when user wants to post to Reddit, share on subreddits, or promote open source projects on Reddit. Triggers on \"post to reddit\", \"share on reddit\", \"reddit post\", \"submit to subreddit\", or any Reddit posting request. Categories: agent-skills, applescript, automation, chrome-automation, claude-code, claude-skill, karma, macos, reddit, reddit-bot. Platforms: claude_code."} @@ -35661,8 +39833,6 @@ {"id": "f5855d17924969aebcd5ef7c675446d6d4c476345c8a77b688667b3448361b57", "repo_url": "https://github.com/bria-ai/bria-skill", "name": "image-utils", "description": "Classic image manipulation with Python Pillow - resize, crop, composite, format conversion, watermarks, brightness/contrast adjustments, and web optimization. Use this skill when post-processing AI-generated images, preparing images for web delivery, batch processing image directories, creating responsive image variants, or performing any deterministic pixel-level image operation. Works standalone or alongside bria-ai for post-processing generated images.", "source": ["topic"], "categories": ["agen", "agent-skill", "agent-skills", "ai", "ai-agents", "claude-code-skill", "claude-skills", "image-generation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Bria-AI/bria-skill/blob/main/skills/image-utils/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install image-utils"}, "quality": {"stars": 48, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:28Z"}, "embedding_text": "image-utils. Classic image manipulation with Python Pillow - resize, crop, composite, format conversion, watermarks, brightness/contrast adjustments, and web optimization. Use this skill when post-processing AI-generated images, preparing images for web delivery, batch processing image directories, creating responsive image variants, or performing any deterministic pixel-level image operation. Works standalone or alongside bria-ai for post-processing generated images. Categories: agen, agent-skill, agent-skills, ai, ai-agents, claude-code-skill, claude-skills, image-generation. Platforms: claude_code."} {"id": "ac9cd4ef6d8a2bda870ebf868b4b8a372b889e801002dd5ebcb0303f9312949c", "repo_url": "https://github.com/bria-ai/bria-skill", "name": "vgl", "description": "Maximum control over AI image generation \u2014 write structured VGL (Visual Generation Language) JSON that explicitly controls every visual attribute. Define exact object placement, lighting direction, camera angle, lens focal length, composition, color scheme, and artistic style as deterministic JSON instead of ambiguous natural language. Use this skill when you need reproducible image generation, precise control over scene composition, or want to convert a natural language image request into a structured JSON schema for Bria FIBO models. Triggers on requests for structured prompts, controllable generation, VGL JSON, deterministic image descriptions, or Bria/FIBO structured_prompt format.", "source": ["topic"], "categories": ["agen", "agent-skill", "agent-skills", "ai", "ai-agents", "claude-code-skill", "claude-skills", "image-generation"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Bria-AI/bria-skill/blob/main/skills/vgl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vgl"}, "quality": {"stars": 48, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:07:28Z"}, "embedding_text": "vgl. Maximum control over AI image generation \u2014 write structured VGL (Visual Generation Language) JSON that explicitly controls every visual attribute. Define exact object placement, lighting direction, camera angle, lens focal length, composition, color scheme, and artistic style as deterministic JSON instead of ambiguous natural language. Use this skill when you need reproducible image generation, precise control over scene composition, or want to convert a natural language image request into a structured JSON schema for Bria FIBO models. Triggers on requests for structured prompts, controllable generation, VGL JSON, deterministic image descriptions, or Bria/FIBO structured_prompt format. Categories: agen, agent-skill, agent-skills, ai, ai-agents, claude-code-skill, claude-skills, image-generation. Platforms: claude_code."} {"id": "744ab0c11afb0888bf88dca26fcd02f8e9b347417eaf73496eaeb3e794c9b907", "repo_url": "https://github.com/faugustdev/git-context-controller", "name": "gcc", "description": "Git Context Controller (GCC) - Manages agent memory as a versioned file system under .GCC/. This skill should be used when working on multi-step projects that benefit from structured memory persistence, milestone tracking, branching for alternative approaches, and cross-session context recovery. Triggers on /gcc commands or natural language like 'commit this progress', 'branch to try an alternative', 'merge results', 'recover context'.", "source": ["topic"], "categories": ["agent-skill", "agentic-workflows", "ai-memory", "claude-code-skill", "context-management", "devops-for-ai", "git-context-controller", "llm-agents", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/faugustdev/git-context-controller/blob/dev/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install gcc"}, "quality": {"stars": 34, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-26T00:57:47Z"}, "embedding_text": "gcc. Git Context Controller (GCC) - Manages agent memory as a versioned file system under .GCC/. This skill should be used when working on multi-step projects that benefit from structured memory persistence, milestone tracking, branching for alternative approaches, and cross-session context recovery. Triggers on /gcc commands or natural language like 'commit this progress', 'branch to try an alternative', 'merge results', 'recover context'. Categories: agent-skill, agentic-workflows, ai-memory, claude-code-skill, context-management, devops-for-ai, git-context-controller, llm-agents, skills. Platforms: claude_code."} -{"id": "46e7f2b95d07cdbd34fa02ae8b6633fffb6febff285e581c757bb85ec01b52e0", "repo_url": "https://github.com/netresearch/jira-skill", "name": "jira-communication", "description": "Use when interacting with Jira issues - searching, creating, updating, transitioning, commenting, logging work, downloading attachments, managing sprints, boards, issue links, fields, or users. Auto-triggers on Jira URLs and issue keys (PROJ-123).", "source": ["topic"], "categories": ["agent-skills", "ai-agent", "atlassian", "claude-code-skill", "jira", "mcp", "open-standard", "project-management", "skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/netresearch/jira-skill/blob/main/skills/jira-communication/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jira-communication"}, "quality": {"stars": 33, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:25:09Z"}, "embedding_text": "jira-communication. Use when interacting with Jira issues - searching, creating, updating, transitioning, commenting, logging work, downloading attachments, managing sprints, boards, issue links, fields, or users. Auto-triggers on Jira URLs and issue keys (PROJ-123). Categories: agent-skills, ai-agent, atlassian, claude-code-skill, jira, mcp, open-standard, project-management, skill. Platforms: claude_code."} -{"id": "38bf4500adcd4cbd56c1ce3890fb2caac4444d149753bd67888ee6a1bf745419", "repo_url": "https://github.com/netresearch/jira-skill", "name": "jira-syntax", "description": "Use when writing Jira descriptions or comments, converting Markdown to Jira wiki markup, using templates (bug reports, feature requests), or validating Jira syntax before submission.", "source": ["topic"], "categories": ["agent-skills", "ai-agent", "atlassian", "claude-code-skill", "jira", "mcp", "open-standard", "project-management", "skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/netresearch/jira-skill/blob/main/skills/jira-syntax/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jira-syntax"}, "quality": {"stars": 33, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T09:25:09Z"}, "embedding_text": "jira-syntax. Use when writing Jira descriptions or comments, converting Markdown to Jira wiki markup, using templates (bug reports, feature requests), or validating Jira syntax before submission. Categories: agent-skills, ai-agent, atlassian, claude-code-skill, jira, mcp, open-standard, project-management, skill. Platforms: claude_code."} {"id": "f196ce06cbade475311b3557b989234d0ba572bfcc9263fd71e7eccffb2140a9", "repo_url": "https://github.com/spillwavesolutions/mastering-langgraph-agent-skill", "name": "mastering-langgraph", "description": "Build stateful AI agents and agentic workflows with LangGraph in Python. Covers tool-using agents with LLM-tool loops, branching workflows, conversation memory, human-in-the-loop oversight, and production monitoring. Use when - (1) building agents that use tools and loop until task complete, (2) creating multi-step workflows with conditional branches, (3) adding persistence/memory across turns with checkpointers, (4) implementing human approval with interrupt(), (5) debugging via time-travel or LangSmith. Covers StateGraph, nodes, edges, add_conditional_edges, MessagesState, thread_id, Command objects, and ToolMessage handling. Examples include chatbots, calculator agents, and structured workflows.", "source": ["topic"], "categories": ["agentic-skill", "claude-code-skill", "langgraph", "langgraph-python"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/SpillwaveSolutions/mastering-langgraph-agent-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mastering-langgraph"}, "quality": {"stars": 25, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-07T22:28:08Z"}, "embedding_text": "mastering-langgraph. Build stateful AI agents and agentic workflows with LangGraph in Python. Covers tool-using agents with LLM-tool loops, branching workflows, conversation memory, human-in-the-loop oversight, and production monitoring. Use when - (1) building agents that use tools and loop until task complete, (2) creating multi-step workflows with conditional branches, (3) adding persistence/memory across turns with checkpointers, (4) implementing human approval with interrupt(), (5) debugging via time-travel or LangSmith. Covers StateGraph, nodes, edges, add_conditional_edges, MessagesState, thread_id, Command objects, and ToolMessage handling. Examples include chatbots, calculator agents, and structured workflows. Categories: agentic-skill, claude-code-skill, langgraph, langgraph-python. Platforms: claude_code."} {"id": "76143351eb0fd6e2bbb452262c7fc6dcb7a11da84b086ae676cf726595d96221", "repo_url": "https://github.com/agricidaniel/claude-shorts", "name": "shorts", "description": "Interactive longform-to-shortform video creator. Extracts viral-ready short clips from long videos using Claude as the orchestrator. Transcribes with faster-whisper (GPU), Claude scores and presents candidate segments interactively, user picks and adjusts, Remotion renders premium animated captions (Bold/Bounce/Clean styles), FFmpeg exports platform-optimized files (YouTube Shorts, TikTok, Instagram Reels). Use when user says \"shorts\", \"short clips\", \"shortform\", \"extract clips\", \"tiktok from video\", \"reels from video\", \"vertical clips\", or \"create shorts\".\n", "source": ["topic"], "categories": ["ai-agent", "captions", "claude", "claude-code", "claude-code-skill", "content-creation", "faster-whisper", "ffmpeg", "instagram-reels", "remotion", "short-form-video", "shortform", "tiktok", "vertical-video", "video-editing", "video-processing", "whisper", "youtube-shorts"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AgriciDaniel/claude-shorts/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install shorts"}, "quality": {"stars": 23, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T19:47:55Z"}, "embedding_text": "shorts. Interactive longform-to-shortform video creator. Extracts viral-ready short clips from long videos using Claude as the orchestrator. Transcribes with faster-whisper (GPU), Claude scores and presents candidate segments interactively, user picks and adjusts, Remotion renders premium animated captions (Bold/Bounce/Clean styles), FFmpeg exports platform-optimized files (YouTube Shorts, TikTok, Instagram Reels). Use when user says \"shorts\", \"short clips\", \"shortform\", \"extract clips\", \"tiktok from video\", \"reels from video\", \"vertical clips\", or \"create shorts\".\n Categories: ai-agent, captions, claude, claude-code, claude-code-skill, content-creation, faster-whisper, ffmpeg, instagram-reels, remotion, short-form-video, shortform, tiktok, vertical-video, video-editing, video-processing, whisper, youtube-shorts. Platforms: claude_code."} {"id": "bc56b4f0f110f28951208e740dca9d3a01cbd3893d7deee419bc70bf985e51b8", "repo_url": "https://github.com/agricidaniel/claude-youtube", "name": "youtube", "description": "The ultimate YouTube creator skill. Covers channel audits, video SEO, retention-engineered scripts, hook writing, thumbnail briefs, content strategy, content calendars, Shorts optimisation, analytics interpretation, monetisation planning, competitor research, cross-platform repurposing, upload metadata packages, and data-driven video idea generation. Triggers on: \"youtube\", \"channel\", \"video\", \"views\", \"subscribers\", \"watch time\", \"shorts\", \"thumbnail\", \"CTR\", \"retention\", \"monetize\", \"script\", \"hook\", \"upload\", \"youtube audit\", \"video ideas\", \"content calendar\", \"competitor analysis\", \"repurpose video\", \"youtube seo\", \"youtube strategy\", \"youtube analytics\".\n", "source": ["topic"], "categories": ["ai-tools", "claude", "claude-code", "claude-code-skill", "content-strategy", "seo", "youtube", "youtube-analytics", "youtube-api", "youtube-seo"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AgriciDaniel/claude-youtube/blob/main/skills/claude-youtube/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T19:47:56Z"}, "embedding_text": "youtube. The ultimate YouTube creator skill. Covers channel audits, video SEO, retention-engineered scripts, hook writing, thumbnail briefs, content strategy, content calendars, Shorts optimisation, analytics interpretation, monetisation planning, competitor research, cross-platform repurposing, upload metadata packages, and data-driven video idea generation. Triggers on: \"youtube\", \"channel\", \"video\", \"views\", \"subscribers\", \"watch time\", \"shorts\", \"thumbnail\", \"CTR\", \"retention\", \"monetize\", \"script\", \"hook\", \"upload\", \"youtube audit\", \"video ideas\", \"content calendar\", \"competitor analysis\", \"repurpose video\", \"youtube seo\", \"youtube strategy\", \"youtube analytics\".\n Categories: ai-tools, claude, claude-code, claude-code-skill, content-strategy, seo, youtube, youtube-analytics, youtube-api, youtube-seo. Platforms: claude_code."} @@ -35692,45 +39862,24 @@ {"id": "69145bf69f60be4eaeacc831d9b82419b5deadf1466dba6f163a8e9da3b366de", "repo_url": "https://github.com/spillwavesolutions/running-marketing-campaigns-agent-skill", "name": "running-marketing-campaigns", "description": "Plans, creates, and optimizes digital marketing campaigns including content strategy, social media, email marketing, SEO, and AI visibility (GEO). Generates UTM parameters and tracking URLs. Helps develop go-to-market strategies, campaign messaging, content calendars, and performance measurement frameworks. Use when asked to \"create a marketing campaign\", \"plan content strategy\", \"build email sequences\", \"set up UTM tracking\", \"analyze marketing metrics\", \"launch a product\", \"optimize for SEO\", \"improve AI visibility\", \"optimize for voice search\", \"set up IndexNow\", \"check accessibility for SEO\", or \"create social media previews\". Supports both marketing beginners and experienced marketers needing templates.\n", "source": ["topic"], "categories": ["agentic-skill", "claude-code-skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/SpillwaveSolutions/running-marketing-campaigns-agent-skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install running-marketing-campaigns"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-02T00:50:22Z"}, "embedding_text": "running-marketing-campaigns. Plans, creates, and optimizes digital marketing campaigns including content strategy, social media, email marketing, SEO, and AI visibility (GEO). Generates UTM parameters and tracking URLs. Helps develop go-to-market strategies, campaign messaging, content calendars, and performance measurement frameworks. Use when asked to \"create a marketing campaign\", \"plan content strategy\", \"build email sequences\", \"set up UTM tracking\", \"analyze marketing metrics\", \"launch a product\", \"optimize for SEO\", \"improve AI visibility\", \"optimize for voice search\", \"set up IndexNow\", \"check accessibility for SEO\", or \"create social media previews\". Supports both marketing beginners and experienced marketers needing templates.\n Categories: agentic-skill, claude-code-skill. Platforms: claude_code."} {"id": "5b9b0226e2551121d126eacf7148c604e14e7977403098ab40a769febfdf7c34", "repo_url": "https://github.com/jzocb/upgrade-guard", "name": "upgrade-guard", "description": "Safe OpenClaw upgrades with snapshot, pre-flight checks, controlled upgrade steps, post-verification, and emergency rollback. Never lose your working system to a bad update again.", "source": ["topic"], "categories": ["agent-skill", "ai-agents", "claude-code-skill", "clawdbot", "deployment", "devops", "openclaw", "rollback", "safe-upgrades"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jzOcb/upgrade-guard/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install upgrade-guard"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T00:24:21Z"}, "embedding_text": "upgrade-guard. Safe OpenClaw upgrades with snapshot, pre-flight checks, controlled upgrade steps, post-verification, and emergency rollback. Never lose your working system to a bad update again. Categories: agent-skill, ai-agents, claude-code-skill, clawdbot, deployment, devops, openclaw, rollback, safe-upgrades. Platforms: claude_code."} {"id": "c5ef8301fb87493afde1ad6bf85bc4a48919882c2b5fab1702a3e0c31bd1ec8a", "repo_url": "https://github.com/spillwavesolutions/plantuml", "name": "plantuml", "description": "Generate PlantUML diagrams from text descriptions and convert them to PNG/SVG images. Use when asked to \"create a diagram\", \"generate PlantUML\", \"convert puml to image\", \"extract diagrams from markdown\", or \"prepare markdown for Confluence\". Supports all PlantUML diagram types including UML (sequence, class, activity, state, component, deployment, use case, object, timing) and non-UML (ER diagrams, Gantt charts, JSON/YAML visualization, mindmaps, WBS, network diagrams, wireframes, and more).", "source": ["topic"], "categories": ["agentic-skill", "claude-code-skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/SpillwaveSolutions/plantuml/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install plantuml"}, "quality": {"stars": 10, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-12-29T16:28:22Z"}, "embedding_text": "plantuml. Generate PlantUML diagrams from text descriptions and convert them to PNG/SVG images. Use when asked to \"create a diagram\", \"generate PlantUML\", \"convert puml to image\", \"extract diagrams from markdown\", or \"prepare markdown for Confluence\". Supports all PlantUML diagram types including UML (sequence, class, activity, state, component, deployment, use case, object, timing) and non-UML (ER diagrams, Gantt charts, JSON/YAML visualization, mindmaps, WBS, network diagrams, wireframes, and more). Categories: agentic-skill, claude-code-skill. Platforms: claude_code."} -{"id": "8bd1e2fba363bf42bf1129c7641fc3824c43c2b3ef1d4d26c465813ef8aa7576", "repo_url": "https://github.com/sendaifun/skills", "name": "coingecko", "description": "Complete CoinGecko Solana API integration for token prices, DEX pool data, OHLCV charts, trades, and market analytics. Use for building trading bots, portfolio trackers, price feeds, and on-chain data applications.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/coingecko/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coingecko"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "coingecko. Complete CoinGecko Solana API integration for token prices, DEX pool data, OHLCV charts, trades, and market analytics. Use for building trading bots, portfolio trackers, price feeds, and on-chain data applications. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "020adc3a48d8acb035ee13711c1a78ed34fd69a3a660fa4128912012481f716c", "repo_url": "https://github.com/sendaifun/skills", "name": "ct-alpha", "description": "Crypto Twitter intelligence and alpha research. Search X/Twitter for real-time crypto narratives, trending tokens, yield strategies, smart money signals, and protocol research. Features TweetRank (PageRank-inspired credibility scoring), multi-signal token detection, coordinated raid detection, and dynamic tool discovery for execution suggestions. Solana-first but covers all major chains.\n", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/ct-alpha/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ct-alpha"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "ct-alpha. Crypto Twitter intelligence and alpha research. Search X/Twitter for real-time crypto narratives, trending tokens, yield strategies, smart money signals, and protocol research. Features TweetRank (PageRank-inspired credibility scoring), multi-signal token detection, coordinated raid detection, and dynamic tool discovery for execution suggestions. Solana-first but covers all major chains.\n Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "94b47289e34cd33ba96e039de7df724f1267e89ac16a7b5049db3a9a8c88c09d", "repo_url": "https://github.com/sendaifun/skills", "name": "debridge", "description": "Complete deBridge Protocol SDK for building cross-chain bridges, message passing, and token transfers on Solana. Use when building cross-chain applications, bridging assets between Solana and EVM chains, or implementing trustless external calls.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/debridge/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debridge"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "debridge. Complete deBridge Protocol SDK for building cross-chain bridges, message passing, and token transfers on Solana. Use when building cross-chain applications, bridging assets between Solana and EVM chains, or implementing trustless external calls. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "aa75e2e5aafa50c02dbe23624c9f66aa8e636594d70d5c933d158a35ff4e3bec", "repo_url": "https://github.com/sendaifun/skills", "name": "dflow", "description": "Complete DFlow trading protocol SDK - the single source of truth for integrating DFlow on Solana. Covers spot trading, prediction markets, Swap API, Metadata API, WebSocket streaming, and all DFlow tools.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/dflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dflow"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "dflow. Complete DFlow trading protocol SDK - the single source of truth for integrating DFlow on Solana. Covers spot trading, prediction markets, Swap API, Metadata API, WebSocket streaming, and all DFlow tools. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "678d2132caeb383b1f374939b8126f297ddb2df46fae440c7fe0c9526ed22d17", "repo_url": "https://github.com/sendaifun/skills", "name": "drift", "description": "Complete Drift Protocol SDK for building perpetual futures, spot trading, and DeFi applications on Solana. Use when building trading bots, integrating Drift markets, managing positions, or working with vaults.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/drift/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install drift"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "drift. Complete Drift Protocol SDK for building perpetual futures, spot trading, and DeFi applications on Solana. Use when building trading bots, integrating Drift markets, managing positions, or working with vaults. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "2ab61e038b5ede12e843b7c30b9a8c56b50e15c77c2b3b3a8838c76092241d7a", "repo_url": "https://github.com/sendaifun/skills", "name": "example-skill", "description": "Template and guide for creating skills. Demonstrates the standard skill structure with resources, docs, examples, and templates directories. Use this as a reference when building new protocol integrations.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/example-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install example-skill"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "example-skill. Template and guide for creating skills. Demonstrates the standard skill structure with resources, docs, examples, and templates directories. Use this as a reference when building new protocol integrations. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "ef0bae6b63e5dcdd909f8c8174face6506c289aa20f007e03012172188e37d9f", "repo_url": "https://github.com/sendaifun/skills", "name": "glam", "description": "Solana vault management via GLAM Protocol. Triggers: glam, glam-cli, glam-sdk, vault create/manage, tokenized vault, share class, DeFi vault, treasury, asset management, access control, delegate permissions, Jupiter swap, Drift perpetuals/spot/vaults, Kamino lending/borrow/vaults/farms, staking (Marinade/native/SPL/Sanctum/LST), cross-chain USDC (CCTP), timelock, subscription/redemption, NAV pricing, token transfer. Supports CLI and TypeScript SDK.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/glam/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install glam"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "glam. Solana vault management via GLAM Protocol. Triggers: glam, glam-cli, glam-sdk, vault create/manage, tokenized vault, share class, DeFi vault, treasury, asset management, access control, delegate permissions, Jupiter swap, Drift perpetuals/spot/vaults, Kamino lending/borrow/vaults/farms, staking (Marinade/native/SPL/Sanctum/LST), cross-chain USDC (CCTP), timelock, subscription/redemption, NAV pricing, token transfer. Supports CLI and TypeScript SDK. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "a75633c7467124102698a494033d96fda3a28b9691eaa68233ea2ce913dbaeed", "repo_url": "https://github.com/sendaifun/skills", "name": "helius-dflow", "description": "Build Solana trading applications combining DFlow trading APIs with Helius infrastructure. Covers spot swaps (imperative and declarative), prediction markets, real-time market streaming, Proof KYC, transaction submission via Sender, fee optimization, shred-level streaming via LaserStream, and wallet intelligence.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/helius-dflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install helius-dflow"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "helius-dflow. Build Solana trading applications combining DFlow trading APIs with Helius infrastructure. Covers spot swaps (imperative and declarative), prediction markets, real-time market streaming, Proof KYC, transaction submission via Sender, fee optimization, shred-level streaming via LaserStream, and wallet intelligence. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "502d93ec994a705ca5330205a3ab294bf91348d10cb3553270f30cda4f1b3922", "repo_url": "https://github.com/sendaifun/skills", "name": "helius-phantom", "description": "Build frontend Solana applications with Phantom Connect SDK and Helius infrastructure. Covers React, React Native, and browser SDK integration, transaction signing via Helius Sender, API key proxying, token gating, NFT minting, crypto payments, real-time updates, and secure frontend architecture.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/helius-phantom/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install helius-phantom"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "helius-phantom. Build frontend Solana applications with Phantom Connect SDK and Helius infrastructure. Covers React, React Native, and browser SDK integration, transaction signing via Helius Sender, API key proxying, token gating, NFT minting, crypto payments, real-time updates, and secure frontend architecture. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "ac6ae3f06acab5a0777d67e08b2aebb8ea363bcea4b56b6efbc5c7a207fc6207", "repo_url": "https://github.com/sendaifun/skills", "name": "helius", "description": "Build Solana applications with Helius infrastructure. Covers transaction sending (Sender), asset/NFT queries (DAS API), real-time streaming (WebSockets, Laserstream), event pipelines (webhooks), priority fees, wallet analysis, and agent onboarding.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/helius/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install helius"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "helius. Build Solana applications with Helius infrastructure. Covers transaction sending (Sender), asset/NFT queries (DAS API), real-time streaming (WebSockets, Laserstream), event pipelines (webhooks), priority fees, wallet analysis, and agent onboarding. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "b6c57d9450b09127f7927a69059a119c7d7619526f77c82380cf8d44df26c8ef", "repo_url": "https://github.com/sendaifun/skills", "name": "inco-svm", "description": "Build confidential dApps on Solana using Inco Lightning encryption \u2014 encrypted balances, private transfers, and attested decryption", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/inco/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install inco-svm"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "inco-svm. Build confidential dApps on Solana using Inco Lightning encryption \u2014 encrypted balances, private transfers, and attested decryption Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "d04fe353c7f53176e11722400121b7f2d3344694cc09e6eb55ac50d7e1d7258d", "repo_url": "https://github.com/sendaifun/skills", "name": "integrating-jupiter", "description": "Comprehensive guidance for integrating Jupiter APIs (Ultra Swap, Lend, Perps, Trigger, Recurring, Tokens, Price, Portfolio, Prediction Markets, Send, Studio, Lock, Routing). Use for endpoint selection, integration flows, error handling, and production hardening.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/jupiter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install integrating-jupiter"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "integrating-jupiter. Comprehensive guidance for integrating Jupiter APIs (Ultra Swap, Lend, Perps, Trigger, Recurring, Tokens, Price, Portfolio, Prediction Markets, Send, Studio, Lock, Routing). Use for endpoint selection, integration flows, error handling, and production hardening. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "703cc9aa1b66934f211b62b0f8b25e218e9d6a58ae917e6774a08da3766bc10d", "repo_url": "https://github.com/sendaifun/skills", "name": "kamino", "description": "Complete guide for Kamino Finance - Solana's leading DeFi protocol for lending, borrowing, liquidity management, and leverage trading. Covers klend-sdk (lending), kliquidity-sdk (automated liquidity strategies), scope-sdk (oracle aggregator), multiply/leverage operations, vaults, and obligation orders.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/kamino/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install kamino"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "kamino. Complete guide for Kamino Finance - Solana's leading DeFi protocol for lending, borrowing, liquidity management, and leverage trading. Covers klend-sdk (lending), kliquidity-sdk (automated liquidity strategies), scope-sdk (oracle aggregator), multiply/leverage operations, vaults, and obligation orders. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "324201e3b0c81c00c36f5fada0afa9515852a4d48cff9a02946672d6bb4794da", "repo_url": "https://github.com/sendaifun/skills", "name": "light-protocol", "description": "Complete guide for Light Protocol on Solana - includes ZK Compression for rent-free compressed tokens and PDAs using zero-knowledge proofs, and the Light Token Program for high-performance token standard (200x cheaper than SPL). Covers TypeScript SDK, JSON RPC methods, and complete integration patterns.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/light-protocol/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install light-protocol"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "light-protocol. Complete guide for Light Protocol on Solana - includes ZK Compression for rent-free compressed tokens and PDAs using zero-knowledge proofs, and the Light Token Program for high-performance token standard (200x cheaper than SPL). Covers TypeScript SDK, JSON RPC methods, and complete integration patterns. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "c486de949d3e6769fe80774108c649361edb7b16c30c7a699ee568c9310fd1ff", "repo_url": "https://github.com/sendaifun/skills", "name": "lulo", "description": "Complete guide for Lulo - Solana's premier lending aggregator. Covers API integration for deposits, withdrawals, balance queries, Protected/Boosted deposits, Custom deposits, and automated yield optimization across Kamino, Drift, MarginFi, and Jupiter.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/lulo/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install lulo"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "lulo. Complete guide for Lulo - Solana's premier lending aggregator. Covers API integration for deposits, withdrawals, balance queries, Protected/Boosted deposits, Custom deposits, and automated yield optimization across Kamino, Drift, MarginFi, and Jupiter. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "50e35b42b85561fea27f892dc82fa2807fc5b5d8b03a842b216091072afa6aa0", "repo_url": "https://github.com/sendaifun/skills", "name": "magicblock", "description": "Complete guide for MagicBlock Ephemeral Rollups - high-performance Solana execution with sub-10ms latency, gasless transactions, and Solana Plugins. Use when building real-time games, high-frequency trading, or any application requiring ultra-low latency on Solana.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/magicblock/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install magicblock"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "magicblock. Complete guide for MagicBlock Ephemeral Rollups - high-performance Solana execution with sub-10ms latency, gasless transactions, and Solana Plugins. Use when building real-time games, high-frequency trading, or any application requiring ultra-low latency on Solana. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "da4fe67b315fd07d4084f1c881b26a3374b2c3d778bd4ac1709fa742737dee9f", "repo_url": "https://github.com/sendaifun/skills", "name": "manifest", "description": "Build and integrate Manifest DEX on Solana using the Manifest SDK. Covers market reads, order placement, wrapper and global account setup, reverse and global order types, and frontend integration patterns.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/manifest/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install manifest"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "manifest. Build and integrate Manifest DEX on Solana using the Manifest SDK. Covers market reads, order placement, wrapper and global account setup, reverse and global order types, and frontend integration patterns. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "1e578ee222aa9025410b6675d84e1b864f54f0321fdf2b54bad56ef81ebc2ac2", "repo_url": "https://github.com/sendaifun/skills", "name": "marginfi", "description": "Complete guide for Marginfi - Solana's decentralized lending protocol for lending, borrowing, leveraged positions(looping) and flash loans. Covers account creation, deposits, borrows, repayments, withdrawals, flash loans, and leveraged positions using the @mrgnlabs/marginfi-client-v2 SDK.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/marginfi/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install marginfi"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "marginfi. Complete guide for Marginfi - Solana's decentralized lending protocol for lending, borrowing, leveraged positions(looping) and flash loans. Covers account creation, deposits, borrows, repayments, withdrawals, flash loans, and leveraged positions using the @mrgnlabs/marginfi-client-v2 SDK. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "2a473baa39280d6957fdc06419e3011e1b5445d5ea1d33ace615296e628fb71a", "repo_url": "https://github.com/sendaifun/skills", "name": "metaplex", "description": "Complete Metaplex Protocol guide for Solana NFTs and digital assets. Covers Core (next-gen NFTs), Token Metadata, Bubblegum (compressed NFTs), Candy Machine, Genesis (token launches), MPL-Hybrid, Inscriptions, DAS API, and the Umi framework. The single source of truth for all Metaplex integrations.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/metaplex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install metaplex"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "metaplex. Complete Metaplex Protocol guide for Solana NFTs and digital assets. Covers Core (next-gen NFTs), Token Metadata, Bubblegum (compressed NFTs), Candy Machine, Genesis (token launches), MPL-Hybrid, Inscriptions, DAS API, and the Umi framework. The single source of truth for all Metaplex integrations. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "ebd62c4ebd60a45885c2dad4418f892539fd27d211651077d5813d8d7d8a46c3", "repo_url": "https://github.com/sendaifun/skills", "name": "metengine-data-agent", "description": "Real-time smart money analytics API for Polymarket prediction markets, Hyperliquid perpetual futures, and Meteora Solana LP/AMM pools. 63 endpoints. Pay-per-request via x402 on Solana Mainnet USDC. No API keys.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["{'name': 'Hyperliquid', 'url': 'https://hyperliquid.xyz', 'endpoints': 18, 'domain': 'perpetual futures'}", "{'name': 'Meteora', 'url': 'https://meteora.ag', 'endpoints': 18, 'domain': 'Solana LP/AMM'}", "{'name': 'Polymarket', 'url': 'https://polymarket.com', 'endpoints': 27, 'domain': 'prediction markets'}"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/metengine/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install metengine-data-agent"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "metengine-data-agent. Real-time smart money analytics API for Polymarket prediction markets, Hyperliquid perpetual futures, and Meteora Solana LP/AMM pools. 63 endpoints. Pay-per-request via x402 on Solana Mainnet USDC. No API keys. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: {'name': 'Hyperliquid', 'url': 'https://hyperliquid.xyz', 'endpoints': 18, 'domain': 'perpetual futures'}, {'name': 'Meteora', 'url': 'https://meteora.ag', 'endpoints': 18, 'domain': 'Solana LP/AMM'}, {'name': 'Polymarket', 'url': 'https://polymarket.com', 'endpoints': 27, 'domain': 'prediction markets'}."} -{"id": "efde65a9b88ff037ea1ec4e364a92e20e43d2e24dadd121b2df86f8c3eff8e09", "repo_url": "https://github.com/sendaifun/skills", "name": "meteora", "description": "Complete Meteora DeFi SDK suite for building liquidity pools, AMMs, bonding curves, vaults, token launches, and zap operations on Solana. Use when integrating DLMM, DAMM v2, DAMM v1, Dynamic Bonding Curves, Alpha Vaults, Zap, or Stake-for-Fee functionality.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/meteora/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install meteora"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "meteora. Complete Meteora DeFi SDK suite for building liquidity pools, AMMs, bonding curves, vaults, token launches, and zap operations on Solana. Use when integrating DLMM, DAMM v2, DAMM v1, Dynamic Bonding Curves, Alpha Vaults, Zap, or Stake-for-Fee functionality. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "fadcdb0d2909d329e5525acd30155673aa14421017ab68d3e7a103ae28642a03", "repo_url": "https://github.com/sendaifun/skills", "name": "orca", "description": "Complete guide for Orca - Solana's leading concentrated liquidity AMM (CLMM). Covers Whirlpools SDK for swaps, liquidity provision, pool creation, position management, and fee harvesting on Solana and Eclipse networks.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/orca/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install orca"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "orca. Complete guide for Orca - Solana's leading concentrated liquidity AMM (CLMM). Covers Whirlpools SDK for swaps, liquidity provision, pool creation, position management, and fee harvesting on Solana and Eclipse networks. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "53e2dbe0c80555f7825d29bab6d141520611f7165fdeff8b93bbbf45999cb363", "repo_url": "https://github.com/sendaifun/skills", "name": "phantom-connect", "description": "Build wallet-connected applications with the Phantom Connect SDK for Solana. Use when integrating Phantom wallets into React, React Native, or vanilla JS/TS apps \u2014 including wallet connection, social login (Google/Apple), transaction signing, message signing, token-gated access, crypto payments, and NFT minting. Covers @phantom/react-sdk, @phantom/react-native-sdk, and @phantom/browser-sdk.\n", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/phantom-connect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install phantom-connect"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "phantom-connect. Build wallet-connected applications with the Phantom Connect SDK for Solana. Use when integrating Phantom wallets into React, React Native, or vanilla JS/TS apps \u2014 including wallet connection, social login (Google/Apple), transaction signing, message signing, token-gated access, crypto payments, and NFT minting. Covers @phantom/react-sdk, @phantom/react-native-sdk, and @phantom/browser-sdk.\n Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "6c917471d45b37ff4346badeac9a422adba5fd176bdc4c6fcf0894bbaad4e1fb", "repo_url": "https://github.com/sendaifun/skills", "name": "phantom-wallet-mcp", "description": "Execute wallet operations through the Phantom MCP server \u2014 get addresses, sign transactions, transfer tokens, buy tokens, and sign messages across Solana, Ethereum, Bitcoin, and Sui", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/phantom-wallet-mcp/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install phantom-wallet-mcp"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "phantom-wallet-mcp. Execute wallet operations through the Phantom MCP server \u2014 get addresses, sign transactions, transfer tokens, buy tokens, and sign messages across Solana, Ethereum, Bitcoin, and Sui Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "2f4159486d33c3484566f906fae4a40b22cea7cd5cb6d57b8b913db302677ecb", "repo_url": "https://github.com/sendaifun/skills", "name": "pinocchio-development", "description": "Comprehensive guide for building high-performance Solana programs using Pinocchio - the zero-dependency, zero-copy framework. Covers account validation, CPI patterns, optimization techniques, and migration from Anchor.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/pinocchio-development/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pinocchio-development"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "pinocchio-development. Comprehensive guide for building high-performance Solana programs using Pinocchio - the zero-dependency, zero-copy framework. Covers account validation, CPI patterns, optimization techniques, and migration from Anchor. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "9da64cd854062753ea1f1aec214aa8fa89f897c8728de2a4c36400957733e574", "repo_url": "https://github.com/sendaifun/skills", "name": "pumpfun", "description": "Complete PumpFun Protocol guide for building token launches, bonding curves, and AMM integrations on Solana. Covers Pump Program (token creation, buy/sell on bonding curves), PumpSwap AMM (liquidity pools, swaps), fee structures, creator fees, and SDK integration.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/pumpfun/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pumpfun"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "pumpfun. Complete PumpFun Protocol guide for building token launches, bonding curves, and AMM integrations on Solana. Covers Pump Program (token creation, buy/sell on bonding curves), PumpSwap AMM (liquidity pools, swaps), fee structures, creator fees, and SDK integration. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "2194366fb98e7798dd5cf530224f67868f429990cd5c5c6869060631bca44434", "repo_url": "https://github.com/sendaifun/skills", "name": "pyth", "description": "Complete guide for Pyth Network - decentralized oracle providing real-time price feeds for DeFi. Covers price feed integration, confidence intervals, EMA prices, on-chain CPI, off-chain fetching, and streaming updates for Solana applications.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/pyth/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pyth"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "pyth. Complete guide for Pyth Network - decentralized oracle providing real-time price feeds for DeFi. Covers price feed integration, confidence intervals, EMA prices, on-chain CPI, off-chain fetching, and streaming updates for Solana applications. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "88b840a240f87256ab19debbf7655c0daa0e3c2afe0c313b0a1a75a963f95bc7", "repo_url": "https://github.com/sendaifun/skills", "name": "quicknode", "description": "Quicknode blockchain infrastructure for Solana \u2014 RPC endpoints, DAS API (Digital Asset Standard) for NFTs and compressed assets, Yellowstone gRPC streaming, Priority Fee API, Streams (real-time data pipelines), Webhooks, Metis Jupiter Swap integration, IPFS storage, Key-Value Store, Admin API, and x402 pay-per-request RPC. Supports 80+ chains including Ethereum, Polygon, Arbitrum, Base, and more. Use when setting up Solana RPC infrastructure, querying NFTs/tokens/compressed assets via DAS API, building real-time gRPC streams, configuring data pipelines, estimating priority fees, or integrating Jupiter swaps via Metis. Triggers on mentions of Quicknode, qn_ methods, DAS API, getAssetsByOwner, searchAssets, Yellowstone, gRPC, Geyser, Streams, IPFS, Key-Value Store, qnLib, Metis, x402, or Quicknode RPC.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/quicknode/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install quicknode"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "quicknode. Quicknode blockchain infrastructure for Solana \u2014 RPC endpoints, DAS API (Digital Asset Standard) for NFTs and compressed assets, Yellowstone gRPC streaming, Priority Fee API, Streams (real-time data pipelines), Webhooks, Metis Jupiter Swap integration, IPFS storage, Key-Value Store, Admin API, and x402 pay-per-request RPC. Supports 80+ chains including Ethereum, Polygon, Arbitrum, Base, and more. Use when setting up Solana RPC infrastructure, querying NFTs/tokens/compressed assets via DAS API, building real-time gRPC streams, configuring data pipelines, estimating priority fees, or integrating Jupiter swaps via Metis. Triggers on mentions of Quicknode, qn_ methods, DAS API, getAssetsByOwner, searchAssets, Yellowstone, gRPC, Geyser, Streams, IPFS, Key-Value Store, qnLib, Metis, x402, or Quicknode RPC. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "2cd6d9a6ec39ed8c7f58dfcf07c60b3860e15094f03f7709cedd5cf056c14d9c", "repo_url": "https://github.com/sendaifun/skills", "name": "ranger-finance", "description": "Ranger Finance SDK for building perpetual futures trading applications on Solana. The first Solana Perps Aggregator - aggregates liquidity across multiple perp protocols (Drift, Flash, Adrena, Jupiter). Use when integrating perps trading, smart order routing, position management, or building AI trading agents.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/ranger-finance/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ranger-finance"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "ranger-finance. Ranger Finance SDK for building perpetual futures trading applications on Solana. The first Solana Perps Aggregator - aggregates liquidity across multiple perp protocols (Drift, Flash, Adrena, Jupiter). Use when integrating perps trading, smart order routing, position management, or building AI trading agents. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "0ff8efb75789a8dbaefc4ecb4bdaf1eee2aff47204f4449a426f1fb7e2f52ec3", "repo_url": "https://github.com/sendaifun/skills", "name": "raydium", "description": "Complete Raydium Protocol SDK - the single source of truth for integrating Raydium on Solana. Covers SDK, Trade API, CLMM, CPMM, AMM pools, LaunchLab token launches, farming, CPI integration, and all Raydium tools.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/raydium/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install raydium"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "raydium. Complete Raydium Protocol SDK - the single source of truth for integrating Raydium on Solana. Covers SDK, Trade API, CLMM, CPMM, AMM pools, LaunchLab token launches, farming, CPI integration, and all Raydium tools. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "bbc23985323bd13da557766b7955be3d75adda1c3f0fe99bde7c959f3b840ef6", "repo_url": "https://github.com/sendaifun/skills", "name": "sanctum", "description": "Complete Sanctum SDK for liquid staking, LST swaps, and Infinity pool operations on Solana. Use when working with LSTs (mSOL, jitoSOL, bSOL, INF), staking SOL, swapping between liquid staking tokens, or integrating Sanctum's liquidity infrastructure.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/sanctum/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sanctum"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "sanctum. Complete Sanctum SDK for liquid staking, LST swaps, and Infinity pool operations on Solana. Use when working with LSTs (mSOL, jitoSOL, bSOL, INF), staking SOL, swapping between liquid staking tokens, or integrating Sanctum's liquidity infrastructure. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "79878e31e98f6b1cd269b26f7c6e7eaae30c0876826ccf6d5f310ed3dd96ba45", "repo_url": "https://github.com/sendaifun/skills", "name": "solana-agent-kit", "description": "Comprehensive guide for building AI agents that interact with Solana blockchain using SendAI's Solana Agent Kit. Covers 60+ actions, LangChain/Vercel AI integration, MCP server setup, and autonomous agent patterns.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/solana-agent-kit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solana-agent-kit"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "solana-agent-kit. Comprehensive guide for building AI agents that interact with Solana blockchain using SendAI's Solana Agent Kit. Covers 60+ actions, LangChain/Vercel AI integration, MCP server setup, and autonomous agent patterns. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "87a229378c01f2aa25b6e9831ecd88b0d4324db1fd7fddeab9f7f64d358970b4", "repo_url": "https://github.com/sendaifun/skills", "name": "solana-kit-migration", "description": "Helps developers understand when to use @solana/kit vs @solana/web3.js (v1), provides migration guidance, API mappings, and handles edge cases for Solana JavaScript SDK transitions", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/solana-kit-migration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solana-kit-migration"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "solana-kit-migration. Helps developers understand when to use @solana/kit vs @solana/web3.js (v1), provides migration guidance, API mappings, and handles edge cases for Solana JavaScript SDK transitions Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "f2d4c57001b7c550d9c6fc3011ff34919bcfbdf28eb98d91baf1764eb397f465", "repo_url": "https://github.com/sendaifun/skills", "name": "solana-kit", "description": "Complete guide for @solana/kit - the modern, tree-shakeable, zero-dependency JavaScript SDK from Anza. Covers RPC connections, signers, transaction building with pipe, signing, sending, and account fetching with full TypeScript support.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/solana-kit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install solana-kit"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "solana-kit. Complete guide for @solana/kit - the modern, tree-shakeable, zero-dependency JavaScript SDK from Anza. Covers RPC connections, signers, transaction building with pipe, signing, sending, and account fetching with full TypeScript support. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "6ebb3f96a08cb25c78742d6a5048fb6e55c93212d6e6607e6a177a4a382839b6", "repo_url": "https://github.com/sendaifun/skills", "name": "squads", "description": "Complete guide for Squads Protocol - Solana's leading smart account and multisig infrastructure. Covers Squads V4 Multisig for team treasury management, Smart Account Program for account abstraction and programmable wallets, and Grid for stablecoin rails and fintech infrastructure.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/squads/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install squads"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "squads. Complete guide for Squads Protocol - Solana's leading smart account and multisig infrastructure. Covers Squads V4 Multisig for team treasury management, Smart Account Program for account abstraction and programmable wallets, and Grid for stablecoin rails and fintech infrastructure. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "063fc4240f06bc25274be238d8afcb47fc75dfc324aaf688af07df4d819d9550", "repo_url": "https://github.com/sendaifun/skills", "name": "surfpool", "description": "Complete Surfpool development environment for Solana - drop-in replacement for solana-test-validator with mainnet forking, cheatcodes, Infrastructure as Code, and Surfpool Studio. The fastest way to develop and test Solana programs.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/surfpool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install surfpool"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "surfpool. Complete Surfpool development environment for Solana - drop-in replacement for solana-test-validator with mainnet forking, cheatcodes, Infrastructure as Code, and Surfpool Studio. The fastest way to develop and test Solana programs. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "2eaf196186e9f5882ae25b1916310a93ae8fef2d34bc5f33729899bace3146be", "repo_url": "https://github.com/sendaifun/skills", "name": "svm", "description": "Explore Solana's architecture and protocol internals. Covers the SVM execution engine, account model, consensus, transactions, validator economics, data layer, development tooling, and token extensions using the Helius blog, SIMDs, and Agave/Firedancer source code.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/svm/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install svm"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "svm. Explore Solana's architecture and protocol internals. Covers the SVM execution engine, account model, consensus, transactions, validator economics, data layer, development tooling, and token extensions using the Helius blog, SIMDs, and Agave/Firedancer source code. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "0c9f97bc700bd38e17a4b36febbac459b2695a09e91fe5cc23b9e9d235c8e5c4", "repo_url": "https://github.com/sendaifun/skills", "name": "switchboard", "description": "Complete Switchboard Oracle Protocol SDK for Solana - the permissionless oracle solution for price feeds, on-demand data, VRF randomness, and real-time streaming via Surge. Covers TypeScript SDK, Rust integration, Oracle Quotes, and all Switchboard tools.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/switchboard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install switchboard"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "switchboard. Complete Switchboard Oracle Protocol SDK for Solana - the permissionless oracle solution for price feeds, on-demand data, VRF randomness, and real-time streaming via Surge. Covers TypeScript SDK, Rust integration, Oracle Quotes, and all Switchboard tools. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} -{"id": "fea2943b520082bfe100a73a7c38bb22eda1626079c4f76fc84f84455022b380", "repo_url": "https://github.com/sendaifun/skills", "name": "vulnhunter", "description": "Security vulnerability detection and variant analysis skill. Use when hunting for dangerous APIs, footgun patterns, error-prone configurations, and vulnerability variants across codebases. Combines sharp edges detection with variant hunting methodology.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/vulnhunter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vulnhunter"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "vulnhunter. Security vulnerability detection and variant analysis skill. Use when hunting for dangerous APIs, footgun patterns, error-prone configurations, and vulnerability variants across codebases. Combines sharp edges detection with variant hunting methodology. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "6c6a9b2f07b837534527f0491911d8e502764d43d9bfc2689980046fb48ecf82", "repo_url": "https://github.com/sendaifun/skills", "name": "zz-code-recon", "description": "Deep architectural context building for security audits. Use when conducting security reviews, building codebase understanding, mapping trust boundaries, or preparing for vulnerability analysis. Inspired by Trail of Bits methodology.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/skills/zz-code-recon/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install zz-code-recon"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "zz-code-recon. Deep architectural context building for security audits. Use when conducting security reviews, building codebase understanding, mapping trust boundaries, or preparing for vulnerability analysis. Inspired by Trail of Bits methodology. Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "4a26396da6f4464f14f9e5afca4fe76edad08f4fadec3174efaf8974b065c5d0", "repo_url": "https://github.com/sendaifun/skills", "name": "my-skill-name", "description": "A clear description of what this skill does and when to use it", "source": ["topic"], "categories": ["claude-code", "claude-skills", "claudecode", "skills", "solana"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sendaifun/skills/blob/main/template/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install my-skill-name"}, "quality": {"stars": 65, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T16:17:08Z"}, "embedding_text": "my-skill-name. A clear description of what this skill does and when to use it Categories: claude-code, claude-skills, claudecode, skills, solana. Platforms: claude_code."} {"id": "d52b267c15764f2300a010b7bf2adbea0eedab0473aee38c255f016e62eacc34", "repo_url": "https://github.com/kevin7qi/codex-collab", "name": "codex-collab", "description": "Delegate tasks to Codex \u2014 run prompts, code review, research, pair programming, or any collaboration mode. Use when the user asks to use Codex, send work to Codex, have Codex review/investigate/implement something, or collaborate with Codex. Also use proactively when you want external feedback, a second opinion, or a fresh pair of eyes on code, architecture, or decisions.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "codex", "skill"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Kevin7Qi/codex-collab/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install codex-collab"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T11:59:09Z"}, "embedding_text": "codex-collab. Delegate tasks to Codex \u2014 run prompts, code review, research, pair programming, or any collaboration mode. Use when the user asks to use Codex, send work to Codex, have Codex review/investigate/implement something, or collaborate with Codex. Also use proactively when you want external feedback, a second opinion, or a fresh pair of eyes on code, architecture, or decisions. Categories: claude, claude-code, claude-skills, codex, skill. Platforms: claude_code."} @@ -35738,12 +39887,6 @@ {"id": "2404b46ac3fba83cd693bbf154fad2910f826b4a2193a14f101dbf4fdb0b7f24", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "debugging-dbt-errors", "description": "Debugs and fixes dbt errors systematically. Use when working with dbt errors for:\n(1) Task mentions \"fix\", \"error\", \"broken\", \"failing\", \"debug\", \"wrong\", or \"not working\"\n(2) Compilation Error, Database Error, or test failures occur\n(3) Model produces incorrect output or unexpected results\n(4) Need to troubleshoot why a dbt command failed\nReads full error, checks upstream first, runs dbt build (not just compile) to verify fix.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AltimateAI/data-engineering-skills/blob/main/skills/dbt/debugging-dbt-errors/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debugging-dbt-errors"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T14:51:43Z"}, "embedding_text": "debugging-dbt-errors. Debugs and fixes dbt errors systematically. Use when working with dbt errors for:\n(1) Task mentions \"fix\", \"error\", \"broken\", \"failing\", \"debug\", \"wrong\", or \"not working\"\n(2) Compilation Error, Database Error, or test failures occur\n(3) Model produces incorrect output or unexpected results\n(4) Need to troubleshoot why a dbt command failed\nReads full error, checks upstream first, runs dbt build (not just compile) to verify fix. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} {"id": "d63da36e84aba0adfc15336fee142ab53bd4dab88aaf2335e4ca41277ff77a61", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "developing-incremental-models", "description": "Develops and troubleshoots dbt incremental models. Use when working with incremental materialization for:\n(1) Creating new incremental models (choosing strategy, unique_key, partition)\n(2) Task mentions \"incremental\", \"append\", \"merge\", \"upsert\", or \"late arriving data\"\n(3) Troubleshooting incremental failures (merge errors, partition pruning, schema drift)\n(4) Optimizing incremental performance or deciding table vs incremental\nGuides through strategy selection, handles common incremental gotchas.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AltimateAI/data-engineering-skills/blob/main/skills/dbt/developing-incremental-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install developing-incremental-models"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T14:51:43Z"}, "embedding_text": "developing-incremental-models. Develops and troubleshoots dbt incremental models. Use when working with incremental materialization for:\n(1) Creating new incremental models (choosing strategy, unique_key, partition)\n(2) Task mentions \"incremental\", \"append\", \"merge\", \"upsert\", or \"late arriving data\"\n(3) Troubleshooting incremental failures (merge errors, partition pruning, schema drift)\n(4) Optimizing incremental performance or deciding table vs incremental\nGuides through strategy selection, handles common incremental gotchas. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} {"id": "aad1c34b3c45964537b25b063048b2abbfa9c106c2c26db2e8e05b27d313d64f", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "documenting-dbt-models", "description": "Documents dbt models and columns in schema.yml. Use when working with dbt documentation for:\n(1) Adding model descriptions or column definitions to schema.yml\n(2) Task mentions \"document\", \"describe\", \"description\", \"dbt docs\", or \"schema.yml\"\n(3) Explaining business context, grain, meaning of data, or business rules\n(4) Preparing dbt docs generate or improving model discoverability\nMatches existing project documentation style and conventions before writing.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AltimateAI/data-engineering-skills/blob/main/skills/dbt/documenting-dbt-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install documenting-dbt-models"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T14:51:43Z"}, "embedding_text": "documenting-dbt-models. Documents dbt models and columns in schema.yml. Use when working with dbt documentation for:\n(1) Adding model descriptions or column definitions to schema.yml\n(2) Task mentions \"document\", \"describe\", \"description\", \"dbt docs\", or \"schema.yml\"\n(3) Explaining business context, grain, meaning of data, or business rules\n(4) Preparing dbt docs generate or improving model discoverability\nMatches existing project documentation style and conventions before writing. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} -{"id": "11893d606e9e3f3a0176853a8b038a2519e7c255366f2a39e8e7054d4d8254e8", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "migrating-sql-to-dbt", "description": "Converts legacy SQL to modular dbt models. Use when migrating SQL to dbt for:\n(1) Converting stored procedures, views, or raw SQL files to dbt models\n(2) Task mentions \"migrate\", \"convert\", \"legacy SQL\", \"transform to dbt\", or \"modernize\"\n(3) Breaking monolithic queries into modular layers (discovers project conventions first)\n(4) Porting existing data pipelines or ETL to dbt patterns\nChecks for existing models/sources, builds and validates layer by layer.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AltimateAI/data-engineering-skills/blob/main/skills/dbt/migrating-sql-to-dbt/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install migrating-sql-to-dbt"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T14:51:43Z"}, "embedding_text": "migrating-sql-to-dbt. Converts legacy SQL to modular dbt models. Use when migrating SQL to dbt for:\n(1) Converting stored procedures, views, or raw SQL files to dbt models\n(2) Task mentions \"migrate\", \"convert\", \"legacy SQL\", \"transform to dbt\", or \"modernize\"\n(3) Breaking monolithic queries into modular layers (discovers project conventions first)\n(4) Porting existing data pipelines or ETL to dbt patterns\nChecks for existing models/sources, builds and validates layer by layer. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} -{"id": "6d41ca12adbb563ea9e647cb534d0381abc9c06eb072ac1bd54a3784cba496a5", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "refactoring-dbt-models", "description": "Safely refactors dbt models with downstream impact analysis. Use when restructuring dbt models for:\n(1) Task mentions \"refactor\", \"restructure\", \"extract\", \"split\", \"break into\", or \"reorganize\"\n(2) Extracting CTEs to intermediate models or creating macros\n(3) Modifying model logic that has downstream consumers\n(4) Renaming columns, changing types, or reorganizing model dependencies\nAnalyzes all downstream dependencies BEFORE making changes.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AltimateAI/data-engineering-skills/blob/main/skills/dbt/refactoring-dbt-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install refactoring-dbt-models"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T14:51:43Z"}, "embedding_text": "refactoring-dbt-models. Safely refactors dbt models with downstream impact analysis. Use when restructuring dbt models for:\n(1) Task mentions \"refactor\", \"restructure\", \"extract\", \"split\", \"break into\", or \"reorganize\"\n(2) Extracting CTEs to intermediate models or creating macros\n(3) Modifying model logic that has downstream consumers\n(4) Renaming columns, changing types, or reorganizing model dependencies\nAnalyzes all downstream dependencies BEFORE making changes. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} -{"id": "4a5797de2b01da5d429c05456279d6fa94815390138a6c07151164b202600914", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "testing-dbt-models", "description": "Adds schema tests and data quality validation to dbt models. Use when working with dbt tests for:\n(1) Adding or modifying tests in schema.yml files\n(2) Task mentions \"test\", \"validate\", \"data quality\", \"unique\", \"not_null\", or \"accepted_values\"\n(3) Ensuring data integrity - primary keys, foreign keys, relationships\n(4) Debugging test failures or understanding why dbt test failed\nMatches existing project test patterns and YAML style before adding new tests.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AltimateAI/data-engineering-skills/blob/main/skills/dbt/testing-dbt-models/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install testing-dbt-models"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T14:51:43Z"}, "embedding_text": "testing-dbt-models. Adds schema tests and data quality validation to dbt models. Use when working with dbt tests for:\n(1) Adding or modifying tests in schema.yml files\n(2) Task mentions \"test\", \"validate\", \"data quality\", \"unique\", \"not_null\", or \"accepted_values\"\n(3) Ensuring data integrity - primary keys, foreign keys, relationships\n(4) Debugging test failures or understanding why dbt test failed\nMatches existing project test patterns and YAML style before adding new tests. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} -{"id": "8551d33a428b38719cd5a76e1a160a8d81a4978d8bf909f1b53940d6eb1b3e5b", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "finding-expensive-queries", "description": "Finds and ranks expensive Snowflake queries by cost, time, or data scanned. Use when:\n(1) User asks to find slow, expensive, or problematic queries\n(2) Task mentions \"query history\", \"top queries\", \"most expensive\", or \"slowest queries\"\n(3) Analyzing warehouse costs or identifying optimization candidates\n(4) Finding queries that scan the most data or have the most spillage\nReturns ranked list of queries with metrics and optimization recommendations.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AltimateAI/data-engineering-skills/blob/main/skills/snowflake/finding-expensive-queries/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install finding-expensive-queries"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T14:51:43Z"}, "embedding_text": "finding-expensive-queries. Finds and ranks expensive Snowflake queries by cost, time, or data scanned. Use when:\n(1) User asks to find slow, expensive, or problematic queries\n(2) Task mentions \"query history\", \"top queries\", \"most expensive\", or \"slowest queries\"\n(3) Analyzing warehouse costs or identifying optimization candidates\n(4) Finding queries that scan the most data or have the most spillage\nReturns ranked list of queries with metrics and optimization recommendations. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} -{"id": "7147aa0b878e45787d9c12981aeedebf7b2955f73ad59cb08afe36a8025a567a", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "optimizing-query-by-id", "description": "Optimizes Snowflake query performance using query ID from history. Use when optimizing Snowflake queries for:\n(1) User provides a Snowflake query_id (UUID format) to analyze or optimize\n(2) Task mentions \"slow query\", \"optimize\", \"query history\", or \"query profile\" with a query ID\n(3) Analyzing query performance metrics - bytes scanned, spillage, partition pruning\n(4) User references a previously run query that needs optimization\nFetches query profile, identifies bottlenecks, returns optimized SQL with expected improvements.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AltimateAI/data-engineering-skills/blob/main/skills/snowflake/optimizing-query-by-id/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install optimizing-query-by-id"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T14:51:43Z"}, "embedding_text": "optimizing-query-by-id. Optimizes Snowflake query performance using query ID from history. Use when optimizing Snowflake queries for:\n(1) User provides a Snowflake query_id (UUID format) to analyze or optimize\n(2) Task mentions \"slow query\", \"optimize\", \"query history\", or \"query profile\" with a query ID\n(3) Analyzing query performance metrics - bytes scanned, spillage, partition pruning\n(4) User references a previously run query that needs optimization\nFetches query profile, identifies bottlenecks, returns optimized SQL with expected improvements. Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} -{"id": "049ceb162ed1a90109f3e41e69c8a18b4cbed83df70238b25314a724bf8d2b7c", "repo_url": "https://github.com/altimateai/data-engineering-skills", "name": "optimizing-query-text", "description": "Optimizes Snowflake SQL query performance from provided query text. Use when optimizing Snowflake SQL for:\n(1) User provides or pastes a SQL query and asks to optimize, tune, or improve it\n(2) Task mentions \"slow query\", \"make faster\", \"improve performance\", \"optimize SQL\", or \"query tuning\"\n(3) Reviewing SQL for performance anti-patterns (function on filter column, implicit joins, etc.)\n(4) User asks why a query is slow or how to speed it up", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "data-engineering", "dbt"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/AltimateAI/data-engineering-skills/blob/main/skills/snowflake/optimizing-query-text/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install optimizing-query-text"}, "quality": {"stars": 64, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-06T14:51:43Z"}, "embedding_text": "optimizing-query-text. Optimizes Snowflake SQL query performance from provided query text. Use when optimizing Snowflake SQL for:\n(1) User provides or pastes a SQL query and asks to optimize, tune, or improve it\n(2) Task mentions \"slow query\", \"make faster\", \"improve performance\", \"optimize SQL\", or \"query tuning\"\n(3) Reviewing SQL for performance anti-patterns (function on filter column, implicit joins, etc.)\n(4) User asks why a query is slow or how to speed it up Categories: claude, claude-code, claude-skills, data-engineering, dbt. Platforms: claude_code."} {"id": "335e6b756bb625062896b9c135403bde1feb84fac64e6ce3bb4c664814c94122", "repo_url": "https://github.com/gaearon/woodshed", "name": "ascii-art", "description": "Use when creating ASCII art to guide your artistic approach", "source": ["topic"], "categories": ["claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gaearon/woodshed/blob/main/example/skills/ascii-art/experiment/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ascii-art"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-13T02:17:59Z"}, "embedding_text": "ascii-art. Use when creating ASCII art to guide your artistic approach Categories: claude-skills. Platforms: claude_code."} {"id": "2ff9a5b5b7abef18e1fed3a0638d76328553aa04d9074b8a796b1edfdeacd521", "repo_url": "https://github.com/gaearon/woodshed", "name": "ascii-art", "description": "Use when creating ASCII art to guide your artistic approach", "source": ["topic"], "categories": ["claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gaearon/woodshed/blob/main/example/skills/ascii-art/silly/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ascii-art"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-13T02:17:59Z"}, "embedding_text": "ascii-art. Use when creating ASCII art to guide your artistic approach Categories: claude-skills. Platforms: claude_code."} {"id": "b8c47cecefefdea4a2884e1880277c18d0c791c0216e3024cc263dd8ae5aa14c", "repo_url": "https://github.com/gaearon/woodshed", "name": "decision-graph", "description": "Use when building a deciduous decision graph to capture design evolution, architecture history, or how a codebase's design changed over time. Provides the deciduous CLI commands and graph structure guidelines.", "source": ["topic"], "categories": ["claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gaearon/woodshed/blob/main/example/skills/decision-graph/connective/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install decision-graph"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-13T02:17:59Z"}, "embedding_text": "decision-graph. Use when building a deciduous decision graph to capture design evolution, architecture history, or how a codebase's design changed over time. Provides the deciduous CLI commands and graph structure guidelines. Categories: claude-skills. Platforms: claude_code."} @@ -35756,11 +39899,8 @@ {"id": "275695a6daf82d16790c7bd9a5dcd0f8bbc1429a7df87c871394198df702f00b", "repo_url": "https://github.com/gaearon/woodshed", "name": "mul", "description": "Performs multiplication correctly", "source": ["topic"], "categories": ["claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gaearon/woodshed/blob/main/test/root/skills/mul/correct/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mul"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-13T02:17:59Z"}, "embedding_text": "mul. Performs multiplication correctly Categories: claude-skills. Platforms: claude_code."} {"id": "0838a5bc47bbb8845d84de2b0b6676ee8ceeda99949bb708eeedb7cc705e8945", "repo_url": "https://github.com/gaearon/woodshed", "name": "mul", "description": "Performs multiplication incorrectly", "source": ["topic"], "categories": ["claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gaearon/woodshed/blob/main/test/root/skills/mul/wrong/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install mul"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-13T02:17:59Z"}, "embedding_text": "mul. Performs multiplication incorrectly Categories: claude-skills. Platforms: claude_code."} {"id": "9f3cdb7f48d4681f20bbc1c9f50fcb3126b4bd9603544f1e17e6f637565d9dd8", "repo_url": "https://github.com/dianel555/dskills", "name": "ace-tool", "description": "Semantic codebase search, code indexing, and prompt enhancement via standalone CLI. Use when: (1) Semantic code search with natural language queries, (2) Code indexing for remote codebase retrieval, (3) Prompt enhancement with codebase context, (4) Before grep/find/glob operations for better accuracy, (5) Complex requirements clarification, (6) Large codebase navigation. Triggers: \"search context\", \"enhance prompt\", \"find code that\", \"index project\", \"clarify requirements\". IMPORTANT: Always use ace-tool BEFORE grep/find/glob for semantic-level code location.", "source": ["topic"], "categories": ["claude-skills", "codex-skills", "gemini-cli-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Dianel555/DSkills/blob/main/skills/ace-tool/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ace-tool"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T08:51:46Z"}, "embedding_text": "ace-tool. Semantic codebase search, code indexing, and prompt enhancement via standalone CLI. Use when: (1) Semantic code search with natural language queries, (2) Code indexing for remote codebase retrieval, (3) Prompt enhancement with codebase context, (4) Before grep/find/glob operations for better accuracy, (5) Complex requirements clarification, (6) Large codebase navigation. Triggers: \"search context\", \"enhance prompt\", \"find code that\", \"index project\", \"clarify requirements\". IMPORTANT: Always use ace-tool BEFORE grep/find/glob for semantic-level code location. Categories: claude-skills, codex-skills, gemini-cli-skills, skills. Platforms: claude_code."} -{"id": "8ad39c2dcf002b274fbd1b07ded86ca91c1a8f0ba8fc606d19535732591d86d9", "repo_url": "https://github.com/dianel555/dskills", "name": "exa", "description": "High-precision semantic search and content retrieval via Exa API. Use when: (1) Deep research requiring semantic understanding, (2) Code documentation and examples lookup, (3) Company/professional research, (4) AI-powered comprehensive research tasks, (5) URL content extraction with structured output. Triggers: \"research\", \"find papers\", \"code examples\", \"company info\", \"LinkedIn profiles\", \"deep analysis\". Differentiator: Exa excels at semantic/neural search while grok-search is better for real-time news and general web content.", "source": ["topic"], "categories": ["claude-skills", "codex-skills", "gemini-cli-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Dianel555/DSkills/blob/main/skills/exa/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install exa"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T08:51:46Z"}, "embedding_text": "exa. High-precision semantic search and content retrieval via Exa API. Use when: (1) Deep research requiring semantic understanding, (2) Code documentation and examples lookup, (3) Company/professional research, (4) AI-powered comprehensive research tasks, (5) URL content extraction with structured output. Triggers: \"research\", \"find papers\", \"code examples\", \"company info\", \"LinkedIn profiles\", \"deep analysis\". Differentiator: Exa excels at semantic/neural search while grok-search is better for real-time news and general web content. Categories: claude-skills, codex-skills, gemini-cli-skills, skills. Platforms: claude_code."} {"id": "efdddeb19844a3daefd93c6865b83302c1026710516383650d07ef246e0e005d", "repo_url": "https://github.com/dianel555/dskills", "name": "grok-search", "description": "Enhanced web search and real-time content retrieval via Grok API with forced tool routing. Use when: (1) Web search / information retrieval / fact-checking, (2) Webpage content extraction / URL parsing, (3) Breaking knowledge cutoff limits for current information, (4) Real-time news and technical documentation, (5) Multi-source information aggregation. Triggers: \"search for\", \"find information about\", \"latest news\", \"current\", \"fetch webpage\", \"get content from URL\". IMPORTANT: This skill REPLACES built-in WebSearch/WebFetch with Grok Search tools.", "source": ["topic"], "categories": ["claude-skills", "codex-skills", "gemini-cli-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Dianel555/DSkills/blob/main/skills/grok-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install grok-search"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T08:51:46Z"}, "embedding_text": "grok-search. Enhanced web search and real-time content retrieval via Grok API with forced tool routing. Use when: (1) Web search / information retrieval / fact-checking, (2) Webpage content extraction / URL parsing, (3) Breaking knowledge cutoff limits for current information, (4) Real-time news and technical documentation, (5) Multi-source information aggregation. Triggers: \"search for\", \"find information about\", \"latest news\", \"current\", \"fetch webpage\", \"get content from URL\". IMPORTANT: This skill REPLACES built-in WebSearch/WebFetch with Grok Search tools. Categories: claude-skills, codex-skills, gemini-cli-skills, skills. Platforms: claude_code."} {"id": "706609f828a54ebbc1c3d4f72dd3ec84b53f68bea2395b26f9f6a8eab2ff62e0", "repo_url": "https://github.com/dianel555/dskills", "name": "sequential-think", "description": "Multi-step reasoning engine for complex analysis and systematic problem solving. Use when: (1) Complex debugging scenarios with multiple layers, (2) Architectural analysis and system design, (3) Problems requiring hypothesis testing and validation, (4) Multi-component failure investigation, (5) Performance bottleneck identification. Triggers: \"--think\", \"--think-hard\", \"--ultrathink\", \"analyze step by step\", \"break down this problem\", \"systematic analysis\". IMPORTANT: Do NOT use for simple single-step tasks.", "source": ["topic"], "categories": ["claude-skills", "codex-skills", "gemini-cli-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Dianel555/DSkills/blob/main/skills/sequential-think/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sequential-think"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T08:51:46Z"}, "embedding_text": "sequential-think. Multi-step reasoning engine for complex analysis and systematic problem solving. Use when: (1) Complex debugging scenarios with multiple layers, (2) Architectural analysis and system design, (3) Problems requiring hypothesis testing and validation, (4) Multi-component failure investigation, (5) Performance bottleneck identification. Triggers: \"--think\", \"--think-hard\", \"--ultrathink\", \"analyze step by step\", \"break down this problem\", \"systematic analysis\". IMPORTANT: Do NOT use for simple single-step tasks. Categories: claude-skills, codex-skills, gemini-cli-skills, skills. Platforms: claude_code."} -{"id": "d75777cd9962b08f494a097df68ba4b509cd35781c888a1c722fd95dd853c8b2", "repo_url": "https://github.com/dianel555/dskills", "name": "serena", "description": "Semantic code understanding with IDE-like symbol operations. Use when: (1) Large codebase analysis (>50 files), (2) Symbol-level operations (find, rename, refactor), (3) Cross-file reference tracking, (4) Project memory and session persistence, (5) Multi-language semantic navigation. Triggers: \"find symbol\", \"rename function\", \"find references\", \"symbol overview\", \"project memory\". IMPORTANT: Prioritize Serena's symbolic tools over file-based grep/read for code exploration.", "source": ["topic"], "categories": ["claude-skills", "codex-skills", "gemini-cli-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Dianel555/DSkills/blob/main/skills/serena/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install serena"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T08:51:46Z"}, "embedding_text": "serena. Semantic code understanding with IDE-like symbol operations. Use when: (1) Large codebase analysis (>50 files), (2) Symbol-level operations (find, rename, refactor), (3) Cross-file reference tracking, (4) Project memory and session persistence, (5) Multi-language semantic navigation. Triggers: \"find symbol\", \"rename function\", \"find references\", \"symbol overview\", \"project memory\". IMPORTANT: Prioritize Serena's symbolic tools over file-based grep/read for code exploration. Categories: claude-skills, codex-skills, gemini-cli-skills, skills. Platforms: claude_code."} -{"id": "94c735f8fccfa858baf038e7750d92464816d4533f52bc24233ed37914f42427", "repo_url": "https://github.com/dianel555/dskills", "name": "time", "description": "Time and timezone utilities for getting current time and converting between timezones. Use when: (1) Getting current time in any timezone, (2) Converting time between different timezones, (3) Working with IANA timezone names, (4) Scheduling across timezones, (5) Time-sensitive operations. Triggers: \"what time is it\", \"current time\", \"convert time\", \"timezone\", \"time in [city]\".", "source": ["topic"], "categories": ["claude-skills", "codex-skills", "gemini-cli-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Dianel555/DSkills/blob/main/skills/time/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install time"}, "quality": {"stars": 63, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-11T08:51:46Z"}, "embedding_text": "time. Time and timezone utilities for getting current time and converting between timezones. Use when: (1) Getting current time in any timezone, (2) Converting time between different timezones, (3) Working with IANA timezone names, (4) Scheduling across timezones, (5) Time-sensitive operations. Triggers: \"what time is it\", \"current time\", \"convert time\", \"timezone\", \"time in [city]\". Categories: claude-skills, codex-skills, gemini-cli-skills, skills. Platforms: claude_code."} {"id": "ac5f96fd689491f9ae736bc5a8debee81de1f632c85c4aca34d3f579e7ac78d2", "repo_url": "https://github.com/arabelatso/skills-4-se", "name": "abstract-domain-explorer", "description": "Applies abstract interpretation using different abstract domains (intervals, octagons, polyhedra, sign, congruence) to statically analyze program variables and infer invariants, value ranges, and relationships. Use when analyzing program properties, inferring loop invariants, detecting potential errors, or understanding variable relationships through static analysis.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "metaprogramming", "software-development", "software-engineering"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ArabelaTso/Skills-4-SE/blob/main/skills/abstract-domain-explorer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install abstract-domain-explorer"}, "quality": {"stars": 62, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-22T15:49:27Z"}, "embedding_text": "abstract-domain-explorer. Applies abstract interpretation using different abstract domains (intervals, octagons, polyhedra, sign, congruence) to statically analyze program variables and infer invariants, value ranges, and relationships. Use when analyzing program properties, inferring loop invariants, detecting potential errors, or understanding variable relationships through static analysis. Categories: claude, claude-code, claude-skills, metaprogramming, software-development, software-engineering. Platforms: claude_code."} {"id": "bd3d75f6e273dc871d78ebf7a932db8dcb5b8f13a5a60024a922d03f433f8024", "repo_url": "https://github.com/arabelatso/skills-4-se", "name": "abstract-invariant-generator", "description": "Uses abstract interpretation to automatically infer loop invariants, function preconditions, and postconditions for formal verification. Generates invariants that capture program behavior and support correctness proofs in Dafny, Isabelle, Coq, and other verification systems. Use when adding formal specifications to code, generating verification conditions, inferring contracts for functions, or discovering loop invariants for proofs.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "metaprogramming", "software-development", "software-engineering"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ArabelaTso/Skills-4-SE/blob/main/skills/abstract-invariant-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install abstract-invariant-generator"}, "quality": {"stars": 62, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-22T15:49:27Z"}, "embedding_text": "abstract-invariant-generator. Uses abstract interpretation to automatically infer loop invariants, function preconditions, and postconditions for formal verification. Generates invariants that capture program behavior and support correctness proofs in Dafny, Isabelle, Coq, and other verification systems. Use when adding formal specifications to code, generating verification conditions, inferring contracts for functions, or discovering loop invariants for proofs. Categories: claude, claude-code, claude-skills, metaprogramming, software-development, software-engineering. Platforms: claude_code."} {"id": "a233984649c3b39de39c8afa92b6fb7281170acf81536a2f79d2294c4df88429", "repo_url": "https://github.com/arabelatso/skills-4-se", "name": "abstract-state-analyzer", "description": "Performs abstract interpretation over source code to infer possible program states, variable ranges, and data properties without executing the program. Reports potential runtime errors including out-of-bounds accesses, null dereferences, type inconsistencies, division by zero, and integer overflows. Use when analyzing code for potential runtime errors, performing static analysis, checking safety properties, or verifying program behavior without execution.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "metaprogramming", "software-development", "software-engineering"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ArabelaTso/Skills-4-SE/blob/main/skills/abstract-state-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install abstract-state-analyzer"}, "quality": {"stars": 62, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-22T15:49:27Z"}, "embedding_text": "abstract-state-analyzer. Performs abstract interpretation over source code to infer possible program states, variable ranges, and data properties without executing the program. Reports potential runtime errors including out-of-bounds accesses, null dereferences, type inconsistencies, division by zero, and integer overflows. Use when analyzing code for potential runtime errors, performing static analysis, checking safety properties, or verifying program behavior without execution. Categories: claude, claude-code, claude-skills, metaprogramming, software-development, software-engineering. Platforms: claude_code."} @@ -35950,10 +40090,7 @@ {"id": "72b1aeee073b6b9094e6c57f473edbd971e9b6b027f06dc2c6ed10133a4749c0", "repo_url": "https://github.com/arabelatso/skills-4-se", "name": "vulnerability-root-cause-analyzer", "description": "Analyze vulnerable code to identify underlying root causes such as violated assumptions, incorrect invariants, missing validation checks, or unsafe component interactions. Use when investigating security vulnerabilities, CVEs, exploit code, or security audit findings. Infers why the vulnerability exists beyond surface symptoms, identifies systemic issues, and explains the chain of failures that enable exploitation.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-skills", "metaprogramming", "software-development", "software-engineering"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ArabelaTso/Skills-4-SE/blob/main/skills/vulnerability-root-cause-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vulnerability-root-cause-analyzer"}, "quality": {"stars": 62, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-22T15:49:27Z"}, "embedding_text": "vulnerability-root-cause-analyzer. Analyze vulnerable code to identify underlying root causes such as violated assumptions, incorrect invariants, missing validation checks, or unsafe component interactions. Use when investigating security vulnerabilities, CVEs, exploit code, or security audit findings. Infers why the vulnerability exists beyond surface symptoms, identifies systemic issues, and explains the chain of failures that enable exploitation. Categories: claude, claude-code, claude-skills, metaprogramming, software-development, software-engineering. Platforms: claude_code."} {"id": "8e24656183daf554399cea5033db51f745bbf387f2667e49136596310b8f3cf5", "repo_url": "https://github.com/geekjourneyx/md2wechat-lite", "name": "md2wechat-lite", "description": "Manages md2wx CLI for converting Markdown to WeChat Official Account drafts. Use when working with WeChat article publishing, Markdown to HTML conversion, or WeChat media upload.", "source": ["topic"], "categories": ["claude-skills", "markdown-to-wechat", "md2wechat", "openclaw-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/geekjourneyx/md2wechat-lite/blob/main/skills/md2wechat-lite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install md2wechat-lite"}, "quality": {"stars": 61, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-27T15:07:32Z"}, "embedding_text": "md2wechat-lite. Manages md2wx CLI for converting Markdown to WeChat Official Account drafts. Use when working with WeChat article publishing, Markdown to HTML conversion, or WeChat media upload. Categories: claude-skills, markdown-to-wechat, md2wechat, openclaw-skills. Platforms: claude_code."} {"id": "cbd1a0be35341e79cf164945088c4a01fbc470c33accca2f36d6f7fe62649f18", "repo_url": "https://github.com/athola/skrills", "name": "api-designer", "description": "Design RESTful APIs with best practices for consistency and usability", "source": ["topic"], "categories": ["claude-code", "claude-skills", "codex", "codex-cli", "codex-skills", "copilot", "copilot-skills", "mcp", "mcp-server", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athola/skrills/blob/master/assets/demo-skills/api-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install api-designer"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:21:58Z"}, "embedding_text": "api-designer. Design RESTful APIs with best practices for consistency and usability Categories: claude-code, claude-skills, codex, codex-cli, codex-skills, copilot, copilot-skills, mcp, mcp-server, skills. Platforms: claude_code."} -{"id": "8b8bd62c155b5ca7b6204f95451305b7f52ca12759af100c1e6bf592cae89bbb", "repo_url": "https://github.com/athola/skrills", "name": "coding-assistant", "description": "Provides coding assistance with best practices and code review", "source": ["topic"], "categories": ["claude-code", "claude-skills", "codex", "codex-cli", "codex-skills", "copilot", "copilot-skills", "mcp", "mcp-server", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athola/skrills/blob/master/assets/demo-skills/coding-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install coding-assistant"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:21:58Z"}, "embedding_text": "coding-assistant. Provides coding assistance with best practices and code review Categories: claude-code, claude-skills, codex, codex-cli, codex-skills, copilot, copilot-skills, mcp, mcp-server, skills. Platforms: claude_code."} -{"id": "b52cb5b2186484ccb060d3758d59e8f0bbd371ae6354ed736a02e9c0b46dd04e", "repo_url": "https://github.com/athola/skrills", "name": "debug-helper", "description": "Systematic debugging approach for identifying and fixing issues", "source": ["topic"], "categories": ["claude-code", "claude-skills", "codex", "codex-cli", "codex-skills", "copilot", "copilot-skills", "mcp", "mcp-server", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athola/skrills/blob/master/assets/demo-skills/debug-helper/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install debug-helper"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:21:58Z"}, "embedding_text": "debug-helper. Systematic debugging approach for identifying and fixing issues Categories: claude-code, claude-skills, codex, codex-cli, codex-skills, copilot, copilot-skills, mcp, mcp-server, skills. Platforms: claude_code."} {"id": "a1e4578a20080178aa777e6db52f01862bb54b5945cb286367924668e1228e3e", "repo_url": "https://github.com/athola/skrills", "name": "git-workflow", "description": "Git best practices for version control and collaboration", "source": ["topic"], "categories": ["claude-code", "claude-skills", "codex", "codex-cli", "codex-skills", "copilot", "copilot-skills", "mcp", "mcp-server", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athola/skrills/blob/master/assets/demo-skills/git-workflow/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install git-workflow"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:21:58Z"}, "embedding_text": "git-workflow. Git best practices for version control and collaboration Categories: claude-code, claude-skills, codex, codex-cli, codex-skills, copilot, copilot-skills, mcp, mcp-server, skills. Platforms: claude_code."} -{"id": "f3a724e22682952a5ddbaeea71cf1651ee3262555c9900a560b31ea9a89738f0", "repo_url": "https://github.com/athola/skrills", "name": "test-writer", "description": "Write comprehensive tests following TDD and BDD principles", "source": ["topic"], "categories": ["claude-code", "claude-skills", "codex", "codex-cli", "codex-skills", "copilot", "copilot-skills", "mcp", "mcp-server", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/athola/skrills/blob/master/assets/demo-skills/test-writer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-writer"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T15:21:58Z"}, "embedding_text": "test-writer. Write comprehensive tests following TDD and BDD principles Categories: claude-code, claude-skills, codex, codex-cli, codex-skills, copilot, copilot-skills, mcp, mcp-server, skills. Platforms: claude_code."} {"id": "5d8cea21a128c73f2294f595c3e19b4342a6333a46a359fd4b584589344306ba", "repo_url": "https://github.com/datadrivenconstruction/ddc_skills_for_ai_agents_in_construction", "name": "daily-progress-report", "description": "Generate automated daily progress reports from site data. Track work completed, labor hours, equipment usage, and weather conditions.", "source": ["topic"], "categories": ["aec-industry", "ai-agents", "automation", "bim", "claude-code", "claude-skills", "construction", "construction-management", "cost-estimation", "google-antigravity", "n8n", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction/blob/main/1_DDC_Toolkit/Analytics/daily-progress-report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install daily-progress-report"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-14T11:54:45Z"}, "embedding_text": "daily-progress-report. Generate automated daily progress reports from site data. Track work completed, labor hours, equipment usage, and weather conditions. Categories: aec-industry, ai-agents, automation, bim, claude-code, claude-skills, construction, construction-management, cost-estimation, google-antigravity, n8n, skills. Platforms: claude_code."} {"id": "61556793c6b1d0356aa9288adc0721c3a5f4a0466e87c1587a033c9a294ab190", "repo_url": "https://github.com/datadrivenconstruction/ddc_skills_for_ai_agents_in_construction", "name": "productivity-analyzer", "description": "Analyze labor productivity from site data. Compare planned vs actual, identify trends, benchmark against industry standards.", "source": ["topic"], "categories": ["aec-industry", "ai-agents", "automation", "bim", "claude-code", "claude-skills", "construction", "construction-management", "cost-estimation", "google-antigravity", "n8n", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction/blob/main/1_DDC_Toolkit/Analytics/productivity-analyzer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install productivity-analyzer"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-14T11:54:45Z"}, "embedding_text": "productivity-analyzer. Analyze labor productivity from site data. Compare planned vs actual, identify trends, benchmark against industry standards. Categories: aec-industry, ai-agents, automation, bim, claude-code, claude-skills, construction, construction-management, cost-estimation, google-antigravity, n8n, skills. Platforms: claude_code."} {"id": "95947387cd779d0f2ef9dcf982f71a96dff916750f60145a52abdb531cd1e012", "repo_url": "https://github.com/datadrivenconstruction/ddc_skills_for_ai_agents_in_construction", "name": "project-kpi-dashboard", "description": "Create interactive KPI dashboards for construction projects. Track schedule, cost, quality, and safety metrics in real-time.", "source": ["topic"], "categories": ["aec-industry", "ai-agents", "automation", "bim", "claude-code", "claude-skills", "construction", "construction-management", "cost-estimation", "google-antigravity", "n8n", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction/blob/main/1_DDC_Toolkit/Analytics/project-kpi-dashboard/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install project-kpi-dashboard"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-14T11:54:45Z"}, "embedding_text": "project-kpi-dashboard. Create interactive KPI dashboards for construction projects. Track schedule, cost, quality, and safety metrics in real-time. Categories: aec-industry, ai-agents, automation, bim, claude-code, claude-skills, construction, construction-management, cost-estimation, google-antigravity, n8n, skills. Platforms: claude_code."} @@ -36176,24 +40313,14 @@ {"id": "e1e9525375fcf7a781133d0caf51499d315e7aa99d3589c038cf5ec1cb1f02d0", "repo_url": "https://github.com/datadrivenconstruction/ddc_skills_for_ai_agents_in_construction", "name": "weather-impact-analysis", "description": "Analyze weather data impact on construction schedules. Predict weather delays, optimize work scheduling based on forecasts, and calculate weather-related risk factors for project planning.", "source": ["topic"], "categories": ["aec-industry", "ai-agents", "automation", "bim", "claude-code", "claude-skills", "construction", "construction-management", "cost-estimation", "google-antigravity", "n8n", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction/blob/main/5_DDC_Innovative/weather-impact-analysis/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install weather-impact-analysis"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-14T11:54:45Z"}, "embedding_text": "weather-impact-analysis. Analyze weather data impact on construction schedules. Predict weather delays, optimize work scheduling based on forecasts, and calculate weather-related risk factors for project planning. Categories: aec-industry, ai-agents, automation, bim, claude-code, claude-skills, construction, construction-management, cost-estimation, google-antigravity, n8n, skills. Platforms: claude_code."} {"id": "d9a9e9ac493762b9fc2a45353db8ff51536e88410d9113b4a4bc961883763a81", "repo_url": "https://github.com/karanjot786/agent-skills-cli", "name": "frontend-design", "description": "Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.", "source": ["topic"], "categories": ["agent-skills", "ai", "ai-agents", "antigravity", "claude-code", "claude-skills", "cli", "cursor", "developer-tools", "github-copilot", "llm", "marketplace", "openai", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Karanjot786/agent-skills-cli/blob/main/.agent/skills/frontend-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install frontend-design"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-27T05:57:54Z"}, "embedding_text": "frontend-design. Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics. Categories: agent-skills, ai, ai-agents, antigravity, claude-code, claude-skills, cli, cursor, developer-tools, github-copilot, llm, marketplace, openai, typescript. Platforms: claude_code."} {"id": "38cbeffa8374c59660c8592474df90deb35b922c5c658317f108522beaddbd45", "repo_url": "https://github.com/karanjot786/agent-skills-cli", "name": "remotion-best-practices", "description": "Best practices for Remotion - Video creation in React", "source": ["topic"], "categories": ["agent-skills", "ai", "ai-agents", "antigravity", "claude-code", "claude-skills", "cli", "cursor", "developer-tools", "github-copilot", "llm", "marketplace", "openai", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Karanjot786/agent-skills-cli/blob/main/.agent/skills/remotion-best-practices/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install remotion-best-practices"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-27T05:57:54Z"}, "embedding_text": "remotion-best-practices. Best practices for Remotion - Video creation in React Categories: agent-skills, ai, ai-agents, antigravity, claude-code, claude-skills, cli, cursor, developer-tools, github-copilot, llm, marketplace, openai, typescript. Platforms: claude_code."} -{"id": "84b29a009841cfd536f786c33fb69da42aedf95539953ba39a2c7c8708de4161", "repo_url": "https://github.com/karanjot786/agent-skills-cli", "name": "deep-researcher", "description": "Performs comprehensive, multi-layered research on any topic with structured analysis and synthesis of information from multiple sources. Use when the user needs thorough investigation, market research, technical deep-dives, due diligence, or comprehensive analysis on any subject.", "source": ["topic"], "categories": ["agent-skills", "ai", "ai-agents", "antigravity", "claude-code", "claude-skills", "cli", "cursor", "developer-tools", "github-copilot", "llm", "marketplace", "openai", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Karanjot786/agent-skills-cli/blob/main/skills/deep-researcher/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install deep-researcher"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-27T05:57:54Z"}, "embedding_text": "deep-researcher. Performs comprehensive, multi-layered research on any topic with structured analysis and synthesis of information from multiple sources. Use when the user needs thorough investigation, market research, technical deep-dives, due diligence, or comprehensive analysis on any subject. Categories: agent-skills, ai, ai-agents, antigravity, claude-code, claude-skills, cli, cursor, developer-tools, github-copilot, llm, marketplace, openai, typescript. Platforms: claude_code."} -{"id": "c849b987d939ae3ff64c3e5be4ead933490c0bef2b29d7dc3c356d83ae8fbcb4", "repo_url": "https://github.com/karanjot786/agent-skills-cli", "name": "test-skill", "description": "Brief description of what this skill does and when to use it.", "source": ["topic"], "categories": ["agent-skills", "ai", "ai-agents", "antigravity", "claude-code", "claude-skills", "cli", "cursor", "developer-tools", "github-copilot", "llm", "marketplace", "openai", "typescript"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Karanjot786/agent-skills-cli/blob/main/skills/test-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-skill"}, "quality": {"stars": 56, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-27T05:57:54Z"}, "embedding_text": "test-skill. Brief description of what this skill does and when to use it. Categories: agent-skills, ai, ai-agents, antigravity, claude-code, claude-skills, cli, cursor, developer-tools, github-copilot, llm, marketplace, openai, typescript. Platforms: claude_code."} {"id": "bcedd1127db857985609aaf91e4c33ff9ddfa74b0b70a46139c18777efa44ac0", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "skill-perfection", "description": "Use this skill when you need to QA audit and fix a plugin skill file. Provides a methodology for verifying skill content against official documentation, fixing issues in-place, and producing verification reports.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/.claude/skills-skill-perfection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-perfection"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "skill-perfection. Use this skill when you need to QA audit and fix a plugin skill file. Provides a methodology for verifying skill content against official documentation, fixing issues in-place, and producing verification reports. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} {"id": "e5a20a2a2d99eb4daba030eec01dd653533294a201216feec472ab132b18857d", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "skill-perfection", "description": "Use this skill when you need to QA audit and fix a plugin skill file. Provides a methodology for verifying skill content against official documentation, fixing issues in-place, and producing verification reports.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/.claude/skills/skill-perfection/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-perfection"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "skill-perfection. Use this skill when you need to QA audit and fix a plugin skill file. Provides a methodology for verifying skill content against official documentation, fixing issues in-place, and producing verification reports. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} {"id": "c8a59b545ddbc1430b452243a468f62df40d89814c36a6941b994e84e7ed3e38", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-advanced-module-composition", "description": "This skill should be used when the user asks to \"compose DSPy modules\", \"use Ensemble optimizer\", \"combine multiple programs\", \"use dspy.MultiChainComparison\", mentions \"ensemble voting\", \"module composition\", \"sequential pipelines\", or needs to build complex multi-module DSPy programs with ensemble patterns or multi-chain comparison.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-advanced-module-composition/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-advanced-module-composition"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-advanced-module-composition. This skill should be used when the user asks to \"compose DSPy modules\", \"use Ensemble optimizer\", \"combine multiple programs\", \"use dspy.MultiChainComparison\", mentions \"ensemble voting\", \"module composition\", \"sequential pipelines\", or needs to build complex multi-module DSPy programs with ensemble patterns or multi-chain comparison. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} -{"id": "f72bc57e8a92373c0dfcb58300953636a45059d4b6604637061bd07884186e0a", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-bootstrap-fewshot", "description": "This skill should be used when the user asks to \"bootstrap few-shot examples\", \"generate demonstrations\", \"use BootstrapFewShot\", \"optimize with limited data\", \"create training demos automatically\", mentions \"teacher model for few-shot\", \"10-50 training examples\", or wants automatic demonstration generation for a DSPy program without extensive compute.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-bootstrap-fewshot/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-bootstrap-fewshot"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-bootstrap-fewshot. This skill should be used when the user asks to \"bootstrap few-shot examples\", \"generate demonstrations\", \"use BootstrapFewShot\", \"optimize with limited data\", \"create training demos automatically\", mentions \"teacher model for few-shot\", \"10-50 training examples\", or wants automatic demonstration generation for a DSPy program without extensive compute. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} {"id": "b90d4ca36c58fca407f3843477a2b7e02a09889ed75a164ca7bfe7ad39358718", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-custom-module-design", "description": "This skill should be used when the user asks to \"create custom DSPy module\", \"design a DSPy module\", \"extend dspy.Module\", \"build reusable DSPy component\", mentions \"custom module patterns\", \"module serialization\", \"stateful modules\", \"module testing\", or needs to design production-quality custom DSPy modules with proper architecture, state management, and testing.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-custom-module-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-custom-module-design"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-custom-module-design. This skill should be used when the user asks to \"create custom DSPy module\", \"design a DSPy module\", \"extend dspy.Module\", \"build reusable DSPy component\", mentions \"custom module patterns\", \"module serialization\", \"stateful modules\", \"module testing\", or needs to design production-quality custom DSPy modules with proper architecture, state management, and testing. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} {"id": "42259f2d82da947316df571e7549088ea3a6a844cd146039570652cf7c20828e", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-debugging-observability", "description": "This skill should be used when the user asks to \"debug DSPy programs\", \"trace LLM calls\", \"monitor production DSPy\", \"use MLflow with DSPy\", mentions \"inspect_history\", \"custom callbacks\", \"observability\", \"production monitoring\", \"cost tracking\", or needs to debug, trace, and monitor DSPy applications in development and production.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-debugging-observability/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-debugging-observability"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-debugging-observability. This skill should be used when the user asks to \"debug DSPy programs\", \"trace LLM calls\", \"monitor production DSPy\", \"use MLflow with DSPy\", mentions \"inspect_history\", \"custom callbacks\", \"observability\", \"production monitoring\", \"cost tracking\", or needs to debug, trace, and monitor DSPy applications in development and production. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} -{"id": "8a313095502d45da385ade6ef0155052e6bb64f41e9d7a54c3c35152e8e9504f", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-evaluation-suite", "description": "This skill should be used when the user asks to \"evaluate a DSPy program\", \"test my DSPy module\", \"measure performance\", \"create evaluation metrics\", \"use answer_exact_match or SemanticF1\", mentions \"Evaluate class\", \"comparing programs\", \"establishing baselines\", or needs to systematically test and measure DSPy program quality with custom or built-in metrics.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-evaluation-suite/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-evaluation-suite"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-evaluation-suite. This skill should be used when the user asks to \"evaluate a DSPy program\", \"test my DSPy module\", \"measure performance\", \"create evaluation metrics\", \"use answer_exact_match or SemanticF1\", mentions \"Evaluate class\", \"comparing programs\", \"establishing baselines\", or needs to systematically test and measure DSPy program quality with custom or built-in metrics. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} -{"id": "d0b8c068c11ae7273af0b243c1c7c325b72d9172e5b90fa711a3a20aebb7a57b", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-finetune-bootstrap", "description": "This skill should be used when the user asks to \"fine-tune a DSPy model\", \"distill a program into weights\", \"use BootstrapFinetune\", \"create a student model\", \"reduce inference costs with fine-tuning\", mentions \"model distillation\", \"teacher-student training\", or wants to deploy a DSPy program as fine-tuned weights for production efficiency.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-finetune-bootstrap/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-finetune-bootstrap"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-finetune-bootstrap. This skill should be used when the user asks to \"fine-tune a DSPy model\", \"distill a program into weights\", \"use BootstrapFinetune\", \"create a student model\", \"reduce inference costs with fine-tuning\", mentions \"model distillation\", \"teacher-student training\", or wants to deploy a DSPy program as fine-tuned weights for production efficiency. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} -{"id": "1ed2ee2e88c74c7b9dc4e0b06eae5603dcc18babb9c3f4f56d153543ca835cf0", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-gepa-reflective", "description": "This skill should be used when the user asks to \"optimize an agent with GEPA\", \"use reflective optimization\", \"optimize ReAct agents\", \"provide feedback metrics\", mentions \"GEPA optimizer\", \"LLM reflection\", \"execution trajectories\", \"agentic systems optimization\", or needs to optimize complex multi-step agents using textual feedback on execution traces.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-gepa-reflective/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-gepa-reflective"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-gepa-reflective. This skill should be used when the user asks to \"optimize an agent with GEPA\", \"use reflective optimization\", \"optimize ReAct agents\", \"provide feedback metrics\", mentions \"GEPA optimizer\", \"LLM reflection\", \"execution trajectories\", \"agentic systems optimization\", or needs to optimize complex multi-step agents using textual feedback on execution traces. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} -{"id": "a16504cba01a2e6910681d049ffdec9c48e33d8cf63507300b6b4f333de690e7", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-haystack-integration", "description": "This skill should be used when the user asks to \"integrate DSPy with Haystack\", \"optimize Haystack prompts using DSPy\", \"use DSPy to improve Haystack pipeline\", mentions \"Haystack pipeline optimization\", \"combining DSPy and Haystack\", \"extract DSPy prompt for Haystack\", or wants to use DSPy's optimization capabilities to automatically improve prompts in existing Haystack pipelines.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-haystack-integration/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-haystack-integration"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-haystack-integration. This skill should be used when the user asks to \"integrate DSPy with Haystack\", \"optimize Haystack prompts using DSPy\", \"use DSPy to improve Haystack pipeline\", mentions \"Haystack pipeline optimization\", \"combining DSPy and Haystack\", \"extract DSPy prompt for Haystack\", or wants to use DSPy's optimization capabilities to automatically improve prompts in existing Haystack pipelines. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} -{"id": "10697a33a86667938bab680a12a5c66f71d6a7676da883a835272fe79a7e50f3", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-miprov2-optimizer", "description": "This skill should be used when the user asks to \"optimize a DSPy program\", \"use MIPROv2\", \"tune instructions and demos\", \"get best DSPy performance\", \"run Bayesian optimization\", mentions \"state-of-the-art DSPy optimizer\", \"joint instruction tuning\", or needs maximum performance from a DSPy program with substantial training data (200+ examples).", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-miprov2-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-miprov2-optimizer"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-miprov2-optimizer. This skill should be used when the user asks to \"optimize a DSPy program\", \"use MIPROv2\", \"tune instructions and demos\", \"get best DSPy performance\", \"run Bayesian optimization\", mentions \"state-of-the-art DSPy optimizer\", \"joint instruction tuning\", or needs maximum performance from a DSPy program with substantial training data (200+ examples). Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} {"id": "a062417e12d1c19a2b8b8fcc2fdeac84a1c5d0491bf6e8d7f49d05836524bbd2", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-optimize-anything", "description": "Universal text artifact optimizer using GEPA's optimize_anything API for code, prompts, agent architectures, configs, and more", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-optimize-anything/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-optimize-anything"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-optimize-anything. Universal text artifact optimizer using GEPA's optimize_anything API for code, prompts, agent architectures, configs, and more Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} {"id": "3a68e0a56e682b990ab268dc2896f3551e5d4a187f15ce9e4f58a6cc31c9304c", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-output-refinement-constraints", "description": "This skill should be used when the user asks to \"refine DSPy outputs\", \"enforce constraints\", \"use dspy.Refine\", \"select best output\", \"use dspy.BestOfN\", mentions \"output validation\", \"constraint checking\", \"multi-attempt generation\", \"reward function\", or needs to improve output quality through iterative refinement or best-of-N selection with custom constraints.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-output-refinement-constraints/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-output-refinement-constraints"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-output-refinement-constraints. This skill should be used when the user asks to \"refine DSPy outputs\", \"enforce constraints\", \"use dspy.Refine\", \"select best output\", \"use dspy.BestOfN\", mentions \"output validation\", \"constraint checking\", \"multi-attempt generation\", \"reward function\", or needs to improve output quality through iterative refinement or best-of-N selection with custom constraints. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} -{"id": "06cf60318cff6209a8d8fed1ef261680d45a975e53ac79209777e3c288d54cb5", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-rag-pipeline", "description": "This skill should be used when the user asks to \"build a RAG pipeline\", \"create retrieval augmented generation\", \"use ColBERTv2 in DSPy\", \"set up a retriever in DSPy\", mentions \"RAG with DSPy\", \"context retrieval\", \"multi-hop RAG\", or needs to build a DSPy system that retrieves external knowledge to answer questions with grounded, factual responses.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-rag-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-rag-pipeline"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-rag-pipeline. This skill should be used when the user asks to \"build a RAG pipeline\", \"create retrieval augmented generation\", \"use ColBERTv2 in DSPy\", \"set up a retriever in DSPy\", mentions \"RAG with DSPy\", \"context retrieval\", \"multi-hop RAG\", or needs to build a DSPy system that retrieves external knowledge to answer questions with grounded, factual responses. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} {"id": "ab6bde1bbdb00fe54887e578dfb4759a219d4e4d496624804969664ada9584ed", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-react-agent-builder", "description": "This skill should be used when the user asks to \"create a ReAct agent\", \"build an agent with tools\", \"implement tool-calling agent\", \"use dspy.ReAct\", mentions \"agent with tools\", \"reasoning and acting\", \"multi-step agent\", \"agent optimization with GEPA\", or needs to build production agents that use tools to solve complex tasks.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-react-agent-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-react-agent-builder"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-react-agent-builder. This skill should be used when the user asks to \"create a ReAct agent\", \"build an agent with tools\", \"implement tool-calling agent\", \"use dspy.ReAct\", mentions \"agent with tools\", \"reasoning and acting\", \"multi-step agent\", \"agent optimization with GEPA\", or needs to build production agents that use tools to solve complex tasks. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} -{"id": "3d32c888a2efdefecd42a00107226d7c5f2597fc4604a8cf3db29ab9d52cb104", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-signature-designer", "description": "This skill should be used when the user asks to \"create a DSPy signature\", \"define inputs and outputs\", \"design a signature\", \"use InputField or OutputField\", \"add type hints to DSPy\", mentions \"signature class\", \"type-safe DSPy\", \"Pydantic models in DSPy\", or needs to define what a DSPy module should do with structured inputs and outputs.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-signature-designer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-signature-designer"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-signature-designer. This skill should be used when the user asks to \"create a DSPy signature\", \"define inputs and outputs\", \"design a signature\", \"use InputField or OutputField\", \"add type hints to DSPy\", mentions \"signature class\", \"type-safe DSPy\", \"Pydantic models in DSPy\", or needs to define what a DSPy module should do with structured inputs and outputs. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} {"id": "6ca6887c7905954043b723b7f46e6f1977e357fef6171215c19bf2a976968db7", "repo_url": "https://github.com/omidzamani/dspy-skills", "name": "dspy-simba-optimizer", "description": "This skill should be used when the user asks to \"optimize with SIMBA\", \"use Bayesian optimization\", \"optimize agents with custom feedback\", mentions \"SIMBA optimizer\", \"mini-batch optimization\", \"statistical optimization\", \"lightweight optimizer\", or needs an alternative to MIPROv2/GEPA for programs with rich feedback signals.", "source": ["topic"], "categories": ["agent-skills", "claude-code", "claude-skills", "dspy", "llm", "prompt-optimization", "rag"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/OmidZamani/dspy-skills/blob/master/skills/dspy-simba-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dspy-simba-optimizer"}, "quality": {"stars": 53, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T12:49:43Z"}, "embedding_text": "dspy-simba-optimizer. This skill should be used when the user asks to \"optimize with SIMBA\", \"use Bayesian optimization\", \"optimize agents with custom feedback\", mentions \"SIMBA optimizer\", \"mini-batch optimization\", \"statistical optimization\", \"lightweight optimizer\", or needs an alternative to MIPROv2/GEPA for programs with rich feedback signals. Categories: agent-skills, claude-code, claude-skills, dspy, llm, prompt-optimization, rag. Platforms: claude_code."} {"id": "fc581e3963796b94fbb67b9c9efbc3b3349972d808b1d6824a9ee1db2e3b56ce", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "architecture-review", "description": "Conducts a comprehensive multi-perspective architecture review using ALL architecture team members. Use when the user requests \"Start architecture review\", \"Full architecture review\", \"Review architecture for version X.Y.Z\", \"Conduct comprehensive review\", or when they want assessment from multiple perspectives. Do NOT use for single-specialist reviews (use specialist-review instead) or for status checks (use architecture-status instead).", "source": ["topic"], "categories": ["adr", "architectural-decision-records", "architecture", "architecture-review", "claude-code", "claude-plugin", "claude-skills", "documentation", "mcp-server", "pragmatic-mode"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/.claude/skills/architecture-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install architecture-review"}, "quality": {"stars": 52, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T14:11:30Z"}, "embedding_text": "architecture-review. Conducts a comprehensive multi-perspective architecture review using ALL architecture team members. Use when the user requests \"Start architecture review\", \"Full architecture review\", \"Review architecture for version X.Y.Z\", \"Conduct comprehensive review\", or when they want assessment from multiple perspectives. Do NOT use for single-specialist reviews (use specialist-review instead) or for status checks (use architecture-status instead). Categories: adr, architectural-decision-records, architecture, architecture-review, claude-code, claude-plugin, claude-skills, documentation, mcp-server, pragmatic-mode. Platforms: claude_code."} {"id": "c047268f8526ef9b9bfa406d7ee1b75d426647cf0b8927bb3d0af40318346744", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "architecture-status", "description": "Reports on the health and state of architecture documentation (counts of ADRs, reviews, activity levels, documentation gaps). Use when the user asks \"What's our architecture status?\", \"Show architecture documentation\", \"How many ADRs do we have?\", \"What decisions are documented?\", \"Architecture health check\", or wants an overview/summary of documentation state. Do NOT use for listing team members (use list-members), creating new documents (use create-adr), or conducting reviews (use architecture-review or specialist-review).", "source": ["topic"], "categories": ["adr", "architectural-decision-records", "architecture", "architecture-review", "claude-code", "claude-plugin", "claude-skills", "documentation", "mcp-server", "pragmatic-mode"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/.claude/skills/architecture-status/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install architecture-status"}, "quality": {"stars": 52, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T14:11:30Z"}, "embedding_text": "architecture-status. Reports on the health and state of architecture documentation (counts of ADRs, reviews, activity levels, documentation gaps). Use when the user asks \"What's our architecture status?\", \"Show architecture documentation\", \"How many ADRs do we have?\", \"What decisions are documented?\", \"Architecture health check\", or wants an overview/summary of documentation state. Do NOT use for listing team members (use list-members), creating new documents (use create-adr), or conducting reviews (use architecture-review or specialist-review). Categories: adr, architectural-decision-records, architecture, architecture-review, claude-code, claude-plugin, claude-skills, documentation, mcp-server, pragmatic-mode. Platforms: claude_code."} @@ -36203,17 +40330,9 @@ {"id": "9f434d55f96d21fa3c70808525743c51d912297537a6a4a8e1d4ad9e2d85a6d3", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "setup-architect", "description": "Sets up and installs the AI Software Architect framework in a NEW project for the FIRST time. Use when the user requests \"Setup .architecture\", \"Setup ai-software-architect\", \"Initialize architecture framework\", \"Install software architect\", or similar setup/installation phrases. Do NOT use for checking status (use architecture-status), creating documents (use create-adr or reviews), or when framework is already set up.", "source": ["topic"], "categories": ["adr", "architectural-decision-records", "architecture", "architecture-review", "claude-code", "claude-plugin", "claude-skills", "documentation", "mcp-server", "pragmatic-mode"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/.claude/skills/setup-architect/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install setup-architect"}, "quality": {"stars": 52, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T14:11:30Z"}, "embedding_text": "setup-architect. Sets up and installs the AI Software Architect framework in a NEW project for the FIRST time. Use when the user requests \"Setup .architecture\", \"Setup ai-software-architect\", \"Initialize architecture framework\", \"Install software architect\", or similar setup/installation phrases. Do NOT use for checking status (use architecture-status), creating documents (use create-adr or reviews), or when framework is already set up. Categories: adr, architectural-decision-records, architecture, architecture-review, claude-code, claude-plugin, claude-skills, documentation, mcp-server, pragmatic-mode. Platforms: claude_code."} {"id": "dc6f535e2c4a24b99693cf812f0e9c7a7eba2410af6b93dbf7fc7eb742a7cc26", "repo_url": "https://github.com/codenamev/ai-software-architect", "name": "specialist-review", "description": "Conducts a focused review from ONE specific specialist's perspective (e.g., Security Specialist, Performance Expert). Use when the user requests \"Ask [specialist role] to review [target]\", \"Get [specialist]'s opinion on [topic]\", \"Have [role] review [code/component]\", or when they want deep expertise in ONE specific domain. Do NOT use for comprehensive multi-perspective reviews (use architecture-review instead) or for listing available specialists (use list-members instead).", "source": ["topic"], "categories": ["adr", "architectural-decision-records", "architecture", "architecture-review", "claude-code", "claude-plugin", "claude-skills", "documentation", "mcp-server", "pragmatic-mode"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/codenamev/ai-software-architect/blob/main/.claude/skills/specialist-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install specialist-review"}, "quality": {"stars": 52, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-25T14:11:30Z"}, "embedding_text": "specialist-review. Conducts a focused review from ONE specific specialist's perspective (e.g., Security Specialist, Performance Expert). Use when the user requests \"Ask [specialist role] to review [target]\", \"Get [specialist]'s opinion on [topic]\", \"Have [role] review [code/component]\", or when they want deep expertise in ONE specific domain. Do NOT use for comprehensive multi-perspective reviews (use architecture-review instead) or for listing available specialists (use list-members instead). Categories: adr, architectural-decision-records, architecture, architecture-review, claude-code, claude-plugin, claude-skills, documentation, mcp-server, pragmatic-mode. Platforms: claude_code."} {"id": "e93846f49a2d37b9b9cd914272fa1f2878cbabf7bd9580f29afef9f1ee3ae979", "repo_url": "https://github.com/cocoindex-io/cocoindex-claude", "name": "cocoindex-v1", "description": "This skill should be used when building data processing pipelines with CocoIndex v1, a Python library for incremental data transformation. Use when the task involves processing files/data into databases, creating vector embeddings, building knowledge graphs, ETL workflows, or any data pipeline requiring automatic change detection and incremental updates. CocoIndex v1 is Python-native (supports any Python types), has no DSL, and is currently under pre-release (version 1.0.0a1 or later).", "source": ["topic"], "categories": ["claude-code", "claude-skills", "cocoindex", "data", "etl"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cocoindex-io/cocoindex-claude/blob/main/cocoindex-v1/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cocoindex-v1"}, "quality": {"stars": 49, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-22T04:25:09Z"}, "embedding_text": "cocoindex-v1. This skill should be used when building data processing pipelines with CocoIndex v1, a Python library for incremental data transformation. Use when the task involves processing files/data into databases, creating vector embeddings, building knowledge graphs, ETL workflows, or any data pipeline requiring automatic change detection and incremental updates. CocoIndex v1 is Python-native (supports any Python types), has no DSL, and is currently under pre-release (version 1.0.0a1 or later). Categories: claude-code, claude-skills, cocoindex, data, etl. Platforms: claude_code."} -{"id": "97541becdec8677c249dffec2d65792d7351e5e79cd299f0f284cb96394d1f34", "repo_url": "https://github.com/cocoindex-io/cocoindex-claude", "name": "cocoindex", "description": "Comprehensive toolkit for developing with the CocoIndex library. Use when users need to create data transformation pipelines (flows), write custom functions, or operate flows via CLI or API. Covers building ETL workflows for AI data processing, including embedding documents into vector databases, building knowledge graphs, creating search indexes, or processing data streams with incremental updates.", "source": ["topic"], "categories": ["claude-code", "claude-skills", "cocoindex", "data", "etl"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/cocoindex-io/cocoindex-claude/blob/main/cocoindex/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install cocoindex"}, "quality": {"stars": 49, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-22T04:25:09Z"}, "embedding_text": "cocoindex. Comprehensive toolkit for developing with the CocoIndex library. Use when users need to create data transformation pipelines (flows), write custom functions, or operate flows via CLI or API. Covers building ETL workflows for AI data processing, including embedding documents into vector databases, building knowledge graphs, creating search indexes, or processing data streams with incremental updates. Categories: claude-code, claude-skills, cocoindex, data, etl. Platforms: claude_code."} -{"id": "59da36420c5c5f04e68830fcd7afdb66e46713f2bd3b5d3159305055a17f5bdc", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "create-slidev-presentation", "description": "This skill should be used when asked to create or edit Slidev (sli.dev) presentation slide decks.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/create-slidev-presentation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install create-slidev-presentation"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "create-slidev-presentation. This skill should be used when asked to create or edit Slidev (sli.dev) presentation slide decks. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} -{"id": "3834bc1c8b21df008fa227d630b79fcec66a308d7c19c95fc6284277093ce2ae", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "skill-creator", "description": "This skill guides users through creating custom skills for claude-code-setup. Use when users want to create a new command or context skill.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "skill-creator. This skill guides users through creating custom skills for claude-code-setup. Use when users want to create a new command or context skill. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} -{"id": "b6443d8c543420d116a98eb98a4bf321887fec1de2eae5e0e050dd1efdd1cb7e", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-gradle", "description": "Gradle build tool standards focusing on Kotlin DSL. Covers project configuration, dependency management, and custom plugin/task development with Gradle 9 LTS.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-gradle/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-gradle"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "standards-gradle. Gradle build tool standards focusing on Kotlin DSL. Covers project configuration, dependency management, and custom plugin/task development with Gradle 9 LTS. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} -{"id": "9b825005e4961b889277f928d79bb349d117dc864bbf595ecc7deffd3b29462f", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-java", "description": "Java coding standards for enterprise applications. Includes naming conventions, modern Java features, design patterns, and recommended tooling.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-java/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-java"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "standards-java. Java coding standards for enterprise applications. Includes naming conventions, modern Java features, design patterns, and recommended tooling. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} {"id": "db8d403a1e819378160fc1c3f67b9a245d7255c58cad465d0bc7e7a813ee2387", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-javascript", "description": "This skill provides JavaScript coding standards and is automatically loaded for JavaScript projects. It includes modern ES2025 patterns, async handling, and recommended tooling.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-javascript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-javascript"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "standards-javascript. This skill provides JavaScript coding standards and is automatically loaded for JavaScript projects. It includes modern ES2025 patterns, async handling, and recommended tooling. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} -{"id": "4852d10f03f1c115567e95790d830560f0710442af9d1da68c0f269c7709a1a9", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-kotlin", "description": "Kotlin coding standards for modern applications. Includes naming conventions, coroutines, flows, modern Kotlin 2.3.0 features, and recommended tooling.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-kotlin/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-kotlin"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "standards-kotlin. Kotlin coding standards for modern applications. Includes naming conventions, coroutines, flows, modern Kotlin 2.3.0 features, and recommended tooling. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} {"id": "cb285b9b4ca7d14ca8b64af5c66b06bf9c69f36eea6455672a3b3085eaac7ebd", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-python", "description": "This skill provides Python coding standards and is automatically loaded for Python projects. It includes naming conventions, best practices, and recommended tooling.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-python/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-python"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "standards-python. This skill provides Python coding standards and is automatically loaded for Python projects. It includes naming conventions, best practices, and recommended tooling. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} -{"id": "8ef6ad94694358aca8f5fc8f39ac314ac2af060396fb120c5dc38cb892240fca", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-shell", "description": "This skill provides Shell/Bash coding standards and is automatically loaded for shell projects. It includes defensive scripting patterns, best practices, and recommended tooling.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-shell/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-shell"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "standards-shell. This skill provides Shell/Bash coding standards and is automatically loaded for shell projects. It includes defensive scripting patterns, best practices, and recommended tooling. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} {"id": "6e67889b9242893be5f6ee4ce1df0e0d79cd5eaa6b7acf9cc05e21ae1c3440a0", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "standards-typescript", "description": "This skill provides TypeScript coding standards and is automatically loaded for TypeScript projects. It includes naming conventions, best practices, and recommended tooling.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/standards-typescript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install standards-typescript"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "standards-typescript. This skill provides TypeScript coding standards and is automatically loaded for TypeScript projects. It includes naming conventions, best practices, and recommended tooling. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} -{"id": "4420ee7c53901f21eb427bf269d4e7e6ed69ecc68c2927a7a1356a806b2f3451", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "user-stories", "description": "Write INVEST-compliant user stories with Given-When-Then acceptance criteria. Use when writing user stories, creating acceptance criteria, or during /design Step 4.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/user-stories/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install user-stories"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "user-stories. Write INVEST-compliant user stories with Given-When-Then acceptance criteria. Use when writing user stories, creating acceptance criteria, or during /design Step 4. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} {"id": "08e7076e177818890dcd079e2e85cdc1214499005584c9038f2d395b719767e8", "repo_url": "https://github.com/b33eep/claude-code-setup", "name": "youtube-transcript", "description": "Download YouTube video transcripts with automatic frame extraction for visual references. Use when analyzing YouTube videos, tutorials, or conference talks.", "source": ["topic"], "categories": ["ai", "ai-agents", "anthropic", "claude", "claude-code", "claude-code-plugin", "claude-skills", "developer-tools", "mcp", "productivity"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/b33eep/claude-code-setup/blob/main/skills/youtube-transcript/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-transcript"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-11T06:46:44Z"}, "embedding_text": "youtube-transcript. Download YouTube video transcripts with automatic frame extraction for visual references. Use when analyzing YouTube videos, tutorials, or conference talks. Categories: ai, ai-agents, anthropic, claude, claude-code, claude-code-plugin, claude-skills, developer-tools, mcp, productivity. Platforms: claude_code."} {"id": "6e9988385b145001a4bc6e292d086d29eaf931b4c953c08988d343f95afadbec", "repo_url": "https://github.com/staskh/trading_skills", "name": "earnings-calendar", "description": "Get upcoming earnings dates with timing (before/after market) and EPS estimates. Use when user asks about earnings dates, earnings calendar, when a company reports, or upcoming earnings.", "source": ["topic"], "categories": ["ai-trading", "claude", "claude-skills", "mcp-server", "option-trading", "options-trading"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/staskh/trading_skills/blob/main/.claude/skills/earnings-calendar/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install earnings-calendar"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T13:54:41Z"}, "embedding_text": "earnings-calendar. Get upcoming earnings dates with timing (before/after market) and EPS estimates. Use when user asks about earnings dates, earnings calendar, when a company reports, or upcoming earnings. Categories: ai-trading, claude, claude-skills, mcp-server, option-trading, options-trading. Platforms: claude_code."} {"id": "6fa90a6a832847a8f8176058a5e42d253443720f812832f0e5da654345c1c541", "repo_url": "https://github.com/staskh/trading_skills", "name": "fundamentals", "description": "Get fundamental financial data including financials, earnings, and key metrics. Use when user asks about financials, earnings, revenue, profit, balance sheet, income statement, or company fundamentals.", "source": ["topic"], "categories": ["ai-trading", "claude", "claude-skills", "mcp-server", "option-trading", "options-trading"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/staskh/trading_skills/blob/main/.claude/skills/fundamentals/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install fundamentals"}, "quality": {"stars": 47, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-06T13:54:41Z"}, "embedding_text": "fundamentals. Get fundamental financial data including financials, earnings, and key metrics. Use when user asks about financials, earnings, revenue, profit, balance sheet, income statement, or company fundamentals. Categories: ai-trading, claude, claude-skills, mcp-server, option-trading, options-trading. Platforms: claude_code."} @@ -36249,7 +40368,6 @@ {"id": "8f12de0326ac744074687c2a161ab5f0b0e77fe4fa4ec1bf0bafb55158ce2a38", "repo_url": "https://github.com/belumume/claude-skills", "name": "obsidian-study-vault-builder", "description": "Build mobile-compatible Obsidian study vaults from academic materials with checkpoint workflow and QA. Battle-tested on 800KB+ projects. Works across CS, medicine, business.", "source": ["topic"], "categories": ["anthropic", "claude", "claude-ai", "claude-skills", "document-processing", "python"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/belumume/claude-skills/blob/main/web-desktop-exports/obsidian-study-vault-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install obsidian-study-vault-builder"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T23:26:15Z"}, "embedding_text": "obsidian-study-vault-builder. Build mobile-compatible Obsidian study vaults from academic materials with checkpoint workflow and QA. Battle-tested on 800KB+ projects. Works across CS, medicine, business. Categories: anthropic, claude, claude-ai, claude-skills, document-processing, python. Platforms: claude_code."} {"id": "23cf036777046b3fefc65aa60ac1e47bdbdbe1d661c94b2d9326afd90db52941", "repo_url": "https://github.com/belumume/claude-skills", "name": "rtl-document-translation", "description": "Translate DOCX to RTL languages (Arabic, Hebrew, Urdu) preserving exact formatting, tables, colors, layouts. Handles quote normalization and multi-pass matching.", "source": ["topic"], "categories": ["anthropic", "claude", "claude-ai", "claude-skills", "document-processing", "python"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/belumume/claude-skills/blob/main/web-desktop-exports/rtl-document-translation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install rtl-document-translation"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T23:26:15Z"}, "embedding_text": "rtl-document-translation. Translate DOCX to RTL languages (Arabic, Hebrew, Urdu) preserving exact formatting, tables, colors, layouts. Handles quote normalization and multi-pass matching. Categories: anthropic, claude, claude-ai, claude-skills, document-processing, python. Platforms: claude_code."} {"id": "2c7fff3c40010e7ca66f29f9a766efca01daccf774330ef8a6216cf1b998de18", "repo_url": "https://github.com/blacktop/ipsw-skill", "name": "ipsw", "description": "Apple firmware and binary reverse engineering with the ipsw CLI tool. Use when analyzing iOS/macOS binaries, disassembling functions in dyld_shared_cache, dumping Objective-C headers from private frameworks, downloading IPSWs or kernelcaches, extracting entitlements, analyzing Mach-O files, or researching Apple security. Triggers on requests involving Apple RE, iOS internals, kernel analysis, KEXT extraction, or vulnerability research on Apple platforms.", "source": ["topic"], "categories": ["apple", "claude-code", "claude-skills", "codex", "ipsw", "reverse-engineering", "skill", "vulnerability-research"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/blacktop/ipsw-skill/blob/main/skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ipsw"}, "quality": {"stars": 44, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-27T02:41:12Z"}, "embedding_text": "ipsw. Apple firmware and binary reverse engineering with the ipsw CLI tool. Use when analyzing iOS/macOS binaries, disassembling functions in dyld_shared_cache, dumping Objective-C headers from private frameworks, downloading IPSWs or kernelcaches, extracting entitlements, analyzing Mach-O files, or researching Apple security. Triggers on requests involving Apple RE, iOS internals, kernel analysis, KEXT extraction, or vulnerability research on Apple platforms. Categories: apple, claude-code, claude-skills, codex, ipsw, reverse-engineering, skill, vulnerability-research. Platforms: claude_code."} -{"id": "0c745fd067125c392ab0d86edd91045d870340699a826ed6f8a2ab65fd6dc8bf", "repo_url": "https://github.com/jordanrubin/future_tokens", "name": "future-tokens", "description": "Every AI output has structural blind spots determined by the generation process itself. Future Tokens operations are named, composable instruments that target specific blind spots. They surface new information on every pass because expanding the output changes the blind spot geometry.", "source": ["topic"], "categories": ["agent-skills", "ai", "ai-reasoning", "ai-tools", "anthropic", "claude", "claude-code", "claude-skills", "cognitive-tools", "llm", "prompt-engineering", "reasoning", "skills", "thinking"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jordanrubin/FUTURE_TOKENS/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install future-tokens"}, "quality": {"stars": 42, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-19T11:40:31Z"}, "embedding_text": "future-tokens. Every AI output has structural blind spots determined by the generation process itself. Future Tokens operations are named, composable instruments that target specific blind spots. They surface new information on every pass because expanding the output changes the blind spot geometry. Categories: agent-skills, ai, ai-reasoning, ai-tools, anthropic, claude, claude-code, claude-skills, cognitive-tools, llm, prompt-engineering, reasoning, skills, thinking. Platforms: claude_code."} {"id": "e7881344c98a28365437ac5a90bf08276b04d0fcb21df2407b52bc2dddc10dac", "repo_url": "https://github.com/robertguss/claude-code-toolkit", "name": "skill-creator", "description": "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.", "source": ["topic"], "categories": ["claude", "claude-ai", "claude-code", "claude-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-code-toolkit/blob/main/.claude/skills/skill-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install skill-creator"}, "quality": {"stars": 43, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:20:36Z"}, "embedding_text": "skill-creator. 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. Categories: claude, claude-ai, claude-code, claude-skills, skills. Platforms: claude_code."} {"id": "0d277e88857b2d973625c02630ae8156f696451d97ae935770f296b8ff1c76dd", "repo_url": "https://github.com/robertguss/claude-code-toolkit", "name": "dhh-writing", "description": "This skill should be used when writing in the distinctive style of David Heinemeier Hansson (DHH). It applies when creating blog posts, technical articles, business content, manifestos, or any prose requiring a clear, punchy, opinionated style.", "source": ["topic"], "categories": ["claude", "claude-ai", "claude-code", "claude-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-code-toolkit/blob/main/plugins/compound-writing/skills/dhh-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install dhh-writing"}, "quality": {"stars": 43, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:20:36Z"}, "embedding_text": "dhh-writing. This skill should be used when writing in the distinctive style of David Heinemeier Hansson (DHH). It applies when creating blog posts, technical articles, business content, manifestos, or any prose requiring a clear, punchy, opinionated style. Categories: claude, claude-ai, claude-code, claude-skills, skills. Platforms: claude_code."} {"id": "6d1886d13c41ddd02ddc329558fbbd75be999baf41b795d9ab2575333ca793a2", "repo_url": "https://github.com/robertguss/claude-code-toolkit", "name": "every-style-editor", "description": "This skill should be used when reviewing or editing copy to ensure adherence to Every's style guide. It provides a systematic line-by-line review process for grammar, punctuation, mechanics, and style guide compliance.", "source": ["topic"], "categories": ["claude", "claude-ai", "claude-code", "claude-skills", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/robertguss/claude-code-toolkit/blob/main/plugins/compound-writing/skills/every-style-editor/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install every-style-editor"}, "quality": {"stars": 43, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-13T23:20:36Z"}, "embedding_text": "every-style-editor. This skill should be used when reviewing or editing copy to ensure adherence to Every's style guide. It provides a systematic line-by-line review process for grammar, punctuation, mechanics, and style guide compliance. Categories: claude, claude-ai, claude-code, claude-skills, skills. Platforms: claude_code."} @@ -36293,7 +40411,6 @@ {"id": "38f47fdad9ec07b65a7a102e12f54c6fb92cce9f0ff3867de461bc22ea98a258", "repo_url": "https://github.com/techwolf-ai/ai-first-toolkit", "name": "write-blog-post", "description": "Write or develop a blog post. Use for blog content - writing, drafting, developing ideas into drafts, or editing. Longer-form than LinkedIn (800-1200 words) with section structure.", "source": ["topic"], "categories": ["agentskills", "ai-agents", "ai-coding", "ai-first", "ai-tools", "claude-code", "claude-plugin", "claude-skills", "codex", "developer-tools", "thought-leadership"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/techwolf-ai/ai-first-toolkit/blob/main/plugins/content-studio/skills/write-blog-post/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install write-blog-post"}, "quality": {"stars": 40, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T09:55:19Z"}, "embedding_text": "write-blog-post. Write or develop a blog post. Use for blog content - writing, drafting, developing ideas into drafts, or editing. Longer-form than LinkedIn (800-1200 words) with section structure. Categories: agentskills, ai-agents, ai-coding, ai-first, ai-tools, claude-code, claude-plugin, claude-skills, codex, developer-tools, thought-leadership. Platforms: claude_code."} {"id": "7ae11901142d26da9d85b71c9664345a8353d3981a1f21d8cf8e2ceb4f5cd69e", "repo_url": "https://github.com/techwolf-ai/ai-first-toolkit", "name": "write-linkedin-post", "description": "Write or develop a LinkedIn post. Use ALWAYS for LinkedIn content - writing, drafting, developing ideas into drafts, or editing.", "source": ["topic"], "categories": ["agentskills", "ai-agents", "ai-coding", "ai-first", "ai-tools", "claude-code", "claude-plugin", "claude-skills", "codex", "developer-tools", "thought-leadership"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/techwolf-ai/ai-first-toolkit/blob/main/plugins/content-studio/skills/write-linkedin-post/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install write-linkedin-post"}, "quality": {"stars": 40, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T09:55:19Z"}, "embedding_text": "write-linkedin-post. Write or develop a LinkedIn post. Use ALWAYS for LinkedIn content - writing, drafting, developing ideas into drafts, or editing. Categories: agentskills, ai-agents, ai-coding, ai-first, ai-tools, claude-code, claude-plugin, claude-skills, codex, developer-tools, thought-leadership. Platforms: claude_code."} {"id": "f3c93190aeab30e8baf84250e817d034e53ede44da8d66c091762bf61a765793", "repo_url": "https://github.com/techwolf-ai/ai-first-toolkit", "name": "write-opinion", "description": "Write or develop an opinion piece (opiniestuk/op-ed). Use when asked to write opinion articles, newspaper pieces, or similar long-form opinion content.", "source": ["topic"], "categories": ["agentskills", "ai-agents", "ai-coding", "ai-first", "ai-tools", "claude-code", "claude-plugin", "claude-skills", "codex", "developer-tools", "thought-leadership"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/techwolf-ai/ai-first-toolkit/blob/main/plugins/content-studio/skills/write-opinion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install write-opinion"}, "quality": {"stars": 40, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-12T09:55:19Z"}, "embedding_text": "write-opinion. Write or develop an opinion piece (opiniestuk/op-ed). Use when asked to write opinion articles, newspaper pieces, or similar long-form opinion content. Categories: agentskills, ai-agents, ai-coding, ai-first, ai-tools, claude-code, claude-plugin, claude-skills, codex, developer-tools, thought-leadership. Platforms: claude_code."} -{"id": "0fd15271378611e0efb27084b910bf1a1e1157934c7be39c65e1d7d3ba4af779", "repo_url": "https://github.com/jakedahn/pomodoro", "name": "pomodoro", "description": "Simple Pomodoro timer for focused work sessions with session tracking and productivity analytics. Use when users request focus timers, ask about productivity patterns, or want to track work sessions over time. Demonstrates the System Skill Pattern (CLI + SKILL.md + Database).", "source": ["topic"], "categories": ["claude", "claude-ai", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jakedahn/pomodoro/blob/main/dist/skills/pomodoro/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pomodoro"}, "quality": {"stars": 39, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-23T05:27:22Z"}, "embedding_text": "pomodoro. Simple Pomodoro timer for focused work sessions with session tracking and productivity analytics. Use when users request focus timers, ask about productivity patterns, or want to track work sessions over time. Demonstrates the System Skill Pattern (CLI + SKILL.md + Database). Categories: claude, claude-ai, claude-code, claude-skills. Platforms: claude_code."} {"id": "802d110978add18f1381b64de1cf05bf97a3552ba15346e8c45652d7fe139c6e", "repo_url": "https://github.com/jakedahn/pomodoro", "name": "pomodoro", "description": "Simple Pomodoro timer for focused work sessions with session tracking and productivity analytics. Use when users request focus timers, ask about productivity patterns, or want to track work sessions over time. Demonstrates the System Skill Pattern (CLI + SKILL.md + Database).", "source": ["topic"], "categories": ["claude", "claude-ai", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jakedahn/pomodoro/blob/main/src/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install pomodoro"}, "quality": {"stars": 39, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-10-23T05:27:22Z"}, "embedding_text": "pomodoro. Simple Pomodoro timer for focused work sessions with session tracking and productivity analytics. Use when users request focus timers, ask about productivity patterns, or want to track work sessions over time. Demonstrates the System Skill Pattern (CLI + SKILL.md + Database). Categories: claude, claude-ai, claude-code, claude-skills. Platforms: claude_code."} {"id": "9124ee4af49c0dd1e92aa07071036cdb8a9554eccbcbbb34eff73f2844d1ef9a", "repo_url": "https://github.com/geeksfino/openskills", "name": "openskills-bindings-maintainer", "description": "Maintain compatibility between openskills-runtime and language bindings (TypeScript, Python), including feature flags, build configuration, and smoke verification.", "source": ["topic"], "categories": ["agentic-ai", "claude-skills", "runtime", "rust-ai"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Geeksfino/openskills/blob/main/.cursor/skills/openskills-bindings-maintainer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openskills-bindings-maintainer"}, "quality": {"stars": 38, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T13:51:51Z"}, "embedding_text": "openskills-bindings-maintainer. Maintain compatibility between openskills-runtime and language bindings (TypeScript, Python), including feature flags, build configuration, and smoke verification. Categories: agentic-ai, claude-skills, runtime, rust-ai. Platforms: claude_code."} {"id": "7d7ad786c5bc77456040cacce090383b069f470c9b220d8cbdd562ef5f059d16", "repo_url": "https://github.com/geeksfino/openskills", "name": "openskills-dev-orchestrator", "description": "Route OpenSkills development tasks to the right project skill or subagent, including sequencing rules for debugging, feature work, regression checks, and release readiness.", "source": ["topic"], "categories": ["agentic-ai", "claude-skills", "runtime", "rust-ai"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Geeksfino/openskills/blob/main/.cursor/skills/openskills-dev-orchestrator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install openskills-dev-orchestrator"}, "quality": {"stars": 38, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T13:51:51Z"}, "embedding_text": "openskills-dev-orchestrator. Route OpenSkills development tasks to the right project skill or subagent, including sequencing rules for debugging, feature work, regression checks, and release readiness. Categories: agentic-ai, claude-skills, runtime, rust-ai. Platforms: claude_code."} @@ -36525,9 +40642,7 @@ {"id": "57145626c6b21633d91e54b68b4955c6f98e43542d1e2e8ea148f08645ee2e6b", "repo_url": "https://github.com/eth0izzle/security-skills", "name": "CrowdStrike Fusion Workflow Builder", "description": "Create, validate, import, execute, and export CrowdStrike Falcon Fusion SOAR workflows. CRITICAL: You MUST run action_search.py to get real 32-char hex action IDs BEFORE writing any YAML. NEVER write PLACEHOLDER values for action IDs \u2014 resolve every ID via the live API first. Templates and example files in this repo contain PLACEHOLDER markers that are structural guides only \u2014 do NOT copy them into output YAML. For plugin config_id values, ask the user. Use this skill when asked to create a CrowdStrike workflow, Fusion workflow, Falcon Fusion automation, SOAR playbook, build a workflow for CrowdStrike, automate CrowdStrike actions, or anything involving CrowdStrike Fusion SOAR.", "source": ["topic"], "categories": ["ai", "claude", "claude-code", "claude-skills", "crowdstrike", "crowdstrike-falcon", "cybersecurity", "security", "workflows"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/eth0izzle/security-skills/blob/main/plugins/fusion-workflows/skills/fusion-workflows/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install CrowdStrike Fusion Workflow Builder"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-17T19:12:09Z"}, "embedding_text": "CrowdStrike Fusion Workflow Builder. Create, validate, import, execute, and export CrowdStrike Falcon Fusion SOAR workflows. CRITICAL: You MUST run action_search.py to get real 32-char hex action IDs BEFORE writing any YAML. NEVER write PLACEHOLDER values for action IDs \u2014 resolve every ID via the live API first. Templates and example files in this repo contain PLACEHOLDER markers that are structural guides only \u2014 do NOT copy them into output YAML. For plugin config_id values, ask the user. Use this skill when asked to create a CrowdStrike workflow, Fusion workflow, Falcon Fusion automation, SOAR playbook, build a workflow for CrowdStrike, automate CrowdStrike actions, or anything involving CrowdStrike Fusion SOAR. Categories: ai, claude, claude-code, claude-skills, crowdstrike, crowdstrike-falcon, cybersecurity, security, workflows. Platforms: claude_code."} {"id": "7187d118d84c66fe47b3b644f13a30b31b20c0b5fa5719d4a4302980adac8c75", "repo_url": "https://github.com/matlab/skills", "name": "matlab-digital-filter-design", "description": "Designs and validates digital filters in MATLAB. Use when cleaning up noisy signals, removing interference, filtering signals, designing FIR/IIR filters (lowpass/highpass/bandpass/bandstop/notch), or comparing filters in Filter Analyzer.", "source": ["topic"], "categories": ["agent-skill", "agent-skills", "agentic-ai", "agents", "claude", "claude-api", "claude-code", "claude-desktop", "claude-skills", "matlab", "matlab-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matlab/skills/blob/main/skills/matlab-digital-filter-design/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matlab-digital-filter-design"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T23:16:43Z"}, "embedding_text": "matlab-digital-filter-design. Designs and validates digital filters in MATLAB. Use when cleaning up noisy signals, removing interference, filtering signals, designing FIR/IIR filters (lowpass/highpass/bandpass/bandstop/notch), or comparing filters in Filter Analyzer. Categories: agent-skill, agent-skills, agentic-ai, agents, claude, claude-api, claude-code, claude-desktop, claude-skills, matlab, matlab-skills. Platforms: claude_code."} {"id": "bfbedfc389f38e81865dc4149ebff8b244dc6215e5eccdbc814d326fcc16a303", "repo_url": "https://github.com/matlab/skills", "name": "matlab-live-script", "description": "Create MATLAB plain text Live Scripts (.m files) following specific formatting rules. Use when generating MATLAB scripts, educational MATLAB content, Live Scripts, or when the user requests .m files with rich text formatting.", "source": ["topic"], "categories": ["agent-skill", "agent-skills", "agentic-ai", "agents", "claude", "claude-api", "claude-code", "claude-desktop", "claude-skills", "matlab", "matlab-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matlab/skills/blob/main/skills/matlab-live-script/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matlab-live-script"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T23:16:43Z"}, "embedding_text": "matlab-live-script. Create MATLAB plain text Live Scripts (.m files) following specific formatting rules. Use when generating MATLAB scripts, educational MATLAB content, Live Scripts, or when the user requests .m files with rich text formatting. Categories: agent-skill, agent-skills, agentic-ai, agents, claude, claude-api, claude-code, claude-desktop, claude-skills, matlab, matlab-skills. Platforms: claude_code."} -{"id": "ddc3a663e9381dec75fcf249af5cff79e233efd84df10ce3ec35542041ceba51", "repo_url": "https://github.com/matlab/skills", "name": "matlab-performance-optimizer", "description": "Optimize MATLAB code for better performance through vectorization, memory management, and profiling. Use when user requests optimization, mentions slow code, performance issues, speed improvements, or asks to make code faster or more efficient.", "source": ["topic"], "categories": ["agent-skill", "agent-skills", "agentic-ai", "agents", "claude", "claude-api", "claude-code", "claude-desktop", "claude-skills", "matlab", "matlab-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matlab/skills/blob/main/skills/matlab-performance-optimizer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matlab-performance-optimizer"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T23:16:43Z"}, "embedding_text": "matlab-performance-optimizer. Optimize MATLAB code for better performance through vectorization, memory management, and profiling. Use when user requests optimization, mentions slow code, performance issues, speed improvements, or asks to make code faster or more efficient. Categories: agent-skill, agent-skills, agentic-ai, agents, claude, claude-api, claude-code, claude-desktop, claude-skills, matlab, matlab-skills. Platforms: claude_code."} {"id": "c207bba9ba064ebf2c4834bc065ae11323ba6fd50581614943a90fb054699136", "repo_url": "https://github.com/matlab/skills", "name": "matlab-test-generator", "description": "Create comprehensive MATLAB unit tests using the MATLAB Testing Framework. Use when generating test files, test cases, unit tests, test suites, or when the user requests testing for MATLAB code, functions, or classes.", "source": ["topic"], "categories": ["agent-skill", "agent-skills", "agentic-ai", "agents", "claude", "claude-api", "claude-code", "claude-desktop", "claude-skills", "matlab", "matlab-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matlab/skills/blob/main/skills/matlab-test-generator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matlab-test-generator"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T23:16:43Z"}, "embedding_text": "matlab-test-generator. Create comprehensive MATLAB unit tests using the MATLAB Testing Framework. Use when generating test files, test cases, unit tests, test suites, or when the user requests testing for MATLAB code, functions, or classes. Categories: agent-skill, agent-skills, agentic-ai, agents, claude, claude-api, claude-code, claude-desktop, claude-skills, matlab, matlab-skills. Platforms: claude_code."} -{"id": "84308b53181b6cd047dfe365dce9ca14b86e9ef34bab3f19ccdd8bf9d8bb6bb5", "repo_url": "https://github.com/matlab/skills", "name": "matlab-uihtml-app-builder", "description": "Build interactive web applications using HTML/JavaScript interfaces with MATLAB computational backends via the uihtml component. Use when creating HTML-based MATLAB apps, JavaScript MATLAB interfaces, web UIs with MATLAB, interactive MATLAB GUIs, or when user mentions uihtml, HTML, JavaScript, web apps, or web interfaces.", "source": ["topic"], "categories": ["agent-skill", "agent-skills", "agentic-ai", "agents", "claude", "claude-api", "claude-code", "claude-desktop", "claude-skills", "matlab", "matlab-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/matlab/skills/blob/main/skills/matlab-uihtml-app-builder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install matlab-uihtml-app-builder"}, "quality": {"stars": 31, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-28T23:16:43Z"}, "embedding_text": "matlab-uihtml-app-builder. Build interactive web applications using HTML/JavaScript interfaces with MATLAB computational backends via the uihtml component. Use when creating HTML-based MATLAB apps, JavaScript MATLAB interfaces, web UIs with MATLAB, interactive MATLAB GUIs, or when user mentions uihtml, HTML, JavaScript, web apps, or web interfaces. Categories: agent-skill, agent-skills, agentic-ai, agents, claude, claude-api, claude-code, claude-desktop, claude-skills, matlab, matlab-skills. Platforms: claude_code."} {"id": "914263afadbab2930b3020916e8127d07f0109dee4ef8030a6bc6ab8c06e3aa2", "repo_url": "https://github.com/baidu-maps/jsapi-skills", "name": "bmap-jsapi-gl", "description": "\u767e\u5ea6\u5730\u56fe JSAPI WebGL (BMapGL) \u5f00\u53d1\u6307\u5357\u3002\u5728\u7f16\u5199\u3001\u5ba1\u67e5\u6216\u8c03\u8bd5\u4f7f\u7528\u767e\u5ea6\u5730\u56fe API\u7684\u4ee3\u7801\u65f6\u5e94\u8fd0\u7528\u6b64\u6280\u80fd\u3002\u9002\u7528\u4e8e\u6d89\u53ca\u5730\u56fe\u521d\u59cb\u5316\u3001\u8986\u76d6\u7269\u6e32\u67d3\u3001\u56fe\u5c42\u7ba1\u7406\u3001\u4e8b\u4ef6\u5904\u7406\u3001\u63a7\u4ef6\u4ea4\u4e92\u6216\u6027\u80fd\u4f18\u5316\u7684\u4efb\u52a1\u3002\u5f53\u7528\u6237\u63d0\u53ca BMapGL\u3001\u767e\u5ea6\u5730\u56fe\u3001jsapi-gl\u6216\u76f8\u5173\u5730\u56fe\u5f00\u53d1\u9700\u6c42\u65f6\u81ea\u52a8\u89e6\u53d1\u3002", "source": ["topic"], "categories": ["ai", "bmap", "claude-skills", "jsapi", "map", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/baidu-maps/jsapi-skills/blob/main/skills/bmap-jsapi-gl/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bmap-jsapi-gl"}, "quality": {"stars": 30, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T03:06:31Z"}, "embedding_text": "bmap-jsapi-gl. \u767e\u5ea6\u5730\u56fe JSAPI WebGL (BMapGL) \u5f00\u53d1\u6307\u5357\u3002\u5728\u7f16\u5199\u3001\u5ba1\u67e5\u6216\u8c03\u8bd5\u4f7f\u7528\u767e\u5ea6\u5730\u56fe API\u7684\u4ee3\u7801\u65f6\u5e94\u8fd0\u7528\u6b64\u6280\u80fd\u3002\u9002\u7528\u4e8e\u6d89\u53ca\u5730\u56fe\u521d\u59cb\u5316\u3001\u8986\u76d6\u7269\u6e32\u67d3\u3001\u56fe\u5c42\u7ba1\u7406\u3001\u4e8b\u4ef6\u5904\u7406\u3001\u63a7\u4ef6\u4ea4\u4e92\u6216\u6027\u80fd\u4f18\u5316\u7684\u4efb\u52a1\u3002\u5f53\u7528\u6237\u63d0\u53ca BMapGL\u3001\u767e\u5ea6\u5730\u56fe\u3001jsapi-gl\u6216\u76f8\u5173\u5730\u56fe\u5f00\u53d1\u9700\u6c42\u65f6\u81ea\u52a8\u89e6\u53d1\u3002 Categories: ai, bmap, claude-skills, jsapi, map, skills. Platforms: claude_code."} {"id": "c265c302c0397ddcd5d418187c3431e8c343c35014eaf5d79bca5bc5b3d6a867", "repo_url": "https://github.com/baidu-maps/jsapi-skills", "name": "bmap-jsapi-three", "description": "\u4f7f\u7528 MapV-Three \u6784\u5efa\u4e13\u4e1a\u7684 3D \u5730\u56fe\u548c GIS \u5e94\u7528 - \u57fa\u4e8e Z-up \u5750\u6807\u7cfb\u7684 3D \u5730\u56fe\u5e93\uff0c\u652f\u6301\u5730\u56fe\u7f16\u8f91\u3001\u6d4b\u91cf\u5de5\u5177\u3001\u8981\u7d20\u7ed8\u5236\u3001\u6570\u636e\u7ba1\u7406\u7b49\u5730\u7406\u53ef\u89c6\u5316\u529f\u80fd\u3002\u9002\u7528\u4e8e\u521b\u5efa\u5730\u56fe\u7f16\u8f91\u5668\u3001\u6d4b\u91cf\u5de5\u5177\u3001\u7a7a\u95f4\u6570\u636e\u53ef\u89c6\u5316\u7b49 Web-GIS \u5e94\u7528\u3002", "source": ["topic"], "categories": ["ai", "bmap", "claude-skills", "jsapi", "map", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/baidu-maps/jsapi-skills/blob/main/skills/bmap-jsapi-three/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install bmap-jsapi-three"}, "quality": {"stars": 30, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T03:06:31Z"}, "embedding_text": "bmap-jsapi-three. \u4f7f\u7528 MapV-Three \u6784\u5efa\u4e13\u4e1a\u7684 3D \u5730\u56fe\u548c GIS \u5e94\u7528 - \u57fa\u4e8e Z-up \u5750\u6807\u7cfb\u7684 3D \u5730\u56fe\u5e93\uff0c\u652f\u6301\u5730\u56fe\u7f16\u8f91\u3001\u6d4b\u91cf\u5de5\u5177\u3001\u8981\u7d20\u7ed8\u5236\u3001\u6570\u636e\u7ba1\u7406\u7b49\u5730\u7406\u53ef\u89c6\u5316\u529f\u80fd\u3002\u9002\u7528\u4e8e\u521b\u5efa\u5730\u56fe\u7f16\u8f91\u5668\u3001\u6d4b\u91cf\u5de5\u5177\u3001\u7a7a\u95f4\u6570\u636e\u53ef\u89c6\u5316\u7b49 Web-GIS \u5e94\u7528\u3002 Categories: ai, bmap, claude-skills, jsapi, map, skills. Platforms: claude_code."} {"id": "4bd5b6661e27e7a52ed270afbf972ee0729e315a66b54a6eb08ddd195eb44d79", "repo_url": "https://github.com/baidu-maps/jsapi-skills", "name": "jsapi-ui-kit", "description": "\u767e\u5ea6\u5730\u56fe JavaScript API ui-kit \u7ec4\u4ef6\u5e93\u5f00\u53d1\u6307\u5357\u3002\u63d0\u4f9b\u5730\u70b9\u81ea\u52a8\u8865\u5168\uff08PlaceAutocomplete\uff09\u3001\u5730\u70b9\u68c0\u7d22\uff08PlaceSearch\uff09\u3001\u5730\u70b9\u8be6\u60c5\uff08PlaceDetail\uff09\u548c\u8def\u5f84\u89c4\u5212\uff08RoutePlan\uff09\u7ec4\u4ef6\u7684\u4f7f\u7528\u53c2\u8003\u3002\u5f53\u7528\u6237\u9700\u8981\uff1a(1) \u5b9e\u73b0\u5730\u70b9\u641c\u7d22\u8f93\u5165\u6846\u81ea\u52a8\u8865\u5168\u3001(2) \u5728\u767e\u5ea6\u5730\u56fe\u4e0a\u5b9e\u73b0\u5730\u70b9\u641c\u7d22\u529f\u80fd\u3001(3) \u5c55\u793a POI \u8be6\u60c5\u4fe1\u606f\u3001(4) \u5b9e\u73b0\u9a7e\u8f66\u8def\u5f84\u89c4\u5212\u529f\u80fd\u3001(5) \u4e86\u89e3 @baidumap/jsapi-ui-kit \u7684 API \u7528\u6cd5\u3001(6) \u5904\u7406\u7ec4\u4ef6\u4e8b\u4ef6\u56de\u8c03\u65f6\u4f7f\u7528\u6b64 skill\u3002", "source": ["topic"], "categories": ["ai", "bmap", "claude-skills", "jsapi", "map", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/baidu-maps/jsapi-skills/blob/main/skills/jsapi-ui-kit/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jsapi-ui-kit"}, "quality": {"stars": 30, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T03:06:31Z"}, "embedding_text": "jsapi-ui-kit. \u767e\u5ea6\u5730\u56fe JavaScript API ui-kit \u7ec4\u4ef6\u5e93\u5f00\u53d1\u6307\u5357\u3002\u63d0\u4f9b\u5730\u70b9\u81ea\u52a8\u8865\u5168\uff08PlaceAutocomplete\uff09\u3001\u5730\u70b9\u68c0\u7d22\uff08PlaceSearch\uff09\u3001\u5730\u70b9\u8be6\u60c5\uff08PlaceDetail\uff09\u548c\u8def\u5f84\u89c4\u5212\uff08RoutePlan\uff09\u7ec4\u4ef6\u7684\u4f7f\u7528\u53c2\u8003\u3002\u5f53\u7528\u6237\u9700\u8981\uff1a(1) \u5b9e\u73b0\u5730\u70b9\u641c\u7d22\u8f93\u5165\u6846\u81ea\u52a8\u8865\u5168\u3001(2) \u5728\u767e\u5ea6\u5730\u56fe\u4e0a\u5b9e\u73b0\u5730\u70b9\u641c\u7d22\u529f\u80fd\u3001(3) \u5c55\u793a POI \u8be6\u60c5\u4fe1\u606f\u3001(4) \u5b9e\u73b0\u9a7e\u8f66\u8def\u5f84\u89c4\u5212\u529f\u80fd\u3001(5) \u4e86\u89e3 @baidumap/jsapi-ui-kit \u7684 API \u7528\u6cd5\u3001(6) \u5904\u7406\u7ec4\u4ef6\u4e8b\u4ef6\u56de\u8c03\u65f6\u4f7f\u7528\u6b64 skill\u3002 Categories: ai, bmap, claude-skills, jsapi, map, skills. Platforms: claude_code."} @@ -36760,7 +40875,6 @@ {"id": "00f8635ca4630088bcfbb20efa1177f39afd893d03caca84e4f98dfc4198454d", "repo_url": "https://github.com/infranodus/skills", "name": "youtube-viral-optimizer", "description": "Generate high-CTR YouTube thumbnails, titles, and video scripts optimized for virality. Use when the user asks to create YouTube video titles, thumbnail text/concepts, video scripts, optimize existing titles for CTR, analyze why a video isn't performing, or needs help making content more clickable. Covers thumbnail wording, title copywriting, video script structuring (Pattern Interrupt \u2192 Hook \u2192 Framing \u2192 Curiosity Loop \u2192 Escalation \u2192 Payoff \u2192 Relevance Bridge \u2192 Loop Reopen), and YouTube algorithm optimization.", "source": ["topic"], "categories": ["claude", "claude-skills", "infranodus", "shopping"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/infranodus/skills/blob/master/skill-viral-videos/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install youtube-viral-optimizer"}, "quality": {"stars": 25, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T14:43:05Z"}, "embedding_text": "youtube-viral-optimizer. Generate high-CTR YouTube thumbnails, titles, and video scripts optimized for virality. Use when the user asks to create YouTube video titles, thumbnail text/concepts, video scripts, optimize existing titles for CTR, analyze why a video isn't performing, or needs help making content more clickable. Covers thumbnail wording, title copywriting, video script structuring (Pattern Interrupt \u2192 Hook \u2192 Framing \u2192 Curiosity Loop \u2192 Escalation \u2192 Payoff \u2192 Relevance Bridge \u2192 Loop Reopen), and YouTube algorithm optimization. Categories: claude, claude-skills, infranodus, shopping. Platforms: claude_code."} {"id": "b153aa4f3631ef9dbd3a6a2e84fbe35bfdf5373bd5d4c9e20c55de423c39a18c", "repo_url": "https://github.com/infranodus/skills", "name": "writing-assistant", "description": "Refine texts in any language: perfect grammar and spelling, paraphrase ideas, avoid AI detection while maintaining authentic voice. Detects grammatical patterns that signal cognitive states or structural issues\u2014acting as a sensory system for deeper strategic insights.", "source": ["topic"], "categories": ["claude", "claude-skills", "infranodus", "shopping"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/infranodus/skills/blob/master/skill-writing-assistant/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-assistant"}, "quality": {"stars": 25, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T14:43:05Z"}, "embedding_text": "writing-assistant. Refine texts in any language: perfect grammar and spelling, paraphrase ideas, avoid AI detection while maintaining authentic voice. Detects grammatical patterns that signal cognitive states or structural issues\u2014acting as a sensory system for deeper strategic insights. Categories: claude, claude-skills, infranodus, shopping. Platforms: claude_code."} {"id": "f32a4ae6e0c0f4fb38ed74990f67d55e14e39f5885fb1ad0ca5e580af969f4c7", "repo_url": "https://github.com/ktg-one/context", "name": "context", "description": "CONTEXT: Cognitive Order Normalized in Transformer EXtract Truncated. Cross-model context handoff via Progressive Density Layering, MLDoE expert compression, Japanese semantic density, and Negentropic Coherence Lattice validation. Creates portable carry-packets that transfer cognitive state between AI sessions. Use when context reaches 80%, switching models, ending sessions, user says save, quicksave, handoff, transfer, continue later, /qs, /context, or needs session continuity.", "source": ["topic"], "categories": ["agent-skills", "ai-memory", "claude-skills", "context-engineering"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ktg-one/context/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install context"}, "quality": {"stars": 25, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-07T12:56:48Z"}, "embedding_text": "context. CONTEXT: Cognitive Order Normalized in Transformer EXtract Truncated. Cross-model context handoff via Progressive Density Layering, MLDoE expert compression, Japanese semantic density, and Negentropic Coherence Lattice validation. Creates portable carry-packets that transfer cognitive state between AI sessions. Use when context reaches 80%, switching models, ending sessions, user says save, quicksave, handoff, transfer, continue later, /qs, /context, or needs session continuity. Categories: agent-skills, ai-memory, claude-skills, context-engineering. Platforms: claude_code."} -{"id": "5016c4e08ac56b877a780076b375dfc027f41873425ce28f40f1c58c1de754b5", "repo_url": "https://github.com/fkesheh/skill-mcp", "name": "example-data-processor", "description": "Process CSV data files by cleaning, transforming, and analyzing them. Use this when users need to work with CSV files, clean data, or perform basic data analysis tasks.", "source": ["topic"], "categories": ["ai", "claude-skills", "llm", "mcp-server"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/fkesheh/skill-mcp/blob/main/example-skill/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install example-data-processor"}, "quality": {"stars": 25, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-14T15:32:59Z"}, "embedding_text": "example-data-processor. Process CSV data files by cleaning, transforming, and analyzing them. Use this when users need to work with CSV files, clean data, or perform basic data analysis tasks. Categories: ai, claude-skills, llm, mcp-server. Platforms: claude_code."} {"id": "8ecf107cfc6ff37735cf17505a8f034e7b750eb58b092e1ca7a6f170dea71560", "repo_url": "https://github.com/xvirobotics/metaskill", "name": "evaluate-model", "description": "Load the latest model checkpoint, run evaluation on the test set, and generate a metrics report with confusion matrix. Use this after training to assess model performance or to re-evaluate a specific checkpoint.", "source": ["topic"], "categories": ["agent-orchestration", "ai-agent", "anthropic", "claude-agent-sdk", "claude-code", "claude-skills", "multi-agent"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xvirobotics/metaskill/blob/main/examples/data-science/.claude/skills/evaluate-model/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install evaluate-model"}, "quality": {"stars": 25, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T03:44:38Z"}, "embedding_text": "evaluate-model. Load the latest model checkpoint, run evaluation on the test set, and generate a metrics report with confusion matrix. Use this after training to assess model performance or to re-evaluate a specific checkpoint. Categories: agent-orchestration, ai-agent, anthropic, claude-agent-sdk, claude-code, claude-skills, multi-agent. Platforms: claude_code."} {"id": "b6039a12e936c06a649a82b6ba3ad495340c148d17b4e5fd08bc7bd53107ff96", "repo_url": "https://github.com/xvirobotics/metaskill", "name": "generate-report", "description": "Generate a comprehensive summary report of the latest experiment including metrics, plots, and comparison with baseline. Use this after training and evaluation to create a shareable experiment summary.", "source": ["topic"], "categories": ["agent-orchestration", "ai-agent", "anthropic", "claude-agent-sdk", "claude-code", "claude-skills", "multi-agent"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xvirobotics/metaskill/blob/main/examples/data-science/.claude/skills/generate-report/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install generate-report"}, "quality": {"stars": 25, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T03:44:38Z"}, "embedding_text": "generate-report. Generate a comprehensive summary report of the latest experiment including metrics, plots, and comparison with baseline. Use this after training and evaluation to create a shareable experiment summary. Categories: agent-orchestration, ai-agent, anthropic, claude-agent-sdk, claude-code, claude-skills, multi-agent. Platforms: claude_code."} {"id": "4f9d9c9ea3d26101e54b418e3f49b698d35c357452cdd6ff529b52db1151ce48", "repo_url": "https://github.com/xvirobotics/metaskill", "name": "run-pipeline", "description": "Run the full data science pipeline: validate raw data, preprocess, engineer features, train model, and evaluate. Use this when you want to execute the end-to-end ML pipeline or re-run it after data or code changes.", "source": ["topic"], "categories": ["agent-orchestration", "ai-agent", "anthropic", "claude-agent-sdk", "claude-code", "claude-skills", "multi-agent"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/xvirobotics/metaskill/blob/main/examples/data-science/.claude/skills/run-pipeline/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install run-pipeline"}, "quality": {"stars": 25, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T03:44:38Z"}, "embedding_text": "run-pipeline. Run the full data science pipeline: validate raw data, preprocess, engineer features, train model, and evaluate. Use this when you want to execute the end-to-end ML pipeline or re-run it after data or code changes. Categories: agent-orchestration, ai-agent, anthropic, claude-agent-sdk, claude-code, claude-skills, multi-agent. Platforms: claude_code."} @@ -36788,12 +40902,7 @@ {"id": "07d037f64a715f4f1f8b2e26f9981fffde4938769fe894b448647f532f3995b8", "repo_url": "https://github.com/karmaloopai/jiva", "name": "team-coordination", "description": "Coordinate software development work by analyzing requirements, delegating tasks to specialized sub-agents (developer, code-reviewer, tester), and synthesizing their work into cohesive deliverables. Use this for complex projects that require multiple specialized perspectives.", "source": ["topic"], "categories": ["agent", "autonomous", "claude-plugins", "claude-skills", "cli", "gpt-oss-120b", "mcp-servers"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/KarmaloopAI/Jiva/blob/main/examples/personas/engineering-manager/skills/coordination/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install team-coordination"}, "quality": {"stars": 20, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T12:23:53Z"}, "embedding_text": "team-coordination. Coordinate software development work by analyzing requirements, delegating tasks to specialized sub-agents (developer, code-reviewer, tester), and synthesizing their work into cohesive deliverables. Use this for complex projects that require multiple specialized perspectives. Categories: agent, autonomous, claude-plugins, claude-skills, cli, gpt-oss-120b, mcp-servers. Platforms: claude_code."} {"id": "be3400872a40bfbe253e675109887ebd56667d7817880d765baf76e08580ff6f", "repo_url": "https://github.com/karmaloopai/jiva", "name": "test-writing", "description": "Write comprehensive tests for code including unit tests, integration tests, and end-to-end tests. Use this to ensure code quality, catch bugs, and validate functionality.", "source": ["topic"], "categories": ["agent", "autonomous", "claude-plugins", "claude-skills", "cli", "gpt-oss-120b", "mcp-servers"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/KarmaloopAI/Jiva/blob/main/examples/personas/tester/skills/test-writing/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install test-writing"}, "quality": {"stars": 20, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-14T12:23:53Z"}, "embedding_text": "test-writing. Write comprehensive tests for code including unit tests, integration tests, and end-to-end tests. Use this to ensure code quality, catch bugs, and validate functionality. Categories: agent, autonomous, claude-plugins, claude-skills, cli, gpt-oss-120b, mcp-servers. Platforms: claude_code."} {"id": "4ecba3f6a0ce77d5f791ba6f1f54e5d034fc5341e172c255efb385368d6c196e", "repo_url": "https://github.com/guinacio/claude-image-gen", "name": "image-generation", "description": "Generates professional AI images using Google Gemini. ALWAYS invoke this skill when building websites, landing pages, slide decks, presentations, or any task needing visual content. Invoke IMMEDIATELY when you detect image needs - don't wait for the user to ask. This skill handles prompt optimization and aspect ratio selection.", "source": ["topic"], "categories": ["claude", "claude-code", "claude-extensions", "claude-plugins", "claude-skills", "mcp-server"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/guinacio/claude-image-gen/blob/master/skills/image-generation/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install image-generation"}, "quality": {"stars": 20, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T16:03:52Z"}, "embedding_text": "image-generation. Generates professional AI images using Google Gemini. ALWAYS invoke this skill when building websites, landing pages, slide decks, presentations, or any task needing visual content. Invoke IMMEDIATELY when you detect image needs - don't wait for the user to ask. This skill handles prompt optimization and aspect ratio selection. Categories: claude, claude-code, claude-extensions, claude-plugins, claude-skills, mcp-server. Platforms: claude_code."} -{"id": "12b4dc074657d584265f5bd399bf20bd8812e5e4cb53e37958af29e54ab12747", "repo_url": "https://github.com/ckanner/agent-skills", "name": "jta", "description": "Translate JSON i18n files to multiple languages with AI-powered quality optimization. Use when user mentions translating JSON, i18n files, internationalization, locale files, or needs to convert language files to other languages.", "source": ["topic"], "categories": ["agent-skills", "ai", "claude", "claude-code", "claude-skills", "machine-learning", "plugin-marketplace", "prompt-engineering", "skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/ckanner/agent-skills/blob/main/jta/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install jta"}, "quality": {"stars": 20, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-19T01:05:58Z"}, "embedding_text": "jta. Translate JSON i18n files to multiple languages with AI-powered quality optimization. Use when user mentions translating JSON, i18n files, internationalization, locale files, or needs to convert language files to other languages. Categories: agent-skills, ai, claude, claude-code, claude-skills, machine-learning, plugin-marketplace, prompt-engineering, skills. Platforms: claude_code."} {"id": "ea5e14df4199b34a984b6ed4715048c2b08d054257ac79b15ecc8713dd5bd686", "repo_url": "https://github.com/asif2bd/xcloud-docker-deploy-skill", "name": "xcloud-docker-deploy", "description": "Deploy any project to xCloud hosting \u2014 auto-detects stack (WordPress, Laravel, PHP, Node.js, Next.js, NestJS, Python, Go, Rust), routes to native or Docker deployment, generates production-ready Dockerfile, docker-compose.yml, GitHub Actions CI/CD, and .env.example. Works from zero Docker setup.", "source": ["topic"], "categories": ["agent-skills-", "claude-code", "claude-skills", "codex-cli", "devops", "docker", "skill-md", "skillsmp", "vibe-coding", "xcloud"], "triggers": [], "platforms": ["any", "claude-ai", "claude-code", "codex", "cursor", "openClaw", "windsurf"], "skill_md_url": "https://github.com/Asif2BD/xCloud-Docker-Deploy-Skill/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install xcloud-docker-deploy", "codex": "cp SKILL.md ~/.codex/skills/"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-03T13:12:36Z"}, "embedding_text": "xcloud-docker-deploy. Deploy any project to xCloud hosting \u2014 auto-detects stack (WordPress, Laravel, PHP, Node.js, Next.js, NestJS, Python, Go, Rust), routes to native or Docker deployment, generates production-ready Dockerfile, docker-compose.yml, GitHub Actions CI/CD, and .env.example. Works from zero Docker setup. Categories: agent-skills-, claude-code, claude-skills, codex-cli, devops, docker, skill-md, skillsmp, vibe-coding, xcloud. Platforms: any, claude-ai, claude-code, codex, cursor, openClaw, windsurf."} -{"id": "7360dc84fc5b9428c2a41b728cacbeb37ae1b69e88785ebe0ab57ca6793d1e40", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "new-adapter", "description": "Add support for a new AI tool with adapters, CLI, completion, and tests.", "source": ["topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/new-adapter/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install new-adapter"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "new-adapter. Add support for a new AI tool with adapters, CLI, completion, and tests. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} -{"id": "6f09481b7718717e16134bf6cb5ce1b92ff4c1e051af4d6bb4ec05ae235dbd73", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "summarize-session", "description": "Summarize the current session and generate reusable Claude rules, skills, or commands.", "source": ["topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/summarize-session/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install summarize-session"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "summarize-session. Summarize the current session and generate reusable Claude rules, skills, or commands. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} -{"id": "03c08601f67f26a85f79222c1744dd8539a983922cd8ae84bb4614b69235c427", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "sync-readme", "description": "Synchronize English README.md with Chinese README_ZH.md, maintaining content parity.", "source": ["topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/sync-readme/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install sync-readme"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "sync-readme. Synchronize English README.md with Chinese README_ZH.md, maintaining content parity. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} -{"id": "985964c95f3f0e4a6077a0913b82f270e0e62f56d2b35efba9049cb6bd2a18eb", "repo_url": "https://github.com/lbb00/ai-rules-sync", "name": "update-knowledge-base", "description": "Analyze code changes and update KNOWLEDGE_BASE.md with architectural and feature changes.", "source": ["topic"], "categories": ["agents", "claude-code", "claude-skills", "codex", "copilot", "copilot-prompts", "cursor", "gemini", "opencode", "rules", "skills", "subagents", "trae", "warp"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/lbb00/ai-rules-sync/blob/main/.claude/skills/update-knowledge-base/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install update-knowledge-base"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T06:36:00Z"}, "embedding_text": "update-knowledge-base. Analyze code changes and update KNOWLEDGE_BASE.md with architectural and feature changes. Categories: agents, claude-code, claude-skills, codex, copilot, copilot-prompts, cursor, gemini, opencode, rules, skills, subagents, trae, warp. Platforms: claude_code."} {"id": "af5395a21717c7f12982161fb5708030f1a3f89d5de881a259c8ab19075de99f", "repo_url": "https://github.com/sageox/ox", "name": "ox", "description": "SageOx team context and session recording for AI coworkers. Use when working in a repository that has .sageox/ initialized, when you need team conventions, or when recording coding sessions to a shared ledger.", "source": ["topic"], "categories": ["agentic-engineering", "claude-code", "claude-code-plugin", "claude-commands", "claude-plugin", "claude-skills", "codex-cli", "coding", "hivemind"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/sageox/ox/blob/main/claude-plugin/skills/ox/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install ox"}, "quality": {"stars": 19, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-16T19:26:52Z"}, "embedding_text": "ox. SageOx team context and session recording for AI coworkers. Use when working in a repository that has .sageox/ initialized, when you need team conventions, or when recording coding sessions to a shared ledger. Categories: agentic-engineering, claude-code, claude-code-plugin, claude-commands, claude-plugin, claude-skills, codex-cli, coding, hivemind. Platforms: claude_code."} {"id": "68b3b6c686b22491ed33a1c9aa855d4c613119d51c32456012a6a4bc21d6ec25", "repo_url": "https://github.com/rameerez/claude-code-startup-skills", "name": "compress-images", "description": "Compress images for web/SEO performance using cwebp. Use when optimizing images for faster page loads, reducing file sizes, or converting JPG/PNG to WebP format.", "source": ["topic"], "categories": ["agent", "agent-skills", "agentic-ai", "agentic-workflow", "ai", "ai-agents", "ai-tools", "anthropic", "anthropic-claude", "claude", "claude-ai", "claude-api", "claude-code", "claude-skills", "cursor", "cursor-ai"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rameerez/claude-code-startup-skills/blob/main/skills/compress-images/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install compress-images"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T17:18:34Z"}, "embedding_text": "compress-images. Compress images for web/SEO performance using cwebp. Use when optimizing images for faster page loads, reducing file sizes, or converting JPG/PNG to WebP format. Categories: agent, agent-skills, agentic-ai, agentic-workflow, ai, ai-agents, ai-tools, anthropic, anthropic-claude, claude, claude-ai, claude-api, claude-code, claude-skills, cursor, cursor-ai. Platforms: claude_code."} {"id": "560eb778871565f26a6fb2e8974d3c87edd2c6bee2351662a47208062a70b6a4", "repo_url": "https://github.com/rameerez/claude-code-startup-skills", "name": "customer-empathy", "description": "Deep-dive into customer empathy and user journey thinking. Use when designing onboarding, improving UX, planning features, or trying to understand how to delight users faster.", "source": ["topic"], "categories": ["agent", "agent-skills", "agentic-ai", "agentic-workflow", "ai", "ai-agents", "ai-tools", "anthropic", "anthropic-claude", "claude", "claude-ai", "claude-api", "claude-code", "claude-skills", "cursor", "cursor-ai"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/rameerez/claude-code-startup-skills/blob/main/skills/customer-empathy/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install customer-empathy"}, "quality": {"stars": 18, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-23T17:18:34Z"}, "embedding_text": "customer-empathy. Deep-dive into customer empathy and user journey thinking. Use when designing onboarding, improving UX, planning features, or trying to understand how to delight users faster. Categories: agent, agent-skills, agentic-ai, agentic-workflow, ai, ai-agents, ai-tools, anthropic, anthropic-claude, claude, claude-ai, claude-api, claude-code, claude-skills, cursor, cursor-ai. Platforms: claude_code."} @@ -36887,7 +40996,6 @@ {"id": "31800edc6007383ea9d605dea9ded9f2aa21ff3c5dffc93349f00c5c754b5cf3", "repo_url": "https://github.com/codingcossack/agent-skills-library", "name": "using-superpowers", "description": "Meta-skill enforcing skill discovery and invocation discipline through mandatory workflows. Use when starting any conversation to check for relevant skills before any response, ensuring skill-first workflow before proceeding.", "source": ["topic"], "categories": ["agent-framework", "agent-skills", "agent-system", "agent-workflow", "agentic-workflow", "ai-agents", "anthropic", "claude", "claude-code", "claude-skills", "claude-skills-hub", "claude-skills-libary", "code-review", "codex", "context-engineering", "debugging", "developer-workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/CodingCossack/agent-skills-library/blob/main/skills/using-superpowers/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install using-superpowers"}, "quality": {"stars": 16, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-03T20:02:38Z"}, "embedding_text": "using-superpowers. Meta-skill enforcing skill discovery and invocation discipline through mandatory workflows. Use when starting any conversation to check for relevant skills before any response, ensuring skill-first workflow before proceeding. Categories: agent-framework, agent-skills, agent-system, agent-workflow, agentic-workflow, ai-agents, anthropic, claude, claude-code, claude-skills, claude-skills-hub, claude-skills-libary, code-review, codex, context-engineering, debugging, developer-workflow. Platforms: claude_code."} {"id": "d5c18b0061ef4b4be779b190cabc1d411550b0bfeb3bc59677f8858e5998bf03", "repo_url": "https://github.com/codingcossack/agent-skills-library", "name": "verification-before-completion", "description": "Verification discipline for completion claims. Use when about to assert success, claim a fix is complete, report tests passing, or before commits and PRs. Enforces evidence-first workflow.", "source": ["topic"], "categories": ["agent-framework", "agent-skills", "agent-system", "agent-workflow", "agentic-workflow", "ai-agents", "anthropic", "claude", "claude-code", "claude-skills", "claude-skills-hub", "claude-skills-libary", "code-review", "codex", "context-engineering", "debugging", "developer-workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/CodingCossack/agent-skills-library/blob/main/skills/verification-before-completion/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install verification-before-completion"}, "quality": {"stars": 16, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-03T20:02:38Z"}, "embedding_text": "verification-before-completion. Verification discipline for completion claims. Use when about to assert success, claim a fix is complete, report tests passing, or before commits and PRs. Enforces evidence-first workflow. Categories: agent-framework, agent-skills, agent-system, agent-workflow, agentic-workflow, ai-agents, anthropic, claude, claude-code, claude-skills, claude-skills-hub, claude-skills-libary, code-review, codex, context-engineering, debugging, developer-workflow. Platforms: claude_code."} {"id": "5a66c92fbf4f2662cfd3783a3fe24f0ecd1e0fb8a23622b1c3af5fb441105e88", "repo_url": "https://github.com/codingcossack/agent-skills-library", "name": "writing-plans", "description": "Structured implementation planning for multi-step development tasks. Use when you have a spec or requirements and need to break work into executable steps.", "source": ["topic"], "categories": ["agent-framework", "agent-skills", "agent-system", "agent-workflow", "agentic-workflow", "ai-agents", "anthropic", "claude", "claude-code", "claude-skills", "claude-skills-hub", "claude-skills-libary", "code-review", "codex", "context-engineering", "debugging", "developer-workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/CodingCossack/agent-skills-library/blob/main/skills/writing-plans/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-plans"}, "quality": {"stars": 16, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-03T20:02:38Z"}, "embedding_text": "writing-plans. Structured implementation planning for multi-step development tasks. Use when you have a spec or requirements and need to break work into executable steps. Categories: agent-framework, agent-skills, agent-system, agent-workflow, agentic-workflow, ai-agents, anthropic, claude, claude-code, claude-skills, claude-skills-hub, claude-skills-libary, code-review, codex, context-engineering, debugging, developer-workflow. Platforms: claude_code."} -{"id": "079ff2a767a69234cbddc4920fae230bf2e77f5e744bdc7879431b6d99f13f49", "repo_url": "https://github.com/codingcossack/agent-skills-library", "name": "writing-skills", "description": "Use when creating new skills, editing existing skills, or verifying skills work before deployment", "source": ["topic"], "categories": ["agent-framework", "agent-skills", "agent-system", "agent-workflow", "agentic-workflow", "ai-agents", "anthropic", "claude", "claude-code", "claude-skills", "claude-skills-hub", "claude-skills-libary", "code-review", "codex", "context-engineering", "debugging", "developer-workflow"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/CodingCossack/agent-skills-library/blob/main/skills/writing-skills/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install writing-skills"}, "quality": {"stars": 16, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-01-03T20:02:38Z"}, "embedding_text": "writing-skills. Use when creating new skills, editing existing skills, or verifying skills work before deployment Categories: agent-framework, agent-skills, agent-system, agent-workflow, agentic-workflow, ai-agents, anthropic, claude, claude-code, claude-skills, claude-skills-hub, claude-skills-libary, code-review, codex, context-engineering, debugging, developer-workflow. Platforms: claude_code."} {"id": "0b26a471e0b1e465d1d5974f0d05923ba9f803e8a27db2ec4aa5ace3a44c68b1", "repo_url": "https://github.com/jaaaaaaaaaaack/custom-skills", "name": "animation-review", "description": "Review web animations by recording the browser and sending video to Gemini for frame-level analysis", "source": ["topic"], "categories": ["agent-skill", "agent-skills", "animation", "claude", "claude-code", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/jaaaaaaaaaaack/custom-skills/blob/main/animation-review/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install animation-review"}, "quality": {"stars": 15, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-16T06:17:46Z"}, "embedding_text": "animation-review. Review web animations by recording the browser and sending video to Gemini for frame-level analysis Categories: agent-skill, agent-skills, animation, claude, claude-code, claude-skills. Platforms: claude_code."} {"id": "caf82a23056b81242f39668a0e3e16b251b132b8d46b5544943d7acbdb345bb5", "repo_url": "https://github.com/gl0bal01/malware-analysis-claude-skills", "name": "malware-analysis", "description": "Orchestrates the complete malware analysis lifecycle \u2014 from initial triage through dynamic analysis, detection engineering, and professional report writing. Routes to specialized sub-skills based on file type and analysis phase. Manages analysis state across phases and supports multi-sample batch workflows. Use this as the single entry point for any malware analysis task.", "source": ["topic"], "categories": ["blue-team", "claude-ai", "claude-skills", "cybersecurity", "flarevm", "incident-response", "malware-analysis", "malware-detection", "malware-research", "malware-triage", "remnux", "reverse", "reverse-engineering", "security-research", "sigma-rules", "suricata", "threat-intelligence", "yara-rules"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gl0bal01/malware-analysis-claude-skills/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install malware-analysis"}, "quality": {"stars": 14, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T09:09:01Z"}, "embedding_text": "malware-analysis. Orchestrates the complete malware analysis lifecycle \u2014 from initial triage through dynamic analysis, detection engineering, and professional report writing. Routes to specialized sub-skills based on file type and analysis phase. Manages analysis state across phases and supports multi-sample batch workflows. Use this as the single entry point for any malware analysis task. Categories: blue-team, claude-ai, claude-skills, cybersecurity, flarevm, incident-response, malware-analysis, malware-detection, malware-research, malware-triage, remnux, reverse, reverse-engineering, security-research, sigma-rules, suricata, threat-intelligence, yara-rules. Platforms: claude_code."} {"id": "cfd962d006c561e280a594b5ab90925260ec7ea0548c930cd211225ab83fd354", "repo_url": "https://github.com/gl0bal01/malware-analysis-claude-skills", "name": "detection-engineer", "description": "Create detection rules and hunting queries from malware analysis findings. Use when you need to write Sigma rules for SIEM, Suricata rules for network IDS, defang IOCs for safe sharing, or convert analysis findings into actionable detection content for SOC teams and threat hunters.", "source": ["topic"], "categories": ["blue-team", "claude-ai", "claude-skills", "cybersecurity", "flarevm", "incident-response", "malware-analysis", "malware-detection", "malware-research", "malware-triage", "remnux", "reverse", "reverse-engineering", "security-research", "sigma-rules", "suricata", "threat-intelligence", "yara-rules"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/gl0bal01/malware-analysis-claude-skills/blob/main/detection-engineer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install detection-engineer"}, "quality": {"stars": 14, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-15T09:09:01Z"}, "embedding_text": "detection-engineer. Create detection rules and hunting queries from malware analysis findings. Use when you need to write Sigma rules for SIEM, Suricata rules for network IDS, defang IOCs for safe sharing, or convert analysis findings into actionable detection content for SOC teams and threat hunters. Categories: blue-team, claude-ai, claude-skills, cybersecurity, flarevm, incident-response, malware-analysis, malware-detection, malware-research, malware-triage, remnux, reverse, reverse-engineering, security-research, sigma-rules, suricata, threat-intelligence, yara-rules. Platforms: claude_code."} @@ -37518,11 +41626,9 @@ {"id": "dff41a9c4fc3c726e4d1201bf978ff9c3ece64d77967d737d5917645839ad066", "repo_url": "https://github.com/buildoak/fieldwork-skills", "name": "vault", "description": "Encrypted secrets vault for AI coding agents. Store API keys, passwords, and tokens with `age` (public-key encryption) and `sops` (encrypted YAML secrets files). Never plaintext.", "source": ["topic"], "categories": ["agent-skills", "ai-agents", "ai-tools", "automation", "browser-automation", "claude-code", "claude-skills", "codex"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buildoak/fieldwork-skills/blob/main/skills/vault/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install vault"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T06:40:07Z"}, "embedding_text": "vault. Encrypted secrets vault for AI coding agents. Store API keys, passwords, and tokens with `age` (public-key encryption) and `sops` (encrypted YAML secrets files). Never plaintext. Categories: agent-skills, ai-agents, ai-tools, automation, browser-automation, claude-code, claude-skills, codex. Platforms: claude_code."} {"id": "47fda20f962e206ff749585d52e569c851d4275abd6b9cb02411bda587daa3dc", "repo_url": "https://github.com/buildoak/fieldwork-skills", "name": "video-gen", "description": "Video generation via fal.ai -- from quick one-off clips to multi-scene\nproductions with keyframes, state tracking, and assembly. 10+ models\nincluding Kling 3.0, Veo 3.1, Sora 2, LTX-2.3. Two modes: light\n(fire-and-forget) and project (structured pipeline with gates).\n", "source": ["topic"], "categories": ["agent-skills", "ai-agents", "ai-tools", "automation", "browser-automation", "claude-code", "claude-skills", "codex"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buildoak/fieldwork-skills/blob/main/skills/video-gen/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install video-gen"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T06:40:07Z"}, "embedding_text": "video-gen. Video generation via fal.ai -- from quick one-off clips to multi-scene\nproductions with keyframes, state tracking, and assembly. 10+ models\nincluding Kling 3.0, Veo 3.1, Sora 2, LTX-2.3. Two modes: light\n(fire-and-forget) and project (structured pipeline with gates).\n Categories: agent-skills, ai-agents, ai-tools, automation, browser-automation, claude-code, claude-skills, codex. Platforms: claude_code."} {"id": "97c9bb9833f3f1c15dc083e9e00cb652c1323c5bc002e11a76e97a4c8eaa0781", "repo_url": "https://github.com/buildoak/fieldwork-skills", "name": "web-search", "description": "Web search and content extraction skill for AI coding agents. Zero API keys required. Decision tree with fallback chains across 5 tools.", "source": ["topic"], "categories": ["agent-skills", "ai-agents", "ai-tools", "automation", "browser-automation", "claude-code", "claude-skills", "codex"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/buildoak/fieldwork-skills/blob/main/skills/web-search/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install web-search"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-03-08T06:40:07Z"}, "embedding_text": "web-search. Web search and content extraction skill for AI coding agents. Zero API keys required. Decision tree with fallback chains across 5 tools. Categories: agent-skills, ai-agents, ai-tools, automation, browser-automation, claude-code, claude-skills, codex. Platforms: claude_code."} -{"id": "f2b9bef35850559f50420d929e39b658bc666e87d26f8e83b6b99bb31f2d8f9a", "repo_url": "https://github.com/trabian/fluxwing-skills", "name": "Fluxwing Component Creator", "description": "Create uxscii components with ASCII art and structured metadata when user wants to create, build, or design UI components. Use when working with .uxm files, when user mentions .uxm components, or when creating buttons, inputs, cards, forms, modals, or navigation.", "source": ["topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trabian/fluxwing-skills/blob/main/skills/fluxwing-component-creator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Fluxwing Component Creator"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-30T13:14:20Z"}, "embedding_text": "Fluxwing Component Creator. Create uxscii components with ASCII art and structured metadata when user wants to create, build, or design UI components. Use when working with .uxm files, when user mentions .uxm components, or when creating buttons, inputs, cards, forms, modals, or navigation. Categories: claude-code, claude-code-plugins, claude-skills. Platforms: claude_code."} {"id": "4f3af02459d74a58b27da6a728f47d4f2581e2333dd99668af631df85f53da81", "repo_url": "https://github.com/trabian/fluxwing-skills", "name": "Fluxwing Component Expander", "description": "Add interaction states like hover, focus, disabled, active, error to existing uxscii components. Use when working with .uxm files, when user wants to expand, enhance, or add states to .uxm components.", "source": ["topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trabian/fluxwing-skills/blob/main/skills/fluxwing-component-expander/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Fluxwing Component Expander"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-30T13:14:20Z"}, "embedding_text": "Fluxwing Component Expander. Add interaction states like hover, focus, disabled, active, error to existing uxscii components. Use when working with .uxm files, when user wants to expand, enhance, or add states to .uxm components. Categories: claude-code, claude-code-plugins, claude-skills. Platforms: claude_code."} {"id": "6dd98a9904737b5721ac786fb1bc082e66388ad0e1e3e6e2a916cbcaeac8d24d", "repo_url": "https://github.com/trabian/fluxwing-skills", "name": "Fluxwing Component Viewer", "description": "View detailed information about a specific uxscii component including metadata, states, props, and ASCII preview. Use when working with .uxm files, when user wants to see, view, inspect, or get details about a .uxm component.", "source": ["topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trabian/fluxwing-skills/blob/main/skills/fluxwing-component-viewer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Fluxwing Component Viewer"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-30T13:14:20Z"}, "embedding_text": "Fluxwing Component Viewer. View detailed information about a specific uxscii component including metadata, states, props, and ASCII preview. Use when working with .uxm files, when user wants to see, view, inspect, or get details about a .uxm component. Categories: claude-code, claude-code-plugins, claude-skills. Platforms: claude_code."} {"id": "23944d5d28c74f84a15daf2650f32a86ebf730e104e1ec27fb11d6e3f0ef54c6", "repo_url": "https://github.com/trabian/fluxwing-skills", "name": "Fluxwing Library Browser", "description": "Browse and view all available uxscii components including bundled templates, user components, and screens. Use when working with .uxm files, when user wants to see, list, browse, or search .uxm components or screens.", "source": ["topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trabian/fluxwing-skills/blob/main/skills/fluxwing-library-browser/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Fluxwing Library Browser"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-30T13:14:20Z"}, "embedding_text": "Fluxwing Library Browser. Browse and view all available uxscii components including bundled templates, user components, and screens. Use when working with .uxm files, when user wants to see, list, browse, or search .uxm components or screens. Categories: claude-code, claude-code-plugins, claude-skills. Platforms: claude_code."} -{"id": "316fca900ec52acc1fe124fd1ec527196d79af3aebd35cd759a3b2b4071881f2", "repo_url": "https://github.com/trabian/fluxwing-skills", "name": "Fluxwing Screen Scaffolder", "description": "Build complete UI screens by composing multiple uxscii components. Use when working with .uxm files, when user wants to create, scaffold, or build .uxm screens like login, dashboard, profile, settings, or checkout pages.", "source": ["topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trabian/fluxwing-skills/blob/main/skills/fluxwing-screen-scaffolder/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Fluxwing Screen Scaffolder"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-30T13:14:20Z"}, "embedding_text": "Fluxwing Screen Scaffolder. Build complete UI screens by composing multiple uxscii components. Use when working with .uxm files, when user wants to create, scaffold, or build .uxm screens like login, dashboard, profile, settings, or checkout pages. Categories: claude-code, claude-code-plugins, claude-skills. Platforms: claude_code."} {"id": "467231d0077a4b93f02e18df7b68804d1b35974db72fc851ca4f54c516d389d8", "repo_url": "https://github.com/trabian/fluxwing-skills", "name": "Fluxwing Screenshot Importer", "description": "Import UI screenshots and generate uxscii components automatically using vision analysis. Use when user wants to import, convert, or generate .uxm components from screenshots or images.", "source": ["topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trabian/fluxwing-skills/blob/main/skills/fluxwing-screenshot-importer/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install Fluxwing Screenshot Importer"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-30T13:14:20Z"}, "embedding_text": "Fluxwing Screenshot Importer. Import UI screenshots and generate uxscii components automatically using vision analysis. Use when user wants to import, convert, or generate .uxm components from screenshots or images. Categories: claude-code, claude-code-plugins, claude-skills. Platforms: claude_code."} {"id": "b22b36328600badc00e1a9fcba9a96912821a769215c38ad8e8a00ceeaa6d51c", "repo_url": "https://github.com/trabian/fluxwing-skills", "name": "fluxwing-validator", "description": "Validate uxscii components and screens against schema with interactive menu or direct script calls", "source": ["topic"], "categories": ["claude-code", "claude-code-plugins", "claude-skills"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/trabian/fluxwing-skills/blob/main/skills/fluxwing-validator/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install fluxwing-validator"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2025-11-30T13:14:20Z"}, "embedding_text": "fluxwing-validator. Validate uxscii components and screens against schema with interactive menu or direct script calls Categories: claude-code, claude-code-plugins, claude-skills. Platforms: claude_code."} {"id": "80ade0f71e974dbe9eabacbc88ef3f3004d6ad3491c458dad6eeaa5f9ce1f7e7", "repo_url": "https://github.com/vladimir-human/humanizer-ru", "name": "humanizer-ru", "description": "Use when: \u043d\u0443\u0436\u043d\u043e \u043e\u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0438\u0442\u044c (humanize) \u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0418\u0418 \u0442\u0435\u043a\u0441\u0442 \u043d\u0430 \u0440\u0443\u0441\u0441\u043a\u043e\u043c. \u0423\u0431\u0438\u0440\u0430\u0435\u0442 25 \u043c\u0430\u0448\u0438\u043d\u043d\u044b\u0445 \u043f\u0430\u0442\u0442\u0435\u0440\u043d\u043e\u0432, \u0434\u0435\u043b\u0430\u0435\u0442 \u044f\u0437\u044b\u043a \u0436\u0438\u0432\u044b\u043c \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c.", "source": ["topic"], "categories": ["ai", "claude-skills", "humanizer", "nlp", "prompt-engineering", "russian"], "triggers": [], "platforms": ["claude_code"], "skill_md_url": "https://github.com/Vladimir-Human/humanizer-ru/blob/main/SKILL.md", "safety_scan": null, "safety_scan_date": null, "install_cmd": {"claude_code": "/plugin install humanizer-ru"}, "quality": {"stars": 13, "skillhub_rank": null, "skillhub_score": null, "last_updated": "2026-02-21T09:24:58Z"}, "embedding_text": "humanizer-ru. Use when: \u043d\u0443\u0436\u043d\u043e \u043e\u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0438\u0442\u044c (humanize) \u0441\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0418\u0418 \u0442\u0435\u043a\u0441\u0442 \u043d\u0430 \u0440\u0443\u0441\u0441\u043a\u043e\u043c. \u0423\u0431\u0438\u0440\u0430\u0435\u0442 25 \u043c\u0430\u0448\u0438\u043d\u043d\u044b\u0445 \u043f\u0430\u0442\u0442\u0435\u0440\u043d\u043e\u0432, \u0434\u0435\u043b\u0430\u0435\u0442 \u044f\u0437\u044b\u043a \u0436\u0438\u0432\u044b\u043c \u0438 \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c. Categories: ai, claude-skills, humanizer, nlp, prompt-engineering, russian. Platforms: claude_code."} diff --git a/data/version.txt b/data/version.txt index 2ae2d20..41f4d7d 100644 --- a/data/version.txt +++ b/data/version.txt @@ -1,5 +1,5 @@ -date: 2026-03-17 -skill_count: 37962 -embed_model: -index_sha256: b099e7857cced3c75da8e6d0d9592fd6b7a1232f0190cdb516d566ff5df389dd -metadata_sha256: 39147d02d9dfe30451f83df05e7d54fabb66ea692d1e6ccda9bc210523bb5ded +date: 2026-06-22 +skill_count: 42068 +embed_model: qwen3-embedding:0.6b +index_sha256: c3c9b8a8cba2935ff96711d827456346f4b5f466462dda8e70f512b09b254a19 +metadata_sha256: bc1878ef133b6276219594b439639e0d9d65edd0091487cd16639b85fd9e3ba0